491 lines
7.7 MiB
491 lines
7.7 MiB
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="3926" onload="init(evt)" viewBox="0 0 1200 3926" 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="3926" 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="3909.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="3909.00"> </text><svg id="frames" x="10" width="1180" total_samples="23468"><g><title>_RINvXs6_NtCsjcmkf6ZcZef_9toml_edit2deNtB6_12DeserializerNtNtCsbLa86MRjYi3_5serde2de12Deserializer15deserialize_anyNtNvXs6_NtCsnKFtFFR7Pg_4toml3mapINtB1W_3MapNtNtCseUNaFxoWMgP_5alloc6string6StringNtNtB1Y_5value5ValueENtBU_11Deserialize11deserialize7VisitorEB1Y_ (3 samples, 0.01%)</title><rect x="0.0511%" y="3781" width="0.0128%" height="15" fill="rgb(227,0,7)" fg:x="12" fg:w="3"/><text x="0.3011%" y="3791.50"></text></g><g><title>_RINvXs_NtNtCsjcmkf6ZcZef_9toml_edit2de5valueNtB5_17ValueDeserializerNtNtCsbLa86MRjYi3_5serde2de12Deserializer15deserialize_anyNtNvXs6_NtCsnKFtFFR7Pg_4toml3mapINtB28_3MapNtNtCseUNaFxoWMgP_5alloc6string6StringNtNtB2a_5value5ValueENtB16_11Deserialize11deserialize7VisitorEB2a_ (3 samples, 0.01%)</title><rect x="0.0511%" y="3765" width="0.0128%" height="15" fill="rgb(217,0,24)" fg:x="12" fg:w="3"/><text x="0.3011%" y="3775.50"></text></g><g><title>_RINvXNtNtCsjcmkf6ZcZef_9toml_edit2de5tableNtB3_17TableDeserializerNtNtCsbLa86MRjYi3_5serde2de12Deserializer15deserialize_anyNtNvXs6_NtCsnKFtFFR7Pg_4toml3mapINtB26_3MapNtNtCseUNaFxoWMgP_5alloc6string6StringNtNtB28_5value5ValueENtB14_11Deserialize11deserialize7VisitorEB28_ (3 samples, 0.01%)</title><rect x="0.0511%" y="3749" width="0.0128%" height="15" fill="rgb(221,193,54)" fg:x="12" fg:w="3"/><text x="0.3011%" y="3759.50"></text></g><g><title>_RINvXs3_NtNtCsjcmkf6ZcZef_9toml_edit2de5tableNtB6_14TableMapAccessNtNtCsbLa86MRjYi3_5serde2de9MapAccess15next_value_seedINtNtCskHJcJaiv42W_4core6marker11PhantomDataNtNtCsnKFtFFR7Pg_4toml5value5ValueEEB2G_ (3 samples, 0.01%)</title><rect x="0.0511%" y="3733" width="0.0128%" height="15" fill="rgb(248,212,6)" fg:x="12" fg:w="3"/><text x="0.3011%" y="3743.50"></text></g><g><title>_RINvXs_NtNtCsjcmkf6ZcZef_9toml_edit2de5valueNtB5_17ValueDeserializerNtNtCsbLa86MRjYi3_5serde2de12Deserializer15deserialize_anyNtNvXsg_NtCsnKFtFFR7Pg_4toml5valueNtB28_5ValueNtB16_11Deserialize11deserialize12ValueVisitorEB2a_ (3 samples, 0.01%)</title><rect x="0.0511%" y="3717" width="0.0128%" height="15" fill="rgb(208,68,35)" fg:x="12" fg:w="3"/><text x="0.3011%" y="3727.50"></text></g><g><title>_RINvXNvXsg_NtCsnKFtFFR7Pg_4toml5valueNtB9_5ValueNtNtCsbLa86MRjYi3_5serde2de11Deserialize11deserializeNtB3_12ValueVisitorNtBM_7Visitor9visit_mapNtNtNtCsjcmkf6ZcZef_9toml_edit2de5table14TableMapAccessEBb_ (3 samples, 0.01%)</title><rect x="0.0511%" y="3701" width="0.0128%" height="15" fill="rgb(232,128,0)" fg:x="12" fg:w="3"/><text x="0.3011%" y="3711.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo3ops19cargo_read_manifest12read_package (5 samples, 0.02%)</title><rect x="0.0511%" y="3829" width="0.0213%" height="15" fill="rgb(207,160,47)" fg:x="12" fg:w="5"/><text x="0.3011%" y="3839.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4util4toml13read_manifest (5 samples, 0.02%)</title><rect x="0.0511%" y="3813" width="0.0213%" height="15" fill="rgb(228,23,34)" fg:x="12" fg:w="5"/><text x="0.3011%" y="3823.50"></text></g><g><title>_RNvXs0_NtCsnKFtFFR7Pg_4toml5tableINtNtB7_3map3MapNtNtCseUNaFxoWMgP_5alloc6string6StringNtNtB7_5value5ValueENtNtNtCskHJcJaiv42W_4core3str6traits7FromStr8from_str (5 samples, 0.02%)</title><rect x="0.0511%" y="3797" width="0.0213%" height="15" fill="rgb(218,30,26)" fg:x="12" fg:w="5"/><text x="0.3011%" y="3807.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo3ops7resolve21resolve_with_previous (4 samples, 0.02%)</title><rect x="0.0810%" y="3829" width="0.0170%" height="15" fill="rgb(220,122,19)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3839.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4core8resolver7resolve (4 samples, 0.02%)</title><rect x="0.0810%" y="3813" width="0.0170%" height="15" fill="rgb(250,228,42)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3823.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4core8resolver18activate_deps_loop (4 samples, 0.02%)</title><rect x="0.0810%" y="3797" width="0.0170%" height="15" fill="rgb(240,193,28)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3807.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4core8resolver8activate (4 samples, 0.02%)</title><rect x="0.0810%" y="3781" width="0.0170%" height="15" fill="rgb(216,20,37)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3791.50"></text></g><g><title>_RNvMNtNtNtCs6ANVziFQ2Qr_5cargo4core8resolver9dep_cacheNtB2_15RegistryQueryer10build_deps (4 samples, 0.02%)</title><rect x="0.0810%" y="3765" width="0.0170%" height="15" fill="rgb(206,188,39)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3775.50"></text></g><g><title>_RINvNtNtCskHJcJaiv42W_4core4iter8adapters11try_processINtNtB2_10filter_map9FilterMapINtNtNtCseUNaFxoWMgP_5alloc3vec9into_iter8IntoIterTNtNtNtCs6ANVziFQ2Qr_5cargo4core10dependency10DependencyINtNtB1r_2rc2RcINtNtNtNtB1r_11collections5btree3set8BTreeSetNtNtNtB2f_4util9interning14InternedStringEEEENCNvMNtNtB2d_8resolver9dep_cacheNtB4O_15RegistryQueryer10build_deps0ETB29_IB33_INtB1p_3VecNtNtB2d_7summary7SummaryEEB32_EINtNtB6_6result6ResultNtNtB6_7convert10InfallibleNtCs4iq0B7rcJtv_6anyhow5ErrorENCINvXsn_B6J_IB6H_IB61_B5Q_EB7t_EINtNtNtB4_6traits7collect12FromIteratorIB6H_B5Q_B7t_EE9from_iterBQ_E0B8f_EB2f_ (4 samples, 0.02%)</title><rect x="0.0810%" y="3749" width="0.0170%" height="15" fill="rgb(217,207,13)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3759.50"></text></g><g><title>_RNvXs_NtNtCseUNaFxoWMgP_5alloc3vec16in_place_collectINtB6_3VecTNtNtNtCs6ANVziFQ2Qr_5cargo4core10dependency10DependencyINtNtB8_2rc2RcIBP_NtNtB13_7summary7SummaryEEIB1T_INtNtNtNtB8_11collections5btree3set8BTreeSetNtNtNtB15_4util9interning14InternedStringEEEEINtNtB6_14spec_from_iter12SpecFromIterBY_INtNtNtCskHJcJaiv42W_4core4iter8adapters12GenericShuntINtNtB4O_10filter_map9FilterMapINtNtB6_9into_iter8IntoIterTBZ_B2A_EENCNvMNtNtB13_8resolver9dep_cacheNtB6O_15RegistryQueryer10build_deps0EINtNtB4S_6result6ResultNtNtB4S_7convert10InfallibleNtCs4iq0B7rcJtv_6anyhow5ErrorEEE9from_iterB15_ (4 samples, 0.02%)</title><rect x="0.0810%" y="3733" width="0.0170%" height="15" fill="rgb(231,73,38)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3743.50"></text></g><g><title>_RNCNvMNtNtNtCs6ANVziFQ2Qr_5cargo4core8resolver9dep_cacheNtB4_15RegistryQueryer10build_deps0Ba_.llvm.10204372262039826050 (4 samples, 0.02%)</title><rect x="0.0810%" y="3717" width="0.0170%" height="15" fill="rgb(225,20,46)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3727.50"></text></g><g><title>_RNvMNtNtNtCs6ANVziFQ2Qr_5cargo4core8resolver9dep_cacheNtB2_15RegistryQueryer5query (4 samples, 0.02%)</title><rect x="0.0810%" y="3701" width="0.0170%" height="15" fill="rgb(210,31,41)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3711.50"></text></g><g><title>_RNvXs_NtNtCs6ANVziFQ2Qr_5cargo4core8registryNtB4_15PackageRegistryNtB4_8Registry5query (4 samples, 0.02%)</title><rect x="0.0810%" y="3685" width="0.0170%" height="15" fill="rgb(221,200,47)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3695.50"></text></g><g><title>_RNvXs_NtNtCs6ANVziFQ2Qr_5cargo7sources8replacedNtB4_14ReplacedSourceNtNtNtB8_4core6source6Source5query (4 samples, 0.02%)</title><rect x="0.0810%" y="3669" width="0.0170%" height="15" fill="rgb(226,26,5)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3679.50"></text></g><g><title>_RNvXs_NtNtCs6ANVziFQ2Qr_5cargo7sources8registryNtB4_14RegistrySourceNtNtNtB8_4core6source6Source5query (4 samples, 0.02%)</title><rect x="0.0810%" y="3653" width="0.0170%" height="15" fill="rgb(249,33,26)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3663.50"></text></g><g><title>_RNvMNtNtNtCs6ANVziFQ2Qr_5cargo7sources8registry5indexNtB2_13RegistryIndex23query_inner_with_online.llvm.1573615334287346141 (4 samples, 0.02%)</title><rect x="0.0810%" y="3637" width="0.0170%" height="15" fill="rgb(235,183,28)" fg:x="19" fg:w="4"/><text x="0.3310%" y="3647.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4core8resolver7resolve (3 samples, 0.01%)</title><rect x="0.0980%" y="3829" width="0.0128%" height="15" fill="rgb(221,5,38)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3839.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4core8resolver18activate_deps_loop (3 samples, 0.01%)</title><rect x="0.0980%" y="3813" width="0.0128%" height="15" fill="rgb(247,18,42)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3823.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4core8resolver8activate (3 samples, 0.01%)</title><rect x="0.0980%" y="3797" width="0.0128%" height="15" fill="rgb(241,131,45)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3807.50"></text></g><g><title>_RNvMNtNtNtCs6ANVziFQ2Qr_5cargo4core8resolver9dep_cacheNtB2_15RegistryQueryer10build_deps (3 samples, 0.01%)</title><rect x="0.0980%" y="3781" width="0.0128%" height="15" fill="rgb(249,31,29)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3791.50"></text></g><g><title>_RINvNtNtCskHJcJaiv42W_4core4iter8adapters11try_processINtNtB2_10filter_map9FilterMapINtNtNtCseUNaFxoWMgP_5alloc3vec9into_iter8IntoIterTNtNtNtCs6ANVziFQ2Qr_5cargo4core10dependency10DependencyINtNtB1r_2rc2RcINtNtNtNtB1r_11collections5btree3set8BTreeSetNtNtNtB2f_4util9interning14InternedStringEEEENCNvMNtNtB2d_8resolver9dep_cacheNtB4O_15RegistryQueryer10build_deps0ETB29_IB33_INtB1p_3VecNtNtB2d_7summary7SummaryEEB32_EINtNtB6_6result6ResultNtNtB6_7convert10InfallibleNtCs4iq0B7rcJtv_6anyhow5ErrorENCINvXsn_B6J_IB6H_IB61_B5Q_EB7t_EINtNtNtB4_6traits7collect12FromIteratorIB6H_B5Q_B7t_EE9from_iterBQ_E0B8f_EB2f_ (3 samples, 0.01%)</title><rect x="0.0980%" y="3765" width="0.0128%" height="15" fill="rgb(225,111,53)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3775.50"></text></g><g><title>_RNvXs_NtNtCseUNaFxoWMgP_5alloc3vec16in_place_collectINtB6_3VecTNtNtNtCs6ANVziFQ2Qr_5cargo4core10dependency10DependencyINtNtB8_2rc2RcIBP_NtNtB13_7summary7SummaryEEIB1T_INtNtNtNtB8_11collections5btree3set8BTreeSetNtNtNtB15_4util9interning14InternedStringEEEEINtNtB6_14spec_from_iter12SpecFromIterBY_INtNtNtCskHJcJaiv42W_4core4iter8adapters12GenericShuntINtNtB4O_10filter_map9FilterMapINtNtB6_9into_iter8IntoIterTBZ_B2A_EENCNvMNtNtB13_8resolver9dep_cacheNtB6O_15RegistryQueryer10build_deps0EINtNtB4S_6result6ResultNtNtB4S_7convert10InfallibleNtCs4iq0B7rcJtv_6anyhow5ErrorEEE9from_iterB15_ (3 samples, 0.01%)</title><rect x="0.0980%" y="3749" width="0.0128%" height="15" fill="rgb(238,160,17)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3759.50"></text></g><g><title>_RNCNvMNtNtNtCs6ANVziFQ2Qr_5cargo4core8resolver9dep_cacheNtB4_15RegistryQueryer10build_deps0Ba_.llvm.10204372262039826050 (3 samples, 0.01%)</title><rect x="0.0980%" y="3733" width="0.0128%" height="15" fill="rgb(214,148,48)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3743.50"></text></g><g><title>_RNvMNtNtNtCs6ANVziFQ2Qr_5cargo4core8resolver9dep_cacheNtB2_15RegistryQueryer5query (3 samples, 0.01%)</title><rect x="0.0980%" y="3717" width="0.0128%" height="15" fill="rgb(232,36,49)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3727.50"></text></g><g><title>_RNvXs_NtNtCs6ANVziFQ2Qr_5cargo4core8registryNtB4_15PackageRegistryNtB4_8Registry5query (3 samples, 0.01%)</title><rect x="0.0980%" y="3701" width="0.0128%" height="15" fill="rgb(209,103,24)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3711.50"></text></g><g><title>_RNvXs_NtNtCs6ANVziFQ2Qr_5cargo7sources8replacedNtB4_14ReplacedSourceNtNtNtB8_4core6source6Source5query (3 samples, 0.01%)</title><rect x="0.0980%" y="3685" width="0.0128%" height="15" fill="rgb(229,88,8)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3695.50"></text></g><g><title>_RNvXs_NtNtCs6ANVziFQ2Qr_5cargo7sources8registryNtB4_14RegistrySourceNtNtNtB8_4core6source6Source5query (3 samples, 0.01%)</title><rect x="0.0980%" y="3669" width="0.0128%" height="15" fill="rgb(213,181,19)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3679.50"></text></g><g><title>_RNvMNtNtNtCs6ANVziFQ2Qr_5cargo7sources8registry5indexNtB2_13RegistryIndex23query_inner_with_online.llvm.1573615334287346141 (3 samples, 0.01%)</title><rect x="0.0980%" y="3653" width="0.0128%" height="15" fill="rgb(254,191,54)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3663.50"></text></g><g><title>_RINvXs0_NtNtNtCskHJcJaiv42W_4core4iter8adapters3mapINtB6_3MapINtNtB8_6filter6FilterIBY_IBY_INtNtB8_10filter_map9FilterMapIB1s_INtNtNtNtCsaGBlZPLLBL3_3std11collections4hash3map7IterMutNtCs4oIxIHWvQ6Q_6semver7VersionNtNtNtNtCs6ANVziFQ2Qr_5cargo7sources8registry5index17MaybeIndexSummaryENCNvMB3s_NtB3s_13RegistryIndex9summaries0ENCB4B_s_0ENCB4B_s0_0ENCNvB4D_23query_inner_with_online0ENCB5C_s_0ENCB5C_s0_0ENtNtNtBa_6traits8iterator8Iterator8try_folduNCINvNvB6u_4find5checkNtNtNtB3y_4core7summary7SummaryQNCB5C_s1_0E0INtNtNtBc_3ops12control_flow11ControlFlowB7y_EEB3y_ (3 samples, 0.01%)</title><rect x="0.0980%" y="3637" width="0.0128%" height="15" fill="rgb(241,83,37)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3647.50"></text></g><g><title>_RNvMs3_NtNtNtCs6ANVziFQ2Qr_5cargo7sources8registry5indexNtB5_12IndexSummary5parse.llvm.1573615334287346141 (3 samples, 0.01%)</title><rect x="0.0980%" y="3621" width="0.0128%" height="15" fill="rgb(233,36,39)" fg:x="23" fg:w="3"/><text x="0.3480%" y="3631.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo4util4toml13read_manifest (9 samples, 0.04%)</title><rect x="0.1108%" y="3829" width="0.0384%" height="15" fill="rgb(226,3,54)" fg:x="26" fg:w="9"/><text x="0.3608%" y="3839.50"></text></g><g><title>_RNvXs0_NtCsnKFtFFR7Pg_4toml5tableINtNtB7_3map3MapNtNtCseUNaFxoWMgP_5alloc6string6StringNtNtB7_5value5ValueENtNtNtCskHJcJaiv42W_4core3str6traits7FromStr8from_str (5 samples, 0.02%)</title><rect x="0.1278%" y="3813" width="0.0213%" height="15" fill="rgb(245,192,40)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3823.50"></text></g><g><title>_RNvXs5_NtCsjcmkf6ZcZef_9toml_edit2deNtB5_12DeserializerNtNtNtCskHJcJaiv42W_4core3str6traits7FromStr8from_str (5 samples, 0.02%)</title><rect x="0.1278%" y="3797" width="0.0213%" height="15" fill="rgb(238,167,29)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3807.50"></text></g><g><title>_RNvNtCsjcmkf6ZcZef_9toml_edit6parser14parse_document (5 samples, 0.02%)</title><rect x="0.1278%" y="3781" width="0.0213%" height="15" fill="rgb(232,182,51)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3791.50"></text></g><g><title>_RNvNtNtCsjcmkf6ZcZef_9toml_edit6parser8document8document (5 samples, 0.02%)</title><rect x="0.1278%" y="3765" width="0.0213%" height="15" fill="rgb(231,60,39)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3775.50"></text></g><g><title>_RNvXs9_NtCs5wJPnwSQXlK_6winnow6parserTNCINvNtNtB7_10combinator4core3optINtNtB7_6stream7LocatedRNtB1a_4BStrERShNtNtNtCsjcmkf6ZcZef_9toml_edit6parser6errors11ParserErrorRAhj3_E0NCNvNtB1O_8document8parse_ws0INtNtBH_6parser3MapNCINvNtBH_5multi6repeatB17_TuuEuB1K_TNCNvB2R_8documents1_0B2N_EINtNtNtCskHJcJaiv42W_4core3ops5range9RangeFromjEE0NCB4c_0B17_uuB1K_EINvBF_3eofB17_B1K_EEINtB5_6ParserB17_TINtNtB4H_6option6OptionB1H_EuuB1H_EB1K_E10parse_nextB1Q_ (5 samples, 0.02%)</title><rect x="0.1278%" y="3749" width="0.0213%" height="15" fill="rgb(208,69,12)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3759.50"></text></g><g><title>_RNvXNtCs5wJPnwSQXlK_6winnow6parserNCINvNtNtB4_10combinator5multi6repeatINtNtB4_6stream7LocatedRNtB1a_4BStrETuuEuNtNtNtCsjcmkf6ZcZef_9toml_edit6parser6errors11ParserErrorTNCNvNtB1Q_8document8documents1_0NCNvB2M_8parse_ws0EINtNtNtCskHJcJaiv42W_4core3ops5range9RangeFromjEE0INtB2_6ParserB17_uB1M_E10parse_nextB1S_ (5 samples, 0.02%)</title><rect x="0.1278%" y="3733" width="0.0213%" height="15" fill="rgb(235,93,37)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3743.50"></text></g><g><title>_RNvXs7_NtCs5wJPnwSQXlK_6winnow6parserTNCNvNtNtCsjcmkf6ZcZef_9toml_edit6parser8document8documents1_0NCNvBE_8parse_ws0EINtB5_6ParserINtNtB7_6stream7LocatedRNtB27_4BStrETuuENtNtBG_6errors11ParserErrorE10parse_nextBI_ (5 samples, 0.02%)</title><rect x="0.1278%" y="3717" width="0.0213%" height="15" fill="rgb(213,116,39)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3727.50"></text></g><g><title>_RNvXs3_NtNtCs5wJPnwSQXlK_6winnow10combinator6parserINtB5_6TryMapNvNtNtCsjcmkf6ZcZef_9toml_edit6parser8document12parse_keyvalNCNCNvB12_6keyval00INtNtB9_6stream7LocatedRNtB2k_4BStrETINtNtCseUNaFxoWMgP_5alloc3vec3VecNtNtB16_3key3KeyENtNtB16_5table13TableKeyValueEuNtNtB14_6errors11ParserErrorNtB4d_11CustomErrorEINtNtB9_6parser6ParserB2h_uB4b_E10parse_nextB16_ (5 samples, 0.02%)</title><rect x="0.1278%" y="3701" width="0.0213%" height="15" fill="rgb(222,207,29)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3711.50"></text></g><g><title>_RNvXs3_NtNtCs5wJPnwSQXlK_6winnow10combinator6parserINtB5_6TryMapTNvNtNtCsjcmkf6ZcZef_9toml_edit6parser3key3keyNCINvNtB7_4core7cut_errINtNtB9_6stream7LocatedRNtB2a_4BStrEThTINtNtNtCskHJcJaiv42W_4core3ops5range5RangejENtNtB17_5value5ValueB2K_EENtNtB15_6errors11ParserErrorTINtB5_7ContextIB4m_INtB5_6VerifyINvNtB9_5token3anyB27_B3S_ENCINvB4U_6one_ofB27_hB3S_E0B27_hhB3S_EB27_hB3S_NtB3U_7ContextEB27_hB3S_B63_ETINtB5_4SpanNvNtB15_6trivia2wsB27_ReB3S_ENCNvNtB15_5value5value0IB4m_IB4m_NvB6K_13line_trailingB27_B2K_B3S_B63_EB27_B2K_B3S_B63_EEEE0ENCNvNtB15_8document12parse_keyval0B27_TINtNtCseUNaFxoWMgP_5alloc3vec3VecNtNtB17_3key3KeyEB2H_ETB9j_NtNtB17_5table13TableKeyValueEB3S_NtNtNtB2R_3str5error9Utf8ErrorEINtNtB9_6parser6ParserB27_Bac_B3S_E10parse_nextB17_ (5 samples, 0.02%)</title><rect x="0.1278%" y="3685" width="0.0213%" height="15" fill="rgb(206,96,30)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3695.50"></text></g><g><title>_RNvXs7_NtCs5wJPnwSQXlK_6winnow6parserTNvNtNtCsjcmkf6ZcZef_9toml_edit6parser3key3keyNCINvNtNtB7_10combinator4core7cut_errINtNtB7_6stream7LocatedRNtB1X_4BStrEThTINtNtNtCskHJcJaiv42W_4core3ops5range5RangejENtNtBG_5value5ValueB2x_EENtNtBE_6errors11ParserErrorTINtNtB1q_6parser7ContextIB47_INtB49_6VerifyINvNtB7_5token3anyB1U_B3E_ENCINvB4Q_6one_ofB1U_hB3E_E0B1U_hhB3E_EB1U_hB3E_NtB3G_7ContextEB1U_hB3E_B5Z_ETINtB49_4SpanNvNtBE_6trivia2wsB1U_ReB3E_ENCNvNtBE_5value5value0IB47_IB47_NvB6H_13line_trailingB1U_B2x_B3E_B5Z_EB1U_B2x_B3E_B5Z_EEEE0EINtB5_6ParserB1U_TINtNtCseUNaFxoWMgP_5alloc3vec3VecNtNtBG_3key3KeyEB2u_EB3E_E10parse_nextBG_ (5 samples, 0.02%)</title><rect x="0.1278%" y="3669" width="0.0213%" height="15" fill="rgb(218,138,4)" fg:x="30" fg:w="5"/><text x="0.3778%" y="3679.50"></text></g><g><title>_RNvXs7_NtCs5wJPnwSQXlK_6winnow6parserTINtNtNtB7_10combinator6parser7ContextIBB_INtBD_6VerifyINvNtB7_5token3anyINtNtB7_6stream7LocatedRNtB1N_4BStrENtNtNtCsjcmkf6ZcZef_9toml_edit6parser6errors11ParserErrorENCINvB1v_6one_ofB1K_hB2k_E0B1K_hhB2k_EB1K_hB2k_NtB2m_7ContextEB1K_hB2k_B41_ETINtBD_4SpanNvNtB2o_6trivia2wsB1K_ReB2k_ENCNvNtB2o_5value5value0IBB_IBB_NvB4I_13line_trailingB1K_INtNtNtCskHJcJaiv42W_4core3ops5range5RangejEB2k_B41_EB1K_B63_B2k_B41_EEEINtB5_6ParserB1K_ThTB63_NtNtB2q_5value5ValueB63_EEB2k_E10parse_nextB2q_ (3 samples, 0.01%)</title><rect x="0.1364%" y="3653" width="0.0128%" height="15" fill="rgb(250,191,14)" fg:x="32" fg:w="3"/><text x="0.3864%" y="3663.50"></text></g><g><title>[unknown] (32 samples, 0.14%)</title><rect x="0.0213%" y="3845" width="0.1364%" height="15" fill="rgb(239,60,40)" fg:x="5" fg:w="32"/><text x="0.2713%" y="3855.50"></text></g><g><title>eckey_type2param (3 samples, 0.01%)</title><rect x="0.1577%" y="3269" width="0.0128%" height="15" fill="rgb(206,27,48)" fg:x="37" fg:w="3"/><text x="0.4077%" y="3279.50"></text></g><g><title>EC_GROUP_new_by_curve_name (3 samples, 0.01%)</title><rect x="0.1577%" y="3253" width="0.0128%" height="15" fill="rgb(225,35,8)" fg:x="37" fg:w="3"/><text x="0.4077%" y="3263.50"></text></g><g><title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="0.1577%" y="3413" width="0.0170%" height="15" fill="rgb(250,213,24)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3423.50"></text></g><g><title>asn1_item_embed_d2i (4 samples, 0.02%)</title><rect x="0.1577%" y="3397" width="0.0170%" height="15" fill="rgb(247,123,22)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3407.50"></text></g><g><title>asn1_template_noexp_d2i (4 samples, 0.02%)</title><rect x="0.1577%" y="3381" width="0.0170%" height="15" fill="rgb(231,138,38)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3391.50"></text></g><g><title>asn1_item_embed_d2i (4 samples, 0.02%)</title><rect x="0.1577%" y="3365" width="0.0170%" height="15" fill="rgb(231,145,46)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3375.50"></text></g><g><title>asn1_template_noexp_d2i (4 samples, 0.02%)</title><rect x="0.1577%" y="3349" width="0.0170%" height="15" fill="rgb(251,118,11)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3359.50"></text></g><g><title>asn1_item_embed_d2i (4 samples, 0.02%)</title><rect x="0.1577%" y="3333" width="0.0170%" height="15" fill="rgb(217,147,25)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3343.50"></text></g><g><title>pubkey_cb (4 samples, 0.02%)</title><rect x="0.1577%" y="3317" width="0.0170%" height="15" fill="rgb(247,81,37)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3327.50"></text></g><g><title>x509_pubkey_decode (4 samples, 0.02%)</title><rect x="0.1577%" y="3301" width="0.0170%" height="15" fill="rgb(209,12,38)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3311.50"></text></g><g><title>eckey_pub_decode (4 samples, 0.02%)</title><rect x="0.1577%" y="3285" width="0.0170%" height="15" fill="rgb(227,1,9)" fg:x="37" fg:w="4"/><text x="0.4077%" y="3295.50"></text></g><g><title>_RNvCs2VSklsBrh3g_5cargo8init_git (5 samples, 0.02%)</title><rect x="0.1577%" y="3573" width="0.0213%" height="15" fill="rgb(248,47,43)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3583.50"></text></g><g><title>_RNvNtCsj93vkn6NZN5_4git24opts27set_verify_owner_validation (5 samples, 0.02%)</title><rect x="0.1577%" y="3557" width="0.0213%" height="15" fill="rgb(221,10,30)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3567.50"></text></g><g><title>_RNvCscJpNupjHOgy_11libgit2_sys4init (5 samples, 0.02%)</title><rect x="0.1577%" y="3541" width="0.0213%" height="15" fill="rgb(210,229,1)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3551.50"></text></g><g><title>_RINvMs0_NtNtNtCsaGBlZPLLBL3_3std10sys_common4once5futexNtB6_4Once4callNCINvMs0_NtNtBc_4sync4onceNtB1f_4Once9call_onceNCNvCscJpNupjHOgy_11libgit2_sys4init0E0EB1V_ (5 samples, 0.02%)</title><rect x="0.1577%" y="3525" width="0.0213%" height="15" fill="rgb(222,148,37)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3535.50"></text></g><g><title>git_runtime_init (5 samples, 0.02%)</title><rect x="0.1577%" y="3509" width="0.0213%" height="15" fill="rgb(234,67,33)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3519.50"></text></g><g><title>git_openssl_stream_global_init (5 samples, 0.02%)</title><rect x="0.1577%" y="3493" width="0.0213%" height="15" fill="rgb(247,98,35)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3503.50"></text></g><g><title>X509_STORE_set_default_paths (5 samples, 0.02%)</title><rect x="0.1577%" y="3477" width="0.0213%" height="15" fill="rgb(247,138,52)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3487.50"></text></g><g><title>by_file_ctrl (5 samples, 0.02%)</title><rect x="0.1577%" y="3461" width="0.0213%" height="15" fill="rgb(213,79,30)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3471.50"></text></g><g><title>X509_load_cert_crl_file (5 samples, 0.02%)</title><rect x="0.1577%" y="3445" width="0.0213%" height="15" fill="rgb(246,177,23)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3455.50"></text></g><g><title>PEM_X509_INFO_read_bio (5 samples, 0.02%)</title><rect x="0.1577%" y="3429" width="0.0213%" height="15" fill="rgb(230,62,27)" fg:x="37" fg:w="5"/><text x="0.4077%" y="3439.50"></text></g><g><title>cargo (47 samples, 0.20%)</title><rect x="0.0000%" y="3861" width="0.2003%" height="15" fill="rgb(216,154,8)" fg:x="0" fg:w="47"/><text x="0.2500%" y="3871.50"></text></g><g><title>_start (10 samples, 0.04%)</title><rect x="0.1577%" y="3845" width="0.0426%" height="15" fill="rgb(244,35,45)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3855.50"></text></g><g><title>__libc_start_main (10 samples, 0.04%)</title><rect x="0.1577%" y="3829" width="0.0426%" height="15" fill="rgb(251,115,12)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3839.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="0.1577%" y="3813" width="0.0426%" height="15" fill="rgb(240,54,50)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3823.50"></text></g><g><title>main (10 samples, 0.04%)</title><rect x="0.1577%" y="3797" width="0.0426%" height="15" fill="rgb(233,84,52)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3807.50"></text></g><g><title>std::rt::lang_start_internal (10 samples, 0.04%)</title><rect x="0.1577%" y="3781" width="0.0426%" height="15" fill="rgb(207,117,47)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3791.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="0.1577%" y="3765" width="0.0426%" height="15" fill="rgb(249,43,39)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3775.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="0.1577%" y="3749" width="0.0426%" height="15" fill="rgb(209,38,44)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3759.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="0.1577%" y="3733" width="0.0426%" height="15" fill="rgb(236,212,23)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3743.50"></text></g><g><title>std::rt::lang_start_internal::_{{closure}} (10 samples, 0.04%)</title><rect x="0.1577%" y="3717" width="0.0426%" height="15" fill="rgb(242,79,21)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3727.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="0.1577%" y="3701" width="0.0426%" height="15" fill="rgb(211,96,35)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3711.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="0.1577%" y="3685" width="0.0426%" height="15" fill="rgb(253,215,40)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3695.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="0.1577%" y="3669" width="0.0426%" height="15" fill="rgb(211,81,21)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3679.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once (10 samples, 0.04%)</title><rect x="0.1577%" y="3653" width="0.0426%" height="15" fill="rgb(208,190,38)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3663.50"></text></g><g><title>_RNCINvNtCsaGBlZPLLBL3_3std2rt10lang_startuE0Cs2VSklsBrh3g_5cargo.llvm.3933952680102548603 (10 samples, 0.04%)</title><rect x="0.1577%" y="3637" width="0.0426%" height="15" fill="rgb(235,213,38)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3647.50"></text></g><g><title>_RINvNtNtCsaGBlZPLLBL3_3std10sys_common9backtrace28___rust_begin_short_backtraceFEuuECs2VSklsBrh3g_5cargo (10 samples, 0.04%)</title><rect x="0.1577%" y="3621" width="0.0426%" height="15" fill="rgb(237,122,38)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3631.50"></text></g><g><title>_RNvCs2VSklsBrh3g_5cargo4main (10 samples, 0.04%)</title><rect x="0.1577%" y="3605" width="0.0426%" height="15" fill="rgb(244,218,35)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3615.50"></text></g><g><title>_RNvNtCs2VSklsBrh3g_5cargo3cli4main (10 samples, 0.04%)</title><rect x="0.1577%" y="3589" width="0.0426%" height="15" fill="rgb(240,68,47)" fg:x="37" fg:w="10"/><text x="0.4077%" y="3599.50"></text></g><g><title>_RNvNtNtCs2VSklsBrh3g_5cargo8commands8metadata4exec (5 samples, 0.02%)</title><rect x="0.1790%" y="3573" width="0.0213%" height="15" fill="rgb(210,16,53)" fg:x="42" fg:w="5"/><text x="0.4290%" y="3583.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo3ops21cargo_output_metadata15output_metadata (4 samples, 0.02%)</title><rect x="0.1832%" y="3557" width="0.0170%" height="15" fill="rgb(235,124,12)" fg:x="43" fg:w="4"/><text x="0.4332%" y="3567.50"></text></g><g><title>_RNvNtNtCs6ANVziFQ2Qr_5cargo3ops7resolve20resolve_ws_with_opts (3 samples, 0.01%)</title><rect x="0.1875%" y="3541" width="0.0128%" height="15" fill="rgb(224,169,11)" fg:x="44" fg:w="3"/><text x="0.4375%" y="3551.50"></text></g><g><title>[ld-linux-x86-64.so.2] (17 samples, 0.07%)</title><rect x="0.2045%" y="3829" width="0.0724%" height="15" fill="rgb(250,166,2)" fg:x="48" fg:w="17"/><text x="0.4545%" y="3839.50"></text></g><g><title>[[stack]] (18 samples, 0.08%)</title><rect x="0.2045%" y="3845" width="0.0767%" height="15" fill="rgb(242,216,29)" fg:x="48" fg:w="18"/><text x="0.4545%" y="3855.50"></text></g><g><title>[anon] (3 samples, 0.01%)</title><rect x="0.2812%" y="3845" width="0.0128%" height="15" fill="rgb(230,116,27)" fg:x="66" fg:w="3"/><text x="0.5312%" y="3855.50"></text></g><g><title>[gnuplot] (24 samples, 0.10%)</title><rect x="0.3068%" y="3749" width="0.1023%" height="15" fill="rgb(228,99,48)" fg:x="72" fg:w="24"/><text x="0.5568%" y="3759.50"></text></g><g><title>[gnuplot] (24 samples, 0.10%)</title><rect x="0.3068%" y="3733" width="0.1023%" height="15" fill="rgb(253,11,6)" fg:x="72" fg:w="24"/><text x="0.5568%" y="3743.50"></text></g><g><title>[gnuplot] (24 samples, 0.10%)</title><rect x="0.3068%" y="3717" width="0.1023%" height="15" fill="rgb(247,143,39)" fg:x="72" fg:w="24"/><text x="0.5568%" y="3727.50"></text></g><g><title>[gnuplot] (22 samples, 0.09%)</title><rect x="0.3153%" y="3701" width="0.0937%" height="15" fill="rgb(236,97,10)" fg:x="74" fg:w="22"/><text x="0.5653%" y="3711.50"></text></g><g><title>[gnuplot] (22 samples, 0.09%)</title><rect x="0.3153%" y="3685" width="0.0937%" height="15" fill="rgb(233,208,19)" fg:x="74" fg:w="22"/><text x="0.5653%" y="3695.50"></text></g><g><title>__fprintf_chk (19 samples, 0.08%)</title><rect x="0.3281%" y="3669" width="0.0810%" height="15" fill="rgb(216,164,2)" fg:x="77" fg:w="19"/><text x="0.5781%" y="3679.50"></text></g><g><title>[libc.so.6] (19 samples, 0.08%)</title><rect x="0.3281%" y="3653" width="0.0810%" height="15" fill="rgb(220,129,5)" fg:x="77" fg:w="19"/><text x="0.5781%" y="3663.50"></text></g><g><title>[libc.so.6] (19 samples, 0.08%)</title><rect x="0.3281%" y="3637" width="0.0810%" height="15" fill="rgb(242,17,10)" fg:x="77" fg:w="19"/><text x="0.5781%" y="3647.50"></text></g><g><title>[libc.so.6] (19 samples, 0.08%)</title><rect x="0.3281%" y="3621" width="0.0810%" height="15" fill="rgb(242,107,0)" fg:x="77" fg:w="19"/><text x="0.5781%" y="3631.50"></text></g><g><title>[libc.so.6] (18 samples, 0.08%)</title><rect x="0.3324%" y="3605" width="0.0767%" height="15" fill="rgb(251,28,31)" fg:x="78" fg:w="18"/><text x="0.5824%" y="3615.50"></text></g><g><title>[libc.so.6] (14 samples, 0.06%)</title><rect x="0.3494%" y="3589" width="0.0597%" height="15" fill="rgb(233,223,10)" fg:x="82" fg:w="14"/><text x="0.5994%" y="3599.50"></text></g><g><title>[libc.so.6] (12 samples, 0.05%)</title><rect x="0.3579%" y="3573" width="0.0511%" height="15" fill="rgb(215,21,27)" fg:x="84" fg:w="12"/><text x="0.6079%" y="3583.50"></text></g><g><title>[gnuplot] (44 samples, 0.19%)</title><rect x="0.3068%" y="3765" width="0.1875%" height="15" fill="rgb(232,23,21)" fg:x="72" fg:w="44"/><text x="0.5568%" y="3775.50"></text></g><g><title>_IO_fgets (20 samples, 0.09%)</title><rect x="0.4091%" y="3749" width="0.0852%" height="15" fill="rgb(244,5,23)" fg:x="96" fg:w="20"/><text x="0.6591%" y="3759.50"></text></g><g><title>_IO_getline_info (20 samples, 0.09%)</title><rect x="0.4091%" y="3733" width="0.0852%" height="15" fill="rgb(226,81,46)" fg:x="96" fg:w="20"/><text x="0.6591%" y="3743.50"></text></g><g><title>_IO_default_uflow (20 samples, 0.09%)</title><rect x="0.4091%" y="3717" width="0.0852%" height="15" fill="rgb(247,70,30)" fg:x="96" fg:w="20"/><text x="0.6591%" y="3727.50"></text></g><g><title>_IO_file_underflow (20 samples, 0.09%)</title><rect x="0.4091%" y="3701" width="0.0852%" height="15" fill="rgb(212,68,19)" fg:x="96" fg:w="20"/><text x="0.6591%" y="3711.50"></text></g><g><title>read (20 samples, 0.09%)</title><rect x="0.4091%" y="3685" width="0.0852%" height="15" fill="rgb(240,187,13)" fg:x="96" fg:w="20"/><text x="0.6591%" y="3695.50"></text></g><g><title>[gnuplot] (47 samples, 0.20%)</title><rect x="0.2983%" y="3797" width="0.2003%" height="15" fill="rgb(223,113,26)" fg:x="70" fg:w="47"/><text x="0.5483%" y="3807.50"></text></g><g><title>[gnuplot] (47 samples, 0.20%)</title><rect x="0.2983%" y="3781" width="0.2003%" height="15" fill="rgb(206,192,2)" fg:x="70" fg:w="47"/><text x="0.5483%" y="3791.50"></text></g><g><title>[libwx_gtk3u_core-3.2.so.0.2.2] (3 samples, 0.01%)</title><rect x="0.5284%" y="3733" width="0.0128%" height="15" fill="rgb(241,108,4)" fg:x="124" fg:w="3"/><text x="0.7784%" y="3743.50"></text></g><g><title>__cxa_finalize (3 samples, 0.01%)</title><rect x="0.5284%" y="3717" width="0.0128%" height="15" fill="rgb(247,173,49)" fg:x="124" fg:w="3"/><text x="0.7784%" y="3727.50"></text></g><g><title>[gnuplot] (59 samples, 0.25%)</title><rect x="0.2940%" y="3845" width="0.2514%" height="15" fill="rgb(224,114,35)" fg:x="69" fg:w="59"/><text x="0.5440%" y="3855.50"></text></g><g><title>__libc_start_main (58 samples, 0.25%)</title><rect x="0.2983%" y="3829" width="0.2471%" height="15" fill="rgb(245,159,27)" fg:x="70" fg:w="58"/><text x="0.5483%" y="3839.50"></text></g><g><title>[libc.so.6] (58 samples, 0.25%)</title><rect x="0.2983%" y="3813" width="0.2471%" height="15" fill="rgb(245,172,44)" fg:x="70" fg:w="58"/><text x="0.5483%" y="3823.50"></text></g><g><title>exit (11 samples, 0.05%)</title><rect x="0.4986%" y="3797" width="0.0469%" height="15" fill="rgb(236,23,11)" fg:x="117" fg:w="11"/><text x="0.7486%" y="3807.50"></text></g><g><title>[libc.so.6] (11 samples, 0.05%)</title><rect x="0.4986%" y="3781" width="0.0469%" height="15" fill="rgb(205,117,38)" fg:x="117" fg:w="11"/><text x="0.7486%" y="3791.50"></text></g><g><title>[ld-linux-x86-64.so.2] (10 samples, 0.04%)</title><rect x="0.5028%" y="3765" width="0.0426%" height="15" fill="rgb(237,72,25)" fg:x="118" fg:w="10"/><text x="0.7528%" y="3775.50"></text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 0.03%)</title><rect x="0.5156%" y="3749" width="0.0298%" height="15" fill="rgb(244,70,9)" fg:x="121" fg:w="7"/><text x="0.7656%" y="3759.50"></text></g><g><title>[ld-linux-x86-64.so.2] (732 samples, 3.12%)</title><rect x="1.6618%" y="3765" width="3.1191%" height="15" fill="rgb(217,125,39)" fg:x="390" fg:w="732"/><text x="1.9118%" y="3775.50">[ld..</text></g><g><title>[ld-linux-x86-64.so.2] (677 samples, 2.88%)</title><rect x="1.8962%" y="3749" width="2.8848%" height="15" fill="rgb(235,36,10)" fg:x="445" fg:w="677"/><text x="2.1462%" y="3759.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (52 samples, 0.22%)</title><rect x="4.5594%" y="3733" width="0.2216%" height="15" fill="rgb(251,123,47)" fg:x="1070" fg:w="52"/><text x="4.8094%" y="3743.50"></text></g><g><title>[ld-linux-x86-64.so.2] (34 samples, 0.14%)</title><rect x="4.6361%" y="3717" width="0.1449%" height="15" fill="rgb(221,13,13)" fg:x="1088" fg:w="34"/><text x="4.8861%" y="3727.50"></text></g><g><title>[ld-linux-x86-64.so.2] (6 samples, 0.03%)</title><rect x="4.7554%" y="3701" width="0.0256%" height="15" fill="rgb(238,131,9)" fg:x="1116" fg:w="6"/><text x="5.0054%" y="3711.50"></text></g><g><title>[ld-linux-x86-64.so.2] (893 samples, 3.81%)</title><rect x="1.1931%" y="3797" width="3.8052%" height="15" fill="rgb(211,50,8)" fg:x="280" fg:w="893"/><text x="1.4431%" y="3807.50">[ld-..</text></g><g><title>[ld-linux-x86-64.so.2] (874 samples, 3.72%)</title><rect x="1.2741%" y="3781" width="3.7242%" height="15" fill="rgb(245,182,24)" fg:x="299" fg:w="874"/><text x="1.5241%" y="3791.50">[ld-..</text></g><g><title>_dl_catch_exception (51 samples, 0.22%)</title><rect x="4.7810%" y="3765" width="0.2173%" height="15" fill="rgb(242,14,37)" fg:x="1122" fg:w="51"/><text x="5.0310%" y="3775.50"></text></g><g><title>[ld-linux-x86-64.so.2] (50 samples, 0.21%)</title><rect x="4.7852%" y="3749" width="0.2131%" height="15" fill="rgb(246,228,12)" fg:x="1123" fg:w="50"/><text x="5.0352%" y="3759.50"></text></g><g><title>[ld-linux-x86-64.so.2] (50 samples, 0.21%)</title><rect x="4.7852%" y="3733" width="0.2131%" height="15" fill="rgb(213,55,15)" fg:x="1123" fg:w="50"/><text x="5.0352%" y="3743.50"></text></g><g><title>[ld-linux-x86-64.so.2] (42 samples, 0.18%)</title><rect x="4.8193%" y="3717" width="0.1790%" height="15" fill="rgb(209,9,3)" fg:x="1131" fg:w="42"/><text x="5.0693%" y="3727.50"></text></g><g><title>[ld-linux-x86-64.so.2] (22 samples, 0.09%)</title><rect x="4.9046%" y="3701" width="0.0937%" height="15" fill="rgb(230,59,30)" fg:x="1151" fg:w="22"/><text x="5.1546%" y="3711.50"></text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 0.02%)</title><rect x="4.9813%" y="3685" width="0.0170%" height="15" fill="rgb(209,121,21)" fg:x="1169" fg:w="4"/><text x="5.2313%" y="3695.50"></text></g><g><title>[libheif.so.1.17.5] (53 samples, 0.23%)</title><rect x="5.0111%" y="3797" width="0.2258%" height="15" fill="rgb(220,109,13)" fg:x="1176" fg:w="53"/><text x="5.2611%" y="3807.50"></text></g><g><title>[libheif.so.1.17.5] (53 samples, 0.23%)</title><rect x="5.0111%" y="3781" width="0.2258%" height="15" fill="rgb(232,18,1)" fg:x="1176" fg:w="53"/><text x="5.2611%" y="3791.50"></text></g><g><title>de265_init (53 samples, 0.23%)</title><rect x="5.0111%" y="3765" width="0.2258%" height="15" fill="rgb(215,41,42)" fg:x="1176" fg:w="53"/><text x="5.2611%" y="3775.50"></text></g><g><title>init_scan_orders (52 samples, 0.22%)</title><rect x="5.0153%" y="3749" width="0.2216%" height="15" fill="rgb(224,123,36)" fg:x="1177" fg:w="52"/><text x="5.2653%" y="3759.50"></text></g><g><title>[libc.so.6] (12 samples, 0.05%)</title><rect x="5.2881%" y="3605" width="0.0511%" height="15" fill="rgb(240,125,3)" fg:x="1241" fg:w="12"/><text x="5.5381%" y="3615.50"></text></g><g><title>[libc.so.6] (10 samples, 0.04%)</title><rect x="5.2966%" y="3589" width="0.0426%" height="15" fill="rgb(205,98,50)" fg:x="1243" fg:w="10"/><text x="5.5466%" y="3599.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="5.3562%" y="3589" width="0.0128%" height="15" fill="rgb(205,185,37)" fg:x="1257" fg:w="3"/><text x="5.6062%" y="3599.50"></text></g><g><title>[libc.so.6] (23 samples, 0.10%)</title><rect x="5.2753%" y="3621" width="0.0980%" height="15" fill="rgb(238,207,15)" fg:x="1238" fg:w="23"/><text x="5.5253%" y="3631.50"></text></g><g><title>__tsearch (6 samples, 0.03%)</title><rect x="5.3477%" y="3605" width="0.0256%" height="15" fill="rgb(213,199,42)" fg:x="1255" fg:w="6"/><text x="5.5977%" y="3615.50"></text></g><g><title>wxCSConv::DoCreate (34 samples, 0.14%)</title><rect x="5.2369%" y="3749" width="0.1449%" height="15" fill="rgb(235,201,11)" fg:x="1229" fg:w="34"/><text x="5.4869%" y="3759.50"></text></g><g><title>wxMBConv_iconv::wxMBConv_iconv (34 samples, 0.14%)</title><rect x="5.2369%" y="3733" width="0.1449%" height="15" fill="rgb(207,46,11)" fg:x="1229" fg:w="34"/><text x="5.4869%" y="3743.50"></text></g><g><title>iconv_open (34 samples, 0.14%)</title><rect x="5.2369%" y="3717" width="0.1449%" height="15" fill="rgb(241,35,35)" fg:x="1229" fg:w="34"/><text x="5.4869%" y="3727.50"></text></g><g><title>__gconv_open (34 samples, 0.14%)</title><rect x="5.2369%" y="3701" width="0.1449%" height="15" fill="rgb(243,32,47)" fg:x="1229" fg:w="34"/><text x="5.4869%" y="3711.50"></text></g><g><title>[libc.so.6] (34 samples, 0.14%)</title><rect x="5.2369%" y="3685" width="0.1449%" height="15" fill="rgb(247,202,23)" fg:x="1229" fg:w="34"/><text x="5.4869%" y="3695.50"></text></g><g><title>[libc.so.6] (34 samples, 0.14%)</title><rect x="5.2369%" y="3669" width="0.1449%" height="15" fill="rgb(219,102,11)" fg:x="1229" fg:w="34"/><text x="5.4869%" y="3679.50"></text></g><g><title>[libc.so.6] (34 samples, 0.14%)</title><rect x="5.2369%" y="3653" width="0.1449%" height="15" fill="rgb(243,110,44)" fg:x="1229" fg:w="34"/><text x="5.4869%" y="3663.50"></text></g><g><title>[libc.so.6] (25 samples, 0.11%)</title><rect x="5.2753%" y="3637" width="0.1065%" height="15" fill="rgb(222,74,54)" fg:x="1238" fg:w="25"/><text x="5.5253%" y="3647.50"></text></g><g><title>[libwx_baseu-3.2.so.0.2.2] (35 samples, 0.15%)</title><rect x="5.2369%" y="3797" width="0.1491%" height="15" fill="rgb(216,99,12)" fg:x="1229" fg:w="35"/><text x="5.4869%" y="3807.50"></text></g><g><title>wxGet_wxConvLocalPtr (35 samples, 0.15%)</title><rect x="5.2369%" y="3781" width="0.1491%" height="15" fill="rgb(226,22,26)" fg:x="1229" fg:w="35"/><text x="5.4869%" y="3791.50"></text></g><g><title>wxCSConv::wxCSConv (35 samples, 0.15%)</title><rect x="5.2369%" y="3765" width="0.1491%" height="15" fill="rgb(217,163,10)" fg:x="1229" fg:w="35"/><text x="5.4869%" y="3775.50"></text></g><g><title>[libwx_gtk3u_core-3.2.so.0.2.2] (4 samples, 0.02%)</title><rect x="5.3861%" y="3797" width="0.0170%" height="15" fill="rgb(213,25,53)" fg:x="1264" fg:w="4"/><text x="5.6361%" y="3807.50"></text></g><g><title>[ld-linux-x86-64.so.2] (991 samples, 4.22%)</title><rect x="1.1846%" y="3829" width="4.2228%" height="15" fill="rgb(252,105,26)" fg:x="278" fg:w="991"/><text x="1.4346%" y="3839.50">[ld-l..</text></g><g><title>[ld-linux-x86-64.so.2] (989 samples, 4.21%)</title><rect x="1.1931%" y="3813" width="4.2142%" height="15" fill="rgb(220,39,43)" fg:x="280" fg:w="989"/><text x="1.4431%" y="3823.50">[ld-l..</text></g><g><title>[ld-linux-x86-64.so.2] (1,153 samples, 4.91%)</title><rect x="0.5454%" y="3845" width="4.9131%" height="15" fill="rgb(229,68,48)" fg:x="128" fg:w="1153"/><text x="0.7954%" y="3855.50">[ld-li..</text></g><g><title>[libheif.so.1.17.5] (12 samples, 0.05%)</title><rect x="5.4074%" y="3829" width="0.0511%" height="15" fill="rgb(252,8,32)" fg:x="1269" fg:w="12"/><text x="5.6574%" y="3839.50"></text></g><g><title>[libheif.so.1.17.5] (12 samples, 0.05%)</title><rect x="5.4074%" y="3813" width="0.0511%" height="15" fill="rgb(223,20,43)" fg:x="1269" fg:w="12"/><text x="5.6574%" y="3823.50"></text></g><g><title>de265_init (12 samples, 0.05%)</title><rect x="5.4074%" y="3797" width="0.0511%" height="15" fill="rgb(229,81,49)" fg:x="1269" fg:w="12"/><text x="5.6574%" y="3807.50"></text></g><g><title>init_scan_orders (10 samples, 0.04%)</title><rect x="5.4159%" y="3781" width="0.0426%" height="15" fill="rgb(236,28,36)" fg:x="1271" fg:w="10"/><text x="5.6659%" y="3791.50"></text></g><g><title>[libc.so.6] (17 samples, 0.07%)</title><rect x="5.4755%" y="3845" width="0.0724%" height="15" fill="rgb(249,185,26)" fg:x="1285" fg:w="17"/><text x="5.7255%" y="3855.50"></text></g><g><title>[libc.so.6] (6 samples, 0.03%)</title><rect x="5.5224%" y="3829" width="0.0256%" height="15" fill="rgb(249,174,33)" fg:x="1296" fg:w="6"/><text x="5.7724%" y="3839.50"></text></g><g><title>[ld-linux-x86-64.so.2] (5 samples, 0.02%)</title><rect x="5.6076%" y="3829" width="0.0213%" height="15" fill="rgb(233,201,37)" fg:x="1316" fg:w="5"/><text x="5.8576%" y="3839.50"></text></g><g><title>[unknown] (9 samples, 0.04%)</title><rect x="5.6076%" y="3845" width="0.0384%" height="15" fill="rgb(221,78,26)" fg:x="1316" fg:w="9"/><text x="5.8576%" y="3855.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="5.6289%" y="3829" width="0.0170%" height="15" fill="rgb(250,127,30)" fg:x="1321" fg:w="4"/><text x="5.8789%" y="3839.50"></text></g><g><title>gnuplot (1,290 samples, 5.50%)</title><rect x="0.2003%" y="3861" width="5.4968%" height="15" fill="rgb(230,49,44)" fg:x="47" fg:w="1290"/><text x="0.4503%" y="3871.50">gnuplot</text></g><g><title>read (11 samples, 0.05%)</title><rect x="5.6502%" y="3845" width="0.0469%" height="15" fill="rgb(229,67,23)" fg:x="1326" fg:w="11"/><text x="5.9002%" y="3855.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="5.6971%" y="3829" width="0.0213%" height="15" fill="rgb(249,83,47)" fg:x="1337" fg:w="5"/><text x="5.9471%" y="3839.50"></text></g><g><title>[[heap]] (11 samples, 0.05%)</title><rect x="5.6971%" y="3845" width="0.0469%" height="15" fill="rgb(215,43,3)" fg:x="1337" fg:w="11"/><text x="5.9471%" y="3855.50"></text></g><g><title>malloc (3 samples, 0.01%)</title><rect x="5.7568%" y="3829" width="0.0128%" height="15" fill="rgb(238,154,13)" fg:x="1351" fg:w="3"/><text x="6.0068%" y="3839.50"></text></g><g><title>[[stack]] (7 samples, 0.03%)</title><rect x="5.7440%" y="3845" width="0.0298%" height="15" fill="rgb(219,56,2)" fg:x="1348" fg:w="7"/><text x="5.9940%" y="3855.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="5.7866%" y="3829" width="0.0128%" height="15" fill="rgb(233,0,4)" fg:x="1358" fg:w="3"/><text x="6.0366%" y="3839.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="5.8122%" y="3829" width="0.0213%" height="15" fill="rgb(235,30,7)" fg:x="1364" fg:w="5"/><text x="6.0622%" y="3839.50"></text></g><g><title>oorandom::Rand64::rand_range (48 samples, 0.20%)</title><rect x="5.8335%" y="3829" width="0.2045%" height="15" fill="rgb(250,79,13)" fg:x="1369" fg:w="48"/><text x="6.0835%" y="3839.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="6.0423%" y="3829" width="0.0298%" height="15" fill="rgb(211,146,34)" fg:x="1418" fg:w="7"/><text x="6.2923%" y="3839.50"></text></g><g><title>[anon] (72 samples, 0.31%)</title><rect x="5.7738%" y="3845" width="0.3068%" height="15" fill="rgb(228,22,38)" fg:x="1355" fg:w="72"/><text x="6.0238%" y="3855.50"></text></g><g><title>[ld-linux-x86-64.so.2] (6 samples, 0.03%)</title><rect x="6.0806%" y="3845" width="0.0256%" height="15" fill="rgb(235,168,5)" fg:x="1427" fg:w="6"/><text x="6.3306%" y="3855.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (16 samples, 0.07%)</title><rect x="6.1658%" y="3141" width="0.0682%" height="15" fill="rgb(221,155,16)" fg:x="1447" fg:w="16"/><text x="6.4158%" y="3151.50"></text></g><g><title>std::f64::<impl f64>::exp (16 samples, 0.07%)</title><rect x="6.1658%" y="3125" width="0.0682%" height="15" fill="rgb(215,215,53)" fg:x="1447" fg:w="16"/><text x="6.4158%" y="3135.50"></text></g><g><title>exp (15 samples, 0.06%)</title><rect x="6.1701%" y="3109" width="0.0639%" height="15" fill="rgb(223,4,10)" fg:x="1448" fg:w="15"/><text x="6.4201%" y="3119.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="6.1829%" y="3093" width="0.0511%" height="15" fill="rgb(234,103,6)" fg:x="1451" fg:w="12"/><text x="6.4329%" y="3103.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (8 samples, 0.03%)</title><rect x="6.2340%" y="3141" width="0.0341%" height="15" fill="rgb(227,97,0)" fg:x="1463" fg:w="8"/><text x="6.4840%" y="3151.50"></text></g><g><title>core::f64::<impl f64>::recip (8 samples, 0.03%)</title><rect x="6.2340%" y="3125" width="0.0341%" height="15" fill="rgb(234,150,53)" fg:x="1463" fg:w="8"/><text x="6.4840%" y="3135.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (26 samples, 0.11%)</title><rect x="6.1658%" y="3157" width="0.1108%" height="15" fill="rgb(228,201,54)" fg:x="1447" fg:w="26"/><text x="6.4158%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (27 samples, 0.12%)</title><rect x="6.1658%" y="3333" width="0.1151%" height="15" fill="rgb(222,22,37)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3343.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (27 samples, 0.12%)</title><rect x="6.1658%" y="3317" width="0.1151%" height="15" fill="rgb(237,53,32)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (27 samples, 0.12%)</title><rect x="6.1658%" y="3301" width="0.1151%" height="15" fill="rgb(233,25,53)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3311.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (27 samples, 0.12%)</title><rect x="6.1658%" y="3285" width="0.1151%" height="15" fill="rgb(210,40,34)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3295.50"></text></g><g><title>core::option::Option<T>::map (27 samples, 0.12%)</title><rect x="6.1658%" y="3269" width="0.1151%" height="15" fill="rgb(241,220,44)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3279.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (27 samples, 0.12%)</title><rect x="6.1658%" y="3253" width="0.1151%" height="15" fill="rgb(235,28,35)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3263.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (27 samples, 0.12%)</title><rect x="6.1658%" y="3237" width="0.1151%" height="15" fill="rgb(210,56,17)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3247.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (27 samples, 0.12%)</title><rect x="6.1658%" y="3221" width="0.1151%" height="15" fill="rgb(224,130,29)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3231.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (27 samples, 0.12%)</title><rect x="6.1658%" y="3205" width="0.1151%" height="15" fill="rgb(235,212,8)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3215.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (27 samples, 0.12%)</title><rect x="6.1658%" y="3189" width="0.1151%" height="15" fill="rgb(223,33,50)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3199.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (27 samples, 0.12%)</title><rect x="6.1658%" y="3173" width="0.1151%" height="15" fill="rgb(219,149,13)" fg:x="1447" fg:w="27"/><text x="6.4158%" y="3183.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="6.2894%" y="3029" width="0.0469%" height="15" fill="rgb(250,156,29)" fg:x="1476" fg:w="11"/><text x="6.5394%" y="3039.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="6.2894%" y="3013" width="0.0469%" height="15" fill="rgb(216,193,19)" fg:x="1476" fg:w="11"/><text x="6.5394%" y="3023.50"></text></g><g><title>exp (11 samples, 0.05%)</title><rect x="6.2894%" y="2997" width="0.0469%" height="15" fill="rgb(216,135,14)" fg:x="1476" fg:w="11"/><text x="6.5394%" y="3007.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="6.2979%" y="2981" width="0.0384%" height="15" fill="rgb(241,47,5)" fg:x="1478" fg:w="9"/><text x="6.5479%" y="2991.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="6.3363%" y="3029" width="0.0426%" height="15" fill="rgb(233,42,35)" fg:x="1487" fg:w="10"/><text x="6.5863%" y="3039.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="6.3363%" y="3013" width="0.0426%" height="15" fill="rgb(231,13,6)" fg:x="1487" fg:w="10"/><text x="6.5863%" y="3023.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (26 samples, 0.11%)</title><rect x="6.2894%" y="3045" width="0.1108%" height="15" fill="rgb(207,181,40)" fg:x="1476" fg:w="26"/><text x="6.5394%" y="3055.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="6.3789%" y="3029" width="0.0213%" height="15" fill="rgb(254,173,49)" fg:x="1497" fg:w="5"/><text x="6.6289%" y="3039.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="6.3789%" y="3013" width="0.0213%" height="15" fill="rgb(221,1,38)" fg:x="1497" fg:w="5"/><text x="6.6289%" y="3023.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (29 samples, 0.12%)</title><rect x="6.2894%" y="3205" width="0.1236%" height="15" fill="rgb(206,124,46)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (29 samples, 0.12%)</title><rect x="6.2894%" y="3189" width="0.1236%" height="15" fill="rgb(249,21,11)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3199.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (29 samples, 0.12%)</title><rect x="6.2894%" y="3173" width="0.1236%" height="15" fill="rgb(222,201,40)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3183.50"></text></g><g><title>core::option::Option<T>::map (29 samples, 0.12%)</title><rect x="6.2894%" y="3157" width="0.1236%" height="15" fill="rgb(235,61,29)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3167.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (29 samples, 0.12%)</title><rect x="6.2894%" y="3141" width="0.1236%" height="15" fill="rgb(219,207,3)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3151.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (29 samples, 0.12%)</title><rect x="6.2894%" y="3125" width="0.1236%" height="15" fill="rgb(222,56,46)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3135.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (29 samples, 0.12%)</title><rect x="6.2894%" y="3109" width="0.1236%" height="15" fill="rgb(239,76,54)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3119.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (29 samples, 0.12%)</title><rect x="6.2894%" y="3093" width="0.1236%" height="15" fill="rgb(231,124,27)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3103.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (29 samples, 0.12%)</title><rect x="6.2894%" y="3077" width="0.1236%" height="15" fill="rgb(249,195,6)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3087.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (29 samples, 0.12%)</title><rect x="6.2894%" y="3061" width="0.1236%" height="15" fill="rgb(237,174,47)" fg:x="1476" fg:w="29"/><text x="6.5394%" y="3071.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="6.4002%" y="3045" width="0.0128%" height="15" fill="rgb(206,201,31)" fg:x="1502" fg:w="3"/><text x="6.6502%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (33 samples, 0.14%)</title><rect x="6.2894%" y="3221" width="0.1406%" height="15" fill="rgb(231,57,52)" fg:x="1476" fg:w="33"/><text x="6.5394%" y="3231.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="6.4130%" y="3205" width="0.0170%" height="15" fill="rgb(248,177,22)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3215.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="6.4130%" y="3189" width="0.0170%" height="15" fill="rgb(215,211,37)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3199.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="6.4130%" y="3173" width="0.0170%" height="15" fill="rgb(241,128,51)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3183.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="6.4130%" y="3157" width="0.0170%" height="15" fill="rgb(227,165,31)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3167.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="6.4130%" y="3141" width="0.0170%" height="15" fill="rgb(228,167,24)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3151.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="6.4130%" y="3125" width="0.0170%" height="15" fill="rgb(228,143,12)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3135.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="6.4130%" y="3109" width="0.0170%" height="15" fill="rgb(249,149,8)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3119.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="6.4130%" y="3093" width="0.0170%" height="15" fill="rgb(243,35,44)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3103.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="6.4130%" y="3077" width="0.0170%" height="15" fill="rgb(246,89,9)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3087.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="6.4130%" y="3061" width="0.0170%" height="15" fill="rgb(233,213,13)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3071.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="6.4130%" y="3045" width="0.0170%" height="15" fill="rgb(233,141,41)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3055.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="6.4130%" y="3029" width="0.0170%" height="15" fill="rgb(239,167,4)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3039.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="6.4130%" y="3013" width="0.0170%" height="15" fill="rgb(209,217,16)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3023.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="6.4130%" y="2997" width="0.0170%" height="15" fill="rgb(219,88,35)" fg:x="1505" fg:w="4"/><text x="6.6630%" y="3007.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (12 samples, 0.05%)</title><rect x="6.4300%" y="2917" width="0.0511%" height="15" fill="rgb(220,193,23)" fg:x="1509" fg:w="12"/><text x="6.6800%" y="2927.50"></text></g><g><title>std::f64::<impl f64>::exp (12 samples, 0.05%)</title><rect x="6.4300%" y="2901" width="0.0511%" height="15" fill="rgb(230,90,52)" fg:x="1509" fg:w="12"/><text x="6.6800%" y="2911.50"></text></g><g><title>exp (12 samples, 0.05%)</title><rect x="6.4300%" y="2885" width="0.0511%" height="15" fill="rgb(252,106,19)" fg:x="1509" fg:w="12"/><text x="6.6800%" y="2895.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="6.4300%" y="2869" width="0.0511%" height="15" fill="rgb(206,74,20)" fg:x="1509" fg:w="12"/><text x="6.6800%" y="2879.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (9 samples, 0.04%)</title><rect x="6.4812%" y="2917" width="0.0384%" height="15" fill="rgb(230,138,44)" fg:x="1521" fg:w="9"/><text x="6.7312%" y="2927.50"></text></g><g><title>core::f64::<impl f64>::recip (9 samples, 0.04%)</title><rect x="6.4812%" y="2901" width="0.0384%" height="15" fill="rgb(235,182,43)" fg:x="1521" fg:w="9"/><text x="6.7312%" y="2911.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (35 samples, 0.15%)</title><rect x="6.4300%" y="2933" width="0.1491%" height="15" fill="rgb(242,16,51)" fg:x="1509" fg:w="35"/><text x="6.6800%" y="2943.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (14 samples, 0.06%)</title><rect x="6.5195%" y="2917" width="0.0597%" height="15" fill="rgb(248,9,4)" fg:x="1530" fg:w="14"/><text x="6.7695%" y="2927.50"></text></g><g><title>std::f64::<impl f64>::sqrt (14 samples, 0.06%)</title><rect x="6.5195%" y="2901" width="0.0597%" height="15" fill="rgb(210,31,22)" fg:x="1530" fg:w="14"/><text x="6.7695%" y="2911.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (39 samples, 0.17%)</title><rect x="6.4300%" y="3093" width="0.1662%" height="15" fill="rgb(239,54,39)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (39 samples, 0.17%)</title><rect x="6.4300%" y="3077" width="0.1662%" height="15" fill="rgb(230,99,41)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="3087.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (39 samples, 0.17%)</title><rect x="6.4300%" y="3061" width="0.1662%" height="15" fill="rgb(253,106,12)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="3071.50"></text></g><g><title>core::option::Option<T>::map (39 samples, 0.17%)</title><rect x="6.4300%" y="3045" width="0.1662%" height="15" fill="rgb(213,46,41)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="3055.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (39 samples, 0.17%)</title><rect x="6.4300%" y="3029" width="0.1662%" height="15" fill="rgb(215,133,35)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="3039.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (39 samples, 0.17%)</title><rect x="6.4300%" y="3013" width="0.1662%" height="15" fill="rgb(213,28,5)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="3023.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (39 samples, 0.17%)</title><rect x="6.4300%" y="2997" width="0.1662%" height="15" fill="rgb(215,77,49)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="3007.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (39 samples, 0.17%)</title><rect x="6.4300%" y="2981" width="0.1662%" height="15" fill="rgb(248,100,22)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="2991.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (39 samples, 0.17%)</title><rect x="6.4300%" y="2965" width="0.1662%" height="15" fill="rgb(208,67,9)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="2975.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (39 samples, 0.17%)</title><rect x="6.4300%" y="2949" width="0.1662%" height="15" fill="rgb(219,133,21)" fg:x="1509" fg:w="39"/><text x="6.6800%" y="2959.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="6.5792%" y="2933" width="0.0170%" height="15" fill="rgb(246,46,29)" fg:x="1544" fg:w="4"/><text x="6.8292%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (40 samples, 0.17%)</title><rect x="6.4300%" y="3109" width="0.1704%" height="15" fill="rgb(246,185,52)" fg:x="1509" fg:w="40"/><text x="6.6800%" y="3119.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (16 samples, 0.07%)</title><rect x="6.6090%" y="2805" width="0.0682%" height="15" fill="rgb(252,136,11)" fg:x="1551" fg:w="16"/><text x="6.8590%" y="2815.50"></text></g><g><title>std::f64::<impl f64>::exp (16 samples, 0.07%)</title><rect x="6.6090%" y="2789" width="0.0682%" height="15" fill="rgb(219,138,53)" fg:x="1551" fg:w="16"/><text x="6.8590%" y="2799.50"></text></g><g><title>exp (16 samples, 0.07%)</title><rect x="6.6090%" y="2773" width="0.0682%" height="15" fill="rgb(211,51,23)" fg:x="1551" fg:w="16"/><text x="6.8590%" y="2783.50"></text></g><g><title>[libm.so.6] (13 samples, 0.06%)</title><rect x="6.6218%" y="2757" width="0.0554%" height="15" fill="rgb(247,221,28)" fg:x="1554" fg:w="13"/><text x="6.8718%" y="2767.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="6.6772%" y="2805" width="0.0213%" height="15" fill="rgb(251,222,45)" fg:x="1567" fg:w="5"/><text x="6.9272%" y="2815.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="6.6772%" y="2789" width="0.0213%" height="15" fill="rgb(217,162,53)" fg:x="1567" fg:w="5"/><text x="6.9272%" y="2799.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (31 samples, 0.13%)</title><rect x="6.6005%" y="2821" width="0.1321%" height="15" fill="rgb(229,93,14)" fg:x="1549" fg:w="31"/><text x="6.8505%" y="2831.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (8 samples, 0.03%)</title><rect x="6.6985%" y="2805" width="0.0341%" height="15" fill="rgb(209,67,49)" fg:x="1572" fg:w="8"/><text x="6.9485%" y="2815.50"></text></g><g><title>std::f64::<impl f64>::sqrt (8 samples, 0.03%)</title><rect x="6.6985%" y="2789" width="0.0341%" height="15" fill="rgb(213,87,29)" fg:x="1572" fg:w="8"/><text x="6.9485%" y="2799.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (35 samples, 0.15%)</title><rect x="6.6005%" y="2981" width="0.1491%" height="15" fill="rgb(205,151,52)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (35 samples, 0.15%)</title><rect x="6.6005%" y="2965" width="0.1491%" height="15" fill="rgb(253,215,39)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2975.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (35 samples, 0.15%)</title><rect x="6.6005%" y="2949" width="0.1491%" height="15" fill="rgb(221,220,41)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2959.50"></text></g><g><title>core::option::Option<T>::map (35 samples, 0.15%)</title><rect x="6.6005%" y="2933" width="0.1491%" height="15" fill="rgb(218,133,21)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2943.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (35 samples, 0.15%)</title><rect x="6.6005%" y="2917" width="0.1491%" height="15" fill="rgb(221,193,43)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2927.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (35 samples, 0.15%)</title><rect x="6.6005%" y="2901" width="0.1491%" height="15" fill="rgb(240,128,52)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (35 samples, 0.15%)</title><rect x="6.6005%" y="2885" width="0.1491%" height="15" fill="rgb(253,114,12)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2895.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (35 samples, 0.15%)</title><rect x="6.6005%" y="2869" width="0.1491%" height="15" fill="rgb(215,223,47)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2879.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (35 samples, 0.15%)</title><rect x="6.6005%" y="2853" width="0.1491%" height="15" fill="rgb(248,225,23)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2863.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (35 samples, 0.15%)</title><rect x="6.6005%" y="2837" width="0.1491%" height="15" fill="rgb(250,108,0)" fg:x="1549" fg:w="35"/><text x="6.8505%" y="2847.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="6.7326%" y="2821" width="0.0170%" height="15" fill="rgb(228,208,7)" fg:x="1580" fg:w="4"/><text x="6.9826%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (36 samples, 0.15%)</title><rect x="6.6005%" y="2997" width="0.1534%" height="15" fill="rgb(244,45,10)" fg:x="1549" fg:w="36"/><text x="6.8505%" y="3007.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="6.7539%" y="2693" width="0.0128%" height="15" fill="rgb(207,125,25)" fg:x="1585" fg:w="3"/><text x="7.0039%" y="2703.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="6.7539%" y="2677" width="0.0128%" height="15" fill="rgb(210,195,18)" fg:x="1585" fg:w="3"/><text x="7.0039%" y="2687.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="6.7539%" y="2661" width="0.0128%" height="15" fill="rgb(249,80,12)" fg:x="1585" fg:w="3"/><text x="7.0039%" y="2671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="6.7539%" y="2645" width="0.0128%" height="15" fill="rgb(221,65,9)" fg:x="1585" fg:w="3"/><text x="7.0039%" y="2655.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="6.7539%" y="2709" width="0.0170%" height="15" fill="rgb(235,49,36)" fg:x="1585" fg:w="4"/><text x="7.0039%" y="2719.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="6.7539%" y="2869" width="0.0213%" height="15" fill="rgb(225,32,20)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="6.7539%" y="2853" width="0.0213%" height="15" fill="rgb(215,141,46)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2863.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="6.7539%" y="2837" width="0.0213%" height="15" fill="rgb(250,160,47)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2847.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="6.7539%" y="2821" width="0.0213%" height="15" fill="rgb(216,222,40)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2831.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="6.7539%" y="2805" width="0.0213%" height="15" fill="rgb(234,217,39)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2815.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="6.7539%" y="2789" width="0.0213%" height="15" fill="rgb(207,178,40)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2799.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="6.7539%" y="2773" width="0.0213%" height="15" fill="rgb(221,136,13)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="6.7539%" y="2757" width="0.0213%" height="15" fill="rgb(249,199,10)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2767.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="6.7539%" y="2741" width="0.0213%" height="15" fill="rgb(249,222,13)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2751.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="6.7539%" y="2725" width="0.0213%" height="15" fill="rgb(244,185,38)" fg:x="1585" fg:w="5"/><text x="7.0039%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="6.7539%" y="2885" width="0.0298%" height="15" fill="rgb(236,202,9)" fg:x="1585" fg:w="7"/><text x="7.0039%" y="2895.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="6.7837%" y="2837" width="0.0128%" height="15" fill="rgb(250,229,37)" fg:x="1592" fg:w="3"/><text x="7.0337%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="6.7837%" y="2821" width="0.0128%" height="15" fill="rgb(206,174,23)" fg:x="1592" fg:w="3"/><text x="7.0337%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="6.7837%" y="2805" width="0.0128%" height="15" fill="rgb(211,33,43)" fg:x="1592" fg:w="3"/><text x="7.0337%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.7837%" y="2789" width="0.0128%" height="15" fill="rgb(245,58,50)" fg:x="1592" fg:w="3"/><text x="7.0337%" y="2799.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="6.7539%" y="2949" width="0.0554%" height="15" fill="rgb(244,68,36)" fg:x="1585" fg:w="13"/><text x="7.0039%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="6.7539%" y="2933" width="0.0554%" height="15" fill="rgb(232,229,15)" fg:x="1585" fg:w="13"/><text x="7.0039%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="6.7539%" y="2917" width="0.0554%" height="15" fill="rgb(254,30,23)" fg:x="1585" fg:w="13"/><text x="7.0039%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="6.7539%" y="2901" width="0.0554%" height="15" fill="rgb(235,160,14)" fg:x="1585" fg:w="13"/><text x="7.0039%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="6.7837%" y="2885" width="0.0256%" height="15" fill="rgb(212,155,44)" fg:x="1592" fg:w="6"/><text x="7.0337%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="6.7837%" y="2869" width="0.0256%" height="15" fill="rgb(226,2,50)" fg:x="1592" fg:w="6"/><text x="7.0337%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="6.7837%" y="2853" width="0.0256%" height="15" fill="rgb(234,177,6)" fg:x="1592" fg:w="6"/><text x="7.0337%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="6.7965%" y="2837" width="0.0128%" height="15" fill="rgb(217,24,9)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="6.7965%" y="2821" width="0.0128%" height="15" fill="rgb(220,13,46)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2831.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="6.7965%" y="2805" width="0.0128%" height="15" fill="rgb(239,221,27)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="6.7965%" y="2789" width="0.0128%" height="15" fill="rgb(222,198,25)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="6.7965%" y="2773" width="0.0128%" height="15" fill="rgb(211,99,13)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="6.7965%" y="2757" width="0.0128%" height="15" fill="rgb(232,111,31)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="6.7965%" y="2741" width="0.0128%" height="15" fill="rgb(245,82,37)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.7965%" y="2725" width="0.0128%" height="15" fill="rgb(227,149,46)" fg:x="1595" fg:w="3"/><text x="7.0465%" y="2735.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="6.8221%" y="1909" width="0.0170%" height="15" fill="rgb(218,36,50)" fg:x="1601" fg:w="4"/><text x="7.0721%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8221%" y="1893" width="0.0170%" height="15" fill="rgb(226,80,48)" fg:x="1601" fg:w="4"/><text x="7.0721%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8221%" y="1877" width="0.0170%" height="15" fill="rgb(238,224,15)" fg:x="1601" fg:w="4"/><text x="7.0721%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="6.8221%" y="1861" width="0.0170%" height="15" fill="rgb(241,136,10)" fg:x="1601" fg:w="4"/><text x="7.0721%" y="1871.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="6.8221%" y="1845" width="0.0170%" height="15" fill="rgb(208,32,45)" fg:x="1601" fg:w="4"/><text x="7.0721%" y="1855.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="6.8221%" y="1829" width="0.0170%" height="15" fill="rgb(207,135,9)" fg:x="1601" fg:w="4"/><text x="7.0721%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8221%" y="1813" width="0.0170%" height="15" fill="rgb(206,86,44)" fg:x="1601" fg:w="4"/><text x="7.0721%" y="1823.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10 samples, 0.04%)</title><rect x="6.8135%" y="2373" width="0.0426%" height="15" fill="rgb(245,177,15)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="6.8135%" y="2357" width="0.0426%" height="15" fill="rgb(206,64,50)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (10 samples, 0.04%)</title><rect x="6.8135%" y="2341" width="0.0426%" height="15" fill="rgb(234,36,40)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2351.50"></text></g><g><title>rayon_core::job::JobRef::execute (10 samples, 0.04%)</title><rect x="6.8135%" y="2325" width="0.0426%" height="15" fill="rgb(213,64,8)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2335.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (10 samples, 0.04%)</title><rect x="6.8135%" y="2309" width="0.0426%" height="15" fill="rgb(210,75,36)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2319.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (10 samples, 0.04%)</title><rect x="6.8135%" y="2293" width="0.0426%" height="15" fill="rgb(229,88,21)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2303.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="6.8135%" y="2277" width="0.0426%" height="15" fill="rgb(252,204,47)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2287.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="6.8135%" y="2261" width="0.0426%" height="15" fill="rgb(208,77,27)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2271.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="6.8135%" y="2245" width="0.0426%" height="15" fill="rgb(221,76,26)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2255.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="6.8135%" y="2229" width="0.0426%" height="15" fill="rgb(225,139,18)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2239.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="6.8135%" y="2213" width="0.0426%" height="15" fill="rgb(230,137,11)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2223.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (10 samples, 0.04%)</title><rect x="6.8135%" y="2197" width="0.0426%" height="15" fill="rgb(212,28,1)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="6.8135%" y="2181" width="0.0426%" height="15" fill="rgb(248,164,17)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="6.8135%" y="2165" width="0.0426%" height="15" fill="rgb(222,171,42)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="6.8135%" y="2149" width="0.0426%" height="15" fill="rgb(243,84,45)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2159.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="6.8135%" y="2133" width="0.0426%" height="15" fill="rgb(252,49,23)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2143.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="6.8135%" y="2117" width="0.0426%" height="15" fill="rgb(215,19,7)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="6.8135%" y="2101" width="0.0426%" height="15" fill="rgb(238,81,41)" fg:x="1599" fg:w="10"/><text x="7.0635%" y="2111.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="6.8221%" y="2085" width="0.0341%" height="15" fill="rgb(210,199,37)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="2095.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="6.8221%" y="2069" width="0.0341%" height="15" fill="rgb(244,192,49)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="2079.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="6.8221%" y="2053" width="0.0341%" height="15" fill="rgb(226,211,11)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="2063.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="6.8221%" y="2037" width="0.0341%" height="15" fill="rgb(236,162,54)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="2047.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="6.8221%" y="2021" width="0.0341%" height="15" fill="rgb(220,229,9)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="6.8221%" y="2005" width="0.0341%" height="15" fill="rgb(250,87,22)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="6.8221%" y="1989" width="0.0341%" height="15" fill="rgb(239,43,17)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="6.8221%" y="1973" width="0.0341%" height="15" fill="rgb(231,177,25)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="6.8221%" y="1957" width="0.0341%" height="15" fill="rgb(219,179,1)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="6.8221%" y="1941" width="0.0341%" height="15" fill="rgb(238,219,53)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="6.8221%" y="1925" width="0.0341%" height="15" fill="rgb(232,167,36)" fg:x="1601" fg:w="8"/><text x="7.0721%" y="1935.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="6.8391%" y="1909" width="0.0170%" height="15" fill="rgb(244,19,51)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1919.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="6.8391%" y="1893" width="0.0170%" height="15" fill="rgb(224,6,22)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1903.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="6.8391%" y="1877" width="0.0170%" height="15" fill="rgb(224,145,5)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1887.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="6.8391%" y="1861" width="0.0170%" height="15" fill="rgb(234,130,49)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1871.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="6.8391%" y="1845" width="0.0170%" height="15" fill="rgb(254,6,2)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8391%" y="1829" width="0.0170%" height="15" fill="rgb(208,96,46)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8391%" y="1813" width="0.0170%" height="15" fill="rgb(239,3,39)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="6.8391%" y="1797" width="0.0170%" height="15" fill="rgb(233,210,1)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="6.8391%" y="1781" width="0.0170%" height="15" fill="rgb(244,137,37)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="6.8391%" y="1765" width="0.0170%" height="15" fill="rgb(240,136,2)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8391%" y="1749" width="0.0170%" height="15" fill="rgb(239,18,37)" fg:x="1605" fg:w="4"/><text x="7.0891%" y="1759.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="6.8093%" y="2661" width="0.0639%" height="15" fill="rgb(218,185,22)" fg:x="1598" fg:w="15"/><text x="7.0593%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="6.8093%" y="2645" width="0.0639%" height="15" fill="rgb(225,218,4)" fg:x="1598" fg:w="15"/><text x="7.0593%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="6.8093%" y="2629" width="0.0639%" height="15" fill="rgb(230,182,32)" fg:x="1598" fg:w="15"/><text x="7.0593%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="6.8093%" y="2613" width="0.0639%" height="15" fill="rgb(242,56,43)" fg:x="1598" fg:w="15"/><text x="7.0593%" y="2623.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="6.8135%" y="2597" width="0.0597%" height="15" fill="rgb(233,99,24)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2607.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="6.8135%" y="2581" width="0.0597%" height="15" fill="rgb(234,209,42)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="6.8135%" y="2565" width="0.0597%" height="15" fill="rgb(227,7,12)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="6.8135%" y="2549" width="0.0597%" height="15" fill="rgb(245,203,43)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="6.8135%" y="2533" width="0.0597%" height="15" fill="rgb(238,205,33)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2543.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="6.8135%" y="2517" width="0.0597%" height="15" fill="rgb(231,56,7)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="6.8135%" y="2501" width="0.0597%" height="15" fill="rgb(244,186,29)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="6.8135%" y="2485" width="0.0597%" height="15" fill="rgb(234,111,31)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="6.8135%" y="2469" width="0.0597%" height="15" fill="rgb(241,149,10)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="6.8135%" y="2453" width="0.0597%" height="15" fill="rgb(249,206,44)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="6.8135%" y="2437" width="0.0597%" height="15" fill="rgb(251,153,30)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2447.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="6.8135%" y="2421" width="0.0597%" height="15" fill="rgb(239,152,38)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2431.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="6.8135%" y="2405" width="0.0597%" height="15" fill="rgb(249,139,47)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="6.8135%" y="2389" width="0.0597%" height="15" fill="rgb(244,64,35)" fg:x="1599" fg:w="14"/><text x="7.0635%" y="2399.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="6.8561%" y="2373" width="0.0170%" height="15" fill="rgb(216,46,15)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2383.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="6.8561%" y="2357" width="0.0170%" height="15" fill="rgb(250,74,19)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2367.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="6.8561%" y="2341" width="0.0170%" height="15" fill="rgb(249,42,33)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2351.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="6.8561%" y="2325" width="0.0170%" height="15" fill="rgb(242,149,17)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2335.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="6.8561%" y="2309" width="0.0170%" height="15" fill="rgb(244,29,21)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8561%" y="2293" width="0.0170%" height="15" fill="rgb(220,130,37)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8561%" y="2277" width="0.0170%" height="15" fill="rgb(211,67,2)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="6.8561%" y="2261" width="0.0170%" height="15" fill="rgb(235,68,52)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="6.8561%" y="2245" width="0.0170%" height="15" fill="rgb(246,142,3)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="6.8561%" y="2229" width="0.0170%" height="15" fill="rgb(241,25,7)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8561%" y="2213" width="0.0170%" height="15" fill="rgb(242,119,39)" fg:x="1609" fg:w="4"/><text x="7.1061%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="6.8817%" y="2373" width="0.0170%" height="15" fill="rgb(241,98,45)" fg:x="1615" fg:w="4"/><text x="7.1317%" y="2383.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8817%" y="2357" width="0.0170%" height="15" fill="rgb(254,28,30)" fg:x="1615" fg:w="4"/><text x="7.1317%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8817%" y="2341" width="0.0170%" height="15" fill="rgb(241,142,54)" fg:x="1615" fg:w="4"/><text x="7.1317%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="6.8817%" y="2325" width="0.0170%" height="15" fill="rgb(222,85,15)" fg:x="1615" fg:w="4"/><text x="7.1317%" y="2335.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="6.8817%" y="2309" width="0.0170%" height="15" fill="rgb(210,85,47)" fg:x="1615" fg:w="4"/><text x="7.1317%" y="2319.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="6.8817%" y="2293" width="0.0170%" height="15" fill="rgb(224,206,25)" fg:x="1615" fg:w="4"/><text x="7.1317%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="6.8817%" y="2277" width="0.0170%" height="15" fill="rgb(243,201,19)" fg:x="1615" fg:w="4"/><text x="7.1317%" y="2287.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="6.8817%" y="2485" width="0.0384%" height="15" fill="rgb(236,59,4)" fg:x="1615" fg:w="9"/><text x="7.1317%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="6.8817%" y="2469" width="0.0384%" height="15" fill="rgb(254,179,45)" fg:x="1615" fg:w="9"/><text x="7.1317%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="6.8817%" y="2453" width="0.0384%" height="15" fill="rgb(226,14,10)" fg:x="1615" fg:w="9"/><text x="7.1317%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="6.8817%" y="2437" width="0.0384%" height="15" fill="rgb(244,27,41)" fg:x="1615" fg:w="9"/><text x="7.1317%" y="2447.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="6.8817%" y="2421" width="0.0384%" height="15" fill="rgb(235,35,32)" fg:x="1615" fg:w="9"/><text x="7.1317%" y="2431.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="6.8817%" y="2405" width="0.0384%" height="15" fill="rgb(218,68,31)" fg:x="1615" fg:w="9"/><text x="7.1317%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="6.8817%" y="2389" width="0.0384%" height="15" fill="rgb(207,120,37)" fg:x="1615" fg:w="9"/><text x="7.1317%" y="2399.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="6.8988%" y="2373" width="0.0213%" height="15" fill="rgb(227,98,0)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2383.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="6.8988%" y="2357" width="0.0213%" height="15" fill="rgb(207,7,3)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2367.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="6.8988%" y="2341" width="0.0213%" height="15" fill="rgb(206,98,19)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2351.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="6.8988%" y="2325" width="0.0213%" height="15" fill="rgb(217,5,26)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2335.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="6.8988%" y="2309" width="0.0213%" height="15" fill="rgb(235,190,38)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="6.8988%" y="2293" width="0.0213%" height="15" fill="rgb(247,86,24)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="6.8988%" y="2277" width="0.0213%" height="15" fill="rgb(205,101,16)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.8988%" y="2261" width="0.0213%" height="15" fill="rgb(246,168,33)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="6.8988%" y="2245" width="0.0213%" height="15" fill="rgb(231,114,1)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.8988%" y="2229" width="0.0213%" height="15" fill="rgb(207,184,53)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="6.8988%" y="2213" width="0.0213%" height="15" fill="rgb(224,95,51)" fg:x="1619" fg:w="5"/><text x="7.1488%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="6.9073%" y="2197" width="0.0128%" height="15" fill="rgb(212,188,45)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="6.9073%" y="2181" width="0.0128%" height="15" fill="rgb(223,154,38)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2191.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="6.9073%" y="2165" width="0.0128%" height="15" fill="rgb(251,22,52)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="6.9073%" y="2149" width="0.0128%" height="15" fill="rgb(229,209,22)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="6.9073%" y="2133" width="0.0128%" height="15" fill="rgb(234,138,34)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="6.9073%" y="2117" width="0.0128%" height="15" fill="rgb(212,95,11)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="6.9073%" y="2101" width="0.0128%" height="15" fill="rgb(240,179,47)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.9073%" y="2085" width="0.0128%" height="15" fill="rgb(240,163,11)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="6.9073%" y="2069" width="0.0128%" height="15" fill="rgb(236,37,12)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="6.9073%" y="2053" width="0.0128%" height="15" fill="rgb(232,164,16)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="6.9073%" y="2037" width="0.0128%" height="15" fill="rgb(244,205,15)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="6.9073%" y="2021" width="0.0128%" height="15" fill="rgb(223,117,47)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="6.9073%" y="2005" width="0.0128%" height="15" fill="rgb(244,107,35)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="6.9073%" y="1989" width="0.0128%" height="15" fill="rgb(205,140,8)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="6.9073%" y="1973" width="0.0128%" height="15" fill="rgb(228,84,46)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="6.9073%" y="1957" width="0.0128%" height="15" fill="rgb(254,188,9)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="6.9073%" y="1941" width="0.0128%" height="15" fill="rgb(206,112,54)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="6.9073%" y="1925" width="0.0128%" height="15" fill="rgb(216,84,49)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="6.9073%" y="1909" width="0.0128%" height="15" fill="rgb(214,194,35)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="6.9073%" y="1893" width="0.0128%" height="15" fill="rgb(249,28,3)" fg:x="1621" fg:w="3"/><text x="7.1573%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="6.9201%" y="2309" width="0.0170%" height="15" fill="rgb(222,56,52)" fg:x="1624" fg:w="4"/><text x="7.1701%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="6.9201%" y="2293" width="0.0170%" height="15" fill="rgb(245,217,50)" fg:x="1624" fg:w="4"/><text x="7.1701%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="6.9201%" y="2277" width="0.0170%" height="15" fill="rgb(213,201,24)" fg:x="1624" fg:w="4"/><text x="7.1701%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="6.9201%" y="2261" width="0.0170%" height="15" fill="rgb(248,116,28)" fg:x="1624" fg:w="4"/><text x="7.1701%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="6.9201%" y="2245" width="0.0170%" height="15" fill="rgb(219,72,43)" fg:x="1624" fg:w="4"/><text x="7.1701%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="6.9201%" y="2229" width="0.0170%" height="15" fill="rgb(209,138,14)" fg:x="1624" fg:w="4"/><text x="7.1701%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="6.9201%" y="2213" width="0.0170%" height="15" fill="rgb(222,18,33)" fg:x="1624" fg:w="4"/><text x="7.1701%" y="2223.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (33 samples, 0.14%)</title><rect x="6.8093%" y="2949" width="0.1406%" height="15" fill="rgb(213,199,7)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33 samples, 0.14%)</title><rect x="6.8093%" y="2933" width="0.1406%" height="15" fill="rgb(250,110,10)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2943.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (33 samples, 0.14%)</title><rect x="6.8093%" y="2917" width="0.1406%" height="15" fill="rgb(248,123,6)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2927.50"></text></g><g><title>rayon_core::job::JobRef::execute (33 samples, 0.14%)</title><rect x="6.8093%" y="2901" width="0.1406%" height="15" fill="rgb(206,91,31)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2911.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (33 samples, 0.14%)</title><rect x="6.8093%" y="2885" width="0.1406%" height="15" fill="rgb(211,154,13)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2895.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (33 samples, 0.14%)</title><rect x="6.8093%" y="2869" width="0.1406%" height="15" fill="rgb(225,148,7)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2879.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (33 samples, 0.14%)</title><rect x="6.8093%" y="2853" width="0.1406%" height="15" fill="rgb(220,160,43)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2863.50"></text></g><g><title>std::panic::catch_unwind (33 samples, 0.14%)</title><rect x="6.8093%" y="2837" width="0.1406%" height="15" fill="rgb(213,52,39)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2847.50"></text></g><g><title>std::panicking::try (33 samples, 0.14%)</title><rect x="6.8093%" y="2821" width="0.1406%" height="15" fill="rgb(243,137,7)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2831.50"></text></g><g><title>std::panicking::try::do_call (33 samples, 0.14%)</title><rect x="6.8093%" y="2805" width="0.1406%" height="15" fill="rgb(230,79,13)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2815.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (33 samples, 0.14%)</title><rect x="6.8093%" y="2789" width="0.1406%" height="15" fill="rgb(247,105,23)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2799.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (33 samples, 0.14%)</title><rect x="6.8093%" y="2773" width="0.1406%" height="15" fill="rgb(223,179,41)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (33 samples, 0.14%)</title><rect x="6.8093%" y="2757" width="0.1406%" height="15" fill="rgb(218,9,34)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (33 samples, 0.14%)</title><rect x="6.8093%" y="2741" width="0.1406%" height="15" fill="rgb(222,106,8)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.14%)</title><rect x="6.8093%" y="2725" width="0.1406%" height="15" fill="rgb(211,220,0)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (33 samples, 0.14%)</title><rect x="6.8093%" y="2709" width="0.1406%" height="15" fill="rgb(229,52,16)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.14%)</title><rect x="6.8093%" y="2693" width="0.1406%" height="15" fill="rgb(212,155,18)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33 samples, 0.14%)</title><rect x="6.8093%" y="2677" width="0.1406%" height="15" fill="rgb(242,21,14)" fg:x="1598" fg:w="33"/><text x="7.0593%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="6.8732%" y="2661" width="0.0767%" height="15" fill="rgb(222,19,48)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="6.8732%" y="2645" width="0.0767%" height="15" fill="rgb(232,45,27)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2655.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="6.8732%" y="2629" width="0.0767%" height="15" fill="rgb(249,103,42)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="6.8732%" y="2613" width="0.0767%" height="15" fill="rgb(246,81,33)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="6.8732%" y="2597" width="0.0767%" height="15" fill="rgb(252,33,42)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18 samples, 0.08%)</title><rect x="6.8732%" y="2581" width="0.0767%" height="15" fill="rgb(209,212,41)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="6.8732%" y="2565" width="0.0767%" height="15" fill="rgb(207,154,6)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="6.8732%" y="2549" width="0.0767%" height="15" fill="rgb(223,64,47)" fg:x="1613" fg:w="18"/><text x="7.1232%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="6.8817%" y="2533" width="0.0682%" height="15" fill="rgb(211,161,38)" fg:x="1615" fg:w="16"/><text x="7.1317%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="6.8817%" y="2517" width="0.0682%" height="15" fill="rgb(219,138,40)" fg:x="1615" fg:w="16"/><text x="7.1317%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="6.8817%" y="2501" width="0.0682%" height="15" fill="rgb(241,228,46)" fg:x="1615" fg:w="16"/><text x="7.1317%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="6.9201%" y="2485" width="0.0298%" height="15" fill="rgb(223,209,38)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="6.9201%" y="2469" width="0.0298%" height="15" fill="rgb(236,164,45)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2479.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="6.9201%" y="2453" width="0.0298%" height="15" fill="rgb(231,15,5)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="6.9201%" y="2437" width="0.0298%" height="15" fill="rgb(252,35,15)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="6.9201%" y="2421" width="0.0298%" height="15" fill="rgb(248,181,18)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="6.9201%" y="2405" width="0.0298%" height="15" fill="rgb(233,39,42)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="6.9201%" y="2389" width="0.0298%" height="15" fill="rgb(238,110,33)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="6.9201%" y="2373" width="0.0298%" height="15" fill="rgb(233,195,10)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="6.9201%" y="2357" width="0.0298%" height="15" fill="rgb(254,105,3)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="6.9201%" y="2341" width="0.0298%" height="15" fill="rgb(221,225,9)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="6.9201%" y="2325" width="0.0298%" height="15" fill="rgb(224,227,45)" fg:x="1624" fg:w="7"/><text x="7.1701%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="6.9371%" y="2309" width="0.0128%" height="15" fill="rgb(229,198,43)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="6.9371%" y="2293" width="0.0128%" height="15" fill="rgb(206,209,35)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2303.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="6.9371%" y="2277" width="0.0128%" height="15" fill="rgb(245,195,53)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="6.9371%" y="2261" width="0.0128%" height="15" fill="rgb(240,92,26)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="6.9371%" y="2245" width="0.0128%" height="15" fill="rgb(207,40,23)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="6.9371%" y="2229" width="0.0128%" height="15" fill="rgb(223,111,35)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="6.9371%" y="2213" width="0.0128%" height="15" fill="rgb(229,147,28)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.9371%" y="2197" width="0.0128%" height="15" fill="rgb(211,29,28)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="6.9371%" y="2181" width="0.0128%" height="15" fill="rgb(228,72,33)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.9371%" y="2165" width="0.0128%" height="15" fill="rgb(205,214,31)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="6.9371%" y="2149" width="0.0128%" height="15" fill="rgb(224,111,15)" fg:x="1628" fg:w="3"/><text x="7.1871%" y="2159.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="6.9499%" y="2629" width="0.0128%" height="15" fill="rgb(253,21,26)" fg:x="1631" fg:w="3"/><text x="7.1999%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="6.9499%" y="2613" width="0.0128%" height="15" fill="rgb(245,139,43)" fg:x="1631" fg:w="3"/><text x="7.1999%" y="2623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="6.9499%" y="2597" width="0.0128%" height="15" fill="rgb(252,170,7)" fg:x="1631" fg:w="3"/><text x="7.1999%" y="2607.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="6.9499%" y="2805" width="0.0341%" height="15" fill="rgb(231,118,14)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="6.9499%" y="2789" width="0.0341%" height="15" fill="rgb(238,83,0)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="6.9499%" y="2773" width="0.0341%" height="15" fill="rgb(221,39,39)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2783.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="6.9499%" y="2757" width="0.0341%" height="15" fill="rgb(222,119,46)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2767.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="6.9499%" y="2741" width="0.0341%" height="15" fill="rgb(222,165,49)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="6.9499%" y="2725" width="0.0341%" height="15" fill="rgb(219,113,52)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="6.9499%" y="2709" width="0.0341%" height="15" fill="rgb(214,7,15)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="6.9499%" y="2693" width="0.0341%" height="15" fill="rgb(235,32,4)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2703.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="6.9499%" y="2677" width="0.0341%" height="15" fill="rgb(238,90,54)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="6.9499%" y="2661" width="0.0341%" height="15" fill="rgb(213,208,19)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="6.9499%" y="2645" width="0.0341%" height="15" fill="rgb(233,156,4)" fg:x="1631" fg:w="8"/><text x="7.1999%" y="2655.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="6.9669%" y="2629" width="0.0170%" height="15" fill="rgb(207,194,5)" fg:x="1635" fg:w="4"/><text x="7.2169%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="6.9669%" y="2613" width="0.0170%" height="15" fill="rgb(206,111,30)" fg:x="1635" fg:w="4"/><text x="7.2169%" y="2623.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="6.9840%" y="2677" width="0.0128%" height="15" fill="rgb(243,70,54)" fg:x="1639" fg:w="3"/><text x="7.2340%" y="2687.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="6.9840%" y="2661" width="0.0128%" height="15" fill="rgb(242,28,8)" fg:x="1639" fg:w="3"/><text x="7.2340%" y="2671.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="6.9840%" y="2645" width="0.0128%" height="15" fill="rgb(219,106,18)" fg:x="1639" fg:w="3"/><text x="7.2340%" y="2655.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="6.9840%" y="2629" width="0.0128%" height="15" fill="rgb(244,222,10)" fg:x="1639" fg:w="3"/><text x="7.2340%" y="2639.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="6.9840%" y="2613" width="0.0128%" height="15" fill="rgb(236,179,52)" fg:x="1639" fg:w="3"/><text x="7.2340%" y="2623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="6.9840%" y="2597" width="0.0128%" height="15" fill="rgb(213,23,39)" fg:x="1639" fg:w="3"/><text x="7.2340%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="6.9499%" y="2821" width="0.0511%" height="15" fill="rgb(238,48,10)" fg:x="1631" fg:w="12"/><text x="7.1999%" y="2831.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="6.9840%" y="2805" width="0.0170%" height="15" fill="rgb(251,196,23)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2815.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="6.9840%" y="2789" width="0.0170%" height="15" fill="rgb(250,152,24)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="6.9840%" y="2773" width="0.0170%" height="15" fill="rgb(209,150,17)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="6.9840%" y="2757" width="0.0170%" height="15" fill="rgb(234,202,34)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2767.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="6.9840%" y="2741" width="0.0170%" height="15" fill="rgb(253,148,53)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2751.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="6.9840%" y="2725" width="0.0170%" height="15" fill="rgb(218,129,16)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2735.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="6.9840%" y="2709" width="0.0170%" height="15" fill="rgb(216,85,19)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2719.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="6.9840%" y="2693" width="0.0170%" height="15" fill="rgb(235,228,7)" fg:x="1639" fg:w="4"/><text x="7.2340%" y="2703.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (99 samples, 0.42%)</title><rect x="6.6005%" y="3061" width="0.4219%" height="15" fill="rgb(245,175,0)" fg:x="1549" fg:w="99"/><text x="6.8505%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (99 samples, 0.42%)</title><rect x="6.6005%" y="3045" width="0.4219%" height="15" fill="rgb(208,168,36)" fg:x="1549" fg:w="99"/><text x="6.8505%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (99 samples, 0.42%)</title><rect x="6.6005%" y="3029" width="0.4219%" height="15" fill="rgb(246,171,24)" fg:x="1549" fg:w="99"/><text x="6.8505%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (99 samples, 0.42%)</title><rect x="6.6005%" y="3013" width="0.4219%" height="15" fill="rgb(215,142,24)" fg:x="1549" fg:w="99"/><text x="6.8505%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (63 samples, 0.27%)</title><rect x="6.7539%" y="2997" width="0.2685%" height="15" fill="rgb(250,187,7)" fg:x="1585" fg:w="63"/><text x="7.0039%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (63 samples, 0.27%)</title><rect x="6.7539%" y="2981" width="0.2685%" height="15" fill="rgb(228,66,33)" fg:x="1585" fg:w="63"/><text x="7.0039%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (63 samples, 0.27%)</title><rect x="6.7539%" y="2965" width="0.2685%" height="15" fill="rgb(234,215,21)" fg:x="1585" fg:w="63"/><text x="7.0039%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="6.9499%" y="2949" width="0.0724%" height="15" fill="rgb(222,191,20)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="6.9499%" y="2933" width="0.0724%" height="15" fill="rgb(245,79,54)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2943.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="6.9499%" y="2917" width="0.0724%" height="15" fill="rgb(240,10,37)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="6.9499%" y="2901" width="0.0724%" height="15" fill="rgb(214,192,32)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="6.9499%" y="2885" width="0.0724%" height="15" fill="rgb(209,36,54)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="6.9499%" y="2869" width="0.0724%" height="15" fill="rgb(220,10,11)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="6.9499%" y="2853" width="0.0724%" height="15" fill="rgb(221,106,17)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="6.9499%" y="2837" width="0.0724%" height="15" fill="rgb(251,142,44)" fg:x="1631" fg:w="17"/><text x="7.1999%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="7.0010%" y="2821" width="0.0213%" height="15" fill="rgb(238,13,15)" fg:x="1643" fg:w="5"/><text x="7.2510%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.0010%" y="2805" width="0.0213%" height="15" fill="rgb(208,107,27)" fg:x="1643" fg:w="5"/><text x="7.2510%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="7.0010%" y="2789" width="0.0213%" height="15" fill="rgb(205,136,37)" fg:x="1643" fg:w="5"/><text x="7.2510%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="7.0095%" y="2773" width="0.0128%" height="15" fill="rgb(250,205,27)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="7.0095%" y="2757" width="0.0128%" height="15" fill="rgb(210,80,43)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2767.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="7.0095%" y="2741" width="0.0128%" height="15" fill="rgb(247,160,36)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="7.0095%" y="2725" width="0.0128%" height="15" fill="rgb(234,13,49)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="7.0095%" y="2709" width="0.0128%" height="15" fill="rgb(234,122,0)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="7.0095%" y="2693" width="0.0128%" height="15" fill="rgb(207,146,38)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.0095%" y="2677" width="0.0128%" height="15" fill="rgb(207,177,25)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.0095%" y="2661" width="0.0128%" height="15" fill="rgb(211,178,42)" fg:x="1645" fg:w="3"/><text x="7.2595%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="7.0223%" y="2821" width="0.0256%" height="15" fill="rgb(230,69,54)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2831.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="7.0223%" y="2805" width="0.0256%" height="15" fill="rgb(214,135,41)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="7.0223%" y="2789" width="0.0256%" height="15" fill="rgb(237,67,25)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="7.0223%" y="2773" width="0.0256%" height="15" fill="rgb(222,189,50)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2783.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="7.0223%" y="2757" width="0.0256%" height="15" fill="rgb(245,148,34)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2767.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="7.0223%" y="2741" width="0.0256%" height="15" fill="rgb(222,29,6)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="7.0223%" y="2725" width="0.0256%" height="15" fill="rgb(221,189,43)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="7.0223%" y="2709" width="0.0256%" height="15" fill="rgb(207,36,27)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="7.0223%" y="2693" width="0.0256%" height="15" fill="rgb(217,90,24)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2703.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="7.0223%" y="2677" width="0.0256%" height="15" fill="rgb(224,66,35)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="7.0223%" y="2661" width="0.0256%" height="15" fill="rgb(221,13,50)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="7.0223%" y="2645" width="0.0256%" height="15" fill="rgb(236,68,49)" fg:x="1648" fg:w="6"/><text x="7.2723%" y="2655.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="7.0351%" y="2629" width="0.0128%" height="15" fill="rgb(229,146,28)" fg:x="1651" fg:w="3"/><text x="7.2851%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="7.0351%" y="2613" width="0.0128%" height="15" fill="rgb(225,31,38)" fg:x="1651" fg:w="3"/><text x="7.2851%" y="2623.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="7.0479%" y="2533" width="0.0170%" height="15" fill="rgb(250,208,3)" fg:x="1654" fg:w="4"/><text x="7.2979%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="7.0479%" y="2709" width="0.0256%" height="15" fill="rgb(246,54,23)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2719.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="7.0479%" y="2693" width="0.0256%" height="15" fill="rgb(243,76,11)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="7.0479%" y="2677" width="0.0256%" height="15" fill="rgb(245,21,50)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2687.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="7.0479%" y="2661" width="0.0256%" height="15" fill="rgb(228,9,43)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2671.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="7.0479%" y="2645" width="0.0256%" height="15" fill="rgb(208,100,47)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="7.0479%" y="2629" width="0.0256%" height="15" fill="rgb(232,26,8)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="7.0479%" y="2613" width="0.0256%" height="15" fill="rgb(216,166,38)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="7.0479%" y="2597" width="0.0256%" height="15" fill="rgb(251,202,51)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="7.0479%" y="2581" width="0.0256%" height="15" fill="rgb(254,216,34)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2591.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="7.0479%" y="2565" width="0.0256%" height="15" fill="rgb(251,32,27)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2575.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="7.0479%" y="2549" width="0.0256%" height="15" fill="rgb(208,127,28)" fg:x="1654" fg:w="6"/><text x="7.2979%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="7.0479%" y="2773" width="0.0384%" height="15" fill="rgb(224,137,22)" fg:x="1654" fg:w="9"/><text x="7.2979%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="7.0479%" y="2757" width="0.0384%" height="15" fill="rgb(254,70,32)" fg:x="1654" fg:w="9"/><text x="7.2979%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="7.0479%" y="2741" width="0.0384%" height="15" fill="rgb(229,75,37)" fg:x="1654" fg:w="9"/><text x="7.2979%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.0479%" y="2725" width="0.0384%" height="15" fill="rgb(252,64,23)" fg:x="1654" fg:w="9"/><text x="7.2979%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="7.0735%" y="2709" width="0.0128%" height="15" fill="rgb(232,162,48)" fg:x="1660" fg:w="3"/><text x="7.3235%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.0735%" y="2693" width="0.0128%" height="15" fill="rgb(246,160,12)" fg:x="1660" fg:w="3"/><text x="7.3235%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="7.0735%" y="2677" width="0.0128%" height="15" fill="rgb(247,166,0)" fg:x="1660" fg:w="3"/><text x="7.3235%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="7.0862%" y="2533" width="0.0128%" height="15" fill="rgb(249,219,21)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2543.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="7.0862%" y="2517" width="0.0128%" height="15" fill="rgb(205,209,3)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="7.0862%" y="2501" width="0.0128%" height="15" fill="rgb(243,44,1)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="7.0862%" y="2485" width="0.0128%" height="15" fill="rgb(206,159,16)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="7.0862%" y="2469" width="0.0128%" height="15" fill="rgb(244,77,30)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="7.0862%" y="2453" width="0.0128%" height="15" fill="rgb(218,69,12)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="7.0862%" y="2437" width="0.0128%" height="15" fill="rgb(212,87,7)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="7.0862%" y="2421" width="0.0128%" height="15" fill="rgb(245,114,25)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="7.0862%" y="2405" width="0.0128%" height="15" fill="rgb(210,61,42)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="7.0862%" y="2389" width="0.0128%" height="15" fill="rgb(211,52,33)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="7.0862%" y="2373" width="0.0128%" height="15" fill="rgb(234,58,33)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="7.0862%" y="2357" width="0.0128%" height="15" fill="rgb(220,115,36)" fg:x="1663" fg:w="3"/><text x="7.3362%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="7.0990%" y="2485" width="0.0256%" height="15" fill="rgb(243,153,54)" fg:x="1666" fg:w="6"/><text x="7.3490%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="7.0990%" y="2469" width="0.0256%" height="15" fill="rgb(251,47,18)" fg:x="1666" fg:w="6"/><text x="7.3490%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="7.0990%" y="2453" width="0.0256%" height="15" fill="rgb(242,102,42)" fg:x="1666" fg:w="6"/><text x="7.3490%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="7.0990%" y="2437" width="0.0256%" height="15" fill="rgb(234,31,38)" fg:x="1666" fg:w="6"/><text x="7.3490%" y="2447.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.1076%" y="2421" width="0.0170%" height="15" fill="rgb(221,117,51)" fg:x="1668" fg:w="4"/><text x="7.3576%" y="2431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.1076%" y="2405" width="0.0170%" height="15" fill="rgb(212,20,18)" fg:x="1668" fg:w="4"/><text x="7.3576%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.1076%" y="2389" width="0.0170%" height="15" fill="rgb(245,133,36)" fg:x="1668" fg:w="4"/><text x="7.3576%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="7.1331%" y="1733" width="0.0256%" height="15" fill="rgb(212,6,19)" fg:x="1674" fg:w="6"/><text x="7.3831%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="7.1331%" y="1717" width="0.0256%" height="15" fill="rgb(218,1,36)" fg:x="1674" fg:w="6"/><text x="7.3831%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="7.1331%" y="1701" width="0.0256%" height="15" fill="rgb(246,84,54)" fg:x="1674" fg:w="6"/><text x="7.3831%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="7.1331%" y="1685" width="0.0256%" height="15" fill="rgb(242,110,6)" fg:x="1674" fg:w="6"/><text x="7.3831%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="7.1331%" y="1669" width="0.0256%" height="15" fill="rgb(214,47,5)" fg:x="1674" fg:w="6"/><text x="7.3831%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="7.1331%" y="1653" width="0.0256%" height="15" fill="rgb(218,159,25)" fg:x="1674" fg:w="6"/><text x="7.3831%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="7.1331%" y="1637" width="0.0256%" height="15" fill="rgb(215,211,28)" fg:x="1674" fg:w="6"/><text x="7.3831%" y="1647.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.1416%" y="1621" width="0.0170%" height="15" fill="rgb(238,59,32)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1631.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.1416%" y="1605" width="0.0170%" height="15" fill="rgb(226,82,3)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1615.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.1416%" y="1589" width="0.0170%" height="15" fill="rgb(240,164,32)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1599.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.1416%" y="1573" width="0.0170%" height="15" fill="rgb(232,46,7)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1583.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.1416%" y="1557" width="0.0170%" height="15" fill="rgb(229,129,53)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="7.1416%" y="1541" width="0.0170%" height="15" fill="rgb(234,188,29)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.1416%" y="1525" width="0.0170%" height="15" fill="rgb(246,141,4)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.1416%" y="1509" width="0.0170%" height="15" fill="rgb(229,23,39)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1519.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.1416%" y="1493" width="0.0170%" height="15" fill="rgb(206,12,3)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1503.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.1416%" y="1477" width="0.0170%" height="15" fill="rgb(252,226,20)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.1416%" y="1461" width="0.0170%" height="15" fill="rgb(216,123,35)" fg:x="1676" fg:w="4"/><text x="7.3916%" y="1471.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="7.1587%" y="1557" width="0.0128%" height="15" fill="rgb(212,68,40)" fg:x="1680" fg:w="3"/><text x="7.4087%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="7.1587%" y="1541" width="0.0128%" height="15" fill="rgb(254,125,32)" fg:x="1680" fg:w="3"/><text x="7.4087%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.1587%" y="1525" width="0.0128%" height="15" fill="rgb(253,97,22)" fg:x="1680" fg:w="3"/><text x="7.4087%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.1587%" y="1509" width="0.0128%" height="15" fill="rgb(241,101,14)" fg:x="1680" fg:w="3"/><text x="7.4087%" y="1519.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="7.1587%" y="1493" width="0.0128%" height="15" fill="rgb(238,103,29)" fg:x="1680" fg:w="3"/><text x="7.4087%" y="1503.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.1587%" y="1477" width="0.0128%" height="15" fill="rgb(233,195,47)" fg:x="1680" fg:w="3"/><text x="7.4087%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="7.1587%" y="1461" width="0.0128%" height="15" fill="rgb(246,218,30)" fg:x="1680" fg:w="3"/><text x="7.4087%" y="1471.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (13 samples, 0.06%)</title><rect x="7.1331%" y="2197" width="0.0554%" height="15" fill="rgb(219,145,47)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="7.1331%" y="2181" width="0.0554%" height="15" fill="rgb(243,12,26)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (13 samples, 0.06%)</title><rect x="7.1331%" y="2165" width="0.0554%" height="15" fill="rgb(214,87,16)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2175.50"></text></g><g><title>rayon_core::job::JobRef::execute (13 samples, 0.06%)</title><rect x="7.1331%" y="2149" width="0.0554%" height="15" fill="rgb(208,99,42)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2159.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (13 samples, 0.06%)</title><rect x="7.1331%" y="2133" width="0.0554%" height="15" fill="rgb(253,99,2)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2143.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (13 samples, 0.06%)</title><rect x="7.1331%" y="2117" width="0.0554%" height="15" fill="rgb(220,168,23)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2127.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="7.1331%" y="2101" width="0.0554%" height="15" fill="rgb(242,38,24)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2111.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="7.1331%" y="2085" width="0.0554%" height="15" fill="rgb(225,182,9)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2095.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="7.1331%" y="2069" width="0.0554%" height="15" fill="rgb(243,178,37)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2079.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="7.1331%" y="2053" width="0.0554%" height="15" fill="rgb(232,139,19)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2063.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="7.1331%" y="2037" width="0.0554%" height="15" fill="rgb(225,201,24)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2047.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (13 samples, 0.06%)</title><rect x="7.1331%" y="2021" width="0.0554%" height="15" fill="rgb(221,47,46)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="7.1331%" y="2005" width="0.0554%" height="15" fill="rgb(249,23,13)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="7.1331%" y="1989" width="0.0554%" height="15" fill="rgb(219,9,5)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="7.1331%" y="1973" width="0.0554%" height="15" fill="rgb(254,171,16)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="7.1331%" y="1957" width="0.0554%" height="15" fill="rgb(230,171,20)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="7.1331%" y="1941" width="0.0554%" height="15" fill="rgb(210,71,41)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="7.1331%" y="1925" width="0.0554%" height="15" fill="rgb(206,173,20)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1935.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="7.1331%" y="1909" width="0.0554%" height="15" fill="rgb(233,88,34)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1919.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="7.1331%" y="1893" width="0.0554%" height="15" fill="rgb(223,209,46)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1903.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="7.1331%" y="1877" width="0.0554%" height="15" fill="rgb(250,43,18)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1887.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="7.1331%" y="1861" width="0.0554%" height="15" fill="rgb(208,13,10)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1871.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="7.1331%" y="1845" width="0.0554%" height="15" fill="rgb(212,200,36)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="7.1331%" y="1829" width="0.0554%" height="15" fill="rgb(225,90,30)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="7.1331%" y="1813" width="0.0554%" height="15" fill="rgb(236,182,39)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="7.1331%" y="1797" width="0.0554%" height="15" fill="rgb(212,144,35)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="7.1331%" y="1781" width="0.0554%" height="15" fill="rgb(228,63,44)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="7.1331%" y="1765" width="0.0554%" height="15" fill="rgb(228,109,6)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="7.1331%" y="1749" width="0.0554%" height="15" fill="rgb(238,117,24)" fg:x="1674" fg:w="13"/><text x="7.3831%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="7.1587%" y="1733" width="0.0298%" height="15" fill="rgb(242,26,26)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="7.1587%" y="1717" width="0.0298%" height="15" fill="rgb(221,92,48)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1727.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="7.1587%" y="1701" width="0.0298%" height="15" fill="rgb(209,209,32)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="7.1587%" y="1685" width="0.0298%" height="15" fill="rgb(221,70,22)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="7.1587%" y="1669" width="0.0298%" height="15" fill="rgb(248,145,5)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="7.1587%" y="1653" width="0.0298%" height="15" fill="rgb(226,116,26)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="7.1587%" y="1637" width="0.0298%" height="15" fill="rgb(244,5,17)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="7.1587%" y="1621" width="0.0298%" height="15" fill="rgb(252,159,33)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="7.1587%" y="1605" width="0.0298%" height="15" fill="rgb(206,71,0)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="7.1587%" y="1589" width="0.0298%" height="15" fill="rgb(233,118,54)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="7.1587%" y="1573" width="0.0298%" height="15" fill="rgb(234,83,48)" fg:x="1680" fg:w="7"/><text x="7.4087%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.1715%" y="1557" width="0.0170%" height="15" fill="rgb(228,3,54)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.1715%" y="1541" width="0.0170%" height="15" fill="rgb(226,155,13)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1551.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.1715%" y="1525" width="0.0170%" height="15" fill="rgb(241,28,37)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.1715%" y="1509" width="0.0170%" height="15" fill="rgb(233,93,10)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.1715%" y="1493" width="0.0170%" height="15" fill="rgb(225,113,19)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="7.1715%" y="1477" width="0.0170%" height="15" fill="rgb(241,2,18)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.1715%" y="1461" width="0.0170%" height="15" fill="rgb(228,207,21)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.1715%" y="1445" width="0.0170%" height="15" fill="rgb(213,211,35)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.1715%" y="1429" width="0.0170%" height="15" fill="rgb(209,83,10)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.1715%" y="1413" width="0.0170%" height="15" fill="rgb(209,164,1)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.1715%" y="1397" width="0.0170%" height="15" fill="rgb(213,184,43)" fg:x="1683" fg:w="4"/><text x="7.4215%" y="1407.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="7.1885%" y="2021" width="0.0128%" height="15" fill="rgb(231,61,34)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="7.1885%" y="2005" width="0.0128%" height="15" fill="rgb(235,75,3)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.1885%" y="1989" width="0.0128%" height="15" fill="rgb(220,106,47)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.1885%" y="1973" width="0.0128%" height="15" fill="rgb(210,196,33)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="7.1885%" y="1957" width="0.0128%" height="15" fill="rgb(229,154,42)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1967.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="7.1885%" y="1941" width="0.0128%" height="15" fill="rgb(228,114,26)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="7.1885%" y="1925" width="0.0128%" height="15" fill="rgb(208,144,1)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1935.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="7.1885%" y="1909" width="0.0128%" height="15" fill="rgb(239,112,37)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1919.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="7.1885%" y="1893" width="0.0128%" height="15" fill="rgb(210,96,50)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1903.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="7.1885%" y="1877" width="0.0128%" height="15" fill="rgb(222,178,2)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="7.1885%" y="1861" width="0.0128%" height="15" fill="rgb(226,74,18)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="7.1885%" y="1845" width="0.0128%" height="15" fill="rgb(225,67,54)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="7.1885%" y="1829" width="0.0128%" height="15" fill="rgb(251,92,32)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1839.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="7.1885%" y="1813" width="0.0128%" height="15" fill="rgb(228,149,22)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1823.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="7.1885%" y="1797" width="0.0128%" height="15" fill="rgb(243,54,13)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1807.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="7.1885%" y="1781" width="0.0128%" height="15" fill="rgb(243,180,28)" fg:x="1687" fg:w="3"/><text x="7.4385%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (21 samples, 0.09%)</title><rect x="7.1246%" y="2485" width="0.0895%" height="15" fill="rgb(208,167,24)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.09%)</title><rect x="7.1246%" y="2469" width="0.0895%" height="15" fill="rgb(245,73,45)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (21 samples, 0.09%)</title><rect x="7.1246%" y="2453" width="0.0895%" height="15" fill="rgb(237,203,48)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2463.50"></text></g><g><title>rayon_core::job::JobRef::execute (21 samples, 0.09%)</title><rect x="7.1246%" y="2437" width="0.0895%" height="15" fill="rgb(211,197,16)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (21 samples, 0.09%)</title><rect x="7.1246%" y="2421" width="0.0895%" height="15" fill="rgb(243,99,51)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (21 samples, 0.09%)</title><rect x="7.1246%" y="2405" width="0.0895%" height="15" fill="rgb(215,123,29)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="7.1246%" y="2389" width="0.0895%" height="15" fill="rgb(239,186,37)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2399.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="7.1246%" y="2373" width="0.0895%" height="15" fill="rgb(252,136,39)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2383.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="7.1246%" y="2357" width="0.0895%" height="15" fill="rgb(223,213,32)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2367.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="7.1246%" y="2341" width="0.0895%" height="15" fill="rgb(233,115,5)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="7.1246%" y="2325" width="0.0895%" height="15" fill="rgb(207,226,44)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (21 samples, 0.09%)</title><rect x="7.1246%" y="2309" width="0.0895%" height="15" fill="rgb(208,126,0)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="7.1246%" y="2293" width="0.0895%" height="15" fill="rgb(244,66,21)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="7.1246%" y="2277" width="0.0895%" height="15" fill="rgb(222,97,12)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="7.1246%" y="2261" width="0.0895%" height="15" fill="rgb(219,213,19)" fg:x="1672" fg:w="21"/><text x="7.3746%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="7.1331%" y="2245" width="0.0810%" height="15" fill="rgb(252,169,30)" fg:x="1674" fg:w="19"/><text x="7.3831%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="7.1331%" y="2229" width="0.0810%" height="15" fill="rgb(206,32,51)" fg:x="1674" fg:w="19"/><text x="7.3831%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="7.1331%" y="2213" width="0.0810%" height="15" fill="rgb(250,172,42)" fg:x="1674" fg:w="19"/><text x="7.3831%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="7.1885%" y="2197" width="0.0256%" height="15" fill="rgb(209,34,43)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="7.1885%" y="2181" width="0.0256%" height="15" fill="rgb(223,11,35)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2191.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="7.1885%" y="2165" width="0.0256%" height="15" fill="rgb(251,219,26)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="7.1885%" y="2149" width="0.0256%" height="15" fill="rgb(231,119,3)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="7.1885%" y="2133" width="0.0256%" height="15" fill="rgb(216,97,11)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="7.1885%" y="2117" width="0.0256%" height="15" fill="rgb(223,59,9)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="7.1885%" y="2101" width="0.0256%" height="15" fill="rgb(233,93,31)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="7.1885%" y="2085" width="0.0256%" height="15" fill="rgb(239,81,33)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="7.1885%" y="2069" width="0.0256%" height="15" fill="rgb(213,120,34)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="7.1885%" y="2053" width="0.0256%" height="15" fill="rgb(243,49,53)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="7.1885%" y="2037" width="0.0256%" height="15" fill="rgb(247,216,33)" fg:x="1687" fg:w="6"/><text x="7.4385%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="7.2013%" y="2021" width="0.0128%" height="15" fill="rgb(226,26,14)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="7.2013%" y="2005" width="0.0128%" height="15" fill="rgb(215,49,53)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="2015.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="7.2013%" y="1989" width="0.0128%" height="15" fill="rgb(245,162,40)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="7.2013%" y="1973" width="0.0128%" height="15" fill="rgb(229,68,17)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="7.2013%" y="1957" width="0.0128%" height="15" fill="rgb(213,182,10)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2013%" y="1941" width="0.0128%" height="15" fill="rgb(245,125,30)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2013%" y="1925" width="0.0128%" height="15" fill="rgb(232,202,2)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.2013%" y="1909" width="0.0128%" height="15" fill="rgb(237,140,51)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="7.2013%" y="1893" width="0.0128%" height="15" fill="rgb(236,157,25)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="7.2013%" y="1877" width="0.0128%" height="15" fill="rgb(219,209,0)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="7.2013%" y="1861" width="0.0128%" height="15" fill="rgb(240,116,54)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="7.2013%" y="1845" width="0.0128%" height="15" fill="rgb(216,10,36)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="7.2013%" y="1829" width="0.0128%" height="15" fill="rgb(222,72,44)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="7.2013%" y="1813" width="0.0128%" height="15" fill="rgb(232,159,9)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="7.2013%" y="1797" width="0.0128%" height="15" fill="rgb(210,39,32)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2013%" y="1781" width="0.0128%" height="15" fill="rgb(216,194,45)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="7.2013%" y="1765" width="0.0128%" height="15" fill="rgb(218,18,35)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="7.2013%" y="1749" width="0.0128%" height="15" fill="rgb(207,83,51)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2013%" y="1733" width="0.0128%" height="15" fill="rgb(225,63,43)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="7.2013%" y="1717" width="0.0128%" height="15" fill="rgb(207,57,36)" fg:x="1690" fg:w="3"/><text x="7.4513%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="7.2141%" y="2357" width="0.0128%" height="15" fill="rgb(216,99,33)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="7.2141%" y="2341" width="0.0128%" height="15" fill="rgb(225,42,16)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="7.2141%" y="2325" width="0.0128%" height="15" fill="rgb(220,201,45)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="7.2141%" y="2309" width="0.0128%" height="15" fill="rgb(225,33,4)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="7.2141%" y="2293" width="0.0128%" height="15" fill="rgb(224,33,50)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="7.2141%" y="2277" width="0.0128%" height="15" fill="rgb(246,198,51)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="7.2141%" y="2261" width="0.0128%" height="15" fill="rgb(205,22,4)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2141%" y="2245" width="0.0128%" height="15" fill="rgb(206,3,8)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="7.2141%" y="2229" width="0.0128%" height="15" fill="rgb(251,23,15)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="7.2141%" y="2213" width="0.0128%" height="15" fill="rgb(252,88,28)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2141%" y="2197" width="0.0128%" height="15" fill="rgb(212,127,14)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="7.2141%" y="2181" width="0.0128%" height="15" fill="rgb(247,145,37)" fg:x="1693" fg:w="3"/><text x="7.4641%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="7.2354%" y="2197" width="0.0128%" height="15" fill="rgb(209,117,53)" fg:x="1698" fg:w="3"/><text x="7.4854%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2354%" y="2181" width="0.0128%" height="15" fill="rgb(212,90,42)" fg:x="1698" fg:w="3"/><text x="7.4854%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2354%" y="2165" width="0.0128%" height="15" fill="rgb(218,164,37)" fg:x="1698" fg:w="3"/><text x="7.4854%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.2354%" y="2149" width="0.0128%" height="15" fill="rgb(246,65,34)" fg:x="1698" fg:w="3"/><text x="7.4854%" y="2159.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="7.2354%" y="2133" width="0.0128%" height="15" fill="rgb(231,100,33)" fg:x="1698" fg:w="3"/><text x="7.4854%" y="2143.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.2354%" y="2117" width="0.0128%" height="15" fill="rgb(228,126,14)" fg:x="1698" fg:w="3"/><text x="7.4854%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2354%" y="2101" width="0.0128%" height="15" fill="rgb(215,173,21)" fg:x="1698" fg:w="3"/><text x="7.4854%" y="2111.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="7.2269%" y="2309" width="0.0384%" height="15" fill="rgb(210,6,40)" fg:x="1696" fg:w="9"/><text x="7.4769%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="7.2269%" y="2293" width="0.0384%" height="15" fill="rgb(212,48,18)" fg:x="1696" fg:w="9"/><text x="7.4769%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="7.2269%" y="2277" width="0.0384%" height="15" fill="rgb(230,214,11)" fg:x="1696" fg:w="9"/><text x="7.4769%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.2269%" y="2261" width="0.0384%" height="15" fill="rgb(254,105,39)" fg:x="1696" fg:w="9"/><text x="7.4769%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="7.2354%" y="2245" width="0.0298%" height="15" fill="rgb(245,158,5)" fg:x="1698" fg:w="7"/><text x="7.4854%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="7.2354%" y="2229" width="0.0298%" height="15" fill="rgb(249,208,11)" fg:x="1698" fg:w="7"/><text x="7.4854%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="7.2354%" y="2213" width="0.0298%" height="15" fill="rgb(210,39,28)" fg:x="1698" fg:w="7"/><text x="7.4854%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.2482%" y="2197" width="0.0170%" height="15" fill="rgb(211,56,53)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.2482%" y="2181" width="0.0170%" height="15" fill="rgb(226,201,30)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2191.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.2482%" y="2165" width="0.0170%" height="15" fill="rgb(239,101,34)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.2482%" y="2149" width="0.0170%" height="15" fill="rgb(226,209,5)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.2482%" y="2133" width="0.0170%" height="15" fill="rgb(250,105,47)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="7.2482%" y="2117" width="0.0170%" height="15" fill="rgb(230,72,3)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.2482%" y="2101" width="0.0170%" height="15" fill="rgb(232,218,39)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.2482%" y="2085" width="0.0170%" height="15" fill="rgb(248,166,6)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.2482%" y="2069" width="0.0170%" height="15" fill="rgb(247,89,20)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.2482%" y="2053" width="0.0170%" height="15" fill="rgb(248,130,54)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.2482%" y="2037" width="0.0170%" height="15" fill="rgb(234,196,4)" fg:x="1701" fg:w="4"/><text x="7.4982%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="7.2737%" y="2133" width="0.0128%" height="15" fill="rgb(250,143,31)" fg:x="1707" fg:w="3"/><text x="7.5237%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2737%" y="2117" width="0.0128%" height="15" fill="rgb(211,110,34)" fg:x="1707" fg:w="3"/><text x="7.5237%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2737%" y="2101" width="0.0128%" height="15" fill="rgb(215,124,48)" fg:x="1707" fg:w="3"/><text x="7.5237%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.2737%" y="2085" width="0.0128%" height="15" fill="rgb(216,46,13)" fg:x="1707" fg:w="3"/><text x="7.5237%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="7.2737%" y="2069" width="0.0128%" height="15" fill="rgb(205,184,25)" fg:x="1707" fg:w="3"/><text x="7.5237%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.2737%" y="2053" width="0.0128%" height="15" fill="rgb(228,1,10)" fg:x="1707" fg:w="3"/><text x="7.5237%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="7.2737%" y="2037" width="0.0128%" height="15" fill="rgb(213,116,27)" fg:x="1707" fg:w="3"/><text x="7.5237%" y="2047.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (51 samples, 0.22%)</title><rect x="7.0862%" y="2741" width="0.2173%" height="15" fill="rgb(241,95,50)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2751.50"></text></g><g><title>rayon_core::job::JobRef::execute (51 samples, 0.22%)</title><rect x="7.0862%" y="2725" width="0.2173%" height="15" fill="rgb(238,48,32)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2735.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (51 samples, 0.22%)</title><rect x="7.0862%" y="2709" width="0.2173%" height="15" fill="rgb(235,113,49)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (51 samples, 0.22%)</title><rect x="7.0862%" y="2693" width="0.2173%" height="15" fill="rgb(205,127,43)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (51 samples, 0.22%)</title><rect x="7.0862%" y="2677" width="0.2173%" height="15" fill="rgb(250,162,2)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (51 samples, 0.22%)</title><rect x="7.0862%" y="2661" width="0.2173%" height="15" fill="rgb(220,13,41)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2671.50"></text></g><g><title>std::panicking::try (51 samples, 0.22%)</title><rect x="7.0862%" y="2645" width="0.2173%" height="15" fill="rgb(249,221,25)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (51 samples, 0.22%)</title><rect x="7.0862%" y="2629" width="0.2173%" height="15" fill="rgb(215,208,19)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (51 samples, 0.22%)</title><rect x="7.0862%" y="2613" width="0.2173%" height="15" fill="rgb(236,175,2)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2623.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (51 samples, 0.22%)</title><rect x="7.0862%" y="2597" width="0.2173%" height="15" fill="rgb(241,52,2)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (51 samples, 0.22%)</title><rect x="7.0862%" y="2581" width="0.2173%" height="15" fill="rgb(248,140,14)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (51 samples, 0.22%)</title><rect x="7.0862%" y="2565" width="0.2173%" height="15" fill="rgb(253,22,42)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.22%)</title><rect x="7.0862%" y="2549" width="0.2173%" height="15" fill="rgb(234,61,47)" fg:x="1663" fg:w="51"/><text x="7.3362%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (48 samples, 0.20%)</title><rect x="7.0990%" y="2533" width="0.2045%" height="15" fill="rgb(208,226,15)" fg:x="1666" fg:w="48"/><text x="7.3490%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.20%)</title><rect x="7.0990%" y="2517" width="0.2045%" height="15" fill="rgb(217,221,4)" fg:x="1666" fg:w="48"/><text x="7.3490%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (48 samples, 0.20%)</title><rect x="7.0990%" y="2501" width="0.2045%" height="15" fill="rgb(212,174,34)" fg:x="1666" fg:w="48"/><text x="7.3490%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="7.2141%" y="2485" width="0.0895%" height="15" fill="rgb(253,83,4)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="7.2141%" y="2469" width="0.0895%" height="15" fill="rgb(250,195,49)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2479.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="7.2141%" y="2453" width="0.0895%" height="15" fill="rgb(241,192,25)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="7.2141%" y="2437" width="0.0895%" height="15" fill="rgb(208,124,10)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="7.2141%" y="2421" width="0.0895%" height="15" fill="rgb(222,33,0)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="7.2141%" y="2405" width="0.0895%" height="15" fill="rgb(234,209,28)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="7.2141%" y="2389" width="0.0895%" height="15" fill="rgb(224,11,23)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="7.2141%" y="2373" width="0.0895%" height="15" fill="rgb(232,99,1)" fg:x="1693" fg:w="21"/><text x="7.4641%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="7.2269%" y="2357" width="0.0767%" height="15" fill="rgb(237,95,45)" fg:x="1696" fg:w="18"/><text x="7.4769%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="7.2269%" y="2341" width="0.0767%" height="15" fill="rgb(208,109,11)" fg:x="1696" fg:w="18"/><text x="7.4769%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="7.2269%" y="2325" width="0.0767%" height="15" fill="rgb(216,190,48)" fg:x="1696" fg:w="18"/><text x="7.4769%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="7.2652%" y="2309" width="0.0384%" height="15" fill="rgb(251,171,36)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="7.2652%" y="2293" width="0.0384%" height="15" fill="rgb(230,62,22)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2303.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="7.2652%" y="2277" width="0.0384%" height="15" fill="rgb(225,114,35)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="7.2652%" y="2261" width="0.0384%" height="15" fill="rgb(215,118,42)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="7.2652%" y="2245" width="0.0384%" height="15" fill="rgb(243,119,21)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="7.2652%" y="2229" width="0.0384%" height="15" fill="rgb(252,177,53)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="7.2652%" y="2213" width="0.0384%" height="15" fill="rgb(237,209,29)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.2652%" y="2197" width="0.0384%" height="15" fill="rgb(212,65,23)" fg:x="1705" fg:w="9"/><text x="7.5152%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="7.2737%" y="2181" width="0.0298%" height="15" fill="rgb(230,222,46)" fg:x="1707" fg:w="7"/><text x="7.5237%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="7.2737%" y="2165" width="0.0298%" height="15" fill="rgb(215,135,32)" fg:x="1707" fg:w="7"/><text x="7.5237%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="7.2737%" y="2149" width="0.0298%" height="15" fill="rgb(246,101,22)" fg:x="1707" fg:w="7"/><text x="7.5237%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.2865%" y="2133" width="0.0170%" height="15" fill="rgb(206,107,13)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.2865%" y="2117" width="0.0170%" height="15" fill="rgb(250,100,44)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.2865%" y="2101" width="0.0170%" height="15" fill="rgb(231,147,38)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.2865%" y="2085" width="0.0170%" height="15" fill="rgb(229,8,40)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.2865%" y="2069" width="0.0170%" height="15" fill="rgb(221,135,30)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="7.2865%" y="2053" width="0.0170%" height="15" fill="rgb(249,193,18)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.2865%" y="2037" width="0.0170%" height="15" fill="rgb(209,133,39)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.2865%" y="2021" width="0.0170%" height="15" fill="rgb(232,100,14)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.2865%" y="2005" width="0.0170%" height="15" fill="rgb(224,185,1)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.2865%" y="1989" width="0.0170%" height="15" fill="rgb(223,139,8)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.2865%" y="1973" width="0.0170%" height="15" fill="rgb(232,213,38)" fg:x="1710" fg:w="4"/><text x="7.5365%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (56 samples, 0.24%)</title><rect x="7.0862%" y="2773" width="0.2386%" height="15" fill="rgb(207,94,22)" fg:x="1663" fg:w="56"/><text x="7.3362%" y="2783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (56 samples, 0.24%)</title><rect x="7.0862%" y="2757" width="0.2386%" height="15" fill="rgb(219,183,54)" fg:x="1663" fg:w="56"/><text x="7.3362%" y="2767.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="7.3036%" y="2741" width="0.0213%" height="15" fill="rgb(216,185,54)" fg:x="1714" fg:w="5"/><text x="7.5536%" y="2751.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="7.3036%" y="2725" width="0.0213%" height="15" fill="rgb(254,217,39)" fg:x="1714" fg:w="5"/><text x="7.5536%" y="2735.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="7.3036%" y="2709" width="0.0213%" height="15" fill="rgb(240,178,23)" fg:x="1714" fg:w="5"/><text x="7.5536%" y="2719.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="7.3036%" y="2693" width="0.0213%" height="15" fill="rgb(218,11,47)" fg:x="1714" fg:w="5"/><text x="7.5536%" y="2703.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="7.3036%" y="2677" width="0.0213%" height="15" fill="rgb(218,51,51)" fg:x="1714" fg:w="5"/><text x="7.5536%" y="2687.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="7.3036%" y="2661" width="0.0213%" height="15" fill="rgb(238,126,27)" fg:x="1714" fg:w="5"/><text x="7.5536%" y="2671.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="7.3078%" y="2645" width="0.0170%" height="15" fill="rgb(249,202,22)" fg:x="1715" fg:w="4"/><text x="7.5578%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="7.3249%" y="2629" width="0.0170%" height="15" fill="rgb(254,195,49)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="7.3249%" y="2613" width="0.0170%" height="15" fill="rgb(208,123,14)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="7.3249%" y="2597" width="0.0170%" height="15" fill="rgb(224,200,8)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="7.3249%" y="2581" width="0.0170%" height="15" fill="rgb(217,61,36)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="7.3249%" y="2565" width="0.0170%" height="15" fill="rgb(206,35,45)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="7.3249%" y="2549" width="0.0170%" height="15" fill="rgb(217,65,33)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3249%" y="2533" width="0.0170%" height="15" fill="rgb(222,158,48)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="7.3249%" y="2517" width="0.0170%" height="15" fill="rgb(254,2,54)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="7.3249%" y="2501" width="0.0170%" height="15" fill="rgb(250,143,38)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3249%" y="2485" width="0.0170%" height="15" fill="rgb(248,25,0)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="7.3249%" y="2469" width="0.0170%" height="15" fill="rgb(206,152,27)" fg:x="1719" fg:w="4"/><text x="7.5749%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="7.3249%" y="2645" width="0.0256%" height="15" fill="rgb(240,77,30)" fg:x="1719" fg:w="6"/><text x="7.5749%" y="2655.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="7.3504%" y="2229" width="0.0128%" height="15" fill="rgb(231,5,3)" fg:x="1725" fg:w="3"/><text x="7.6004%" y="2239.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="7.3504%" y="2213" width="0.0128%" height="15" fill="rgb(207,226,32)" fg:x="1725" fg:w="3"/><text x="7.6004%" y="2223.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="7.3504%" y="2197" width="0.0128%" height="15" fill="rgb(222,207,47)" fg:x="1725" fg:w="3"/><text x="7.6004%" y="2207.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="7.3504%" y="2181" width="0.0128%" height="15" fill="rgb(229,115,45)" fg:x="1725" fg:w="3"/><text x="7.6004%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="7.3504%" y="2485" width="0.0213%" height="15" fill="rgb(224,191,6)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="7.3504%" y="2469" width="0.0213%" height="15" fill="rgb(230,227,24)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="7.3504%" y="2453" width="0.0213%" height="15" fill="rgb(228,80,19)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.3504%" y="2437" width="0.0213%" height="15" fill="rgb(247,229,0)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="7.3504%" y="2421" width="0.0213%" height="15" fill="rgb(237,194,15)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2431.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="7.3504%" y="2405" width="0.0213%" height="15" fill="rgb(219,203,20)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="7.3504%" y="2389" width="0.0213%" height="15" fill="rgb(234,128,8)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2399.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="7.3504%" y="2373" width="0.0213%" height="15" fill="rgb(248,202,8)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2383.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="7.3504%" y="2357" width="0.0213%" height="15" fill="rgb(206,104,37)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="7.3504%" y="2341" width="0.0213%" height="15" fill="rgb(223,8,27)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="7.3504%" y="2325" width="0.0213%" height="15" fill="rgb(216,217,28)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="7.3504%" y="2309" width="0.0213%" height="15" fill="rgb(249,199,1)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="7.3504%" y="2293" width="0.0213%" height="15" fill="rgb(240,85,17)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2303.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="7.3504%" y="2277" width="0.0213%" height="15" fill="rgb(206,108,45)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2287.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="7.3504%" y="2261" width="0.0213%" height="15" fill="rgb(245,210,41)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="7.3504%" y="2245" width="0.0213%" height="15" fill="rgb(206,13,37)" fg:x="1725" fg:w="5"/><text x="7.6004%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="7.3504%" y="2597" width="0.0384%" height="15" fill="rgb(250,61,18)" fg:x="1725" fg:w="9"/><text x="7.6004%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="7.3504%" y="2581" width="0.0384%" height="15" fill="rgb(235,172,48)" fg:x="1725" fg:w="9"/><text x="7.6004%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="7.3504%" y="2565" width="0.0384%" height="15" fill="rgb(249,201,17)" fg:x="1725" fg:w="9"/><text x="7.6004%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.3504%" y="2549" width="0.0384%" height="15" fill="rgb(219,208,6)" fg:x="1725" fg:w="9"/><text x="7.6004%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="7.3504%" y="2533" width="0.0384%" height="15" fill="rgb(248,31,23)" fg:x="1725" fg:w="9"/><text x="7.6004%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="7.3504%" y="2517" width="0.0384%" height="15" fill="rgb(245,15,42)" fg:x="1725" fg:w="9"/><text x="7.6004%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="7.3504%" y="2501" width="0.0384%" height="15" fill="rgb(222,217,39)" fg:x="1725" fg:w="9"/><text x="7.6004%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.3717%" y="2485" width="0.0170%" height="15" fill="rgb(210,219,27)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.3717%" y="2469" width="0.0170%" height="15" fill="rgb(252,166,36)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2479.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.3717%" y="2453" width="0.0170%" height="15" fill="rgb(245,132,34)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.3717%" y="2437" width="0.0170%" height="15" fill="rgb(236,54,3)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.3717%" y="2421" width="0.0170%" height="15" fill="rgb(241,173,43)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3717%" y="2405" width="0.0170%" height="15" fill="rgb(215,190,9)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3717%" y="2389" width="0.0170%" height="15" fill="rgb(242,101,16)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.3717%" y="2373" width="0.0170%" height="15" fill="rgb(223,190,21)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="7.3717%" y="2357" width="0.0170%" height="15" fill="rgb(215,228,25)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="7.3717%" y="2341" width="0.0170%" height="15" fill="rgb(225,36,22)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="7.3717%" y="2325" width="0.0170%" height="15" fill="rgb(251,106,46)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="7.3717%" y="2309" width="0.0170%" height="15" fill="rgb(208,90,1)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="7.3717%" y="2293" width="0.0170%" height="15" fill="rgb(243,10,4)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="7.3717%" y="2277" width="0.0170%" height="15" fill="rgb(212,137,27)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="7.3717%" y="2261" width="0.0170%" height="15" fill="rgb(231,220,49)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3717%" y="2245" width="0.0170%" height="15" fill="rgb(237,96,20)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="7.3717%" y="2229" width="0.0170%" height="15" fill="rgb(239,229,30)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="7.3717%" y="2213" width="0.0170%" height="15" fill="rgb(219,65,33)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3717%" y="2197" width="0.0170%" height="15" fill="rgb(243,134,7)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="7.3717%" y="2181" width="0.0170%" height="15" fill="rgb(216,177,54)" fg:x="1730" fg:w="4"/><text x="7.6217%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="7.3760%" y="2165" width="0.0128%" height="15" fill="rgb(211,160,20)" fg:x="1731" fg:w="3"/><text x="7.6260%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="7.3760%" y="2149" width="0.0128%" height="15" fill="rgb(239,85,39)" fg:x="1731" fg:w="3"/><text x="7.6260%" y="2159.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="7.3930%" y="2133" width="0.0170%" height="15" fill="rgb(232,125,22)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="7.3930%" y="2117" width="0.0170%" height="15" fill="rgb(244,57,34)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="7.3930%" y="2101" width="0.0170%" height="15" fill="rgb(214,203,32)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="7.3930%" y="2085" width="0.0170%" height="15" fill="rgb(207,58,43)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="7.3930%" y="2069" width="0.0170%" height="15" fill="rgb(215,193,15)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="7.3930%" y="2053" width="0.0170%" height="15" fill="rgb(232,15,44)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.3930%" y="2037" width="0.0170%" height="15" fill="rgb(212,3,48)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.3930%" y="2021" width="0.0170%" height="15" fill="rgb(218,128,7)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2031.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.3930%" y="2005" width="0.0170%" height="15" fill="rgb(226,216,39)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.3930%" y="1989" width="0.0170%" height="15" fill="rgb(243,47,51)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.3930%" y="1973" width="0.0170%" height="15" fill="rgb(241,183,40)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3930%" y="1957" width="0.0170%" height="15" fill="rgb(231,217,32)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3930%" y="1941" width="0.0170%" height="15" fill="rgb(229,61,38)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3930%" y="1925" width="0.0170%" height="15" fill="rgb(225,210,5)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.3930%" y="1909" width="0.0170%" height="15" fill="rgb(231,79,45)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.3930%" y="1893" width="0.0170%" height="15" fill="rgb(224,100,7)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.3930%" y="1877" width="0.0170%" height="15" fill="rgb(241,198,18)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.3930%" y="1861" width="0.0170%" height="15" fill="rgb(252,97,53)" fg:x="1735" fg:w="4"/><text x="7.6430%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="7.4101%" y="1957" width="0.0170%" height="15" fill="rgb(220,88,7)" fg:x="1739" fg:w="4"/><text x="7.6601%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="7.4101%" y="1941" width="0.0170%" height="15" fill="rgb(213,176,14)" fg:x="1739" fg:w="4"/><text x="7.6601%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.4101%" y="1925" width="0.0170%" height="15" fill="rgb(246,73,7)" fg:x="1739" fg:w="4"/><text x="7.6601%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.4101%" y="1909" width="0.0170%" height="15" fill="rgb(245,64,36)" fg:x="1739" fg:w="4"/><text x="7.6601%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.4101%" y="1893" width="0.0170%" height="15" fill="rgb(245,80,10)" fg:x="1739" fg:w="4"/><text x="7.6601%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.4101%" y="1877" width="0.0170%" height="15" fill="rgb(232,107,50)" fg:x="1739" fg:w="4"/><text x="7.6601%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.4101%" y="1861" width="0.0170%" height="15" fill="rgb(253,3,0)" fg:x="1739" fg:w="4"/><text x="7.6601%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (13 samples, 0.06%)</title><rect x="7.3888%" y="2597" width="0.0554%" height="15" fill="rgb(212,99,53)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="7.3888%" y="2581" width="0.0554%" height="15" fill="rgb(249,111,54)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (13 samples, 0.06%)</title><rect x="7.3888%" y="2565" width="0.0554%" height="15" fill="rgb(249,55,30)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2575.50"></text></g><g><title>rayon_core::job::JobRef::execute (13 samples, 0.06%)</title><rect x="7.3888%" y="2549" width="0.0554%" height="15" fill="rgb(237,47,42)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2559.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (13 samples, 0.06%)</title><rect x="7.3888%" y="2533" width="0.0554%" height="15" fill="rgb(211,20,18)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2543.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (13 samples, 0.06%)</title><rect x="7.3888%" y="2517" width="0.0554%" height="15" fill="rgb(231,203,46)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="7.3888%" y="2501" width="0.0554%" height="15" fill="rgb(237,142,3)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2511.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="7.3888%" y="2485" width="0.0554%" height="15" fill="rgb(241,107,1)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2495.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="7.3888%" y="2469" width="0.0554%" height="15" fill="rgb(229,83,13)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2479.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="7.3888%" y="2453" width="0.0554%" height="15" fill="rgb(241,91,40)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="7.3888%" y="2437" width="0.0554%" height="15" fill="rgb(225,3,45)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (13 samples, 0.06%)</title><rect x="7.3888%" y="2421" width="0.0554%" height="15" fill="rgb(244,223,14)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="7.3888%" y="2405" width="0.0554%" height="15" fill="rgb(224,124,37)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="7.3888%" y="2389" width="0.0554%" height="15" fill="rgb(251,171,30)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="7.3888%" y="2373" width="0.0554%" height="15" fill="rgb(236,46,54)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="7.3888%" y="2357" width="0.0554%" height="15" fill="rgb(245,213,5)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="7.3888%" y="2341" width="0.0554%" height="15" fill="rgb(230,144,27)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="7.3888%" y="2325" width="0.0554%" height="15" fill="rgb(220,86,6)" fg:x="1734" fg:w="13"/><text x="7.6388%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="7.3930%" y="2309" width="0.0511%" height="15" fill="rgb(240,20,13)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="7.3930%" y="2293" width="0.0511%" height="15" fill="rgb(217,89,34)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2303.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="7.3930%" y="2277" width="0.0511%" height="15" fill="rgb(229,13,5)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="7.3930%" y="2261" width="0.0511%" height="15" fill="rgb(244,67,35)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="7.3930%" y="2245" width="0.0511%" height="15" fill="rgb(221,40,2)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="7.3930%" y="2229" width="0.0511%" height="15" fill="rgb(237,157,21)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="7.3930%" y="2213" width="0.0511%" height="15" fill="rgb(222,94,11)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="7.3930%" y="2197" width="0.0511%" height="15" fill="rgb(249,113,6)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="7.3930%" y="2181" width="0.0511%" height="15" fill="rgb(238,137,36)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="7.3930%" y="2165" width="0.0511%" height="15" fill="rgb(210,102,26)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="7.3930%" y="2149" width="0.0511%" height="15" fill="rgb(218,30,30)" fg:x="1735" fg:w="12"/><text x="7.6430%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="7.4101%" y="2133" width="0.0341%" height="15" fill="rgb(214,67,26)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="7.4101%" y="2117" width="0.0341%" height="15" fill="rgb(251,9,53)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2127.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="7.4101%" y="2101" width="0.0341%" height="15" fill="rgb(228,204,25)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="7.4101%" y="2085" width="0.0341%" height="15" fill="rgb(207,153,8)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="7.4101%" y="2069" width="0.0341%" height="15" fill="rgb(242,9,16)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="7.4101%" y="2053" width="0.0341%" height="15" fill="rgb(217,211,10)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="7.4101%" y="2037" width="0.0341%" height="15" fill="rgb(219,228,52)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="7.4101%" y="2021" width="0.0341%" height="15" fill="rgb(231,92,29)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="7.4101%" y="2005" width="0.0341%" height="15" fill="rgb(232,8,23)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="7.4101%" y="1989" width="0.0341%" height="15" fill="rgb(216,211,34)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="7.4101%" y="1973" width="0.0341%" height="15" fill="rgb(236,151,0)" fg:x="1739" fg:w="8"/><text x="7.6601%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.4271%" y="1957" width="0.0170%" height="15" fill="rgb(209,168,3)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.4271%" y="1941" width="0.0170%" height="15" fill="rgb(208,129,28)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1951.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.4271%" y="1925" width="0.0170%" height="15" fill="rgb(229,78,22)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.4271%" y="1909" width="0.0170%" height="15" fill="rgb(228,187,13)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.4271%" y="1893" width="0.0170%" height="15" fill="rgb(240,119,24)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="7.4271%" y="1877" width="0.0170%" height="15" fill="rgb(209,194,42)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.4271%" y="1861" width="0.0170%" height="15" fill="rgb(247,200,46)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.4271%" y="1845" width="0.0170%" height="15" fill="rgb(218,76,16)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.4271%" y="1829" width="0.0170%" height="15" fill="rgb(225,21,48)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.4271%" y="1813" width="0.0170%" height="15" fill="rgb(239,223,50)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.4271%" y="1797" width="0.0170%" height="15" fill="rgb(244,45,21)" fg:x="1743" fg:w="4"/><text x="7.6771%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="7.4442%" y="2357" width="0.0128%" height="15" fill="rgb(232,33,43)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="7.4442%" y="2341" width="0.0128%" height="15" fill="rgb(209,8,3)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="7.4442%" y="2325" width="0.0128%" height="15" fill="rgb(214,25,53)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="7.4442%" y="2309" width="0.0128%" height="15" fill="rgb(254,186,54)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="7.4442%" y="2293" width="0.0128%" height="15" fill="rgb(208,174,49)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="7.4442%" y="2277" width="0.0128%" height="15" fill="rgb(233,191,51)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="7.4442%" y="2261" width="0.0128%" height="15" fill="rgb(222,134,10)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4442%" y="2245" width="0.0128%" height="15" fill="rgb(230,226,20)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="7.4442%" y="2229" width="0.0128%" height="15" fill="rgb(251,111,25)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="7.4442%" y="2213" width="0.0128%" height="15" fill="rgb(224,40,46)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4442%" y="2197" width="0.0128%" height="15" fill="rgb(236,108,47)" fg:x="1747" fg:w="3"/><text x="7.6942%" y="2207.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="7.4570%" y="2309" width="0.0128%" height="15" fill="rgb(234,93,0)" fg:x="1750" fg:w="3"/><text x="7.7070%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4570%" y="2293" width="0.0128%" height="15" fill="rgb(224,213,32)" fg:x="1750" fg:w="3"/><text x="7.7070%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4570%" y="2277" width="0.0128%" height="15" fill="rgb(251,11,48)" fg:x="1750" fg:w="3"/><text x="7.7070%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.4570%" y="2261" width="0.0128%" height="15" fill="rgb(236,173,5)" fg:x="1750" fg:w="3"/><text x="7.7070%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="7.4570%" y="2245" width="0.0128%" height="15" fill="rgb(230,95,12)" fg:x="1750" fg:w="3"/><text x="7.7070%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.4570%" y="2229" width="0.0128%" height="15" fill="rgb(232,209,1)" fg:x="1750" fg:w="3"/><text x="7.7070%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4570%" y="2213" width="0.0128%" height="15" fill="rgb(232,6,1)" fg:x="1750" fg:w="3"/><text x="7.7070%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="7.4442%" y="2421" width="0.0341%" height="15" fill="rgb(210,224,50)" fg:x="1747" fg:w="8"/><text x="7.6942%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="7.4442%" y="2405" width="0.0341%" height="15" fill="rgb(228,127,35)" fg:x="1747" fg:w="8"/><text x="7.6942%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="7.4442%" y="2389" width="0.0341%" height="15" fill="rgb(245,102,45)" fg:x="1747" fg:w="8"/><text x="7.6942%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="7.4442%" y="2373" width="0.0341%" height="15" fill="rgb(214,1,49)" fg:x="1747" fg:w="8"/><text x="7.6942%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="7.4570%" y="2357" width="0.0213%" height="15" fill="rgb(226,163,40)" fg:x="1750" fg:w="5"/><text x="7.7070%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.4570%" y="2341" width="0.0213%" height="15" fill="rgb(239,212,28)" fg:x="1750" fg:w="5"/><text x="7.7070%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="7.4570%" y="2325" width="0.0213%" height="15" fill="rgb(220,20,13)" fg:x="1750" fg:w="5"/><text x="7.7070%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="7.4783%" y="2293" width="0.0213%" height="15" fill="rgb(210,164,35)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="7.4783%" y="2277" width="0.0213%" height="15" fill="rgb(248,109,41)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="7.4783%" y="2261" width="0.0213%" height="15" fill="rgb(238,23,50)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="7.4783%" y="2245" width="0.0213%" height="15" fill="rgb(211,48,49)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="7.4783%" y="2229" width="0.0213%" height="15" fill="rgb(223,36,21)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="7.4783%" y="2213" width="0.0213%" height="15" fill="rgb(207,123,46)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="7.4783%" y="2197" width="0.0213%" height="15" fill="rgb(240,218,32)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="7.4783%" y="2181" width="0.0213%" height="15" fill="rgb(252,5,43)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="7.4783%" y="2165" width="0.0213%" height="15" fill="rgb(252,84,19)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="7.4783%" y="2149" width="0.0213%" height="15" fill="rgb(243,152,39)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="7.4783%" y="2133" width="0.0213%" height="15" fill="rgb(234,160,15)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="7.4783%" y="2117" width="0.0213%" height="15" fill="rgb(237,34,20)" fg:x="1755" fg:w="5"/><text x="7.7283%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="7.4868%" y="2101" width="0.0128%" height="15" fill="rgb(229,97,13)" fg:x="1757" fg:w="3"/><text x="7.7368%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="7.4868%" y="2085" width="0.0128%" height="15" fill="rgb(234,71,50)" fg:x="1757" fg:w="3"/><text x="7.7368%" y="2095.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="7.4996%" y="2245" width="0.0128%" height="15" fill="rgb(253,155,4)" fg:x="1760" fg:w="3"/><text x="7.7496%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4996%" y="2229" width="0.0128%" height="15" fill="rgb(222,185,37)" fg:x="1760" fg:w="3"/><text x="7.7496%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4996%" y="2213" width="0.0128%" height="15" fill="rgb(251,177,13)" fg:x="1760" fg:w="3"/><text x="7.7496%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.4996%" y="2197" width="0.0128%" height="15" fill="rgb(250,179,40)" fg:x="1760" fg:w="3"/><text x="7.7496%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="7.4996%" y="2181" width="0.0128%" height="15" fill="rgb(242,44,2)" fg:x="1760" fg:w="3"/><text x="7.7496%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.4996%" y="2165" width="0.0128%" height="15" fill="rgb(216,177,13)" fg:x="1760" fg:w="3"/><text x="7.7496%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="7.4996%" y="2149" width="0.0128%" height="15" fill="rgb(216,106,43)" fg:x="1760" fg:w="3"/><text x="7.7496%" y="2159.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (119 samples, 0.51%)</title><rect x="7.0223%" y="3061" width="0.5071%" height="15" fill="rgb(216,183,2)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="3071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (119 samples, 0.51%)</title><rect x="7.0223%" y="3045" width="0.5071%" height="15" fill="rgb(249,75,3)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="3055.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (119 samples, 0.51%)</title><rect x="7.0223%" y="3029" width="0.5071%" height="15" fill="rgb(219,67,39)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="3039.50"></text></g><g><title>rayon_core::job::JobRef::execute (119 samples, 0.51%)</title><rect x="7.0223%" y="3013" width="0.5071%" height="15" fill="rgb(253,228,2)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="3023.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (119 samples, 0.51%)</title><rect x="7.0223%" y="2997" width="0.5071%" height="15" fill="rgb(235,138,27)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="3007.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (119 samples, 0.51%)</title><rect x="7.0223%" y="2981" width="0.5071%" height="15" fill="rgb(236,97,51)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (119 samples, 0.51%)</title><rect x="7.0223%" y="2965" width="0.5071%" height="15" fill="rgb(240,80,30)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2975.50"></text></g><g><title>std::panic::catch_unwind (119 samples, 0.51%)</title><rect x="7.0223%" y="2949" width="0.5071%" height="15" fill="rgb(230,178,19)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2959.50"></text></g><g><title>std::panicking::try (119 samples, 0.51%)</title><rect x="7.0223%" y="2933" width="0.5071%" height="15" fill="rgb(210,190,27)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2943.50"></text></g><g><title>std::panicking::try::do_call (119 samples, 0.51%)</title><rect x="7.0223%" y="2917" width="0.5071%" height="15" fill="rgb(222,107,31)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (119 samples, 0.51%)</title><rect x="7.0223%" y="2901" width="0.5071%" height="15" fill="rgb(216,127,34)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2911.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (119 samples, 0.51%)</title><rect x="7.0223%" y="2885" width="0.5071%" height="15" fill="rgb(234,116,52)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (119 samples, 0.51%)</title><rect x="7.0223%" y="2869" width="0.5071%" height="15" fill="rgb(222,124,15)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (119 samples, 0.51%)</title><rect x="7.0223%" y="2853" width="0.5071%" height="15" fill="rgb(231,179,28)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (119 samples, 0.51%)</title><rect x="7.0223%" y="2837" width="0.5071%" height="15" fill="rgb(226,93,45)" fg:x="1648" fg:w="119"/><text x="7.2723%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (113 samples, 0.48%)</title><rect x="7.0479%" y="2821" width="0.4815%" height="15" fill="rgb(215,8,51)" fg:x="1654" fg:w="113"/><text x="7.2979%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (113 samples, 0.48%)</title><rect x="7.0479%" y="2805" width="0.4815%" height="15" fill="rgb(223,106,5)" fg:x="1654" fg:w="113"/><text x="7.2979%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (113 samples, 0.48%)</title><rect x="7.0479%" y="2789" width="0.4815%" height="15" fill="rgb(250,191,5)" fg:x="1654" fg:w="113"/><text x="7.2979%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (48 samples, 0.20%)</title><rect x="7.3249%" y="2773" width="0.2045%" height="15" fill="rgb(242,132,44)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (48 samples, 0.20%)</title><rect x="7.3249%" y="2757" width="0.2045%" height="15" fill="rgb(251,152,29)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2767.50"></text></g><g><title>std::panicking::try (48 samples, 0.20%)</title><rect x="7.3249%" y="2741" width="0.2045%" height="15" fill="rgb(218,179,5)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (48 samples, 0.20%)</title><rect x="7.3249%" y="2725" width="0.2045%" height="15" fill="rgb(227,67,19)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (48 samples, 0.20%)</title><rect x="7.3249%" y="2709" width="0.2045%" height="15" fill="rgb(233,119,31)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (48 samples, 0.20%)</title><rect x="7.3249%" y="2693" width="0.2045%" height="15" fill="rgb(241,120,22)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (48 samples, 0.20%)</title><rect x="7.3249%" y="2677" width="0.2045%" height="15" fill="rgb(224,102,30)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.20%)</title><rect x="7.3249%" y="2661" width="0.2045%" height="15" fill="rgb(210,164,37)" fg:x="1719" fg:w="48"/><text x="7.5749%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="7.3504%" y="2645" width="0.1790%" height="15" fill="rgb(226,191,16)" fg:x="1725" fg:w="42"/><text x="7.6004%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="7.3504%" y="2629" width="0.1790%" height="15" fill="rgb(214,40,45)" fg:x="1725" fg:w="42"/><text x="7.6004%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="7.3504%" y="2613" width="0.1790%" height="15" fill="rgb(244,29,26)" fg:x="1725" fg:w="42"/><text x="7.6004%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="7.4442%" y="2597" width="0.0852%" height="15" fill="rgb(216,16,5)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="7.4442%" y="2581" width="0.0852%" height="15" fill="rgb(249,76,35)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2591.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="7.4442%" y="2565" width="0.0852%" height="15" fill="rgb(207,11,44)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="7.4442%" y="2549" width="0.0852%" height="15" fill="rgb(228,190,49)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="7.4442%" y="2533" width="0.0852%" height="15" fill="rgb(214,173,12)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="7.4442%" y="2517" width="0.0852%" height="15" fill="rgb(218,26,35)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="7.4442%" y="2501" width="0.0852%" height="15" fill="rgb(220,200,19)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="7.4442%" y="2485" width="0.0852%" height="15" fill="rgb(239,95,49)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="7.4442%" y="2469" width="0.0852%" height="15" fill="rgb(235,85,53)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="7.4442%" y="2453" width="0.0852%" height="15" fill="rgb(233,133,31)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="7.4442%" y="2437" width="0.0852%" height="15" fill="rgb(218,25,20)" fg:x="1747" fg:w="20"/><text x="7.6942%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="7.4783%" y="2421" width="0.0511%" height="15" fill="rgb(252,210,38)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="7.4783%" y="2405" width="0.0511%" height="15" fill="rgb(242,134,21)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2415.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="7.4783%" y="2389" width="0.0511%" height="15" fill="rgb(213,28,48)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="7.4783%" y="2373" width="0.0511%" height="15" fill="rgb(250,196,2)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="7.4783%" y="2357" width="0.0511%" height="15" fill="rgb(227,5,17)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="7.4783%" y="2341" width="0.0511%" height="15" fill="rgb(221,226,24)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="7.4783%" y="2325" width="0.0511%" height="15" fill="rgb(211,5,48)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="7.4783%" y="2309" width="0.0511%" height="15" fill="rgb(219,150,6)" fg:x="1755" fg:w="12"/><text x="7.7283%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="7.4996%" y="2293" width="0.0298%" height="15" fill="rgb(251,46,16)" fg:x="1760" fg:w="7"/><text x="7.7496%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="7.4996%" y="2277" width="0.0298%" height="15" fill="rgb(220,204,40)" fg:x="1760" fg:w="7"/><text x="7.7496%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="7.4996%" y="2261" width="0.0298%" height="15" fill="rgb(211,85,2)" fg:x="1760" fg:w="7"/><text x="7.7496%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="7.5124%" y="2245" width="0.0170%" height="15" fill="rgb(229,17,7)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="7.5124%" y="2229" width="0.0170%" height="15" fill="rgb(239,72,28)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2239.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="7.5124%" y="2213" width="0.0170%" height="15" fill="rgb(230,47,54)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="7.5124%" y="2197" width="0.0170%" height="15" fill="rgb(214,50,8)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="7.5124%" y="2181" width="0.0170%" height="15" fill="rgb(216,198,43)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="7.5124%" y="2165" width="0.0170%" height="15" fill="rgb(234,20,35)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="7.5124%" y="2149" width="0.0170%" height="15" fill="rgb(254,45,19)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.5124%" y="2133" width="0.0170%" height="15" fill="rgb(219,14,44)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.5124%" y="2117" width="0.0170%" height="15" fill="rgb(217,220,26)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.5124%" y="2101" width="0.0170%" height="15" fill="rgb(213,158,28)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.5124%" y="2085" width="0.0170%" height="15" fill="rgb(252,51,52)" fg:x="1763" fg:w="4"/><text x="7.7624%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (16 samples, 0.07%)</title><rect x="7.5337%" y="2741" width="0.0682%" height="15" fill="rgb(246,89,16)" fg:x="1768" fg:w="16"/><text x="7.7837%" y="2751.50"></text></g><g><title>std::f64::<impl f64>::exp (16 samples, 0.07%)</title><rect x="7.5337%" y="2725" width="0.0682%" height="15" fill="rgb(216,158,49)" fg:x="1768" fg:w="16"/><text x="7.7837%" y="2735.50"></text></g><g><title>exp (16 samples, 0.07%)</title><rect x="7.5337%" y="2709" width="0.0682%" height="15" fill="rgb(236,107,19)" fg:x="1768" fg:w="16"/><text x="7.7837%" y="2719.50"></text></g><g><title>[libm.so.6] (14 samples, 0.06%)</title><rect x="7.5422%" y="2693" width="0.0597%" height="15" fill="rgb(228,185,30)" fg:x="1770" fg:w="14"/><text x="7.7922%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="7.6061%" y="2741" width="0.0426%" height="15" fill="rgb(246,134,8)" fg:x="1785" fg:w="10"/><text x="7.8561%" y="2751.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="7.6061%" y="2725" width="0.0426%" height="15" fill="rgb(214,143,50)" fg:x="1785" fg:w="10"/><text x="7.8561%" y="2735.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (37 samples, 0.16%)</title><rect x="7.5337%" y="2757" width="0.1577%" height="15" fill="rgb(228,75,8)" fg:x="1768" fg:w="37"/><text x="7.7837%" y="2767.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (10 samples, 0.04%)</title><rect x="7.6487%" y="2741" width="0.0426%" height="15" fill="rgb(207,175,4)" fg:x="1795" fg:w="10"/><text x="7.8987%" y="2751.50"></text></g><g><title>std::f64::<impl f64>::sqrt (10 samples, 0.04%)</title><rect x="7.6487%" y="2725" width="0.0426%" height="15" fill="rgb(205,108,24)" fg:x="1795" fg:w="10"/><text x="7.8987%" y="2735.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (39 samples, 0.17%)</title><rect x="7.5294%" y="2917" width="0.1662%" height="15" fill="rgb(244,120,49)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (39 samples, 0.17%)</title><rect x="7.5294%" y="2901" width="0.1662%" height="15" fill="rgb(223,47,38)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2911.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (39 samples, 0.17%)</title><rect x="7.5294%" y="2885" width="0.1662%" height="15" fill="rgb(229,179,11)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2895.50"></text></g><g><title>core::option::Option<T>::map (39 samples, 0.17%)</title><rect x="7.5294%" y="2869" width="0.1662%" height="15" fill="rgb(231,122,1)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2879.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (39 samples, 0.17%)</title><rect x="7.5294%" y="2853" width="0.1662%" height="15" fill="rgb(245,119,9)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2863.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (39 samples, 0.17%)</title><rect x="7.5294%" y="2837" width="0.1662%" height="15" fill="rgb(241,163,25)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2847.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (39 samples, 0.17%)</title><rect x="7.5294%" y="2821" width="0.1662%" height="15" fill="rgb(217,214,3)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2831.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (39 samples, 0.17%)</title><rect x="7.5294%" y="2805" width="0.1662%" height="15" fill="rgb(240,86,28)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2815.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (39 samples, 0.17%)</title><rect x="7.5294%" y="2789" width="0.1662%" height="15" fill="rgb(215,47,9)" fg:x="1767" fg:w="39"/><text x="7.7794%" y="2799.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (38 samples, 0.16%)</title><rect x="7.5337%" y="2773" width="0.1619%" height="15" fill="rgb(252,25,45)" fg:x="1768" fg:w="38"/><text x="7.7837%" y="2783.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="7.7126%" y="2677" width="0.0128%" height="15" fill="rgb(251,164,9)" fg:x="1810" fg:w="3"/><text x="7.9626%" y="2687.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="7.6956%" y="2789" width="0.0384%" height="15" fill="rgb(233,194,0)" fg:x="1806" fg:w="9"/><text x="7.9456%" y="2799.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="7.6956%" y="2773" width="0.0384%" height="15" fill="rgb(249,111,24)" fg:x="1806" fg:w="9"/><text x="7.9456%" y="2783.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (9 samples, 0.04%)</title><rect x="7.6956%" y="2757" width="0.0384%" height="15" fill="rgb(250,223,3)" fg:x="1806" fg:w="9"/><text x="7.9456%" y="2767.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (9 samples, 0.04%)</title><rect x="7.6956%" y="2741" width="0.0384%" height="15" fill="rgb(236,178,37)" fg:x="1806" fg:w="9"/><text x="7.9456%" y="2751.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (9 samples, 0.04%)</title><rect x="7.6956%" y="2725" width="0.0384%" height="15" fill="rgb(241,158,50)" fg:x="1806" fg:w="9"/><text x="7.9456%" y="2735.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="7.6956%" y="2709" width="0.0384%" height="15" fill="rgb(213,121,41)" fg:x="1806" fg:w="9"/><text x="7.9456%" y="2719.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="7.7041%" y="2693" width="0.0298%" height="15" fill="rgb(240,92,3)" fg:x="1808" fg:w="7"/><text x="7.9541%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (49 samples, 0.21%)</title><rect x="7.5294%" y="2933" width="0.2088%" height="15" fill="rgb(205,123,3)" fg:x="1767" fg:w="49"/><text x="7.7794%" y="2943.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="7.6956%" y="2917" width="0.0426%" height="15" fill="rgb(205,97,47)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2927.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="7.6956%" y="2901" width="0.0426%" height="15" fill="rgb(247,152,14)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2911.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="7.6956%" y="2885" width="0.0426%" height="15" fill="rgb(248,195,53)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="7.6956%" y="2869" width="0.0426%" height="15" fill="rgb(226,201,16)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2879.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="7.6956%" y="2853" width="0.0426%" height="15" fill="rgb(205,98,0)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2863.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="7.6956%" y="2837" width="0.0426%" height="15" fill="rgb(214,191,48)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2847.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="7.6956%" y="2821" width="0.0426%" height="15" fill="rgb(237,112,39)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2831.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="7.6956%" y="2805" width="0.0426%" height="15" fill="rgb(247,203,27)" fg:x="1806" fg:w="10"/><text x="7.9456%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="7.7382%" y="2629" width="0.0256%" height="15" fill="rgb(235,124,28)" fg:x="1816" fg:w="6"/><text x="7.9882%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="7.7382%" y="2613" width="0.0256%" height="15" fill="rgb(208,207,46)" fg:x="1816" fg:w="6"/><text x="7.9882%" y="2623.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="7.7382%" y="2597" width="0.0256%" height="15" fill="rgb(234,176,4)" fg:x="1816" fg:w="6"/><text x="7.9882%" y="2607.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="7.7467%" y="2581" width="0.0170%" height="15" fill="rgb(230,133,28)" fg:x="1818" fg:w="4"/><text x="7.9967%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="7.7638%" y="2629" width="0.0213%" height="15" fill="rgb(211,137,40)" fg:x="1822" fg:w="5"/><text x="8.0138%" y="2639.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="7.7638%" y="2613" width="0.0213%" height="15" fill="rgb(254,35,13)" fg:x="1822" fg:w="5"/><text x="8.0138%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (16 samples, 0.07%)</title><rect x="7.7382%" y="2821" width="0.0682%" height="15" fill="rgb(225,49,51)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2831.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (16 samples, 0.07%)</title><rect x="7.7382%" y="2805" width="0.0682%" height="15" fill="rgb(251,10,15)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (16 samples, 0.07%)</title><rect x="7.7382%" y="2789" width="0.0682%" height="15" fill="rgb(228,207,15)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (16 samples, 0.07%)</title><rect x="7.7382%" y="2773" width="0.0682%" height="15" fill="rgb(241,99,19)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2783.50"></text></g><g><title>core::option::Option<T>::map (16 samples, 0.07%)</title><rect x="7.7382%" y="2757" width="0.0682%" height="15" fill="rgb(207,104,49)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2767.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (16 samples, 0.07%)</title><rect x="7.7382%" y="2741" width="0.0682%" height="15" fill="rgb(234,99,18)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (16 samples, 0.07%)</title><rect x="7.7382%" y="2725" width="0.0682%" height="15" fill="rgb(213,191,49)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (16 samples, 0.07%)</title><rect x="7.7382%" y="2709" width="0.0682%" height="15" fill="rgb(210,226,19)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (16 samples, 0.07%)</title><rect x="7.7382%" y="2693" width="0.0682%" height="15" fill="rgb(229,97,18)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2703.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (16 samples, 0.07%)</title><rect x="7.7382%" y="2677" width="0.0682%" height="15" fill="rgb(211,167,15)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (16 samples, 0.07%)</title><rect x="7.7382%" y="2661" width="0.0682%" height="15" fill="rgb(210,169,34)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (16 samples, 0.07%)</title><rect x="7.7382%" y="2645" width="0.0682%" height="15" fill="rgb(241,121,31)" fg:x="1816" fg:w="16"/><text x="7.9882%" y="2655.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="7.7851%" y="2629" width="0.0213%" height="15" fill="rgb(232,40,11)" fg:x="1827" fg:w="5"/><text x="8.0351%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="7.7851%" y="2613" width="0.0213%" height="15" fill="rgb(205,86,26)" fg:x="1827" fg:w="5"/><text x="8.0351%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="7.8064%" y="2773" width="0.0256%" height="15" fill="rgb(231,126,28)" fg:x="1832" fg:w="6"/><text x="8.0564%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="7.8064%" y="2757" width="0.0256%" height="15" fill="rgb(219,221,18)" fg:x="1832" fg:w="6"/><text x="8.0564%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="7.8064%" y="2741" width="0.0256%" height="15" fill="rgb(211,40,0)" fg:x="1832" fg:w="6"/><text x="8.0564%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="7.8064%" y="2725" width="0.0256%" height="15" fill="rgb(239,85,43)" fg:x="1832" fg:w="6"/><text x="8.0564%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="7.8149%" y="2709" width="0.0170%" height="15" fill="rgb(231,55,21)" fg:x="1834" fg:w="4"/><text x="8.0649%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.8149%" y="2693" width="0.0170%" height="15" fill="rgb(225,184,43)" fg:x="1834" fg:w="4"/><text x="8.0649%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="7.8149%" y="2677" width="0.0170%" height="15" fill="rgb(251,158,41)" fg:x="1834" fg:w="4"/><text x="8.0649%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="7.8192%" y="2661" width="0.0128%" height="15" fill="rgb(234,159,37)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="7.8192%" y="2645" width="0.0128%" height="15" fill="rgb(216,204,22)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2655.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="7.8192%" y="2629" width="0.0128%" height="15" fill="rgb(214,17,3)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="7.8192%" y="2613" width="0.0128%" height="15" fill="rgb(212,111,17)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="7.8192%" y="2597" width="0.0128%" height="15" fill="rgb(221,157,24)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="7.8192%" y="2581" width="0.0128%" height="15" fill="rgb(252,16,13)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.8192%" y="2565" width="0.0128%" height="15" fill="rgb(221,62,2)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.8192%" y="2549" width="0.0128%" height="15" fill="rgb(247,87,22)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="7.8192%" y="2533" width="0.0128%" height="15" fill="rgb(215,73,9)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="7.8192%" y="2517" width="0.0128%" height="15" fill="rgb(207,175,33)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="7.8192%" y="2501" width="0.0128%" height="15" fill="rgb(243,129,54)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="7.8192%" y="2485" width="0.0128%" height="15" fill="rgb(227,119,45)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="7.8192%" y="2469" width="0.0128%" height="15" fill="rgb(205,109,36)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="7.8192%" y="2453" width="0.0128%" height="15" fill="rgb(205,6,39)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="7.8192%" y="2437" width="0.0128%" height="15" fill="rgb(221,32,16)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="7.8192%" y="2421" width="0.0128%" height="15" fill="rgb(228,144,50)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="7.8192%" y="2405" width="0.0128%" height="15" fill="rgb(229,201,53)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="7.8192%" y="2389" width="0.0128%" height="15" fill="rgb(249,153,27)" fg:x="1835" fg:w="3"/><text x="8.0692%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (24 samples, 0.10%)</title><rect x="7.7382%" y="2885" width="0.1023%" height="15" fill="rgb(227,106,25)" fg:x="1816" fg:w="24"/><text x="7.9882%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (24 samples, 0.10%)</title><rect x="7.7382%" y="2869" width="0.1023%" height="15" fill="rgb(230,65,29)" fg:x="1816" fg:w="24"/><text x="7.9882%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="7.7382%" y="2853" width="0.1023%" height="15" fill="rgb(221,57,46)" fg:x="1816" fg:w="24"/><text x="7.9882%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="7.7382%" y="2837" width="0.1023%" height="15" fill="rgb(229,161,17)" fg:x="1816" fg:w="24"/><text x="7.9882%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="7.8064%" y="2821" width="0.0341%" height="15" fill="rgb(222,213,11)" fg:x="1832" fg:w="8"/><text x="8.0564%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="7.8064%" y="2805" width="0.0341%" height="15" fill="rgb(235,35,13)" fg:x="1832" fg:w="8"/><text x="8.0564%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="7.8064%" y="2789" width="0.0341%" height="15" fill="rgb(233,158,34)" fg:x="1832" fg:w="8"/><text x="8.0564%" y="2799.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (9 samples, 0.04%)</title><rect x="7.8405%" y="2565" width="0.0384%" height="15" fill="rgb(215,151,48)" fg:x="1840" fg:w="9"/><text x="8.0905%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (9 samples, 0.04%)</title><rect x="7.8405%" y="2549" width="0.0384%" height="15" fill="rgb(229,84,14)" fg:x="1840" fg:w="9"/><text x="8.0905%" y="2559.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="7.8405%" y="2533" width="0.0384%" height="15" fill="rgb(229,68,14)" fg:x="1840" fg:w="9"/><text x="8.0905%" y="2543.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="7.8447%" y="2517" width="0.0341%" height="15" fill="rgb(243,106,26)" fg:x="1841" fg:w="8"/><text x="8.0947%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="7.8788%" y="2565" width="0.0128%" height="15" fill="rgb(206,45,38)" fg:x="1849" fg:w="3"/><text x="8.1288%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="7.8788%" y="2549" width="0.0128%" height="15" fill="rgb(226,6,15)" fg:x="1849" fg:w="3"/><text x="8.1288%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (13 samples, 0.06%)</title><rect x="7.8405%" y="2581" width="0.0554%" height="15" fill="rgb(232,22,54)" fg:x="1840" fg:w="13"/><text x="8.0905%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (14 samples, 0.06%)</title><rect x="7.8405%" y="2757" width="0.0597%" height="15" fill="rgb(229,222,32)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2767.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (14 samples, 0.06%)</title><rect x="7.8405%" y="2741" width="0.0597%" height="15" fill="rgb(228,62,29)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (14 samples, 0.06%)</title><rect x="7.8405%" y="2725" width="0.0597%" height="15" fill="rgb(251,103,34)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (14 samples, 0.06%)</title><rect x="7.8405%" y="2709" width="0.0597%" height="15" fill="rgb(233,12,30)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (14 samples, 0.06%)</title><rect x="7.8405%" y="2693" width="0.0597%" height="15" fill="rgb(238,52,0)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (14 samples, 0.06%)</title><rect x="7.8405%" y="2677" width="0.0597%" height="15" fill="rgb(223,98,5)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (14 samples, 0.06%)</title><rect x="7.8405%" y="2661" width="0.0597%" height="15" fill="rgb(228,75,37)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (14 samples, 0.06%)</title><rect x="7.8405%" y="2645" width="0.0597%" height="15" fill="rgb(205,115,49)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (14 samples, 0.06%)</title><rect x="7.8405%" y="2629" width="0.0597%" height="15" fill="rgb(250,154,43)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (14 samples, 0.06%)</title><rect x="7.8405%" y="2613" width="0.0597%" height="15" fill="rgb(226,43,29)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (14 samples, 0.06%)</title><rect x="7.8405%" y="2597" width="0.0597%" height="15" fill="rgb(249,228,39)" fg:x="1840" fg:w="14"/><text x="8.0905%" y="2607.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (350 samples, 1.49%)</title><rect x="6.4300%" y="3173" width="1.4914%" height="15" fill="rgb(216,79,43)" fg:x="1509" fg:w="350"/><text x="6.6800%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (350 samples, 1.49%)</title><rect x="6.4300%" y="3157" width="1.4914%" height="15" fill="rgb(228,95,12)" fg:x="1509" fg:w="350"/><text x="6.6800%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (350 samples, 1.49%)</title><rect x="6.4300%" y="3141" width="1.4914%" height="15" fill="rgb(249,221,15)" fg:x="1509" fg:w="350"/><text x="6.6800%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (350 samples, 1.49%)</title><rect x="6.4300%" y="3125" width="1.4914%" height="15" fill="rgb(233,34,13)" fg:x="1509" fg:w="350"/><text x="6.6800%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (310 samples, 1.32%)</title><rect x="6.6005%" y="3109" width="1.3209%" height="15" fill="rgb(214,103,39)" fg:x="1549" fg:w="310"/><text x="6.8505%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (310 samples, 1.32%)</title><rect x="6.6005%" y="3093" width="1.3209%" height="15" fill="rgb(251,126,39)" fg:x="1549" fg:w="310"/><text x="6.8505%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (310 samples, 1.32%)</title><rect x="6.6005%" y="3077" width="1.3209%" height="15" fill="rgb(214,216,36)" fg:x="1549" fg:w="310"/><text x="6.8505%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (92 samples, 0.39%)</title><rect x="7.5294%" y="3061" width="0.3920%" height="15" fill="rgb(220,221,8)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (92 samples, 0.39%)</title><rect x="7.5294%" y="3045" width="0.3920%" height="15" fill="rgb(240,216,3)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="3055.50"></text></g><g><title>std::panicking::try (92 samples, 0.39%)</title><rect x="7.5294%" y="3029" width="0.3920%" height="15" fill="rgb(232,218,17)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (92 samples, 0.39%)</title><rect x="7.5294%" y="3013" width="0.3920%" height="15" fill="rgb(229,163,45)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (92 samples, 0.39%)</title><rect x="7.5294%" y="2997" width="0.3920%" height="15" fill="rgb(231,110,42)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (92 samples, 0.39%)</title><rect x="7.5294%" y="2981" width="0.3920%" height="15" fill="rgb(208,170,48)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (92 samples, 0.39%)</title><rect x="7.5294%" y="2965" width="0.3920%" height="15" fill="rgb(239,116,25)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (92 samples, 0.39%)</title><rect x="7.5294%" y="2949" width="0.3920%" height="15" fill="rgb(219,200,50)" fg:x="1767" fg:w="92"/><text x="7.7794%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (43 samples, 0.18%)</title><rect x="7.7382%" y="2933" width="0.1832%" height="15" fill="rgb(245,200,0)" fg:x="1816" fg:w="43"/><text x="7.9882%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.18%)</title><rect x="7.7382%" y="2917" width="0.1832%" height="15" fill="rgb(245,119,33)" fg:x="1816" fg:w="43"/><text x="7.9882%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43 samples, 0.18%)</title><rect x="7.7382%" y="2901" width="0.1832%" height="15" fill="rgb(231,125,12)" fg:x="1816" fg:w="43"/><text x="7.9882%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="7.8405%" y="2885" width="0.0810%" height="15" fill="rgb(216,96,41)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="7.8405%" y="2869" width="0.0810%" height="15" fill="rgb(248,43,45)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2879.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="7.8405%" y="2853" width="0.0810%" height="15" fill="rgb(217,222,7)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="7.8405%" y="2837" width="0.0810%" height="15" fill="rgb(233,28,6)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="7.8405%" y="2821" width="0.0810%" height="15" fill="rgb(231,218,15)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="7.8405%" y="2805" width="0.0810%" height="15" fill="rgb(226,171,48)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="7.8405%" y="2789" width="0.0810%" height="15" fill="rgb(235,201,9)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="7.8405%" y="2773" width="0.0810%" height="15" fill="rgb(217,80,15)" fg:x="1840" fg:w="19"/><text x="8.0905%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="7.9001%" y="2757" width="0.0213%" height="15" fill="rgb(219,152,8)" fg:x="1854" fg:w="5"/><text x="8.1501%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.9001%" y="2741" width="0.0213%" height="15" fill="rgb(243,107,38)" fg:x="1854" fg:w="5"/><text x="8.1501%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="7.9001%" y="2725" width="0.0213%" height="15" fill="rgb(231,17,5)" fg:x="1854" fg:w="5"/><text x="8.1501%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="7.9086%" y="2709" width="0.0128%" height="15" fill="rgb(209,25,54)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="7.9086%" y="2693" width="0.0128%" height="15" fill="rgb(219,0,2)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2703.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="7.9086%" y="2677" width="0.0128%" height="15" fill="rgb(246,9,5)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="7.9086%" y="2661" width="0.0128%" height="15" fill="rgb(226,159,4)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="7.9086%" y="2645" width="0.0128%" height="15" fill="rgb(219,175,34)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="7.9086%" y="2629" width="0.0128%" height="15" fill="rgb(236,10,46)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.9086%" y="2613" width="0.0128%" height="15" fill="rgb(240,211,16)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.9086%" y="2597" width="0.0128%" height="15" fill="rgb(205,3,43)" fg:x="1856" fg:w="3"/><text x="8.1586%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="7.9214%" y="2933" width="0.0170%" height="15" fill="rgb(245,7,22)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2943.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="7.9214%" y="2917" width="0.0170%" height="15" fill="rgb(239,132,32)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="7.9214%" y="2901" width="0.0170%" height="15" fill="rgb(228,202,34)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2911.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="7.9214%" y="2885" width="0.0170%" height="15" fill="rgb(254,200,22)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2895.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="7.9214%" y="2869" width="0.0170%" height="15" fill="rgb(219,10,39)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2879.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="7.9214%" y="2853" width="0.0170%" height="15" fill="rgb(226,210,39)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2863.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="7.9214%" y="2837" width="0.0170%" height="15" fill="rgb(208,219,16)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2847.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="7.9214%" y="2821" width="0.0170%" height="15" fill="rgb(216,158,51)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2831.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="7.9214%" y="2805" width="0.0170%" height="15" fill="rgb(233,14,44)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2815.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="7.9214%" y="2789" width="0.0170%" height="15" fill="rgb(237,97,39)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2799.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="7.9214%" y="2773" width="0.0170%" height="15" fill="rgb(218,198,43)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2783.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="7.9214%" y="2757" width="0.0170%" height="15" fill="rgb(231,104,20)" fg:x="1859" fg:w="4"/><text x="8.1714%" y="2767.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="7.9470%" y="2533" width="0.0170%" height="15" fill="rgb(254,36,13)" fg:x="1865" fg:w="4"/><text x="8.1970%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="7.9470%" y="2709" width="0.0213%" height="15" fill="rgb(248,14,50)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2719.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="7.9470%" y="2693" width="0.0213%" height="15" fill="rgb(217,107,29)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="7.9470%" y="2677" width="0.0213%" height="15" fill="rgb(251,169,33)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2687.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="7.9470%" y="2661" width="0.0213%" height="15" fill="rgb(217,108,32)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2671.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="7.9470%" y="2645" width="0.0213%" height="15" fill="rgb(219,66,42)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="7.9470%" y="2629" width="0.0213%" height="15" fill="rgb(206,180,7)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="7.9470%" y="2613" width="0.0213%" height="15" fill="rgb(208,226,31)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="7.9470%" y="2597" width="0.0213%" height="15" fill="rgb(218,26,49)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="7.9470%" y="2581" width="0.0213%" height="15" fill="rgb(233,197,48)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2591.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="7.9470%" y="2565" width="0.0213%" height="15" fill="rgb(252,181,51)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2575.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="7.9470%" y="2549" width="0.0213%" height="15" fill="rgb(253,90,19)" fg:x="1865" fg:w="5"/><text x="8.1970%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="7.9683%" y="2661" width="0.0128%" height="15" fill="rgb(215,171,30)" fg:x="1870" fg:w="3"/><text x="8.2183%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="7.9683%" y="2645" width="0.0128%" height="15" fill="rgb(214,222,9)" fg:x="1870" fg:w="3"/><text x="8.2183%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.9683%" y="2629" width="0.0128%" height="15" fill="rgb(223,3,22)" fg:x="1870" fg:w="3"/><text x="8.2183%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.9683%" y="2613" width="0.0128%" height="15" fill="rgb(225,196,46)" fg:x="1870" fg:w="3"/><text x="8.2183%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="7.9470%" y="2773" width="0.0469%" height="15" fill="rgb(209,110,37)" fg:x="1865" fg:w="11"/><text x="8.1970%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="7.9470%" y="2757" width="0.0469%" height="15" fill="rgb(249,89,12)" fg:x="1865" fg:w="11"/><text x="8.1970%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="7.9470%" y="2741" width="0.0469%" height="15" fill="rgb(226,27,33)" fg:x="1865" fg:w="11"/><text x="8.1970%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="7.9470%" y="2725" width="0.0469%" height="15" fill="rgb(213,82,22)" fg:x="1865" fg:w="11"/><text x="8.1970%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="7.9683%" y="2709" width="0.0256%" height="15" fill="rgb(248,140,0)" fg:x="1870" fg:w="6"/><text x="8.2183%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="7.9683%" y="2693" width="0.0256%" height="15" fill="rgb(228,106,3)" fg:x="1870" fg:w="6"/><text x="8.2183%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="7.9683%" y="2677" width="0.0256%" height="15" fill="rgb(209,23,37)" fg:x="1870" fg:w="6"/><text x="8.2183%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="7.9811%" y="2661" width="0.0128%" height="15" fill="rgb(241,93,50)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="7.9811%" y="2645" width="0.0128%" height="15" fill="rgb(253,46,43)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2655.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="7.9811%" y="2629" width="0.0128%" height="15" fill="rgb(226,206,43)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="7.9811%" y="2613" width="0.0128%" height="15" fill="rgb(217,54,7)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="7.9811%" y="2597" width="0.0128%" height="15" fill="rgb(223,5,52)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="7.9811%" y="2581" width="0.0128%" height="15" fill="rgb(206,52,46)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="7.9811%" y="2565" width="0.0128%" height="15" fill="rgb(253,136,11)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.9811%" y="2549" width="0.0128%" height="15" fill="rgb(208,106,33)" fg:x="1873" fg:w="3"/><text x="8.2311%" y="2559.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="7.9939%" y="2341" width="0.0170%" height="15" fill="rgb(206,54,4)" fg:x="1876" fg:w="4"/><text x="8.2439%" y="2351.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="7.9939%" y="2325" width="0.0170%" height="15" fill="rgb(213,3,15)" fg:x="1876" fg:w="4"/><text x="8.2439%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="7.9939%" y="2533" width="0.0213%" height="15" fill="rgb(252,211,39)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2543.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="7.9939%" y="2517" width="0.0213%" height="15" fill="rgb(223,6,36)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="7.9939%" y="2501" width="0.0213%" height="15" fill="rgb(252,169,45)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="7.9939%" y="2485" width="0.0213%" height="15" fill="rgb(212,48,26)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="7.9939%" y="2469" width="0.0213%" height="15" fill="rgb(251,102,48)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="7.9939%" y="2453" width="0.0213%" height="15" fill="rgb(243,208,16)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="7.9939%" y="2437" width="0.0213%" height="15" fill="rgb(219,96,24)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="7.9939%" y="2421" width="0.0213%" height="15" fill="rgb(219,33,29)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="7.9939%" y="2405" width="0.0213%" height="15" fill="rgb(223,176,5)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="7.9939%" y="2389" width="0.0213%" height="15" fill="rgb(228,140,14)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="7.9939%" y="2373" width="0.0213%" height="15" fill="rgb(217,179,31)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="7.9939%" y="2357" width="0.0213%" height="15" fill="rgb(230,9,30)" fg:x="1876" fg:w="5"/><text x="8.2439%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="8.0152%" y="2373" width="0.0170%" height="15" fill="rgb(230,136,20)" fg:x="1881" fg:w="4"/><text x="8.2652%" y="2383.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="8.0152%" y="2357" width="0.0170%" height="15" fill="rgb(215,210,22)" fg:x="1881" fg:w="4"/><text x="8.2652%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="8.0152%" y="2341" width="0.0170%" height="15" fill="rgb(218,43,5)" fg:x="1881" fg:w="4"/><text x="8.2652%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.0152%" y="2325" width="0.0170%" height="15" fill="rgb(216,11,5)" fg:x="1881" fg:w="4"/><text x="8.2652%" y="2335.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.0152%" y="2309" width="0.0170%" height="15" fill="rgb(209,82,29)" fg:x="1881" fg:w="4"/><text x="8.2652%" y="2319.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.0152%" y="2293" width="0.0170%" height="15" fill="rgb(244,115,12)" fg:x="1881" fg:w="4"/><text x="8.2652%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.0152%" y="2277" width="0.0170%" height="15" fill="rgb(222,82,18)" fg:x="1881" fg:w="4"/><text x="8.2652%" y="2287.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="8.0322%" y="2197" width="0.0128%" height="15" fill="rgb(249,227,8)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="8.0322%" y="2181" width="0.0128%" height="15" fill="rgb(253,141,45)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.0322%" y="2165" width="0.0128%" height="15" fill="rgb(234,184,4)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.0322%" y="2149" width="0.0128%" height="15" fill="rgb(218,194,23)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.0322%" y="2133" width="0.0128%" height="15" fill="rgb(235,66,41)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2143.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.0322%" y="2117" width="0.0128%" height="15" fill="rgb(245,217,1)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.0322%" y="2101" width="0.0128%" height="15" fill="rgb(229,91,1)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2111.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.0322%" y="2085" width="0.0128%" height="15" fill="rgb(207,101,30)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2095.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.0322%" y="2069" width="0.0128%" height="15" fill="rgb(223,82,49)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2079.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.0322%" y="2053" width="0.0128%" height="15" fill="rgb(218,167,17)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.0322%" y="2037" width="0.0128%" height="15" fill="rgb(208,103,14)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.0322%" y="2021" width="0.0128%" height="15" fill="rgb(238,20,8)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.0322%" y="2005" width="0.0128%" height="15" fill="rgb(218,80,54)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="2015.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.0322%" y="1989" width="0.0128%" height="15" fill="rgb(240,144,17)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="1999.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.0322%" y="1973" width="0.0128%" height="15" fill="rgb(245,27,50)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="1983.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.0322%" y="1957" width="0.0128%" height="15" fill="rgb(251,51,7)" fg:x="1885" fg:w="3"/><text x="8.2822%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="8.0152%" y="2485" width="0.0384%" height="15" fill="rgb(245,217,29)" fg:x="1881" fg:w="9"/><text x="8.2652%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="8.0152%" y="2469" width="0.0384%" height="15" fill="rgb(221,176,29)" fg:x="1881" fg:w="9"/><text x="8.2652%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="8.0152%" y="2453" width="0.0384%" height="15" fill="rgb(212,180,24)" fg:x="1881" fg:w="9"/><text x="8.2652%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.0152%" y="2437" width="0.0384%" height="15" fill="rgb(254,24,2)" fg:x="1881" fg:w="9"/><text x="8.2652%" y="2447.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="8.0152%" y="2421" width="0.0384%" height="15" fill="rgb(230,100,2)" fg:x="1881" fg:w="9"/><text x="8.2652%" y="2431.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.0152%" y="2405" width="0.0384%" height="15" fill="rgb(219,142,25)" fg:x="1881" fg:w="9"/><text x="8.2652%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="8.0152%" y="2389" width="0.0384%" height="15" fill="rgb(240,73,43)" fg:x="1881" fg:w="9"/><text x="8.2652%" y="2399.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="8.0322%" y="2373" width="0.0213%" height="15" fill="rgb(214,114,15)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2383.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="8.0322%" y="2357" width="0.0213%" height="15" fill="rgb(207,130,4)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2367.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="8.0322%" y="2341" width="0.0213%" height="15" fill="rgb(221,25,40)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2351.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="8.0322%" y="2325" width="0.0213%" height="15" fill="rgb(241,184,7)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2335.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="8.0322%" y="2309" width="0.0213%" height="15" fill="rgb(235,159,4)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="8.0322%" y="2293" width="0.0213%" height="15" fill="rgb(214,87,48)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="8.0322%" y="2277" width="0.0213%" height="15" fill="rgb(246,198,24)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.0322%" y="2261" width="0.0213%" height="15" fill="rgb(209,66,40)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="8.0322%" y="2245" width="0.0213%" height="15" fill="rgb(233,147,39)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.0322%" y="2229" width="0.0213%" height="15" fill="rgb(231,145,52)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="8.0322%" y="2213" width="0.0213%" height="15" fill="rgb(206,20,26)" fg:x="1885" fg:w="5"/><text x="8.2822%" y="2223.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="8.0535%" y="2197" width="0.0128%" height="15" fill="rgb(238,220,4)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="8.0535%" y="2181" width="0.0128%" height="15" fill="rgb(252,195,42)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="8.0535%" y="2165" width="0.0128%" height="15" fill="rgb(209,10,6)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2175.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="8.0535%" y="2149" width="0.0128%" height="15" fill="rgb(229,3,52)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2159.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="8.0535%" y="2133" width="0.0128%" height="15" fill="rgb(253,49,37)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2143.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="8.0535%" y="2117" width="0.0128%" height="15" fill="rgb(240,103,49)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2127.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="8.0535%" y="2101" width="0.0128%" height="15" fill="rgb(250,182,30)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2111.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="8.0535%" y="2085" width="0.0128%" height="15" fill="rgb(248,8,30)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2095.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="8.0535%" y="2069" width="0.0128%" height="15" fill="rgb(237,120,30)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2079.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="8.0535%" y="2053" width="0.0128%" height="15" fill="rgb(221,146,34)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2063.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="8.0535%" y="2037" width="0.0128%" height="15" fill="rgb(242,55,13)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2047.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="8.0535%" y="2021" width="0.0128%" height="15" fill="rgb(242,112,31)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="8.0535%" y="2005" width="0.0128%" height="15" fill="rgb(249,192,27)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.0535%" y="1989" width="0.0128%" height="15" fill="rgb(208,204,44)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.0535%" y="1973" width="0.0128%" height="15" fill="rgb(208,93,54)" fg:x="1890" fg:w="3"/><text x="8.3035%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="8.0535%" y="2453" width="0.0213%" height="15" fill="rgb(242,1,31)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2463.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="8.0535%" y="2437" width="0.0213%" height="15" fill="rgb(241,83,25)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="8.0535%" y="2421" width="0.0213%" height="15" fill="rgb(205,169,50)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="8.0535%" y="2405" width="0.0213%" height="15" fill="rgb(239,186,37)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="8.0535%" y="2389" width="0.0213%" height="15" fill="rgb(205,221,10)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2399.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="8.0535%" y="2373" width="0.0213%" height="15" fill="rgb(218,196,15)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2383.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="8.0535%" y="2357" width="0.0213%" height="15" fill="rgb(218,196,35)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2367.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="8.0535%" y="2341" width="0.0213%" height="15" fill="rgb(233,63,24)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="8.0535%" y="2325" width="0.0213%" height="15" fill="rgb(225,8,4)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="8.0535%" y="2309" width="0.0213%" height="15" fill="rgb(234,105,35)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="8.0535%" y="2293" width="0.0213%" height="15" fill="rgb(236,21,32)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="8.0535%" y="2277" width="0.0213%" height="15" fill="rgb(228,109,6)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.0535%" y="2261" width="0.0213%" height="15" fill="rgb(229,215,31)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="8.0535%" y="2245" width="0.0213%" height="15" fill="rgb(221,52,54)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.0535%" y="2229" width="0.0213%" height="15" fill="rgb(252,129,43)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="8.0535%" y="2213" width="0.0213%" height="15" fill="rgb(248,183,27)" fg:x="1890" fg:w="5"/><text x="8.3035%" y="2223.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="8.0535%" y="2485" width="0.0469%" height="15" fill="rgb(250,0,22)" fg:x="1890" fg:w="11"/><text x="8.3035%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="8.0535%" y="2469" width="0.0469%" height="15" fill="rgb(213,166,10)" fg:x="1890" fg:w="11"/><text x="8.3035%" y="2479.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="8.0791%" y="2453" width="0.0213%" height="15" fill="rgb(207,163,36)" fg:x="1896" fg:w="5"/><text x="8.3291%" y="2463.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="8.0791%" y="2437" width="0.0213%" height="15" fill="rgb(208,122,22)" fg:x="1896" fg:w="5"/><text x="8.3291%" y="2447.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="8.0791%" y="2421" width="0.0213%" height="15" fill="rgb(207,104,49)" fg:x="1896" fg:w="5"/><text x="8.3291%" y="2431.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="8.0791%" y="2405" width="0.0213%" height="15" fill="rgb(248,211,50)" fg:x="1896" fg:w="5"/><text x="8.3291%" y="2415.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="8.0791%" y="2389" width="0.0213%" height="15" fill="rgb(217,13,45)" fg:x="1896" fg:w="5"/><text x="8.3291%" y="2399.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="8.0791%" y="2373" width="0.0213%" height="15" fill="rgb(211,216,49)" fg:x="1896" fg:w="5"/><text x="8.3291%" y="2383.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="8.0791%" y="2357" width="0.0213%" height="15" fill="rgb(221,58,53)" fg:x="1896" fg:w="5"/><text x="8.3291%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="8.1260%" y="1877" width="0.0128%" height="15" fill="rgb(220,112,41)" fg:x="1907" fg:w="3"/><text x="8.3760%" y="1887.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="8.1260%" y="1861" width="0.0128%" height="15" fill="rgb(236,38,28)" fg:x="1907" fg:w="3"/><text x="8.3760%" y="1871.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.1260%" y="1845" width="0.0128%" height="15" fill="rgb(227,195,22)" fg:x="1907" fg:w="3"/><text x="8.3760%" y="1855.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.1260%" y="1829" width="0.0128%" height="15" fill="rgb(214,55,33)" fg:x="1907" fg:w="3"/><text x="8.3760%" y="1839.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="8.1260%" y="1893" width="0.0170%" height="15" fill="rgb(248,80,13)" fg:x="1907" fg:w="4"/><text x="8.3760%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="8.1004%" y="2309" width="0.0469%" height="15" fill="rgb(238,52,6)" fg:x="1901" fg:w="11"/><text x="8.3504%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="8.1004%" y="2293" width="0.0469%" height="15" fill="rgb(224,198,47)" fg:x="1901" fg:w="11"/><text x="8.3504%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="8.1004%" y="2277" width="0.0469%" height="15" fill="rgb(233,171,20)" fg:x="1901" fg:w="11"/><text x="8.3504%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="8.1004%" y="2261" width="0.0469%" height="15" fill="rgb(241,30,25)" fg:x="1901" fg:w="11"/><text x="8.3504%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="8.1089%" y="2245" width="0.0384%" height="15" fill="rgb(207,171,38)" fg:x="1903" fg:w="9"/><text x="8.3589%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.1089%" y="2229" width="0.0384%" height="15" fill="rgb(234,70,1)" fg:x="1903" fg:w="9"/><text x="8.3589%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="8.1089%" y="2213" width="0.0384%" height="15" fill="rgb(232,178,18)" fg:x="1903" fg:w="9"/><text x="8.3589%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="8.1260%" y="2197" width="0.0213%" height="15" fill="rgb(241,78,40)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="8.1260%" y="2181" width="0.0213%" height="15" fill="rgb(222,35,25)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2191.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="8.1260%" y="2165" width="0.0213%" height="15" fill="rgb(207,92,16)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="8.1260%" y="2149" width="0.0213%" height="15" fill="rgb(216,59,51)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="8.1260%" y="2133" width="0.0213%" height="15" fill="rgb(213,80,28)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1260%" y="2117" width="0.0213%" height="15" fill="rgb(220,93,7)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1260%" y="2101" width="0.0213%" height="15" fill="rgb(225,24,44)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.1260%" y="2085" width="0.0213%" height="15" fill="rgb(243,74,40)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="8.1260%" y="2069" width="0.0213%" height="15" fill="rgb(228,39,7)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="8.1260%" y="2053" width="0.0213%" height="15" fill="rgb(227,79,8)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="8.1260%" y="2037" width="0.0213%" height="15" fill="rgb(236,58,11)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="8.1260%" y="2021" width="0.0213%" height="15" fill="rgb(249,63,35)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="8.1260%" y="2005" width="0.0213%" height="15" fill="rgb(252,114,16)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="8.1260%" y="1989" width="0.0213%" height="15" fill="rgb(254,151,24)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="8.1260%" y="1973" width="0.0213%" height="15" fill="rgb(253,54,39)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1260%" y="1957" width="0.0213%" height="15" fill="rgb(243,25,45)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="8.1260%" y="1941" width="0.0213%" height="15" fill="rgb(234,134,9)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="8.1260%" y="1925" width="0.0213%" height="15" fill="rgb(227,166,31)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1260%" y="1909" width="0.0213%" height="15" fill="rgb(245,143,41)" fg:x="1907" fg:w="5"/><text x="8.3760%" y="1919.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="8.1558%" y="2133" width="0.0213%" height="15" fill="rgb(238,181,32)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1558%" y="2117" width="0.0213%" height="15" fill="rgb(224,113,18)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1558%" y="2101" width="0.0213%" height="15" fill="rgb(240,229,28)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.1558%" y="2085" width="0.0213%" height="15" fill="rgb(250,185,3)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="8.1558%" y="2069" width="0.0213%" height="15" fill="rgb(212,59,25)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="8.1558%" y="2053" width="0.0213%" height="15" fill="rgb(221,87,20)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="8.1558%" y="2037" width="0.0213%" height="15" fill="rgb(213,74,28)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="8.1558%" y="2021" width="0.0213%" height="15" fill="rgb(224,132,34)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="8.1558%" y="2005" width="0.0213%" height="15" fill="rgb(222,101,24)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="8.1558%" y="1989" width="0.0213%" height="15" fill="rgb(254,142,4)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="8.1558%" y="1973" width="0.0213%" height="15" fill="rgb(230,229,49)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1558%" y="1957" width="0.0213%" height="15" fill="rgb(238,70,47)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="8.1558%" y="1941" width="0.0213%" height="15" fill="rgb(231,160,17)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="8.1558%" y="1925" width="0.0213%" height="15" fill="rgb(218,68,53)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="8.1558%" y="1909" width="0.0213%" height="15" fill="rgb(236,111,10)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="8.1558%" y="1893" width="0.0213%" height="15" fill="rgb(224,34,41)" fg:x="1914" fg:w="5"/><text x="8.4058%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.1771%" y="1829" width="0.0128%" height="15" fill="rgb(241,118,19)" fg:x="1919" fg:w="3"/><text x="8.4271%" y="1839.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="8.1771%" y="1813" width="0.0128%" height="15" fill="rgb(238,129,25)" fg:x="1919" fg:w="3"/><text x="8.4271%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="8.1771%" y="1797" width="0.0128%" height="15" fill="rgb(238,22,31)" fg:x="1919" fg:w="3"/><text x="8.4271%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (47 samples, 0.20%)</title><rect x="7.9939%" y="2773" width="0.2003%" height="15" fill="rgb(222,174,48)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (47 samples, 0.20%)</title><rect x="7.9939%" y="2757" width="0.2003%" height="15" fill="rgb(206,152,40)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2767.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (47 samples, 0.20%)</title><rect x="7.9939%" y="2741" width="0.2003%" height="15" fill="rgb(218,99,54)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2751.50"></text></g><g><title>rayon_core::job::JobRef::execute (47 samples, 0.20%)</title><rect x="7.9939%" y="2725" width="0.2003%" height="15" fill="rgb(220,174,26)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2735.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (47 samples, 0.20%)</title><rect x="7.9939%" y="2709" width="0.2003%" height="15" fill="rgb(245,116,9)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (47 samples, 0.20%)</title><rect x="7.9939%" y="2693" width="0.2003%" height="15" fill="rgb(209,72,35)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (47 samples, 0.20%)</title><rect x="7.9939%" y="2677" width="0.2003%" height="15" fill="rgb(226,126,21)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (47 samples, 0.20%)</title><rect x="7.9939%" y="2661" width="0.2003%" height="15" fill="rgb(227,192,1)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2671.50"></text></g><g><title>std::panicking::try (47 samples, 0.20%)</title><rect x="7.9939%" y="2645" width="0.2003%" height="15" fill="rgb(237,180,29)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (47 samples, 0.20%)</title><rect x="7.9939%" y="2629" width="0.2003%" height="15" fill="rgb(230,197,35)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (47 samples, 0.20%)</title><rect x="7.9939%" y="2613" width="0.2003%" height="15" fill="rgb(246,193,31)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2623.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (47 samples, 0.20%)</title><rect x="7.9939%" y="2597" width="0.2003%" height="15" fill="rgb(241,36,4)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (47 samples, 0.20%)</title><rect x="7.9939%" y="2581" width="0.2003%" height="15" fill="rgb(241,130,17)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (47 samples, 0.20%)</title><rect x="7.9939%" y="2565" width="0.2003%" height="15" fill="rgb(206,137,32)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.20%)</title><rect x="7.9939%" y="2549" width="0.2003%" height="15" fill="rgb(237,228,51)" fg:x="1876" fg:w="47"/><text x="8.2439%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="8.0152%" y="2533" width="0.1790%" height="15" fill="rgb(243,6,42)" fg:x="1881" fg:w="42"/><text x="8.2652%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="8.0152%" y="2517" width="0.1790%" height="15" fill="rgb(251,74,28)" fg:x="1881" fg:w="42"/><text x="8.2652%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="8.0152%" y="2501" width="0.1790%" height="15" fill="rgb(218,20,49)" fg:x="1881" fg:w="42"/><text x="8.2652%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="8.1004%" y="2485" width="0.0937%" height="15" fill="rgb(238,28,14)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="8.1004%" y="2469" width="0.0937%" height="15" fill="rgb(229,40,46)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2479.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="8.1004%" y="2453" width="0.0937%" height="15" fill="rgb(244,195,20)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="8.1004%" y="2437" width="0.0937%" height="15" fill="rgb(253,56,35)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="8.1004%" y="2421" width="0.0937%" height="15" fill="rgb(210,149,44)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (22 samples, 0.09%)</title><rect x="8.1004%" y="2405" width="0.0937%" height="15" fill="rgb(240,135,12)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="8.1004%" y="2389" width="0.0937%" height="15" fill="rgb(251,24,50)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="8.1004%" y="2373" width="0.0937%" height="15" fill="rgb(243,200,47)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="8.1004%" y="2357" width="0.0937%" height="15" fill="rgb(224,166,26)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="8.1004%" y="2341" width="0.0937%" height="15" fill="rgb(233,0,47)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="8.1004%" y="2325" width="0.0937%" height="15" fill="rgb(253,80,5)" fg:x="1901" fg:w="22"/><text x="8.3504%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="8.1473%" y="2309" width="0.0469%" height="15" fill="rgb(214,133,25)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="8.1473%" y="2293" width="0.0469%" height="15" fill="rgb(209,27,14)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2303.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="8.1473%" y="2277" width="0.0469%" height="15" fill="rgb(219,102,51)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="8.1473%" y="2261" width="0.0469%" height="15" fill="rgb(237,18,16)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="8.1473%" y="2245" width="0.0469%" height="15" fill="rgb(241,85,17)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="8.1473%" y="2229" width="0.0469%" height="15" fill="rgb(236,90,42)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="8.1473%" y="2213" width="0.0469%" height="15" fill="rgb(249,57,21)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="8.1473%" y="2197" width="0.0469%" height="15" fill="rgb(243,12,36)" fg:x="1912" fg:w="11"/><text x="8.3973%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="8.1558%" y="2181" width="0.0384%" height="15" fill="rgb(253,128,47)" fg:x="1914" fg:w="9"/><text x="8.4058%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.1558%" y="2165" width="0.0384%" height="15" fill="rgb(207,33,20)" fg:x="1914" fg:w="9"/><text x="8.4058%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="8.1558%" y="2149" width="0.0384%" height="15" fill="rgb(233,215,35)" fg:x="1914" fg:w="9"/><text x="8.4058%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="8.1771%" y="2133" width="0.0170%" height="15" fill="rgb(249,188,52)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="8.1771%" y="2117" width="0.0170%" height="15" fill="rgb(225,12,32)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="8.1771%" y="2101" width="0.0170%" height="15" fill="rgb(247,98,14)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="8.1771%" y="2085" width="0.0170%" height="15" fill="rgb(247,219,48)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="8.1771%" y="2069" width="0.0170%" height="15" fill="rgb(253,60,48)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="8.1771%" y="2053" width="0.0170%" height="15" fill="rgb(245,15,52)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="8.1771%" y="2037" width="0.0170%" height="15" fill="rgb(220,133,28)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.1771%" y="2021" width="0.0170%" height="15" fill="rgb(217,180,4)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="8.1771%" y="2005" width="0.0170%" height="15" fill="rgb(251,24,1)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="8.1771%" y="1989" width="0.0170%" height="15" fill="rgb(212,185,49)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="8.1771%" y="1973" width="0.0170%" height="15" fill="rgb(215,175,22)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="8.1771%" y="1957" width="0.0170%" height="15" fill="rgb(250,205,14)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="8.1771%" y="1941" width="0.0170%" height="15" fill="rgb(225,211,22)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="8.1771%" y="1925" width="0.0170%" height="15" fill="rgb(251,179,42)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="8.1771%" y="1909" width="0.0170%" height="15" fill="rgb(208,216,51)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="8.1771%" y="1893" width="0.0170%" height="15" fill="rgb(235,36,11)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="8.1771%" y="1877" width="0.0170%" height="15" fill="rgb(213,189,28)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="8.1771%" y="1861" width="0.0170%" height="15" fill="rgb(227,203,42)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="8.1771%" y="1845" width="0.0170%" height="15" fill="rgb(244,72,36)" fg:x="1919" fg:w="4"/><text x="8.4271%" y="1855.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="8.1941%" y="2453" width="0.0256%" height="15" fill="rgb(213,53,17)" fg:x="1923" fg:w="6"/><text x="8.4441%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="8.1941%" y="2437" width="0.0256%" height="15" fill="rgb(207,167,3)" fg:x="1923" fg:w="6"/><text x="8.4441%" y="2447.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="8.1941%" y="2421" width="0.0256%" height="15" fill="rgb(216,98,30)" fg:x="1923" fg:w="6"/><text x="8.4441%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="8.1941%" y="2645" width="0.0298%" height="15" fill="rgb(236,123,15)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="8.1941%" y="2629" width="0.0298%" height="15" fill="rgb(248,81,50)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="8.1941%" y="2613" width="0.0298%" height="15" fill="rgb(214,120,4)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="8.1941%" y="2597" width="0.0298%" height="15" fill="rgb(208,179,34)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="8.1941%" y="2581" width="0.0298%" height="15" fill="rgb(227,140,7)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="8.1941%" y="2565" width="0.0298%" height="15" fill="rgb(214,22,6)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="8.1941%" y="2549" width="0.0298%" height="15" fill="rgb(207,137,27)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="8.1941%" y="2533" width="0.0298%" height="15" fill="rgb(210,8,46)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="8.1941%" y="2517" width="0.0298%" height="15" fill="rgb(240,16,54)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="8.1941%" y="2501" width="0.0298%" height="15" fill="rgb(211,209,29)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="8.1941%" y="2485" width="0.0298%" height="15" fill="rgb(226,228,24)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="8.1941%" y="2469" width="0.0298%" height="15" fill="rgb(222,84,9)" fg:x="1923" fg:w="7"/><text x="8.4441%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="8.2240%" y="2533" width="0.0213%" height="15" fill="rgb(234,203,30)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2543.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="8.2240%" y="2517" width="0.0213%" height="15" fill="rgb(238,109,14)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="8.2240%" y="2501" width="0.0213%" height="15" fill="rgb(233,206,34)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="8.2240%" y="2485" width="0.0213%" height="15" fill="rgb(220,167,47)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="8.2240%" y="2469" width="0.0213%" height="15" fill="rgb(238,105,10)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="8.2240%" y="2453" width="0.0213%" height="15" fill="rgb(213,227,17)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="8.2240%" y="2437" width="0.0213%" height="15" fill="rgb(217,132,38)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="8.2240%" y="2421" width="0.0213%" height="15" fill="rgb(242,146,4)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="8.2240%" y="2405" width="0.0213%" height="15" fill="rgb(212,61,9)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="8.2240%" y="2389" width="0.0213%" height="15" fill="rgb(247,126,22)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="8.2240%" y="2373" width="0.0213%" height="15" fill="rgb(220,196,2)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="8.2240%" y="2357" width="0.0213%" height="15" fill="rgb(208,46,4)" fg:x="1930" fg:w="5"/><text x="8.4740%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="8.2453%" y="2485" width="0.0128%" height="15" fill="rgb(252,104,46)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2453%" y="2469" width="0.0128%" height="15" fill="rgb(237,152,48)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2453%" y="2453" width="0.0128%" height="15" fill="rgb(221,59,37)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.2453%" y="2437" width="0.0128%" height="15" fill="rgb(209,202,51)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.2453%" y="2421" width="0.0128%" height="15" fill="rgb(228,81,30)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2431.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.2453%" y="2405" width="0.0128%" height="15" fill="rgb(227,42,39)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.2453%" y="2389" width="0.0128%" height="15" fill="rgb(221,26,2)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2399.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.2453%" y="2373" width="0.0128%" height="15" fill="rgb(254,61,31)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2383.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.2453%" y="2357" width="0.0128%" height="15" fill="rgb(222,173,38)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.2453%" y="2341" width="0.0128%" height="15" fill="rgb(218,50,12)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.2453%" y="2325" width="0.0128%" height="15" fill="rgb(223,88,40)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2453%" y="2309" width="0.0128%" height="15" fill="rgb(237,54,19)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.2453%" y="2293" width="0.0128%" height="15" fill="rgb(251,129,25)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2303.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.2453%" y="2277" width="0.0128%" height="15" fill="rgb(238,97,19)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2287.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2453%" y="2261" width="0.0128%" height="15" fill="rgb(240,169,18)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.2453%" y="2245" width="0.0128%" height="15" fill="rgb(230,187,49)" fg:x="1935" fg:w="3"/><text x="8.4953%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="8.2240%" y="2597" width="0.0426%" height="15" fill="rgb(209,44,26)" fg:x="1930" fg:w="10"/><text x="8.4740%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="8.2240%" y="2581" width="0.0426%" height="15" fill="rgb(244,0,6)" fg:x="1930" fg:w="10"/><text x="8.4740%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="8.2240%" y="2565" width="0.0426%" height="15" fill="rgb(248,18,21)" fg:x="1930" fg:w="10"/><text x="8.4740%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="8.2240%" y="2549" width="0.0426%" height="15" fill="rgb(245,180,19)" fg:x="1930" fg:w="10"/><text x="8.4740%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="8.2453%" y="2533" width="0.0213%" height="15" fill="rgb(252,118,36)" fg:x="1935" fg:w="5"/><text x="8.4953%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.2453%" y="2517" width="0.0213%" height="15" fill="rgb(210,224,19)" fg:x="1935" fg:w="5"/><text x="8.4953%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="8.2453%" y="2501" width="0.0213%" height="15" fill="rgb(218,30,24)" fg:x="1935" fg:w="5"/><text x="8.4953%" y="2511.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="8.2666%" y="2293" width="0.0170%" height="15" fill="rgb(219,75,50)" fg:x="1940" fg:w="4"/><text x="8.5166%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="8.2666%" y="2469" width="0.0213%" height="15" fill="rgb(234,72,50)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="8.2666%" y="2453" width="0.0213%" height="15" fill="rgb(219,100,48)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="8.2666%" y="2437" width="0.0213%" height="15" fill="rgb(253,5,41)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="8.2666%" y="2421" width="0.0213%" height="15" fill="rgb(247,181,11)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="8.2666%" y="2405" width="0.0213%" height="15" fill="rgb(222,223,25)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="8.2666%" y="2389" width="0.0213%" height="15" fill="rgb(214,198,28)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="8.2666%" y="2373" width="0.0213%" height="15" fill="rgb(230,46,43)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="8.2666%" y="2357" width="0.0213%" height="15" fill="rgb(233,65,53)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="8.2666%" y="2341" width="0.0213%" height="15" fill="rgb(221,121,27)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="8.2666%" y="2325" width="0.0213%" height="15" fill="rgb(247,70,47)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="8.2666%" y="2309" width="0.0213%" height="15" fill="rgb(228,85,35)" fg:x="1940" fg:w="5"/><text x="8.5166%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="8.2879%" y="2421" width="0.0128%" height="15" fill="rgb(209,50,18)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2879%" y="2405" width="0.0128%" height="15" fill="rgb(250,19,35)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2879%" y="2389" width="0.0128%" height="15" fill="rgb(253,107,29)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.2879%" y="2373" width="0.0128%" height="15" fill="rgb(252,179,29)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.2879%" y="2357" width="0.0128%" height="15" fill="rgb(238,194,6)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.2879%" y="2341" width="0.0128%" height="15" fill="rgb(238,164,29)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.2879%" y="2325" width="0.0128%" height="15" fill="rgb(224,25,9)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.2879%" y="2309" width="0.0128%" height="15" fill="rgb(244,153,23)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.2879%" y="2293" width="0.0128%" height="15" fill="rgb(212,203,14)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.2879%" y="2277" width="0.0128%" height="15" fill="rgb(220,164,20)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.2879%" y="2261" width="0.0128%" height="15" fill="rgb(222,203,48)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2879%" y="2245" width="0.0128%" height="15" fill="rgb(215,159,22)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.2879%" y="2229" width="0.0128%" height="15" fill="rgb(216,183,47)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.2879%" y="2213" width="0.0128%" height="15" fill="rgb(229,195,25)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.2879%" y="2197" width="0.0128%" height="15" fill="rgb(224,132,51)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.2879%" y="2181" width="0.0128%" height="15" fill="rgb(240,63,7)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="8.2879%" y="2165" width="0.0128%" height="15" fill="rgb(249,182,41)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="8.2879%" y="2149" width="0.0128%" height="15" fill="rgb(243,47,26)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2159.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.2879%" y="2133" width="0.0128%" height="15" fill="rgb(233,48,2)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2143.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.2879%" y="2117" width="0.0128%" height="15" fill="rgb(244,165,34)" fg:x="1945" fg:w="3"/><text x="8.5379%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (87 samples, 0.37%)</title><rect x="7.9385%" y="2885" width="0.3707%" height="15" fill="rgb(207,89,7)" fg:x="1863" fg:w="87"/><text x="8.1885%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (87 samples, 0.37%)</title><rect x="7.9385%" y="2869" width="0.3707%" height="15" fill="rgb(244,117,36)" fg:x="1863" fg:w="87"/><text x="8.1885%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (87 samples, 0.37%)</title><rect x="7.9385%" y="2853" width="0.3707%" height="15" fill="rgb(226,144,34)" fg:x="1863" fg:w="87"/><text x="8.1885%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (87 samples, 0.37%)</title><rect x="7.9385%" y="2837" width="0.3707%" height="15" fill="rgb(213,23,19)" fg:x="1863" fg:w="87"/><text x="8.1885%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (85 samples, 0.36%)</title><rect x="7.9470%" y="2821" width="0.3622%" height="15" fill="rgb(217,75,12)" fg:x="1865" fg:w="85"/><text x="8.1970%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (85 samples, 0.36%)</title><rect x="7.9470%" y="2805" width="0.3622%" height="15" fill="rgb(224,159,17)" fg:x="1865" fg:w="85"/><text x="8.1970%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (85 samples, 0.36%)</title><rect x="7.9470%" y="2789" width="0.3622%" height="15" fill="rgb(217,118,1)" fg:x="1865" fg:w="85"/><text x="8.1970%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (27 samples, 0.12%)</title><rect x="8.1941%" y="2773" width="0.1151%" height="15" fill="rgb(232,180,48)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (27 samples, 0.12%)</title><rect x="8.1941%" y="2757" width="0.1151%" height="15" fill="rgb(230,27,33)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2767.50"></text></g><g><title>std::panicking::try (27 samples, 0.12%)</title><rect x="8.1941%" y="2741" width="0.1151%" height="15" fill="rgb(205,31,21)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (27 samples, 0.12%)</title><rect x="8.1941%" y="2725" width="0.1151%" height="15" fill="rgb(253,59,4)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (27 samples, 0.12%)</title><rect x="8.1941%" y="2709" width="0.1151%" height="15" fill="rgb(224,201,9)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (27 samples, 0.12%)</title><rect x="8.1941%" y="2693" width="0.1151%" height="15" fill="rgb(229,206,30)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="8.1941%" y="2677" width="0.1151%" height="15" fill="rgb(212,67,47)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="8.1941%" y="2661" width="0.1151%" height="15" fill="rgb(211,96,50)" fg:x="1923" fg:w="27"/><text x="8.4441%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="8.2240%" y="2645" width="0.0852%" height="15" fill="rgb(252,114,18)" fg:x="1930" fg:w="20"/><text x="8.4740%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="8.2240%" y="2629" width="0.0852%" height="15" fill="rgb(223,58,37)" fg:x="1930" fg:w="20"/><text x="8.4740%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="8.2240%" y="2613" width="0.0852%" height="15" fill="rgb(237,70,4)" fg:x="1930" fg:w="20"/><text x="8.4740%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="8.2666%" y="2597" width="0.0426%" height="15" fill="rgb(244,85,46)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="8.2666%" y="2581" width="0.0426%" height="15" fill="rgb(223,39,52)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2591.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="8.2666%" y="2565" width="0.0426%" height="15" fill="rgb(218,200,14)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="8.2666%" y="2549" width="0.0426%" height="15" fill="rgb(208,171,16)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="8.2666%" y="2533" width="0.0426%" height="15" fill="rgb(234,200,18)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="8.2666%" y="2517" width="0.0426%" height="15" fill="rgb(228,45,11)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="8.2666%" y="2501" width="0.0426%" height="15" fill="rgb(237,182,11)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="8.2666%" y="2485" width="0.0426%" height="15" fill="rgb(241,175,49)" fg:x="1940" fg:w="10"/><text x="8.5166%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="8.2879%" y="2469" width="0.0213%" height="15" fill="rgb(247,38,35)" fg:x="1945" fg:w="5"/><text x="8.5379%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.2879%" y="2453" width="0.0213%" height="15" fill="rgb(228,39,49)" fg:x="1945" fg:w="5"/><text x="8.5379%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="8.2879%" y="2437" width="0.0213%" height="15" fill="rgb(226,101,26)" fg:x="1945" fg:w="5"/><text x="8.5379%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="8.3177%" y="2597" width="0.0128%" height="15" fill="rgb(206,141,19)" fg:x="1952" fg:w="3"/><text x="8.5677%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="8.3177%" y="2581" width="0.0128%" height="15" fill="rgb(211,200,13)" fg:x="1952" fg:w="3"/><text x="8.5677%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.3177%" y="2565" width="0.0128%" height="15" fill="rgb(241,121,6)" fg:x="1952" fg:w="3"/><text x="8.5677%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.3177%" y="2549" width="0.0128%" height="15" fill="rgb(234,221,29)" fg:x="1952" fg:w="3"/><text x="8.5677%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="8.3177%" y="2533" width="0.0128%" height="15" fill="rgb(229,136,5)" fg:x="1952" fg:w="3"/><text x="8.5677%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.3177%" y="2517" width="0.0128%" height="15" fill="rgb(238,36,11)" fg:x="1952" fg:w="3"/><text x="8.5677%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="8.3177%" y="2501" width="0.0128%" height="15" fill="rgb(251,55,41)" fg:x="1952" fg:w="3"/><text x="8.5677%" y="2511.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="8.3305%" y="2181" width="0.0170%" height="15" fill="rgb(242,34,40)" fg:x="1955" fg:w="4"/><text x="8.5805%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="8.3305%" y="2357" width="0.0213%" height="15" fill="rgb(215,42,17)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="8.3305%" y="2341" width="0.0213%" height="15" fill="rgb(207,44,46)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="8.3305%" y="2325" width="0.0213%" height="15" fill="rgb(211,206,28)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="8.3305%" y="2309" width="0.0213%" height="15" fill="rgb(237,167,16)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="8.3305%" y="2293" width="0.0213%" height="15" fill="rgb(233,66,6)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="8.3305%" y="2277" width="0.0213%" height="15" fill="rgb(246,123,29)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="8.3305%" y="2261" width="0.0213%" height="15" fill="rgb(209,62,40)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="8.3305%" y="2245" width="0.0213%" height="15" fill="rgb(218,4,25)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="8.3305%" y="2229" width="0.0213%" height="15" fill="rgb(253,91,49)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="8.3305%" y="2213" width="0.0213%" height="15" fill="rgb(228,155,29)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="8.3305%" y="2197" width="0.0213%" height="15" fill="rgb(243,57,37)" fg:x="1955" fg:w="5"/><text x="8.5805%" y="2207.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="8.3688%" y="1733" width="0.0128%" height="15" fill="rgb(244,167,17)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="8.3688%" y="1717" width="0.0128%" height="15" fill="rgb(207,181,38)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.3688%" y="1701" width="0.0128%" height="15" fill="rgb(211,8,23)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.3688%" y="1685" width="0.0128%" height="15" fill="rgb(235,11,44)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.3688%" y="1669" width="0.0128%" height="15" fill="rgb(248,18,52)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1679.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.3688%" y="1653" width="0.0128%" height="15" fill="rgb(208,4,7)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.3688%" y="1637" width="0.0128%" height="15" fill="rgb(240,17,39)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1647.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.3688%" y="1621" width="0.0128%" height="15" fill="rgb(207,170,3)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1631.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.3688%" y="1605" width="0.0128%" height="15" fill="rgb(236,100,52)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1615.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.3688%" y="1589" width="0.0128%" height="15" fill="rgb(246,78,51)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.3688%" y="1573" width="0.0128%" height="15" fill="rgb(211,17,15)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.3688%" y="1557" width="0.0128%" height="15" fill="rgb(209,59,46)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.3688%" y="1541" width="0.0128%" height="15" fill="rgb(210,92,25)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1551.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.3688%" y="1525" width="0.0128%" height="15" fill="rgb(238,174,52)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1535.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.3688%" y="1509" width="0.0128%" height="15" fill="rgb(230,73,7)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1519.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.3688%" y="1493" width="0.0128%" height="15" fill="rgb(243,124,40)" fg:x="1964" fg:w="3"/><text x="8.6188%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="8.3603%" y="2021" width="0.0298%" height="15" fill="rgb(244,170,11)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="8.3603%" y="2005" width="0.0298%" height="15" fill="rgb(207,114,54)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="8.3603%" y="1989" width="0.0298%" height="15" fill="rgb(205,42,20)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1999.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="8.3603%" y="1973" width="0.0298%" height="15" fill="rgb(230,30,28)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1983.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="8.3603%" y="1957" width="0.0298%" height="15" fill="rgb(205,73,54)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="8.3603%" y="1941" width="0.0298%" height="15" fill="rgb(254,227,23)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1951.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="8.3603%" y="1925" width="0.0298%" height="15" fill="rgb(228,202,34)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1935.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="8.3603%" y="1909" width="0.0298%" height="15" fill="rgb(222,225,37)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1919.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="8.3603%" y="1893" width="0.0298%" height="15" fill="rgb(221,14,54)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1903.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="8.3603%" y="1877" width="0.0298%" height="15" fill="rgb(254,102,2)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1887.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="8.3603%" y="1861" width="0.0298%" height="15" fill="rgb(232,104,17)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="8.3603%" y="1845" width="0.0298%" height="15" fill="rgb(250,220,14)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="8.3603%" y="1829" width="0.0298%" height="15" fill="rgb(241,158,9)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="8.3603%" y="1813" width="0.0298%" height="15" fill="rgb(246,9,43)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.3603%" y="1797" width="0.0298%" height="15" fill="rgb(206,73,33)" fg:x="1962" fg:w="7"/><text x="8.6103%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="8.3688%" y="1781" width="0.0213%" height="15" fill="rgb(222,79,8)" fg:x="1964" fg:w="5"/><text x="8.6188%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.3688%" y="1765" width="0.0213%" height="15" fill="rgb(234,8,54)" fg:x="1964" fg:w="5"/><text x="8.6188%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="8.3688%" y="1749" width="0.0213%" height="15" fill="rgb(209,134,38)" fg:x="1964" fg:w="5"/><text x="8.6188%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="8.3901%" y="1893" width="0.0170%" height="15" fill="rgb(230,127,29)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="8.3901%" y="1877" width="0.0170%" height="15" fill="rgb(242,44,41)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="8.3901%" y="1861" width="0.0170%" height="15" fill="rgb(222,56,43)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="8.3901%" y="1845" width="0.0170%" height="15" fill="rgb(238,39,47)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="8.3901%" y="1829" width="0.0170%" height="15" fill="rgb(226,79,43)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="8.3901%" y="1813" width="0.0170%" height="15" fill="rgb(242,105,53)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="8.3901%" y="1797" width="0.0170%" height="15" fill="rgb(251,132,46)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="8.3901%" y="1781" width="0.0170%" height="15" fill="rgb(231,77,14)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="8.3901%" y="1765" width="0.0170%" height="15" fill="rgb(240,135,9)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="8.3901%" y="1749" width="0.0170%" height="15" fill="rgb(248,109,14)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="8.3901%" y="1733" width="0.0170%" height="15" fill="rgb(227,146,52)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="8.3901%" y="1717" width="0.0170%" height="15" fill="rgb(232,54,3)" fg:x="1969" fg:w="4"/><text x="8.6401%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="8.4072%" y="1845" width="0.0213%" height="15" fill="rgb(229,201,43)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="8.4072%" y="1829" width="0.0213%" height="15" fill="rgb(252,161,33)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="8.4072%" y="1813" width="0.0213%" height="15" fill="rgb(226,146,40)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="8.4072%" y="1797" width="0.0213%" height="15" fill="rgb(219,47,25)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="8.4072%" y="1781" width="0.0213%" height="15" fill="rgb(250,135,13)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="8.4072%" y="1765" width="0.0213%" height="15" fill="rgb(219,229,18)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="8.4072%" y="1749" width="0.0213%" height="15" fill="rgb(217,152,27)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="8.4072%" y="1733" width="0.0213%" height="15" fill="rgb(225,71,47)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1743.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="8.4072%" y="1717" width="0.0213%" height="15" fill="rgb(220,139,14)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="8.4072%" y="1701" width="0.0213%" height="15" fill="rgb(247,54,32)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="8.4072%" y="1685" width="0.0213%" height="15" fill="rgb(252,131,39)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="8.4072%" y="1669" width="0.0213%" height="15" fill="rgb(210,108,39)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="8.4072%" y="1653" width="0.0213%" height="15" fill="rgb(205,23,29)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="8.4072%" y="1637" width="0.0213%" height="15" fill="rgb(246,139,46)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.4072%" y="1621" width="0.0213%" height="15" fill="rgb(250,81,26)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="8.4072%" y="1605" width="0.0213%" height="15" fill="rgb(214,104,7)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.4072%" y="1589" width="0.0213%" height="15" fill="rgb(233,189,8)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="8.4072%" y="1573" width="0.0213%" height="15" fill="rgb(228,141,17)" fg:x="1973" fg:w="5"/><text x="8.6572%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="8.4157%" y="1557" width="0.0128%" height="15" fill="rgb(247,157,1)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="8.4157%" y="1541" width="0.0128%" height="15" fill="rgb(249,225,5)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1551.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="8.4157%" y="1525" width="0.0128%" height="15" fill="rgb(242,55,13)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="8.4157%" y="1509" width="0.0128%" height="15" fill="rgb(230,49,50)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="8.4157%" y="1493" width="0.0128%" height="15" fill="rgb(241,111,38)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4157%" y="1477" width="0.0128%" height="15" fill="rgb(252,155,4)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4157%" y="1461" width="0.0128%" height="15" fill="rgb(212,69,32)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.4157%" y="1445" width="0.0128%" height="15" fill="rgb(243,107,47)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.4157%" y="1429" width="0.0128%" height="15" fill="rgb(247,130,12)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1439.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.4157%" y="1413" width="0.0128%" height="15" fill="rgb(233,74,16)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.4157%" y="1397" width="0.0128%" height="15" fill="rgb(208,58,18)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1407.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.4157%" y="1381" width="0.0128%" height="15" fill="rgb(242,225,1)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1391.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.4157%" y="1365" width="0.0128%" height="15" fill="rgb(249,39,40)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1375.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.4157%" y="1349" width="0.0128%" height="15" fill="rgb(207,72,44)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.4157%" y="1333" width="0.0128%" height="15" fill="rgb(215,193,12)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4157%" y="1317" width="0.0128%" height="15" fill="rgb(248,41,39)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.4157%" y="1301" width="0.0128%" height="15" fill="rgb(253,85,4)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.4157%" y="1285" width="0.0128%" height="15" fill="rgb(243,70,31)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1295.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4157%" y="1269" width="0.0128%" height="15" fill="rgb(253,195,26)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1279.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.4157%" y="1253" width="0.0128%" height="15" fill="rgb(243,42,11)" fg:x="1975" fg:w="3"/><text x="8.6657%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (20 samples, 0.09%)</title><rect x="8.3561%" y="2309" width="0.0852%" height="15" fill="rgb(239,66,17)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.09%)</title><rect x="8.3561%" y="2293" width="0.0852%" height="15" fill="rgb(217,132,21)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (20 samples, 0.09%)</title><rect x="8.3561%" y="2277" width="0.0852%" height="15" fill="rgb(252,202,21)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (20 samples, 0.09%)</title><rect x="8.3561%" y="2261" width="0.0852%" height="15" fill="rgb(233,98,36)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (20 samples, 0.09%)</title><rect x="8.3561%" y="2245" width="0.0852%" height="15" fill="rgb(216,153,54)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (20 samples, 0.09%)</title><rect x="8.3561%" y="2229" width="0.0852%" height="15" fill="rgb(250,99,7)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="8.3561%" y="2213" width="0.0852%" height="15" fill="rgb(207,56,50)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="8.3561%" y="2197" width="0.0852%" height="15" fill="rgb(244,61,34)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2207.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="8.3561%" y="2181" width="0.0852%" height="15" fill="rgb(241,50,38)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="8.3561%" y="2165" width="0.0852%" height="15" fill="rgb(212,166,30)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="8.3561%" y="2149" width="0.0852%" height="15" fill="rgb(249,127,32)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (20 samples, 0.09%)</title><rect x="8.3561%" y="2133" width="0.0852%" height="15" fill="rgb(209,103,0)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="8.3561%" y="2117" width="0.0852%" height="15" fill="rgb(238,209,51)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="8.3561%" y="2101" width="0.0852%" height="15" fill="rgb(237,56,23)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="8.3561%" y="2085" width="0.0852%" height="15" fill="rgb(215,153,46)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="8.3561%" y="2069" width="0.0852%" height="15" fill="rgb(224,49,31)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="8.3561%" y="2053" width="0.0852%" height="15" fill="rgb(250,18,42)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="8.3561%" y="2037" width="0.0852%" height="15" fill="rgb(215,176,39)" fg:x="1961" fg:w="20"/><text x="8.6061%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="8.3901%" y="2021" width="0.0511%" height="15" fill="rgb(223,77,29)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="8.3901%" y="2005" width="0.0511%" height="15" fill="rgb(234,94,52)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="2015.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="8.3901%" y="1989" width="0.0511%" height="15" fill="rgb(220,154,50)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="8.3901%" y="1973" width="0.0511%" height="15" fill="rgb(212,11,10)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="8.3901%" y="1957" width="0.0511%" height="15" fill="rgb(205,166,19)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="8.3901%" y="1941" width="0.0511%" height="15" fill="rgb(244,198,16)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="8.3901%" y="1925" width="0.0511%" height="15" fill="rgb(219,69,12)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="8.3901%" y="1909" width="0.0511%" height="15" fill="rgb(245,30,7)" fg:x="1969" fg:w="12"/><text x="8.6401%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="8.4072%" y="1893" width="0.0341%" height="15" fill="rgb(218,221,48)" fg:x="1973" fg:w="8"/><text x="8.6572%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="8.4072%" y="1877" width="0.0341%" height="15" fill="rgb(216,66,15)" fg:x="1973" fg:w="8"/><text x="8.6572%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="8.4072%" y="1861" width="0.0341%" height="15" fill="rgb(226,122,50)" fg:x="1973" fg:w="8"/><text x="8.6572%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="8.4285%" y="1845" width="0.0128%" height="15" fill="rgb(239,156,16)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="8.4285%" y="1829" width="0.0128%" height="15" fill="rgb(224,27,38)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1839.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="8.4285%" y="1813" width="0.0128%" height="15" fill="rgb(224,39,27)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="8.4285%" y="1797" width="0.0128%" height="15" fill="rgb(215,92,29)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="8.4285%" y="1781" width="0.0128%" height="15" fill="rgb(207,159,16)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4285%" y="1765" width="0.0128%" height="15" fill="rgb(238,163,47)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4285%" y="1749" width="0.0128%" height="15" fill="rgb(219,91,49)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.4285%" y="1733" width="0.0128%" height="15" fill="rgb(227,167,31)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.4285%" y="1717" width="0.0128%" height="15" fill="rgb(234,80,54)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.4285%" y="1701" width="0.0128%" height="15" fill="rgb(212,114,2)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.4285%" y="1685" width="0.0128%" height="15" fill="rgb(234,50,24)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.4285%" y="1669" width="0.0128%" height="15" fill="rgb(221,68,8)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.4285%" y="1653" width="0.0128%" height="15" fill="rgb(254,180,31)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.4285%" y="1637" width="0.0128%" height="15" fill="rgb(247,130,50)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.4285%" y="1621" width="0.0128%" height="15" fill="rgb(211,109,4)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4285%" y="1605" width="0.0128%" height="15" fill="rgb(238,50,21)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.4285%" y="1589" width="0.0128%" height="15" fill="rgb(225,57,45)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.4285%" y="1573" width="0.0128%" height="15" fill="rgb(209,196,50)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4285%" y="1557" width="0.0128%" height="15" fill="rgb(242,140,13)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.4285%" y="1541" width="0.0128%" height="15" fill="rgb(217,111,7)" fg:x="1978" fg:w="3"/><text x="8.6785%" y="1551.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="8.4455%" y="2021" width="0.0128%" height="15" fill="rgb(253,193,51)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4455%" y="2005" width="0.0128%" height="15" fill="rgb(252,70,29)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4455%" y="1989" width="0.0128%" height="15" fill="rgb(232,127,12)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.4455%" y="1973" width="0.0128%" height="15" fill="rgb(211,180,21)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.4455%" y="1957" width="0.0128%" height="15" fill="rgb(229,72,13)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1967.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.4455%" y="1941" width="0.0128%" height="15" fill="rgb(240,211,49)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.4455%" y="1925" width="0.0128%" height="15" fill="rgb(219,149,40)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1935.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.4455%" y="1909" width="0.0128%" height="15" fill="rgb(210,127,46)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1919.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.4455%" y="1893" width="0.0128%" height="15" fill="rgb(220,106,7)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1903.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.4455%" y="1877" width="0.0128%" height="15" fill="rgb(249,31,22)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.4455%" y="1861" width="0.0128%" height="15" fill="rgb(253,1,49)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4455%" y="1845" width="0.0128%" height="15" fill="rgb(227,144,33)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.4455%" y="1829" width="0.0128%" height="15" fill="rgb(249,163,44)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1839.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.4455%" y="1813" width="0.0128%" height="15" fill="rgb(234,15,39)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1823.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.4455%" y="1797" width="0.0128%" height="15" fill="rgb(207,66,16)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1807.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.4455%" y="1781" width="0.0128%" height="15" fill="rgb(233,112,24)" fg:x="1982" fg:w="3"/><text x="8.6955%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="8.4455%" y="2133" width="0.0213%" height="15" fill="rgb(230,90,22)" fg:x="1982" fg:w="5"/><text x="8.6955%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="8.4455%" y="2117" width="0.0213%" height="15" fill="rgb(229,61,13)" fg:x="1982" fg:w="5"/><text x="8.6955%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="8.4455%" y="2101" width="0.0213%" height="15" fill="rgb(225,57,24)" fg:x="1982" fg:w="5"/><text x="8.6955%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.4455%" y="2085" width="0.0213%" height="15" fill="rgb(208,169,48)" fg:x="1982" fg:w="5"/><text x="8.6955%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="8.4455%" y="2069" width="0.0213%" height="15" fill="rgb(244,218,51)" fg:x="1982" fg:w="5"/><text x="8.6955%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.4455%" y="2053" width="0.0213%" height="15" fill="rgb(214,148,10)" fg:x="1982" fg:w="5"/><text x="8.6955%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="8.4455%" y="2037" width="0.0213%" height="15" fill="rgb(225,174,27)" fg:x="1982" fg:w="5"/><text x="8.6955%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="8.4754%" y="1957" width="0.0256%" height="15" fill="rgb(230,96,26)" fg:x="1989" fg:w="6"/><text x="8.7254%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="8.4754%" y="1941" width="0.0256%" height="15" fill="rgb(232,10,30)" fg:x="1989" fg:w="6"/><text x="8.7254%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="8.4754%" y="1925" width="0.0256%" height="15" fill="rgb(222,8,50)" fg:x="1989" fg:w="6"/><text x="8.7254%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.4754%" y="1909" width="0.0256%" height="15" fill="rgb(213,81,27)" fg:x="1989" fg:w="6"/><text x="8.7254%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.4839%" y="1893" width="0.0170%" height="15" fill="rgb(245,50,10)" fg:x="1991" fg:w="4"/><text x="8.7339%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.4839%" y="1877" width="0.0170%" height="15" fill="rgb(216,100,18)" fg:x="1991" fg:w="4"/><text x="8.7339%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.4839%" y="1861" width="0.0170%" height="15" fill="rgb(236,147,54)" fg:x="1991" fg:w="4"/><text x="8.7339%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.5009%" y="1829" width="0.0128%" height="15" fill="rgb(205,143,26)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.5009%" y="1813" width="0.0128%" height="15" fill="rgb(236,26,9)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.5009%" y="1797" width="0.0128%" height="15" fill="rgb(221,165,53)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.5009%" y="1781" width="0.0128%" height="15" fill="rgb(214,110,17)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.5009%" y="1765" width="0.0128%" height="15" fill="rgb(237,197,12)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.5009%" y="1749" width="0.0128%" height="15" fill="rgb(205,84,17)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.5009%" y="1733" width="0.0128%" height="15" fill="rgb(237,18,45)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.5009%" y="1717" width="0.0128%" height="15" fill="rgb(221,87,14)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.5009%" y="1701" width="0.0128%" height="15" fill="rgb(238,186,15)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.5009%" y="1685" width="0.0128%" height="15" fill="rgb(208,115,11)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.5009%" y="1669" width="0.0128%" height="15" fill="rgb(254,175,0)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.5009%" y="1653" width="0.0128%" height="15" fill="rgb(227,24,42)" fg:x="1995" fg:w="3"/><text x="8.7509%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (47 samples, 0.20%)</title><rect x="8.3305%" y="2421" width="0.2003%" height="15" fill="rgb(223,211,37)" fg:x="1955" fg:w="47"/><text x="8.5805%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (47 samples, 0.20%)</title><rect x="8.3305%" y="2405" width="0.2003%" height="15" fill="rgb(235,49,27)" fg:x="1955" fg:w="47"/><text x="8.5805%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (47 samples, 0.20%)</title><rect x="8.3305%" y="2389" width="0.2003%" height="15" fill="rgb(254,97,51)" fg:x="1955" fg:w="47"/><text x="8.5805%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.20%)</title><rect x="8.3305%" y="2373" width="0.2003%" height="15" fill="rgb(249,51,40)" fg:x="1955" fg:w="47"/><text x="8.5805%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="8.3518%" y="2357" width="0.1790%" height="15" fill="rgb(210,128,45)" fg:x="1960" fg:w="42"/><text x="8.6018%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="8.3518%" y="2341" width="0.1790%" height="15" fill="rgb(224,137,50)" fg:x="1960" fg:w="42"/><text x="8.6018%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="8.3518%" y="2325" width="0.1790%" height="15" fill="rgb(242,15,9)" fg:x="1960" fg:w="42"/><text x="8.6018%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="8.4413%" y="2309" width="0.0895%" height="15" fill="rgb(233,187,41)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="8.4413%" y="2293" width="0.0895%" height="15" fill="rgb(227,2,29)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2303.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="8.4413%" y="2277" width="0.0895%" height="15" fill="rgb(222,70,3)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="8.4413%" y="2261" width="0.0895%" height="15" fill="rgb(213,11,42)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="8.4413%" y="2245" width="0.0895%" height="15" fill="rgb(225,150,9)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="8.4413%" y="2229" width="0.0895%" height="15" fill="rgb(230,162,45)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="8.4413%" y="2213" width="0.0895%" height="15" fill="rgb(222,14,52)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="8.4413%" y="2197" width="0.0895%" height="15" fill="rgb(254,198,14)" fg:x="1981" fg:w="21"/><text x="8.6913%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="8.4455%" y="2181" width="0.0852%" height="15" fill="rgb(220,217,30)" fg:x="1982" fg:w="20"/><text x="8.6955%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="8.4455%" y="2165" width="0.0852%" height="15" fill="rgb(215,146,41)" fg:x="1982" fg:w="20"/><text x="8.6955%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="8.4455%" y="2149" width="0.0852%" height="15" fill="rgb(217,27,36)" fg:x="1982" fg:w="20"/><text x="8.6955%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="8.4754%" y="2133" width="0.0554%" height="15" fill="rgb(219,218,39)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="8.4754%" y="2117" width="0.0554%" height="15" fill="rgb(219,4,42)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2127.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="8.4754%" y="2101" width="0.0554%" height="15" fill="rgb(249,119,36)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="8.4754%" y="2085" width="0.0554%" height="15" fill="rgb(209,23,33)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="8.4754%" y="2069" width="0.0554%" height="15" fill="rgb(211,10,0)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="8.4754%" y="2053" width="0.0554%" height="15" fill="rgb(208,99,37)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="8.4754%" y="2037" width="0.0554%" height="15" fill="rgb(213,132,31)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="8.4754%" y="2021" width="0.0554%" height="15" fill="rgb(243,129,40)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="8.4754%" y="2005" width="0.0554%" height="15" fill="rgb(210,66,33)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="8.4754%" y="1989" width="0.0554%" height="15" fill="rgb(209,189,4)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="8.4754%" y="1973" width="0.0554%" height="15" fill="rgb(214,107,37)" fg:x="1989" fg:w="13"/><text x="8.7254%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="8.5009%" y="1957" width="0.0298%" height="15" fill="rgb(245,88,54)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="8.5009%" y="1941" width="0.0298%" height="15" fill="rgb(205,146,20)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1951.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="8.5009%" y="1925" width="0.0298%" height="15" fill="rgb(220,161,25)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="8.5009%" y="1909" width="0.0298%" height="15" fill="rgb(215,152,15)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="8.5009%" y="1893" width="0.0298%" height="15" fill="rgb(233,192,44)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="8.5009%" y="1877" width="0.0298%" height="15" fill="rgb(240,170,46)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="8.5009%" y="1861" width="0.0298%" height="15" fill="rgb(207,104,33)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.5009%" y="1845" width="0.0298%" height="15" fill="rgb(219,21,39)" fg:x="1995" fg:w="7"/><text x="8.7509%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.5137%" y="1829" width="0.0170%" height="15" fill="rgb(214,133,29)" fg:x="1998" fg:w="4"/><text x="8.7637%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.5137%" y="1813" width="0.0170%" height="15" fill="rgb(226,93,6)" fg:x="1998" fg:w="4"/><text x="8.7637%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.5137%" y="1797" width="0.0170%" height="15" fill="rgb(252,222,34)" fg:x="1998" fg:w="4"/><text x="8.7637%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="8.5180%" y="1781" width="0.0128%" height="15" fill="rgb(252,92,48)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="8.5180%" y="1765" width="0.0128%" height="15" fill="rgb(245,223,24)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1775.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="8.5180%" y="1749" width="0.0128%" height="15" fill="rgb(205,176,3)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="8.5180%" y="1733" width="0.0128%" height="15" fill="rgb(235,151,15)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="8.5180%" y="1717" width="0.0128%" height="15" fill="rgb(237,209,11)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="8.5180%" y="1701" width="0.0128%" height="15" fill="rgb(243,227,24)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="8.5180%" y="1685" width="0.0128%" height="15" fill="rgb(239,193,16)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.5180%" y="1669" width="0.0128%" height="15" fill="rgb(231,27,9)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.5180%" y="1653" width="0.0128%" height="15" fill="rgb(219,169,10)" fg:x="1999" fg:w="3"/><text x="8.7680%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="8.5308%" y="2101" width="0.0128%" height="15" fill="rgb(244,229,43)" fg:x="2002" fg:w="3"/><text x="8.7808%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="8.5308%" y="2085" width="0.0128%" height="15" fill="rgb(254,38,20)" fg:x="2002" fg:w="3"/><text x="8.7808%" y="2095.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.5308%" y="2069" width="0.0128%" height="15" fill="rgb(250,47,30)" fg:x="2002" fg:w="3"/><text x="8.7808%" y="2079.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.5308%" y="2053" width="0.0128%" height="15" fill="rgb(224,124,36)" fg:x="2002" fg:w="3"/><text x="8.7808%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="8.5308%" y="2293" width="0.0213%" height="15" fill="rgb(246,68,51)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="8.5308%" y="2277" width="0.0213%" height="15" fill="rgb(253,43,49)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="8.5308%" y="2261" width="0.0213%" height="15" fill="rgb(219,54,36)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="8.5308%" y="2245" width="0.0213%" height="15" fill="rgb(227,133,34)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="8.5308%" y="2229" width="0.0213%" height="15" fill="rgb(247,227,15)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="8.5308%" y="2213" width="0.0213%" height="15" fill="rgb(229,96,14)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="8.5308%" y="2197" width="0.0213%" height="15" fill="rgb(220,79,17)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="8.5308%" y="2181" width="0.0213%" height="15" fill="rgb(205,131,53)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="8.5308%" y="2165" width="0.0213%" height="15" fill="rgb(209,50,29)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="8.5308%" y="2149" width="0.0213%" height="15" fill="rgb(245,86,46)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="8.5308%" y="2133" width="0.0213%" height="15" fill="rgb(235,66,46)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="8.5308%" y="2117" width="0.0213%" height="15" fill="rgb(232,148,31)" fg:x="2002" fg:w="5"/><text x="8.7808%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="8.5606%" y="2021" width="0.0256%" height="15" fill="rgb(217,149,8)" fg:x="2009" fg:w="6"/><text x="8.8106%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="8.5606%" y="2005" width="0.0256%" height="15" fill="rgb(209,183,11)" fg:x="2009" fg:w="6"/><text x="8.8106%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="8.5606%" y="1989" width="0.0256%" height="15" fill="rgb(208,55,20)" fg:x="2009" fg:w="6"/><text x="8.8106%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.5606%" y="1973" width="0.0256%" height="15" fill="rgb(218,39,14)" fg:x="2009" fg:w="6"/><text x="8.8106%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.5691%" y="1957" width="0.0170%" height="15" fill="rgb(216,169,33)" fg:x="2011" fg:w="4"/><text x="8.8191%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.5691%" y="1941" width="0.0170%" height="15" fill="rgb(233,80,24)" fg:x="2011" fg:w="4"/><text x="8.8191%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.5691%" y="1925" width="0.0170%" height="15" fill="rgb(213,179,31)" fg:x="2011" fg:w="4"/><text x="8.8191%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.5862%" y="1893" width="0.0128%" height="15" fill="rgb(209,19,5)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.5862%" y="1877" width="0.0128%" height="15" fill="rgb(219,18,35)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.5862%" y="1861" width="0.0128%" height="15" fill="rgb(209,169,16)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.5862%" y="1845" width="0.0128%" height="15" fill="rgb(245,90,51)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.5862%" y="1829" width="0.0128%" height="15" fill="rgb(220,99,45)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.5862%" y="1813" width="0.0128%" height="15" fill="rgb(249,89,25)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.5862%" y="1797" width="0.0128%" height="15" fill="rgb(239,193,0)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.5862%" y="1781" width="0.0128%" height="15" fill="rgb(231,126,1)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.5862%" y="1765" width="0.0128%" height="15" fill="rgb(243,166,3)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.5862%" y="1749" width="0.0128%" height="15" fill="rgb(223,22,34)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.5862%" y="1733" width="0.0128%" height="15" fill="rgb(251,52,51)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.5862%" y="1717" width="0.0128%" height="15" fill="rgb(221,165,28)" fg:x="2015" fg:w="3"/><text x="8.8362%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="8.5606%" y="2133" width="0.0554%" height="15" fill="rgb(218,121,47)" fg:x="2009" fg:w="13"/><text x="8.8106%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="8.5606%" y="2117" width="0.0554%" height="15" fill="rgb(209,120,9)" fg:x="2009" fg:w="13"/><text x="8.8106%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="8.5606%" y="2101" width="0.0554%" height="15" fill="rgb(236,68,12)" fg:x="2009" fg:w="13"/><text x="8.8106%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="8.5606%" y="2085" width="0.0554%" height="15" fill="rgb(225,194,26)" fg:x="2009" fg:w="13"/><text x="8.8106%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="8.5606%" y="2069" width="0.0554%" height="15" fill="rgb(231,84,39)" fg:x="2009" fg:w="13"/><text x="8.8106%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="8.5606%" y="2053" width="0.0554%" height="15" fill="rgb(210,11,45)" fg:x="2009" fg:w="13"/><text x="8.8106%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="8.5606%" y="2037" width="0.0554%" height="15" fill="rgb(224,54,52)" fg:x="2009" fg:w="13"/><text x="8.8106%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="8.5862%" y="2021" width="0.0298%" height="15" fill="rgb(238,102,14)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="8.5862%" y="2005" width="0.0298%" height="15" fill="rgb(243,160,52)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="2015.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="8.5862%" y="1989" width="0.0298%" height="15" fill="rgb(216,114,19)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="8.5862%" y="1973" width="0.0298%" height="15" fill="rgb(244,166,37)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="8.5862%" y="1957" width="0.0298%" height="15" fill="rgb(246,29,44)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="8.5862%" y="1941" width="0.0298%" height="15" fill="rgb(215,56,53)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="8.5862%" y="1925" width="0.0298%" height="15" fill="rgb(217,60,2)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.5862%" y="1909" width="0.0298%" height="15" fill="rgb(207,26,24)" fg:x="2015" fg:w="7"/><text x="8.8362%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.5989%" y="1893" width="0.0170%" height="15" fill="rgb(252,210,15)" fg:x="2018" fg:w="4"/><text x="8.8489%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.5989%" y="1877" width="0.0170%" height="15" fill="rgb(253,209,26)" fg:x="2018" fg:w="4"/><text x="8.8489%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.5989%" y="1861" width="0.0170%" height="15" fill="rgb(238,170,14)" fg:x="2018" fg:w="4"/><text x="8.8489%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="8.6160%" y="1957" width="0.0256%" height="15" fill="rgb(216,178,15)" fg:x="2022" fg:w="6"/><text x="8.8660%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="8.6160%" y="1941" width="0.0256%" height="15" fill="rgb(250,197,2)" fg:x="2022" fg:w="6"/><text x="8.8660%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="8.6160%" y="1925" width="0.0256%" height="15" fill="rgb(212,70,42)" fg:x="2022" fg:w="6"/><text x="8.8660%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.6160%" y="1909" width="0.0256%" height="15" fill="rgb(227,213,9)" fg:x="2022" fg:w="6"/><text x="8.8660%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.6245%" y="1893" width="0.0170%" height="15" fill="rgb(245,99,25)" fg:x="2024" fg:w="4"/><text x="8.8745%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.6245%" y="1877" width="0.0170%" height="15" fill="rgb(250,82,29)" fg:x="2024" fg:w="4"/><text x="8.8745%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.6245%" y="1861" width="0.0170%" height="15" fill="rgb(241,226,54)" fg:x="2024" fg:w="4"/><text x="8.8745%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (26 samples, 0.11%)</title><rect x="8.5521%" y="2245" width="0.1108%" height="15" fill="rgb(221,99,41)" fg:x="2007" fg:w="26"/><text x="8.8021%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="8.5521%" y="2229" width="0.1108%" height="15" fill="rgb(213,90,21)" fg:x="2007" fg:w="26"/><text x="8.8021%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="8.5521%" y="2213" width="0.1108%" height="15" fill="rgb(205,208,24)" fg:x="2007" fg:w="26"/><text x="8.8021%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="8.5521%" y="2197" width="0.1108%" height="15" fill="rgb(246,31,12)" fg:x="2007" fg:w="26"/><text x="8.8021%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="8.5606%" y="2181" width="0.1023%" height="15" fill="rgb(213,154,6)" fg:x="2009" fg:w="24"/><text x="8.8106%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="8.5606%" y="2165" width="0.1023%" height="15" fill="rgb(222,163,29)" fg:x="2009" fg:w="24"/><text x="8.8106%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="8.5606%" y="2149" width="0.1023%" height="15" fill="rgb(227,201,8)" fg:x="2009" fg:w="24"/><text x="8.8106%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="8.6160%" y="2133" width="0.0469%" height="15" fill="rgb(233,9,32)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="8.6160%" y="2117" width="0.0469%" height="15" fill="rgb(217,54,24)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2127.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="8.6160%" y="2101" width="0.0469%" height="15" fill="rgb(235,192,0)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="8.6160%" y="2085" width="0.0469%" height="15" fill="rgb(235,45,9)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="8.6160%" y="2069" width="0.0469%" height="15" fill="rgb(246,42,40)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="8.6160%" y="2053" width="0.0469%" height="15" fill="rgb(248,111,24)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="8.6160%" y="2037" width="0.0469%" height="15" fill="rgb(249,65,22)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="8.6160%" y="2021" width="0.0469%" height="15" fill="rgb(238,111,51)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="8.6160%" y="2005" width="0.0469%" height="15" fill="rgb(250,118,22)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="8.6160%" y="1989" width="0.0469%" height="15" fill="rgb(234,84,26)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="8.6160%" y="1973" width="0.0469%" height="15" fill="rgb(243,172,12)" fg:x="2022" fg:w="11"/><text x="8.8660%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="8.6416%" y="1957" width="0.0213%" height="15" fill="rgb(236,150,49)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="8.6416%" y="1941" width="0.0213%" height="15" fill="rgb(225,197,26)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1951.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="8.6416%" y="1925" width="0.0213%" height="15" fill="rgb(214,17,42)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="8.6416%" y="1909" width="0.0213%" height="15" fill="rgb(224,165,40)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="8.6416%" y="1893" width="0.0213%" height="15" fill="rgb(246,100,4)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="8.6416%" y="1877" width="0.0213%" height="15" fill="rgb(222,103,0)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="8.6416%" y="1861" width="0.0213%" height="15" fill="rgb(227,189,26)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.6416%" y="1845" width="0.0213%" height="15" fill="rgb(214,202,17)" fg:x="2028" fg:w="5"/><text x="8.8916%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="8.6501%" y="1829" width="0.0128%" height="15" fill="rgb(229,111,3)" fg:x="2030" fg:w="3"/><text x="8.9001%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.6501%" y="1813" width="0.0128%" height="15" fill="rgb(229,172,15)" fg:x="2030" fg:w="3"/><text x="8.9001%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="8.6501%" y="1797" width="0.0128%" height="15" fill="rgb(230,224,35)" fg:x="2030" fg:w="3"/><text x="8.9001%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.6629%" y="2117" width="0.0128%" height="15" fill="rgb(251,141,6)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.6629%" y="2101" width="0.0128%" height="15" fill="rgb(225,208,6)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.6629%" y="2085" width="0.0128%" height="15" fill="rgb(246,181,16)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.6629%" y="2069" width="0.0128%" height="15" fill="rgb(227,129,36)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.6629%" y="2053" width="0.0128%" height="15" fill="rgb(248,117,24)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.6629%" y="2037" width="0.0128%" height="15" fill="rgb(214,185,35)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.6629%" y="2021" width="0.0128%" height="15" fill="rgb(236,150,34)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.6629%" y="2005" width="0.0128%" height="15" fill="rgb(243,228,27)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.6629%" y="1989" width="0.0128%" height="15" fill="rgb(245,77,44)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.6629%" y="1973" width="0.0128%" height="15" fill="rgb(235,214,42)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.6629%" y="1957" width="0.0128%" height="15" fill="rgb(221,74,3)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.6629%" y="1941" width="0.0128%" height="15" fill="rgb(206,121,29)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="8.6629%" y="1925" width="0.0128%" height="15" fill="rgb(249,131,53)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="8.6629%" y="1909" width="0.0128%" height="15" fill="rgb(236,170,29)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="1919.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.6629%" y="1893" width="0.0128%" height="15" fill="rgb(247,96,15)" fg:x="2033" fg:w="3"/><text x="8.9129%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="8.6756%" y="1957" width="0.0256%" height="15" fill="rgb(211,210,7)" fg:x="2036" fg:w="6"/><text x="8.9256%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="8.6756%" y="1941" width="0.0256%" height="15" fill="rgb(240,88,50)" fg:x="2036" fg:w="6"/><text x="8.9256%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="8.6756%" y="1925" width="0.0256%" height="15" fill="rgb(209,229,26)" fg:x="2036" fg:w="6"/><text x="8.9256%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.6756%" y="1909" width="0.0256%" height="15" fill="rgb(210,68,23)" fg:x="2036" fg:w="6"/><text x="8.9256%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.6842%" y="1893" width="0.0170%" height="15" fill="rgb(229,180,13)" fg:x="2038" fg:w="4"/><text x="8.9342%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.6842%" y="1877" width="0.0170%" height="15" fill="rgb(236,53,44)" fg:x="2038" fg:w="4"/><text x="8.9342%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.6842%" y="1861" width="0.0170%" height="15" fill="rgb(244,214,29)" fg:x="2038" fg:w="4"/><text x="8.9342%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="8.6756%" y="2069" width="0.0511%" height="15" fill="rgb(220,75,29)" fg:x="2036" fg:w="12"/><text x="8.9256%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="8.6756%" y="2053" width="0.0511%" height="15" fill="rgb(214,183,37)" fg:x="2036" fg:w="12"/><text x="8.9256%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="8.6756%" y="2037" width="0.0511%" height="15" fill="rgb(239,117,29)" fg:x="2036" fg:w="12"/><text x="8.9256%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="8.6756%" y="2021" width="0.0511%" height="15" fill="rgb(237,171,35)" fg:x="2036" fg:w="12"/><text x="8.9256%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="8.6756%" y="2005" width="0.0511%" height="15" fill="rgb(229,178,53)" fg:x="2036" fg:w="12"/><text x="8.9256%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="8.6756%" y="1989" width="0.0511%" height="15" fill="rgb(210,102,19)" fg:x="2036" fg:w="12"/><text x="8.9256%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="8.6756%" y="1973" width="0.0511%" height="15" fill="rgb(235,127,22)" fg:x="2036" fg:w="12"/><text x="8.9256%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="8.7012%" y="1957" width="0.0256%" height="15" fill="rgb(244,31,31)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="8.7012%" y="1941" width="0.0256%" height="15" fill="rgb(231,43,21)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1951.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="8.7012%" y="1925" width="0.0256%" height="15" fill="rgb(217,131,35)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="8.7012%" y="1909" width="0.0256%" height="15" fill="rgb(221,149,4)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="8.7012%" y="1893" width="0.0256%" height="15" fill="rgb(232,170,28)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="8.7012%" y="1877" width="0.0256%" height="15" fill="rgb(238,56,10)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="8.7012%" y="1861" width="0.0256%" height="15" fill="rgb(235,196,14)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.7012%" y="1845" width="0.0256%" height="15" fill="rgb(216,45,48)" fg:x="2042" fg:w="6"/><text x="8.9512%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.7097%" y="1829" width="0.0170%" height="15" fill="rgb(238,213,17)" fg:x="2044" fg:w="4"/><text x="8.9597%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.7097%" y="1813" width="0.0170%" height="15" fill="rgb(212,13,2)" fg:x="2044" fg:w="4"/><text x="8.9597%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.7097%" y="1797" width="0.0170%" height="15" fill="rgb(240,114,20)" fg:x="2044" fg:w="4"/><text x="8.9597%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.7268%" y="1941" width="0.0128%" height="15" fill="rgb(228,41,40)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.7268%" y="1925" width="0.0128%" height="15" fill="rgb(244,132,35)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.7268%" y="1909" width="0.0128%" height="15" fill="rgb(253,189,4)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.7268%" y="1893" width="0.0128%" height="15" fill="rgb(224,37,19)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.7268%" y="1877" width="0.0128%" height="15" fill="rgb(235,223,18)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.7268%" y="1861" width="0.0128%" height="15" fill="rgb(235,163,25)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.7268%" y="1845" width="0.0128%" height="15" fill="rgb(217,145,28)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.7268%" y="1829" width="0.0128%" height="15" fill="rgb(223,223,32)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.7268%" y="1813" width="0.0128%" height="15" fill="rgb(227,189,39)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.7268%" y="1797" width="0.0128%" height="15" fill="rgb(248,10,22)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.7268%" y="1781" width="0.0128%" height="15" fill="rgb(248,46,39)" fg:x="2048" fg:w="3"/><text x="8.9768%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="8.7396%" y="1893" width="0.0170%" height="15" fill="rgb(248,113,48)" fg:x="2051" fg:w="4"/><text x="8.9896%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="8.7396%" y="1877" width="0.0170%" height="15" fill="rgb(245,16,25)" fg:x="2051" fg:w="4"/><text x="8.9896%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="8.7396%" y="1861" width="0.0170%" height="15" fill="rgb(249,152,16)" fg:x="2051" fg:w="4"/><text x="8.9896%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.7396%" y="1845" width="0.0170%" height="15" fill="rgb(250,16,1)" fg:x="2051" fg:w="4"/><text x="8.9896%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="8.7396%" y="1829" width="0.0170%" height="15" fill="rgb(249,138,3)" fg:x="2051" fg:w="4"/><text x="8.9896%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.7396%" y="1813" width="0.0170%" height="15" fill="rgb(227,71,41)" fg:x="2051" fg:w="4"/><text x="8.9896%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="8.7396%" y="1797" width="0.0170%" height="15" fill="rgb(209,184,23)" fg:x="2051" fg:w="4"/><text x="8.9896%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (107 samples, 0.46%)</title><rect x="8.3092%" y="2885" width="0.4559%" height="15" fill="rgb(223,215,31)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (107 samples, 0.46%)</title><rect x="8.3092%" y="2869" width="0.4559%" height="15" fill="rgb(210,146,28)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2879.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (107 samples, 0.46%)</title><rect x="8.3092%" y="2853" width="0.4559%" height="15" fill="rgb(209,183,41)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2863.50"></text></g><g><title>rayon_core::job::JobRef::execute (107 samples, 0.46%)</title><rect x="8.3092%" y="2837" width="0.4559%" height="15" fill="rgb(209,224,45)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2847.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (107 samples, 0.46%)</title><rect x="8.3092%" y="2821" width="0.4559%" height="15" fill="rgb(224,209,51)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2831.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (107 samples, 0.46%)</title><rect x="8.3092%" y="2805" width="0.4559%" height="15" fill="rgb(223,17,39)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (107 samples, 0.46%)</title><rect x="8.3092%" y="2789" width="0.4559%" height="15" fill="rgb(234,204,37)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (107 samples, 0.46%)</title><rect x="8.3092%" y="2773" width="0.4559%" height="15" fill="rgb(236,120,5)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2783.50"></text></g><g><title>std::panicking::try (107 samples, 0.46%)</title><rect x="8.3092%" y="2757" width="0.4559%" height="15" fill="rgb(248,97,27)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (107 samples, 0.46%)</title><rect x="8.3092%" y="2741" width="0.4559%" height="15" fill="rgb(240,66,17)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (107 samples, 0.46%)</title><rect x="8.3092%" y="2725" width="0.4559%" height="15" fill="rgb(210,79,3)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2735.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (107 samples, 0.46%)</title><rect x="8.3092%" y="2709" width="0.4559%" height="15" fill="rgb(214,176,27)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (107 samples, 0.46%)</title><rect x="8.3092%" y="2693" width="0.4559%" height="15" fill="rgb(235,185,3)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (107 samples, 0.46%)</title><rect x="8.3092%" y="2677" width="0.4559%" height="15" fill="rgb(227,24,12)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (107 samples, 0.46%)</title><rect x="8.3092%" y="2661" width="0.4559%" height="15" fill="rgb(252,169,48)" fg:x="1950" fg:w="107"/><text x="8.5592%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (105 samples, 0.45%)</title><rect x="8.3177%" y="2645" width="0.4474%" height="15" fill="rgb(212,65,1)" fg:x="1952" fg:w="105"/><text x="8.5677%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (105 samples, 0.45%)</title><rect x="8.3177%" y="2629" width="0.4474%" height="15" fill="rgb(242,39,24)" fg:x="1952" fg:w="105"/><text x="8.5677%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (105 samples, 0.45%)</title><rect x="8.3177%" y="2613" width="0.4474%" height="15" fill="rgb(249,32,23)" fg:x="1952" fg:w="105"/><text x="8.5677%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (102 samples, 0.43%)</title><rect x="8.3305%" y="2597" width="0.4346%" height="15" fill="rgb(251,195,23)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (102 samples, 0.43%)</title><rect x="8.3305%" y="2581" width="0.4346%" height="15" fill="rgb(236,174,8)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2591.50"></text></g><g><title>std::panicking::try (102 samples, 0.43%)</title><rect x="8.3305%" y="2565" width="0.4346%" height="15" fill="rgb(220,197,8)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (102 samples, 0.43%)</title><rect x="8.3305%" y="2549" width="0.4346%" height="15" fill="rgb(240,108,37)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (102 samples, 0.43%)</title><rect x="8.3305%" y="2533" width="0.4346%" height="15" fill="rgb(232,176,24)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (102 samples, 0.43%)</title><rect x="8.3305%" y="2517" width="0.4346%" height="15" fill="rgb(243,35,29)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (102 samples, 0.43%)</title><rect x="8.3305%" y="2501" width="0.4346%" height="15" fill="rgb(210,37,18)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (102 samples, 0.43%)</title><rect x="8.3305%" y="2485" width="0.4346%" height="15" fill="rgb(224,184,40)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (102 samples, 0.43%)</title><rect x="8.3305%" y="2469" width="0.4346%" height="15" fill="rgb(236,39,29)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (102 samples, 0.43%)</title><rect x="8.3305%" y="2453" width="0.4346%" height="15" fill="rgb(232,48,39)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (102 samples, 0.43%)</title><rect x="8.3305%" y="2437" width="0.4346%" height="15" fill="rgb(236,34,42)" fg:x="1955" fg:w="102"/><text x="8.5805%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (55 samples, 0.23%)</title><rect x="8.5308%" y="2421" width="0.2344%" height="15" fill="rgb(243,106,37)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (55 samples, 0.23%)</title><rect x="8.5308%" y="2405" width="0.2344%" height="15" fill="rgb(218,96,6)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2415.50"></text></g><g><title>std::panicking::try (55 samples, 0.23%)</title><rect x="8.5308%" y="2389" width="0.2344%" height="15" fill="rgb(235,130,12)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (55 samples, 0.23%)</title><rect x="8.5308%" y="2373" width="0.2344%" height="15" fill="rgb(231,95,0)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (55 samples, 0.23%)</title><rect x="8.5308%" y="2357" width="0.2344%" height="15" fill="rgb(228,12,23)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (55 samples, 0.23%)</title><rect x="8.5308%" y="2341" width="0.2344%" height="15" fill="rgb(216,12,1)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (55 samples, 0.23%)</title><rect x="8.5308%" y="2325" width="0.2344%" height="15" fill="rgb(219,59,3)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.23%)</title><rect x="8.5308%" y="2309" width="0.2344%" height="15" fill="rgb(215,208,46)" fg:x="2002" fg:w="55"/><text x="8.7808%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (50 samples, 0.21%)</title><rect x="8.5521%" y="2293" width="0.2131%" height="15" fill="rgb(254,224,29)" fg:x="2007" fg:w="50"/><text x="8.8021%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (50 samples, 0.21%)</title><rect x="8.5521%" y="2277" width="0.2131%" height="15" fill="rgb(232,14,29)" fg:x="2007" fg:w="50"/><text x="8.8021%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (50 samples, 0.21%)</title><rect x="8.5521%" y="2261" width="0.2131%" height="15" fill="rgb(208,45,52)" fg:x="2007" fg:w="50"/><text x="8.8021%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (24 samples, 0.10%)</title><rect x="8.6629%" y="2245" width="0.1023%" height="15" fill="rgb(234,191,28)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (24 samples, 0.10%)</title><rect x="8.6629%" y="2229" width="0.1023%" height="15" fill="rgb(244,67,43)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2239.50"></text></g><g><title>std::panicking::try (24 samples, 0.10%)</title><rect x="8.6629%" y="2213" width="0.1023%" height="15" fill="rgb(236,189,24)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (24 samples, 0.10%)</title><rect x="8.6629%" y="2197" width="0.1023%" height="15" fill="rgb(239,214,33)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (24 samples, 0.10%)</title><rect x="8.6629%" y="2181" width="0.1023%" height="15" fill="rgb(226,176,41)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (24 samples, 0.10%)</title><rect x="8.6629%" y="2165" width="0.1023%" height="15" fill="rgb(248,47,8)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="8.6629%" y="2149" width="0.1023%" height="15" fill="rgb(218,81,44)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="8.6629%" y="2133" width="0.1023%" height="15" fill="rgb(213,98,6)" fg:x="2033" fg:w="24"/><text x="8.9129%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="8.6756%" y="2117" width="0.0895%" height="15" fill="rgb(222,85,22)" fg:x="2036" fg:w="21"/><text x="8.9256%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="8.6756%" y="2101" width="0.0895%" height="15" fill="rgb(239,46,39)" fg:x="2036" fg:w="21"/><text x="8.9256%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="8.6756%" y="2085" width="0.0895%" height="15" fill="rgb(237,12,29)" fg:x="2036" fg:w="21"/><text x="8.9256%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="8.7268%" y="2069" width="0.0384%" height="15" fill="rgb(214,77,8)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="8.7268%" y="2053" width="0.0384%" height="15" fill="rgb(217,168,37)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="2063.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="8.7268%" y="2037" width="0.0384%" height="15" fill="rgb(221,217,23)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="8.7268%" y="2021" width="0.0384%" height="15" fill="rgb(243,229,36)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="8.7268%" y="2005" width="0.0384%" height="15" fill="rgb(251,163,40)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="8.7268%" y="1989" width="0.0384%" height="15" fill="rgb(237,222,12)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="8.7268%" y="1973" width="0.0384%" height="15" fill="rgb(248,132,6)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.7268%" y="1957" width="0.0384%" height="15" fill="rgb(227,167,50)" fg:x="2048" fg:w="9"/><text x="8.9768%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="8.7396%" y="1941" width="0.0256%" height="15" fill="rgb(242,84,37)" fg:x="2051" fg:w="6"/><text x="8.9896%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="8.7396%" y="1925" width="0.0256%" height="15" fill="rgb(212,4,50)" fg:x="2051" fg:w="6"/><text x="8.9896%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="8.7396%" y="1909" width="0.0256%" height="15" fill="rgb(230,228,32)" fg:x="2051" fg:w="6"/><text x="8.9896%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.7651%" y="2757" width="0.0128%" height="15" fill="rgb(248,217,23)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2767.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.7651%" y="2741" width="0.0128%" height="15" fill="rgb(238,197,32)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.7651%" y="2725" width="0.0128%" height="15" fill="rgb(236,106,1)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.7651%" y="2709" width="0.0128%" height="15" fill="rgb(219,228,13)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.7651%" y="2693" width="0.0128%" height="15" fill="rgb(238,30,35)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.7651%" y="2677" width="0.0128%" height="15" fill="rgb(236,70,23)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.7651%" y="2661" width="0.0128%" height="15" fill="rgb(249,104,48)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.7651%" y="2645" width="0.0128%" height="15" fill="rgb(254,117,50)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.7651%" y="2629" width="0.0128%" height="15" fill="rgb(223,152,4)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.7651%" y="2613" width="0.0128%" height="15" fill="rgb(245,6,2)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.7651%" y="2597" width="0.0128%" height="15" fill="rgb(249,150,24)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2607.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.7651%" y="2581" width="0.0128%" height="15" fill="rgb(228,185,42)" fg:x="2057" fg:w="3"/><text x="9.0151%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="8.7864%" y="2453" width="0.0170%" height="15" fill="rgb(226,39,33)" fg:x="2062" fg:w="4"/><text x="9.0364%" y="2463.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="8.7864%" y="2437" width="0.0170%" height="15" fill="rgb(221,166,19)" fg:x="2062" fg:w="4"/><text x="9.0364%" y="2447.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="8.7779%" y="2469" width="0.0426%" height="15" fill="rgb(209,109,2)" fg:x="2060" fg:w="10"/><text x="9.0279%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="8.8035%" y="2453" width="0.0170%" height="15" fill="rgb(252,216,26)" fg:x="2066" fg:w="4"/><text x="9.0535%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="8.8035%" y="2437" width="0.0170%" height="15" fill="rgb(227,173,36)" fg:x="2066" fg:w="4"/><text x="9.0535%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="8.7779%" y="2645" width="0.0469%" height="15" fill="rgb(209,90,7)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="8.7779%" y="2629" width="0.0469%" height="15" fill="rgb(250,194,11)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (11 samples, 0.05%)</title><rect x="8.7779%" y="2613" width="0.0469%" height="15" fill="rgb(220,72,50)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (11 samples, 0.05%)</title><rect x="8.7779%" y="2597" width="0.0469%" height="15" fill="rgb(222,106,48)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (11 samples, 0.05%)</title><rect x="8.7779%" y="2581" width="0.0469%" height="15" fill="rgb(216,220,45)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (11 samples, 0.05%)</title><rect x="8.7779%" y="2565" width="0.0469%" height="15" fill="rgb(234,112,18)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (11 samples, 0.05%)</title><rect x="8.7779%" y="2549" width="0.0469%" height="15" fill="rgb(206,179,9)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (11 samples, 0.05%)</title><rect x="8.7779%" y="2533" width="0.0469%" height="15" fill="rgb(215,115,40)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (11 samples, 0.05%)</title><rect x="8.7779%" y="2517" width="0.0469%" height="15" fill="rgb(222,69,34)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="8.7779%" y="2501" width="0.0469%" height="15" fill="rgb(209,161,10)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (11 samples, 0.05%)</title><rect x="8.7779%" y="2485" width="0.0469%" height="15" fill="rgb(217,6,38)" fg:x="2060" fg:w="11"/><text x="9.0279%" y="2495.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="8.8248%" y="2341" width="0.0128%" height="15" fill="rgb(229,229,48)" fg:x="2071" fg:w="3"/><text x="9.0748%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="8.8248%" y="2325" width="0.0128%" height="15" fill="rgb(225,21,28)" fg:x="2071" fg:w="3"/><text x="9.0748%" y="2335.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.8248%" y="2309" width="0.0128%" height="15" fill="rgb(206,33,13)" fg:x="2071" fg:w="3"/><text x="9.0748%" y="2319.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.8248%" y="2293" width="0.0128%" height="15" fill="rgb(242,178,17)" fg:x="2071" fg:w="3"/><text x="9.0748%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="8.8248%" y="2533" width="0.0298%" height="15" fill="rgb(220,162,5)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2543.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="8.8248%" y="2517" width="0.0298%" height="15" fill="rgb(210,33,43)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="8.8248%" y="2501" width="0.0298%" height="15" fill="rgb(216,116,54)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="8.8248%" y="2485" width="0.0298%" height="15" fill="rgb(249,92,24)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="8.8248%" y="2469" width="0.0298%" height="15" fill="rgb(231,189,14)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="8.8248%" y="2453" width="0.0298%" height="15" fill="rgb(230,8,41)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="8.8248%" y="2437" width="0.0298%" height="15" fill="rgb(249,7,27)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="8.8248%" y="2421" width="0.0298%" height="15" fill="rgb(232,86,5)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="8.8248%" y="2405" width="0.0298%" height="15" fill="rgb(224,175,18)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="8.8248%" y="2389" width="0.0298%" height="15" fill="rgb(220,129,12)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="8.8248%" y="2373" width="0.0298%" height="15" fill="rgb(210,19,36)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="8.8248%" y="2357" width="0.0298%" height="15" fill="rgb(219,96,14)" fg:x="2071" fg:w="7"/><text x="9.0748%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="8.8376%" y="2341" width="0.0170%" height="15" fill="rgb(249,106,1)" fg:x="2074" fg:w="4"/><text x="9.0876%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="8.8376%" y="2325" width="0.0170%" height="15" fill="rgb(249,155,20)" fg:x="2074" fg:w="4"/><text x="9.0876%" y="2335.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="8.8546%" y="2229" width="0.0170%" height="15" fill="rgb(244,168,9)" fg:x="2078" fg:w="4"/><text x="9.1046%" y="2239.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="8.8546%" y="2213" width="0.0170%" height="15" fill="rgb(216,23,50)" fg:x="2078" fg:w="4"/><text x="9.1046%" y="2223.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.8546%" y="2197" width="0.0170%" height="15" fill="rgb(224,219,20)" fg:x="2078" fg:w="4"/><text x="9.1046%" y="2207.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.8546%" y="2181" width="0.0170%" height="15" fill="rgb(222,156,15)" fg:x="2078" fg:w="4"/><text x="9.1046%" y="2191.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="8.8546%" y="2245" width="0.0298%" height="15" fill="rgb(231,97,17)" fg:x="2078" fg:w="7"/><text x="9.1046%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="8.8717%" y="2229" width="0.0128%" height="15" fill="rgb(218,70,48)" fg:x="2082" fg:w="3"/><text x="9.1217%" y="2239.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="8.8717%" y="2213" width="0.0128%" height="15" fill="rgb(212,196,52)" fg:x="2082" fg:w="3"/><text x="9.1217%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="8.8546%" y="2485" width="0.0426%" height="15" fill="rgb(243,203,18)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8546%" y="2469" width="0.0426%" height="15" fill="rgb(252,125,41)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8546%" y="2453" width="0.0426%" height="15" fill="rgb(223,180,33)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="8.8546%" y="2437" width="0.0426%" height="15" fill="rgb(254,159,46)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="8.8546%" y="2421" width="0.0426%" height="15" fill="rgb(254,38,10)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2431.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="8.8546%" y="2405" width="0.0426%" height="15" fill="rgb(208,217,32)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="8.8546%" y="2389" width="0.0426%" height="15" fill="rgb(221,120,13)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2399.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="8.8546%" y="2373" width="0.0426%" height="15" fill="rgb(246,54,52)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2383.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="8.8546%" y="2357" width="0.0426%" height="15" fill="rgb(242,34,25)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="8.8546%" y="2341" width="0.0426%" height="15" fill="rgb(247,209,9)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="8.8546%" y="2325" width="0.0426%" height="15" fill="rgb(228,71,26)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8546%" y="2309" width="0.0426%" height="15" fill="rgb(222,145,49)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="8.8546%" y="2293" width="0.0426%" height="15" fill="rgb(218,121,17)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2303.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="8.8546%" y="2277" width="0.0426%" height="15" fill="rgb(244,50,7)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2287.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8546%" y="2261" width="0.0426%" height="15" fill="rgb(246,229,37)" fg:x="2078" fg:w="10"/><text x="9.1046%" y="2271.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="8.8844%" y="2245" width="0.0128%" height="15" fill="rgb(225,18,5)" fg:x="2085" fg:w="3"/><text x="9.1344%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="8.8972%" y="2165" width="0.0128%" height="15" fill="rgb(213,204,8)" fg:x="2088" fg:w="3"/><text x="9.1472%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="8.8972%" y="2149" width="0.0128%" height="15" fill="rgb(238,103,6)" fg:x="2088" fg:w="3"/><text x="9.1472%" y="2159.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.8972%" y="2133" width="0.0128%" height="15" fill="rgb(222,25,35)" fg:x="2088" fg:w="3"/><text x="9.1472%" y="2143.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.8972%" y="2117" width="0.0128%" height="15" fill="rgb(213,203,35)" fg:x="2088" fg:w="3"/><text x="9.1472%" y="2127.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="8.8972%" y="2181" width="0.0384%" height="15" fill="rgb(221,79,53)" fg:x="2088" fg:w="9"/><text x="9.1472%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="8.9143%" y="2165" width="0.0213%" height="15" fill="rgb(243,200,35)" fg:x="2092" fg:w="5"/><text x="9.1643%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="8.9143%" y="2149" width="0.0213%" height="15" fill="rgb(248,60,25)" fg:x="2092" fg:w="5"/><text x="9.1643%" y="2159.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (27 samples, 0.12%)</title><rect x="8.8248%" y="2597" width="0.1151%" height="15" fill="rgb(227,53,46)" fg:x="2071" fg:w="27"/><text x="9.0748%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (27 samples, 0.12%)</title><rect x="8.8248%" y="2581" width="0.1151%" height="15" fill="rgb(216,120,32)" fg:x="2071" fg:w="27"/><text x="9.0748%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="8.8248%" y="2565" width="0.1151%" height="15" fill="rgb(220,134,1)" fg:x="2071" fg:w="27"/><text x="9.0748%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="8.8248%" y="2549" width="0.1151%" height="15" fill="rgb(237,168,5)" fg:x="2071" fg:w="27"/><text x="9.0748%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="8.8546%" y="2533" width="0.0852%" height="15" fill="rgb(231,100,33)" fg:x="2078" fg:w="20"/><text x="9.1046%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="8.8546%" y="2517" width="0.0852%" height="15" fill="rgb(236,177,47)" fg:x="2078" fg:w="20"/><text x="9.1046%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="8.8546%" y="2501" width="0.0852%" height="15" fill="rgb(235,7,49)" fg:x="2078" fg:w="20"/><text x="9.1046%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="8.8972%" y="2485" width="0.0426%" height="15" fill="rgb(232,119,22)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="8.8972%" y="2469" width="0.0426%" height="15" fill="rgb(254,73,53)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2479.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="8.8972%" y="2453" width="0.0426%" height="15" fill="rgb(251,35,20)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="8.8972%" y="2437" width="0.0426%" height="15" fill="rgb(241,119,20)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="8.8972%" y="2421" width="0.0426%" height="15" fill="rgb(207,102,14)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8972%" y="2405" width="0.0426%" height="15" fill="rgb(248,201,50)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8972%" y="2389" width="0.0426%" height="15" fill="rgb(222,185,44)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="8.8972%" y="2373" width="0.0426%" height="15" fill="rgb(218,107,18)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="8.8972%" y="2357" width="0.0426%" height="15" fill="rgb(237,177,39)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="8.8972%" y="2341" width="0.0426%" height="15" fill="rgb(246,69,6)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="8.8972%" y="2325" width="0.0426%" height="15" fill="rgb(234,208,37)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="8.8972%" y="2309" width="0.0426%" height="15" fill="rgb(225,4,6)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="8.8972%" y="2293" width="0.0426%" height="15" fill="rgb(233,45,0)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="8.8972%" y="2277" width="0.0426%" height="15" fill="rgb(226,136,5)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="8.8972%" y="2261" width="0.0426%" height="15" fill="rgb(211,91,47)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8972%" y="2245" width="0.0426%" height="15" fill="rgb(242,88,51)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="8.8972%" y="2229" width="0.0426%" height="15" fill="rgb(230,91,28)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="8.8972%" y="2213" width="0.0426%" height="15" fill="rgb(254,186,29)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="8.8972%" y="2197" width="0.0426%" height="15" fill="rgb(238,6,4)" fg:x="2088" fg:w="10"/><text x="9.1472%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="8.9398%" y="2357" width="0.0128%" height="15" fill="rgb(221,151,16)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="8.9398%" y="2341" width="0.0128%" height="15" fill="rgb(251,143,52)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="8.9398%" y="2325" width="0.0128%" height="15" fill="rgb(206,90,15)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="8.9398%" y="2309" width="0.0128%" height="15" fill="rgb(218,35,8)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="8.9398%" y="2293" width="0.0128%" height="15" fill="rgb(239,215,6)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="8.9398%" y="2277" width="0.0128%" height="15" fill="rgb(245,116,39)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="8.9398%" y="2261" width="0.0128%" height="15" fill="rgb(242,65,28)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="8.9398%" y="2245" width="0.0128%" height="15" fill="rgb(252,132,53)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="8.9398%" y="2229" width="0.0128%" height="15" fill="rgb(224,159,50)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="8.9398%" y="2213" width="0.0128%" height="15" fill="rgb(224,93,4)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="8.9398%" y="2197" width="0.0128%" height="15" fill="rgb(208,81,34)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="8.9398%" y="2181" width="0.0128%" height="15" fill="rgb(233,92,54)" fg:x="2098" fg:w="3"/><text x="9.1898%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="8.9398%" y="2597" width="0.0170%" height="15" fill="rgb(237,21,14)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="8.9398%" y="2581" width="0.0170%" height="15" fill="rgb(249,128,51)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="8.9398%" y="2565" width="0.0170%" height="15" fill="rgb(223,129,24)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2575.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="8.9398%" y="2549" width="0.0170%" height="15" fill="rgb(231,168,25)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2559.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="8.9398%" y="2533" width="0.0170%" height="15" fill="rgb(224,39,20)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2543.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="8.9398%" y="2517" width="0.0170%" height="15" fill="rgb(225,152,53)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="8.9398%" y="2501" width="0.0170%" height="15" fill="rgb(252,17,24)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2511.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="8.9398%" y="2485" width="0.0170%" height="15" fill="rgb(250,114,30)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2495.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="8.9398%" y="2469" width="0.0170%" height="15" fill="rgb(229,5,4)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2479.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="8.9398%" y="2453" width="0.0170%" height="15" fill="rgb(225,176,49)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="8.9398%" y="2437" width="0.0170%" height="15" fill="rgb(224,221,49)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="8.9398%" y="2421" width="0.0170%" height="15" fill="rgb(253,169,27)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="8.9398%" y="2405" width="0.0170%" height="15" fill="rgb(211,206,16)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="8.9398%" y="2389" width="0.0170%" height="15" fill="rgb(244,87,35)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.9398%" y="2373" width="0.0170%" height="15" fill="rgb(246,28,10)" fg:x="2098" fg:w="4"/><text x="9.1898%" y="2383.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="8.9611%" y="2277" width="0.0128%" height="15" fill="rgb(229,12,44)" fg:x="2103" fg:w="3"/><text x="9.2111%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="8.9611%" y="2261" width="0.0128%" height="15" fill="rgb(210,145,37)" fg:x="2103" fg:w="3"/><text x="9.2111%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="8.9569%" y="2293" width="0.0256%" height="15" fill="rgb(227,112,52)" fg:x="2102" fg:w="6"/><text x="9.2069%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="8.9569%" y="2469" width="0.0341%" height="15" fill="rgb(238,155,34)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="8.9569%" y="2453" width="0.0341%" height="15" fill="rgb(239,226,36)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="8.9569%" y="2437" width="0.0341%" height="15" fill="rgb(230,16,23)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="8.9569%" y="2421" width="0.0341%" height="15" fill="rgb(236,171,36)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="8.9569%" y="2405" width="0.0341%" height="15" fill="rgb(221,22,14)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="8.9569%" y="2389" width="0.0341%" height="15" fill="rgb(242,43,11)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="8.9569%" y="2373" width="0.0341%" height="15" fill="rgb(232,69,23)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="8.9569%" y="2357" width="0.0341%" height="15" fill="rgb(216,180,54)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="8.9569%" y="2341" width="0.0341%" height="15" fill="rgb(216,5,24)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="8.9569%" y="2325" width="0.0341%" height="15" fill="rgb(225,89,9)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="8.9569%" y="2309" width="0.0341%" height="15" fill="rgb(243,75,33)" fg:x="2102" fg:w="8"/><text x="9.2069%" y="2319.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="8.9910%" y="2165" width="0.0170%" height="15" fill="rgb(247,141,45)" fg:x="2110" fg:w="4"/><text x="9.2410%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="8.9910%" y="2149" width="0.0170%" height="15" fill="rgb(232,177,36)" fg:x="2110" fg:w="4"/><text x="9.2410%" y="2159.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.9910%" y="2133" width="0.0170%" height="15" fill="rgb(219,125,36)" fg:x="2110" fg:w="4"/><text x="9.2410%" y="2143.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.9910%" y="2117" width="0.0170%" height="15" fill="rgb(227,94,9)" fg:x="2110" fg:w="4"/><text x="9.2410%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="8.9910%" y="2357" width="0.0426%" height="15" fill="rgb(240,34,52)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="8.9910%" y="2341" width="0.0426%" height="15" fill="rgb(216,45,12)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="8.9910%" y="2325" width="0.0426%" height="15" fill="rgb(246,21,19)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="8.9910%" y="2309" width="0.0426%" height="15" fill="rgb(213,98,42)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="8.9910%" y="2293" width="0.0426%" height="15" fill="rgb(250,136,47)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="8.9910%" y="2277" width="0.0426%" height="15" fill="rgb(251,124,27)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="8.9910%" y="2261" width="0.0426%" height="15" fill="rgb(229,180,14)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="8.9910%" y="2245" width="0.0426%" height="15" fill="rgb(245,216,25)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="8.9910%" y="2229" width="0.0426%" height="15" fill="rgb(251,43,5)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="8.9910%" y="2213" width="0.0426%" height="15" fill="rgb(250,128,24)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="8.9910%" y="2197" width="0.0426%" height="15" fill="rgb(217,117,27)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="8.9910%" y="2181" width="0.0426%" height="15" fill="rgb(245,147,4)" fg:x="2110" fg:w="10"/><text x="9.2410%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="9.0123%" y="2165" width="0.0213%" height="15" fill="rgb(242,201,35)" fg:x="2115" fg:w="5"/><text x="9.2623%" y="2175.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="9.0123%" y="2149" width="0.0213%" height="15" fill="rgb(218,181,1)" fg:x="2115" fg:w="5"/><text x="9.2623%" y="2159.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="9.0336%" y="2309" width="0.0128%" height="15" fill="rgb(222,6,29)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="9.0336%" y="2293" width="0.0128%" height="15" fill="rgb(208,186,3)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="9.0336%" y="2277" width="0.0128%" height="15" fill="rgb(216,36,26)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="9.0336%" y="2261" width="0.0128%" height="15" fill="rgb(248,201,23)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="9.0336%" y="2245" width="0.0128%" height="15" fill="rgb(251,170,31)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="9.0336%" y="2229" width="0.0128%" height="15" fill="rgb(207,110,25)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="9.0336%" y="2213" width="0.0128%" height="15" fill="rgb(250,54,15)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="9.0336%" y="2197" width="0.0128%" height="15" fill="rgb(227,68,33)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2207.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="9.0336%" y="2181" width="0.0128%" height="15" fill="rgb(238,34,41)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="9.0336%" y="2165" width="0.0128%" height="15" fill="rgb(220,11,15)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="9.0336%" y="2149" width="0.0128%" height="15" fill="rgb(246,111,35)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0336%" y="2133" width="0.0128%" height="15" fill="rgb(209,88,53)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0336%" y="2117" width="0.0128%" height="15" fill="rgb(231,185,47)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0336%" y="2101" width="0.0128%" height="15" fill="rgb(233,154,1)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.0336%" y="2085" width="0.0128%" height="15" fill="rgb(225,15,46)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.0336%" y="2069" width="0.0128%" height="15" fill="rgb(211,135,41)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="9.0336%" y="2053" width="0.0128%" height="15" fill="rgb(208,54,0)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="9.0336%" y="2037" width="0.0128%" height="15" fill="rgb(244,136,14)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="9.0336%" y="2021" width="0.0128%" height="15" fill="rgb(241,56,14)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="9.0336%" y="2005" width="0.0128%" height="15" fill="rgb(205,80,24)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="9.0336%" y="1989" width="0.0128%" height="15" fill="rgb(220,57,4)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="9.0336%" y="1973" width="0.0128%" height="15" fill="rgb(226,193,50)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0336%" y="1957" width="0.0128%" height="15" fill="rgb(231,168,22)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="9.0336%" y="1941" width="0.0128%" height="15" fill="rgb(254,215,14)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="9.0336%" y="1925" width="0.0128%" height="15" fill="rgb(211,115,16)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0336%" y="1909" width="0.0128%" height="15" fill="rgb(236,210,16)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="9.0336%" y="1893" width="0.0128%" height="15" fill="rgb(221,94,12)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1903.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="9.0336%" y="1877" width="0.0128%" height="15" fill="rgb(235,218,49)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1887.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="9.0336%" y="1861" width="0.0128%" height="15" fill="rgb(217,114,14)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1871.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.0336%" y="1845" width="0.0128%" height="15" fill="rgb(216,145,22)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1855.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.0336%" y="1829" width="0.0128%" height="15" fill="rgb(217,112,39)" fg:x="2120" fg:w="3"/><text x="9.2836%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="8.9910%" y="2421" width="0.0682%" height="15" fill="rgb(225,85,32)" fg:x="2110" fg:w="16"/><text x="9.2410%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="8.9910%" y="2405" width="0.0682%" height="15" fill="rgb(245,209,47)" fg:x="2110" fg:w="16"/><text x="9.2410%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="8.9910%" y="2389" width="0.0682%" height="15" fill="rgb(218,220,15)" fg:x="2110" fg:w="16"/><text x="9.2410%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="8.9910%" y="2373" width="0.0682%" height="15" fill="rgb(222,202,31)" fg:x="2110" fg:w="16"/><text x="9.2410%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="9.0336%" y="2357" width="0.0256%" height="15" fill="rgb(243,203,4)" fg:x="2120" fg:w="6"/><text x="9.2836%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="9.0336%" y="2341" width="0.0256%" height="15" fill="rgb(237,92,17)" fg:x="2120" fg:w="6"/><text x="9.2836%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="9.0336%" y="2325" width="0.0256%" height="15" fill="rgb(231,119,7)" fg:x="2120" fg:w="6"/><text x="9.2836%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="9.0464%" y="2309" width="0.0128%" height="15" fill="rgb(237,82,41)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="9.0464%" y="2293" width="0.0128%" height="15" fill="rgb(226,81,48)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2303.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="9.0464%" y="2277" width="0.0128%" height="15" fill="rgb(234,70,51)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="9.0464%" y="2261" width="0.0128%" height="15" fill="rgb(251,86,4)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="9.0464%" y="2245" width="0.0128%" height="15" fill="rgb(244,144,28)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0464%" y="2229" width="0.0128%" height="15" fill="rgb(232,161,39)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0464%" y="2213" width="0.0128%" height="15" fill="rgb(247,34,51)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.0464%" y="2197" width="0.0128%" height="15" fill="rgb(225,132,2)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.0464%" y="2181" width="0.0128%" height="15" fill="rgb(209,159,44)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="9.0464%" y="2165" width="0.0128%" height="15" fill="rgb(251,214,1)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="9.0464%" y="2149" width="0.0128%" height="15" fill="rgb(247,84,47)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="9.0464%" y="2133" width="0.0128%" height="15" fill="rgb(240,111,43)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="9.0464%" y="2117" width="0.0128%" height="15" fill="rgb(215,214,35)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="9.0464%" y="2101" width="0.0128%" height="15" fill="rgb(248,207,23)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="9.0464%" y="2085" width="0.0128%" height="15" fill="rgb(214,186,4)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0464%" y="2069" width="0.0128%" height="15" fill="rgb(220,133,22)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="9.0464%" y="2053" width="0.0128%" height="15" fill="rgb(239,134,19)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="9.0464%" y="2037" width="0.0128%" height="15" fill="rgb(250,140,9)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0464%" y="2021" width="0.0128%" height="15" fill="rgb(225,59,14)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="9.0464%" y="2005" width="0.0128%" height="15" fill="rgb(214,152,51)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="9.0464%" y="1989" width="0.0128%" height="15" fill="rgb(251,227,43)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="9.0464%" y="1973" width="0.0128%" height="15" fill="rgb(241,96,17)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="1983.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.0464%" y="1957" width="0.0128%" height="15" fill="rgb(234,198,43)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="1967.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.0464%" y="1941" width="0.0128%" height="15" fill="rgb(220,108,29)" fg:x="2123" fg:w="3"/><text x="9.2964%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="9.0591%" y="2101" width="0.0170%" height="15" fill="rgb(226,163,33)" fg:x="2126" fg:w="4"/><text x="9.3091%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="9.0591%" y="2085" width="0.0170%" height="15" fill="rgb(205,194,45)" fg:x="2126" fg:w="4"/><text x="9.3091%" y="2095.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="9.0591%" y="2069" width="0.0170%" height="15" fill="rgb(206,143,44)" fg:x="2126" fg:w="4"/><text x="9.3091%" y="2079.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="9.0591%" y="2053" width="0.0170%" height="15" fill="rgb(236,136,36)" fg:x="2126" fg:w="4"/><text x="9.3091%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="9.0591%" y="2293" width="0.0298%" height="15" fill="rgb(249,172,42)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="9.0591%" y="2277" width="0.0298%" height="15" fill="rgb(216,139,23)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="9.0591%" y="2261" width="0.0298%" height="15" fill="rgb(207,166,20)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="9.0591%" y="2245" width="0.0298%" height="15" fill="rgb(210,209,22)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="9.0591%" y="2229" width="0.0298%" height="15" fill="rgb(232,118,20)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="9.0591%" y="2213" width="0.0298%" height="15" fill="rgb(238,113,42)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="9.0591%" y="2197" width="0.0298%" height="15" fill="rgb(231,42,5)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="9.0591%" y="2181" width="0.0298%" height="15" fill="rgb(243,166,24)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="9.0591%" y="2165" width="0.0298%" height="15" fill="rgb(237,226,12)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="9.0591%" y="2149" width="0.0298%" height="15" fill="rgb(229,133,24)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="9.0591%" y="2133" width="0.0298%" height="15" fill="rgb(238,33,43)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="9.0591%" y="2117" width="0.0298%" height="15" fill="rgb(227,59,38)" fg:x="2126" fg:w="7"/><text x="9.3091%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="9.0890%" y="2245" width="0.0128%" height="15" fill="rgb(230,97,0)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0890%" y="2229" width="0.0128%" height="15" fill="rgb(250,173,50)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0890%" y="2213" width="0.0128%" height="15" fill="rgb(240,15,50)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.0890%" y="2197" width="0.0128%" height="15" fill="rgb(221,93,22)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.0890%" y="2181" width="0.0128%" height="15" fill="rgb(245,180,53)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="9.0890%" y="2165" width="0.0128%" height="15" fill="rgb(231,88,51)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="9.0890%" y="2149" width="0.0128%" height="15" fill="rgb(240,58,21)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="9.0890%" y="2133" width="0.0128%" height="15" fill="rgb(237,21,10)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="9.0890%" y="2117" width="0.0128%" height="15" fill="rgb(218,43,11)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="9.0890%" y="2101" width="0.0128%" height="15" fill="rgb(218,221,29)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="9.0890%" y="2085" width="0.0128%" height="15" fill="rgb(214,118,42)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0890%" y="2069" width="0.0128%" height="15" fill="rgb(251,200,26)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="9.0890%" y="2053" width="0.0128%" height="15" fill="rgb(237,101,39)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="9.0890%" y="2037" width="0.0128%" height="15" fill="rgb(251,117,11)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="9.0890%" y="2021" width="0.0128%" height="15" fill="rgb(216,223,23)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="9.0890%" y="2005" width="0.0128%" height="15" fill="rgb(251,54,12)" fg:x="2133" fg:w="3"/><text x="9.3390%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (77 samples, 0.33%)</title><rect x="8.7779%" y="2709" width="0.3281%" height="15" fill="rgb(254,176,54)" fg:x="2060" fg:w="77"/><text x="9.0279%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (77 samples, 0.33%)</title><rect x="8.7779%" y="2693" width="0.3281%" height="15" fill="rgb(210,32,8)" fg:x="2060" fg:w="77"/><text x="9.0279%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (77 samples, 0.33%)</title><rect x="8.7779%" y="2677" width="0.3281%" height="15" fill="rgb(235,52,38)" fg:x="2060" fg:w="77"/><text x="9.0279%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (77 samples, 0.33%)</title><rect x="8.7779%" y="2661" width="0.3281%" height="15" fill="rgb(231,4,44)" fg:x="2060" fg:w="77"/><text x="9.0279%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (66 samples, 0.28%)</title><rect x="8.8248%" y="2645" width="0.2812%" height="15" fill="rgb(249,2,32)" fg:x="2071" fg:w="66"/><text x="9.0748%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (66 samples, 0.28%)</title><rect x="8.8248%" y="2629" width="0.2812%" height="15" fill="rgb(224,65,26)" fg:x="2071" fg:w="66"/><text x="9.0748%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (66 samples, 0.28%)</title><rect x="8.8248%" y="2613" width="0.2812%" height="15" fill="rgb(250,73,40)" fg:x="2071" fg:w="66"/><text x="9.0748%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (35 samples, 0.15%)</title><rect x="8.9569%" y="2597" width="0.1491%" height="15" fill="rgb(253,177,16)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (35 samples, 0.15%)</title><rect x="8.9569%" y="2581" width="0.1491%" height="15" fill="rgb(217,32,34)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2591.50"></text></g><g><title>std::panicking::try (35 samples, 0.15%)</title><rect x="8.9569%" y="2565" width="0.1491%" height="15" fill="rgb(212,7,10)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (35 samples, 0.15%)</title><rect x="8.9569%" y="2549" width="0.1491%" height="15" fill="rgb(245,89,8)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (35 samples, 0.15%)</title><rect x="8.9569%" y="2533" width="0.1491%" height="15" fill="rgb(237,16,53)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (35 samples, 0.15%)</title><rect x="8.9569%" y="2517" width="0.1491%" height="15" fill="rgb(250,204,30)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (35 samples, 0.15%)</title><rect x="8.9569%" y="2501" width="0.1491%" height="15" fill="rgb(208,77,27)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.15%)</title><rect x="8.9569%" y="2485" width="0.1491%" height="15" fill="rgb(250,204,28)" fg:x="2102" fg:w="35"/><text x="9.2069%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="8.9910%" y="2469" width="0.1151%" height="15" fill="rgb(244,63,21)" fg:x="2110" fg:w="27"/><text x="9.2410%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="8.9910%" y="2453" width="0.1151%" height="15" fill="rgb(236,85,44)" fg:x="2110" fg:w="27"/><text x="9.2410%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="8.9910%" y="2437" width="0.1151%" height="15" fill="rgb(215,98,4)" fg:x="2110" fg:w="27"/><text x="9.2410%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="9.0591%" y="2421" width="0.0469%" height="15" fill="rgb(235,38,11)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="9.0591%" y="2405" width="0.0469%" height="15" fill="rgb(254,186,25)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2415.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="9.0591%" y="2389" width="0.0469%" height="15" fill="rgb(225,55,31)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="9.0591%" y="2373" width="0.0469%" height="15" fill="rgb(211,15,21)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="9.0591%" y="2357" width="0.0469%" height="15" fill="rgb(215,187,41)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="9.0591%" y="2341" width="0.0469%" height="15" fill="rgb(248,69,32)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="9.0591%" y="2325" width="0.0469%" height="15" fill="rgb(252,102,52)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="9.0591%" y="2309" width="0.0469%" height="15" fill="rgb(253,140,32)" fg:x="2126" fg:w="11"/><text x="9.3091%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="9.0890%" y="2293" width="0.0170%" height="15" fill="rgb(216,56,42)" fg:x="2133" fg:w="4"/><text x="9.3390%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.0890%" y="2277" width="0.0170%" height="15" fill="rgb(216,184,14)" fg:x="2133" fg:w="4"/><text x="9.3390%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="9.0890%" y="2261" width="0.0170%" height="15" fill="rgb(237,187,27)" fg:x="2133" fg:w="4"/><text x="9.3390%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.1060%" y="2469" width="0.0128%" height="15" fill="rgb(219,65,3)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="9.1060%" y="2453" width="0.0128%" height="15" fill="rgb(245,83,25)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="9.1060%" y="2437" width="0.0128%" height="15" fill="rgb(214,205,45)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="9.1060%" y="2421" width="0.0128%" height="15" fill="rgb(241,20,18)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="9.1060%" y="2405" width="0.0128%" height="15" fill="rgb(232,163,23)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="9.1060%" y="2389" width="0.0128%" height="15" fill="rgb(214,5,46)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="9.1060%" y="2373" width="0.0128%" height="15" fill="rgb(229,78,17)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="9.1060%" y="2357" width="0.0128%" height="15" fill="rgb(248,89,10)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="9.1060%" y="2341" width="0.0128%" height="15" fill="rgb(248,54,15)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="9.1060%" y="2325" width="0.0128%" height="15" fill="rgb(223,116,6)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="9.1060%" y="2309" width="0.0128%" height="15" fill="rgb(205,125,38)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="9.1060%" y="2293" width="0.0128%" height="15" fill="rgb(251,78,38)" fg:x="2137" fg:w="3"/><text x="9.3560%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="9.1188%" y="2165" width="0.0128%" height="15" fill="rgb(253,78,28)" fg:x="2140" fg:w="3"/><text x="9.3688%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="9.1188%" y="2149" width="0.0128%" height="15" fill="rgb(209,120,3)" fg:x="2140" fg:w="3"/><text x="9.3688%" y="2159.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.1188%" y="2133" width="0.0128%" height="15" fill="rgb(238,229,9)" fg:x="2140" fg:w="3"/><text x="9.3688%" y="2143.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.1188%" y="2117" width="0.0128%" height="15" fill="rgb(253,159,18)" fg:x="2140" fg:w="3"/><text x="9.3688%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="9.1188%" y="2421" width="0.0170%" height="15" fill="rgb(244,42,34)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="9.1188%" y="2405" width="0.0170%" height="15" fill="rgb(224,8,7)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="9.1188%" y="2389" width="0.0170%" height="15" fill="rgb(210,201,45)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.1188%" y="2373" width="0.0170%" height="15" fill="rgb(252,185,21)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="9.1188%" y="2357" width="0.0170%" height="15" fill="rgb(223,131,1)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="9.1188%" y="2341" width="0.0170%" height="15" fill="rgb(245,141,16)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="9.1188%" y="2325" width="0.0170%" height="15" fill="rgb(229,55,45)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="9.1188%" y="2309" width="0.0170%" height="15" fill="rgb(208,92,15)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="9.1188%" y="2293" width="0.0170%" height="15" fill="rgb(234,185,47)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="9.1188%" y="2277" width="0.0170%" height="15" fill="rgb(253,104,50)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="9.1188%" y="2261" width="0.0170%" height="15" fill="rgb(205,70,7)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="9.1188%" y="2245" width="0.0170%" height="15" fill="rgb(240,178,43)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="9.1188%" y="2229" width="0.0170%" height="15" fill="rgb(214,112,2)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="9.1188%" y="2213" width="0.0170%" height="15" fill="rgb(206,46,17)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="9.1188%" y="2197" width="0.0170%" height="15" fill="rgb(225,220,16)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="9.1188%" y="2181" width="0.0170%" height="15" fill="rgb(238,65,40)" fg:x="2140" fg:w="4"/><text x="9.3688%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.1358%" y="2293" width="0.0128%" height="15" fill="rgb(230,151,21)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="9.1358%" y="2277" width="0.0128%" height="15" fill="rgb(218,58,49)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="9.1358%" y="2261" width="0.0128%" height="15" fill="rgb(219,179,14)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="9.1358%" y="2245" width="0.0128%" height="15" fill="rgb(223,72,1)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="9.1358%" y="2229" width="0.0128%" height="15" fill="rgb(238,126,10)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="9.1358%" y="2213" width="0.0128%" height="15" fill="rgb(224,206,38)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="9.1358%" y="2197" width="0.0128%" height="15" fill="rgb(212,201,54)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="9.1358%" y="2181" width="0.0128%" height="15" fill="rgb(218,154,48)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="9.1358%" y="2165" width="0.0128%" height="15" fill="rgb(232,93,24)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="9.1358%" y="2149" width="0.0128%" height="15" fill="rgb(245,30,21)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="9.1358%" y="2133" width="0.0128%" height="15" fill="rgb(242,148,29)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="9.1358%" y="2117" width="0.0128%" height="15" fill="rgb(244,153,54)" fg:x="2144" fg:w="3"/><text x="9.3858%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="9.1060%" y="2709" width="0.0511%" height="15" fill="rgb(252,87,22)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="9.1060%" y="2693" width="0.0511%" height="15" fill="rgb(210,51,29)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="9.1060%" y="2677" width="0.0511%" height="15" fill="rgb(242,136,47)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="9.1060%" y="2661" width="0.0511%" height="15" fill="rgb(238,68,4)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="9.1060%" y="2645" width="0.0511%" height="15" fill="rgb(242,161,30)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="9.1060%" y="2629" width="0.0511%" height="15" fill="rgb(218,58,44)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="9.1060%" y="2613" width="0.0511%" height="15" fill="rgb(252,125,32)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="9.1060%" y="2597" width="0.0511%" height="15" fill="rgb(219,178,0)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2607.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="9.1060%" y="2581" width="0.0511%" height="15" fill="rgb(213,152,7)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="9.1060%" y="2565" width="0.0511%" height="15" fill="rgb(249,109,34)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="9.1060%" y="2549" width="0.0511%" height="15" fill="rgb(232,96,21)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="9.1060%" y="2533" width="0.0511%" height="15" fill="rgb(228,27,39)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="9.1060%" y="2517" width="0.0511%" height="15" fill="rgb(211,182,52)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="9.1060%" y="2501" width="0.0511%" height="15" fill="rgb(234,178,38)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="9.1060%" y="2485" width="0.0511%" height="15" fill="rgb(221,111,3)" fg:x="2137" fg:w="12"/><text x="9.3560%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="9.1188%" y="2469" width="0.0384%" height="15" fill="rgb(228,175,21)" fg:x="2140" fg:w="9"/><text x="9.3688%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="9.1188%" y="2453" width="0.0384%" height="15" fill="rgb(228,174,43)" fg:x="2140" fg:w="9"/><text x="9.3688%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="9.1188%" y="2437" width="0.0384%" height="15" fill="rgb(211,191,0)" fg:x="2140" fg:w="9"/><text x="9.3688%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="9.1358%" y="2421" width="0.0213%" height="15" fill="rgb(253,117,3)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="9.1358%" y="2405" width="0.0213%" height="15" fill="rgb(241,127,19)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2415.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="9.1358%" y="2389" width="0.0213%" height="15" fill="rgb(218,103,12)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="9.1358%" y="2373" width="0.0213%" height="15" fill="rgb(236,214,43)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="9.1358%" y="2357" width="0.0213%" height="15" fill="rgb(244,144,19)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="9.1358%" y="2341" width="0.0213%" height="15" fill="rgb(246,188,10)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="9.1358%" y="2325" width="0.0213%" height="15" fill="rgb(212,193,33)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.1358%" y="2309" width="0.0213%" height="15" fill="rgb(241,51,29)" fg:x="2144" fg:w="5"/><text x="9.3858%" y="2319.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="9.1572%" y="2389" width="0.0213%" height="15" fill="rgb(211,58,19)" fg:x="2149" fg:w="5"/><text x="9.4072%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="9.1572%" y="2373" width="0.0213%" height="15" fill="rgb(229,111,26)" fg:x="2149" fg:w="5"/><text x="9.4072%" y="2383.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="9.1572%" y="2357" width="0.0213%" height="15" fill="rgb(213,115,40)" fg:x="2149" fg:w="5"/><text x="9.4072%" y="2367.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="9.1572%" y="2341" width="0.0213%" height="15" fill="rgb(209,56,44)" fg:x="2149" fg:w="5"/><text x="9.4072%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="9.1785%" y="2389" width="0.0213%" height="15" fill="rgb(230,108,32)" fg:x="2154" fg:w="5"/><text x="9.4285%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="9.1785%" y="2373" width="0.0213%" height="15" fill="rgb(216,165,31)" fg:x="2154" fg:w="5"/><text x="9.4285%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.06%)</title><rect x="9.1572%" y="2581" width="0.0554%" height="15" fill="rgb(218,122,21)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="9.1572%" y="2565" width="0.0554%" height="15" fill="rgb(223,224,47)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (13 samples, 0.06%)</title><rect x="9.1572%" y="2549" width="0.0554%" height="15" fill="rgb(238,102,44)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (13 samples, 0.06%)</title><rect x="9.1572%" y="2533" width="0.0554%" height="15" fill="rgb(236,46,40)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (13 samples, 0.06%)</title><rect x="9.1572%" y="2517" width="0.0554%" height="15" fill="rgb(247,202,50)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (13 samples, 0.06%)</title><rect x="9.1572%" y="2501" width="0.0554%" height="15" fill="rgb(209,99,20)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (13 samples, 0.06%)</title><rect x="9.1572%" y="2485" width="0.0554%" height="15" fill="rgb(252,27,34)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (13 samples, 0.06%)</title><rect x="9.1572%" y="2469" width="0.0554%" height="15" fill="rgb(215,206,23)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (13 samples, 0.06%)</title><rect x="9.1572%" y="2453" width="0.0554%" height="15" fill="rgb(212,135,36)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="9.1572%" y="2437" width="0.0554%" height="15" fill="rgb(240,189,1)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (13 samples, 0.06%)</title><rect x="9.1572%" y="2421" width="0.0554%" height="15" fill="rgb(242,56,20)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (13 samples, 0.06%)</title><rect x="9.1572%" y="2405" width="0.0554%" height="15" fill="rgb(247,132,33)" fg:x="2149" fg:w="13"/><text x="9.4072%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="9.1998%" y="2389" width="0.0128%" height="15" fill="rgb(208,149,11)" fg:x="2159" fg:w="3"/><text x="9.4498%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="9.1998%" y="2373" width="0.0128%" height="15" fill="rgb(211,33,11)" fg:x="2159" fg:w="3"/><text x="9.4498%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="9.2125%" y="2293" width="0.0213%" height="15" fill="rgb(221,29,38)" fg:x="2162" fg:w="5"/><text x="9.4625%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="9.2125%" y="2469" width="0.0256%" height="15" fill="rgb(206,182,49)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="9.2125%" y="2453" width="0.0256%" height="15" fill="rgb(216,140,1)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="9.2125%" y="2437" width="0.0256%" height="15" fill="rgb(232,57,40)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="9.2125%" y="2421" width="0.0256%" height="15" fill="rgb(224,186,18)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="9.2125%" y="2405" width="0.0256%" height="15" fill="rgb(215,121,11)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="9.2125%" y="2389" width="0.0256%" height="15" fill="rgb(245,147,10)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="9.2125%" y="2373" width="0.0256%" height="15" fill="rgb(238,153,13)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="9.2125%" y="2357" width="0.0256%" height="15" fill="rgb(233,108,0)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="9.2125%" y="2341" width="0.0256%" height="15" fill="rgb(212,157,17)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="9.2125%" y="2325" width="0.0256%" height="15" fill="rgb(225,213,38)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="9.2125%" y="2309" width="0.0256%" height="15" fill="rgb(248,16,11)" fg:x="2162" fg:w="6"/><text x="9.4625%" y="2319.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (8 samples, 0.03%)</title><rect x="9.2381%" y="2165" width="0.0341%" height="15" fill="rgb(241,33,4)" fg:x="2168" fg:w="8"/><text x="9.4881%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::exp (8 samples, 0.03%)</title><rect x="9.2381%" y="2149" width="0.0341%" height="15" fill="rgb(222,26,43)" fg:x="2168" fg:w="8"/><text x="9.4881%" y="2159.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="9.2381%" y="2133" width="0.0341%" height="15" fill="rgb(243,29,36)" fg:x="2168" fg:w="8"/><text x="9.4881%" y="2143.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="9.2509%" y="2117" width="0.0213%" height="15" fill="rgb(241,9,27)" fg:x="2171" fg:w="5"/><text x="9.5009%" y="2127.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="9.2381%" y="2181" width="0.0426%" height="15" fill="rgb(205,117,26)" fg:x="2168" fg:w="10"/><text x="9.4881%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="9.2381%" y="2357" width="0.0469%" height="15" fill="rgb(209,80,39)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="9.2381%" y="2341" width="0.0469%" height="15" fill="rgb(239,155,6)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (11 samples, 0.05%)</title><rect x="9.2381%" y="2325" width="0.0469%" height="15" fill="rgb(212,104,12)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (11 samples, 0.05%)</title><rect x="9.2381%" y="2309" width="0.0469%" height="15" fill="rgb(234,204,3)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (11 samples, 0.05%)</title><rect x="9.2381%" y="2293" width="0.0469%" height="15" fill="rgb(251,218,7)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (11 samples, 0.05%)</title><rect x="9.2381%" y="2277" width="0.0469%" height="15" fill="rgb(221,81,32)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (11 samples, 0.05%)</title><rect x="9.2381%" y="2261" width="0.0469%" height="15" fill="rgb(214,152,26)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (11 samples, 0.05%)</title><rect x="9.2381%" y="2245" width="0.0469%" height="15" fill="rgb(223,22,3)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (11 samples, 0.05%)</title><rect x="9.2381%" y="2229" width="0.0469%" height="15" fill="rgb(207,174,7)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="9.2381%" y="2213" width="0.0469%" height="15" fill="rgb(224,19,52)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (11 samples, 0.05%)</title><rect x="9.2381%" y="2197" width="0.0469%" height="15" fill="rgb(228,24,14)" fg:x="2168" fg:w="11"/><text x="9.4881%" y="2207.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="9.2850%" y="2309" width="0.0170%" height="15" fill="rgb(230,153,43)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="9.2850%" y="2293" width="0.0170%" height="15" fill="rgb(231,106,12)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="9.2850%" y="2277" width="0.0170%" height="15" fill="rgb(215,92,2)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.2850%" y="2261" width="0.0170%" height="15" fill="rgb(249,143,25)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="9.2850%" y="2245" width="0.0170%" height="15" fill="rgb(252,7,35)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2255.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="9.2850%" y="2229" width="0.0170%" height="15" fill="rgb(216,69,40)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="9.2850%" y="2213" width="0.0170%" height="15" fill="rgb(240,36,33)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2223.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="9.2850%" y="2197" width="0.0170%" height="15" fill="rgb(231,128,14)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2207.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="9.2850%" y="2181" width="0.0170%" height="15" fill="rgb(245,143,14)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2191.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="9.2850%" y="2165" width="0.0170%" height="15" fill="rgb(222,130,28)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="9.2850%" y="2149" width="0.0170%" height="15" fill="rgb(212,10,48)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="9.2850%" y="2133" width="0.0170%" height="15" fill="rgb(254,118,45)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="9.2850%" y="2117" width="0.0170%" height="15" fill="rgb(228,6,45)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2127.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="9.2850%" y="2101" width="0.0170%" height="15" fill="rgb(241,18,35)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2111.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="9.2850%" y="2085" width="0.0170%" height="15" fill="rgb(227,214,53)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2095.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="9.2850%" y="2069" width="0.0170%" height="15" fill="rgb(224,107,51)" fg:x="2179" fg:w="4"/><text x="9.5350%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="9.3020%" y="2181" width="0.0213%" height="15" fill="rgb(248,60,28)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="9.3020%" y="2165" width="0.0213%" height="15" fill="rgb(249,101,23)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="9.3020%" y="2149" width="0.0213%" height="15" fill="rgb(228,51,19)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="9.3020%" y="2133" width="0.0213%" height="15" fill="rgb(213,20,6)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="9.3020%" y="2117" width="0.0213%" height="15" fill="rgb(212,124,10)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="9.3020%" y="2101" width="0.0213%" height="15" fill="rgb(248,3,40)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="9.3020%" y="2085" width="0.0213%" height="15" fill="rgb(223,178,23)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="9.3020%" y="2069" width="0.0213%" height="15" fill="rgb(240,132,45)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="9.3020%" y="2053" width="0.0213%" height="15" fill="rgb(245,164,36)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="9.3020%" y="2037" width="0.0213%" height="15" fill="rgb(231,188,53)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="9.3020%" y="2021" width="0.0213%" height="15" fill="rgb(237,198,39)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="9.3020%" y="2005" width="0.0213%" height="15" fill="rgb(223,120,35)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="9.3020%" y="1989" width="0.0213%" height="15" fill="rgb(253,107,49)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="9.3020%" y="1973" width="0.0213%" height="15" fill="rgb(216,44,31)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="1983.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="9.3020%" y="1957" width="0.0213%" height="15" fill="rgb(253,87,21)" fg:x="2183" fg:w="5"/><text x="9.5520%" y="1967.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="9.3063%" y="1941" width="0.0170%" height="15" fill="rgb(226,18,2)" fg:x="2184" fg:w="4"/><text x="9.5563%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (21 samples, 0.09%)</title><rect x="9.2381%" y="2421" width="0.0895%" height="15" fill="rgb(216,8,46)" fg:x="2168" fg:w="21"/><text x="9.4881%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="9.2381%" y="2405" width="0.0895%" height="15" fill="rgb(226,140,39)" fg:x="2168" fg:w="21"/><text x="9.4881%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="9.2381%" y="2389" width="0.0895%" height="15" fill="rgb(221,194,54)" fg:x="2168" fg:w="21"/><text x="9.4881%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="9.2381%" y="2373" width="0.0895%" height="15" fill="rgb(213,92,11)" fg:x="2168" fg:w="21"/><text x="9.4881%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="9.2850%" y="2357" width="0.0426%" height="15" fill="rgb(229,162,46)" fg:x="2179" fg:w="10"/><text x="9.5350%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="9.2850%" y="2341" width="0.0426%" height="15" fill="rgb(214,111,36)" fg:x="2179" fg:w="10"/><text x="9.5350%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="9.2850%" y="2325" width="0.0426%" height="15" fill="rgb(207,6,21)" fg:x="2179" fg:w="10"/><text x="9.5350%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="9.3020%" y="2309" width="0.0256%" height="15" fill="rgb(213,127,38)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="9.3020%" y="2293" width="0.0256%" height="15" fill="rgb(238,118,32)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2303.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="9.3020%" y="2277" width="0.0256%" height="15" fill="rgb(240,139,39)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="9.3020%" y="2261" width="0.0256%" height="15" fill="rgb(235,10,37)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="9.3020%" y="2245" width="0.0256%" height="15" fill="rgb(249,171,38)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="9.3020%" y="2229" width="0.0256%" height="15" fill="rgb(242,144,32)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="9.3020%" y="2213" width="0.0256%" height="15" fill="rgb(217,117,21)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="9.3020%" y="2197" width="0.0256%" height="15" fill="rgb(249,87,1)" fg:x="2183" fg:w="6"/><text x="9.5520%" y="2207.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="9.3404%" y="2101" width="0.0170%" height="15" fill="rgb(248,196,48)" fg:x="2192" fg:w="4"/><text x="9.5904%" y="2111.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="9.3404%" y="2085" width="0.0170%" height="15" fill="rgb(251,206,33)" fg:x="2192" fg:w="4"/><text x="9.5904%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="9.3361%" y="2293" width="0.0384%" height="15" fill="rgb(232,141,28)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="9.3361%" y="2277" width="0.0384%" height="15" fill="rgb(209,167,14)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="9.3361%" y="2261" width="0.0384%" height="15" fill="rgb(225,11,50)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="9.3361%" y="2245" width="0.0384%" height="15" fill="rgb(209,50,20)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="9.3361%" y="2229" width="0.0384%" height="15" fill="rgb(212,17,46)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="9.3361%" y="2213" width="0.0384%" height="15" fill="rgb(216,101,39)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="9.3361%" y="2197" width="0.0384%" height="15" fill="rgb(212,228,48)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="9.3361%" y="2181" width="0.0384%" height="15" fill="rgb(250,6,50)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="9.3361%" y="2165" width="0.0384%" height="15" fill="rgb(250,160,48)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="9.3361%" y="2149" width="0.0384%" height="15" fill="rgb(244,216,33)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="9.3361%" y="2133" width="0.0384%" height="15" fill="rgb(207,157,5)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="9.3361%" y="2117" width="0.0384%" height="15" fill="rgb(228,199,8)" fg:x="2191" fg:w="9"/><text x="9.5861%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="9.3574%" y="2101" width="0.0170%" height="15" fill="rgb(227,80,20)" fg:x="2196" fg:w="4"/><text x="9.6074%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="9.3574%" y="2085" width="0.0170%" height="15" fill="rgb(222,9,33)" fg:x="2196" fg:w="4"/><text x="9.6074%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="9.3745%" y="2181" width="0.0213%" height="15" fill="rgb(239,44,28)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="9.3745%" y="2165" width="0.0213%" height="15" fill="rgb(249,187,43)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="9.3745%" y="2149" width="0.0213%" height="15" fill="rgb(216,141,28)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="9.3745%" y="2133" width="0.0213%" height="15" fill="rgb(230,154,53)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="9.3745%" y="2117" width="0.0213%" height="15" fill="rgb(227,82,4)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="9.3745%" y="2101" width="0.0213%" height="15" fill="rgb(220,107,16)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="9.3745%" y="2085" width="0.0213%" height="15" fill="rgb(207,187,2)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="9.3745%" y="2069" width="0.0213%" height="15" fill="rgb(210,162,52)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="9.3745%" y="2053" width="0.0213%" height="15" fill="rgb(217,216,49)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="9.3745%" y="2037" width="0.0213%" height="15" fill="rgb(218,146,49)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="9.3745%" y="2021" width="0.0213%" height="15" fill="rgb(216,55,40)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="9.3745%" y="2005" width="0.0213%" height="15" fill="rgb(208,196,21)" fg:x="2200" fg:w="5"/><text x="9.6245%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="9.3745%" y="2245" width="0.0384%" height="15" fill="rgb(242,117,42)" fg:x="2200" fg:w="9"/><text x="9.6245%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="9.3745%" y="2229" width="0.0384%" height="15" fill="rgb(210,11,23)" fg:x="2200" fg:w="9"/><text x="9.6245%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="9.3745%" y="2213" width="0.0384%" height="15" fill="rgb(217,110,2)" fg:x="2200" fg:w="9"/><text x="9.6245%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="9.3745%" y="2197" width="0.0384%" height="15" fill="rgb(229,77,54)" fg:x="2200" fg:w="9"/><text x="9.6245%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="9.3958%" y="2181" width="0.0170%" height="15" fill="rgb(218,53,16)" fg:x="2205" fg:w="4"/><text x="9.6458%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.3958%" y="2165" width="0.0170%" height="15" fill="rgb(215,38,13)" fg:x="2205" fg:w="4"/><text x="9.6458%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="9.3958%" y="2149" width="0.0170%" height="15" fill="rgb(235,42,18)" fg:x="2205" fg:w="4"/><text x="9.6458%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="9.4128%" y="2117" width="0.0170%" height="15" fill="rgb(219,66,54)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="9.4128%" y="2101" width="0.0170%" height="15" fill="rgb(222,205,4)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="9.4128%" y="2085" width="0.0170%" height="15" fill="rgb(227,213,46)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="9.4128%" y="2069" width="0.0170%" height="15" fill="rgb(250,145,42)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="9.4128%" y="2053" width="0.0170%" height="15" fill="rgb(219,15,2)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="9.4128%" y="2037" width="0.0170%" height="15" fill="rgb(231,181,52)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="9.4128%" y="2021" width="0.0170%" height="15" fill="rgb(235,1,42)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="9.4128%" y="2005" width="0.0170%" height="15" fill="rgb(249,88,27)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="9.4128%" y="1989" width="0.0170%" height="15" fill="rgb(235,145,16)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="9.4128%" y="1973" width="0.0170%" height="15" fill="rgb(237,114,19)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="9.4128%" y="1957" width="0.0170%" height="15" fill="rgb(238,51,50)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="9.4128%" y="1941" width="0.0170%" height="15" fill="rgb(205,194,25)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="9.4128%" y="1925" width="0.0170%" height="15" fill="rgb(215,203,17)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="9.4128%" y="1909" width="0.0170%" height="15" fill="rgb(233,112,49)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="1919.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="9.4128%" y="1893" width="0.0170%" height="15" fill="rgb(241,130,26)" fg:x="2209" fg:w="4"/><text x="9.6628%" y="1903.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.4171%" y="1877" width="0.0128%" height="15" fill="rgb(252,223,19)" fg:x="2210" fg:w="3"/><text x="9.6671%" y="1887.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="9.4299%" y="2069" width="0.0128%" height="15" fill="rgb(211,95,25)" fg:x="2213" fg:w="3"/><text x="9.6799%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="9.4299%" y="2053" width="0.0128%" height="15" fill="rgb(251,182,27)" fg:x="2213" fg:w="3"/><text x="9.6799%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="9.4299%" y="2037" width="0.0128%" height="15" fill="rgb(238,24,4)" fg:x="2213" fg:w="3"/><text x="9.6799%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4299%" y="2021" width="0.0128%" height="15" fill="rgb(224,220,25)" fg:x="2213" fg:w="3"/><text x="9.6799%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.4299%" y="2005" width="0.0128%" height="15" fill="rgb(239,133,26)" fg:x="2213" fg:w="3"/><text x="9.6799%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (57 samples, 0.24%)</title><rect x="9.2125%" y="2533" width="0.2429%" height="15" fill="rgb(211,94,48)" fg:x="2162" fg:w="57"/><text x="9.4625%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (57 samples, 0.24%)</title><rect x="9.2125%" y="2517" width="0.2429%" height="15" fill="rgb(239,87,6)" fg:x="2162" fg:w="57"/><text x="9.4625%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (57 samples, 0.24%)</title><rect x="9.2125%" y="2501" width="0.2429%" height="15" fill="rgb(227,62,0)" fg:x="2162" fg:w="57"/><text x="9.4625%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.24%)</title><rect x="9.2125%" y="2485" width="0.2429%" height="15" fill="rgb(211,226,4)" fg:x="2162" fg:w="57"/><text x="9.4625%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (51 samples, 0.22%)</title><rect x="9.2381%" y="2469" width="0.2173%" height="15" fill="rgb(253,38,52)" fg:x="2168" fg:w="51"/><text x="9.4881%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (51 samples, 0.22%)</title><rect x="9.2381%" y="2453" width="0.2173%" height="15" fill="rgb(229,126,40)" fg:x="2168" fg:w="51"/><text x="9.4881%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (51 samples, 0.22%)</title><rect x="9.2381%" y="2437" width="0.2173%" height="15" fill="rgb(229,165,44)" fg:x="2168" fg:w="51"/><text x="9.4881%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (28 samples, 0.12%)</title><rect x="9.3361%" y="2421" width="0.1193%" height="15" fill="rgb(247,95,47)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (28 samples, 0.12%)</title><rect x="9.3361%" y="2405" width="0.1193%" height="15" fill="rgb(216,140,30)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2415.50"></text></g><g><title>std::panicking::try (28 samples, 0.12%)</title><rect x="9.3361%" y="2389" width="0.1193%" height="15" fill="rgb(246,214,8)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (28 samples, 0.12%)</title><rect x="9.3361%" y="2373" width="0.1193%" height="15" fill="rgb(227,224,15)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (28 samples, 0.12%)</title><rect x="9.3361%" y="2357" width="0.1193%" height="15" fill="rgb(233,175,4)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (28 samples, 0.12%)</title><rect x="9.3361%" y="2341" width="0.1193%" height="15" fill="rgb(221,66,45)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (28 samples, 0.12%)</title><rect x="9.3361%" y="2325" width="0.1193%" height="15" fill="rgb(221,178,18)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.12%)</title><rect x="9.3361%" y="2309" width="0.1193%" height="15" fill="rgb(213,81,29)" fg:x="2191" fg:w="28"/><text x="9.5861%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="9.3745%" y="2293" width="0.0810%" height="15" fill="rgb(220,89,49)" fg:x="2200" fg:w="19"/><text x="9.6245%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="9.3745%" y="2277" width="0.0810%" height="15" fill="rgb(227,60,33)" fg:x="2200" fg:w="19"/><text x="9.6245%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="9.3745%" y="2261" width="0.0810%" height="15" fill="rgb(205,113,12)" fg:x="2200" fg:w="19"/><text x="9.6245%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="9.4128%" y="2245" width="0.0426%" height="15" fill="rgb(211,32,1)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="9.4128%" y="2229" width="0.0426%" height="15" fill="rgb(246,2,12)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2239.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="9.4128%" y="2213" width="0.0426%" height="15" fill="rgb(243,37,27)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="9.4128%" y="2197" width="0.0426%" height="15" fill="rgb(248,211,31)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="9.4128%" y="2181" width="0.0426%" height="15" fill="rgb(242,146,47)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="9.4128%" y="2165" width="0.0426%" height="15" fill="rgb(206,70,20)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="9.4128%" y="2149" width="0.0426%" height="15" fill="rgb(215,10,51)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="9.4128%" y="2133" width="0.0426%" height="15" fill="rgb(243,178,53)" fg:x="2209" fg:w="10"/><text x="9.6628%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="9.4299%" y="2117" width="0.0256%" height="15" fill="rgb(233,221,20)" fg:x="2213" fg:w="6"/><text x="9.6799%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="9.4299%" y="2101" width="0.0256%" height="15" fill="rgb(218,95,35)" fg:x="2213" fg:w="6"/><text x="9.6799%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="9.4299%" y="2085" width="0.0256%" height="15" fill="rgb(229,13,5)" fg:x="2213" fg:w="6"/><text x="9.6799%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="9.4426%" y="2069" width="0.0128%" height="15" fill="rgb(252,164,30)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="9.4426%" y="2053" width="0.0128%" height="15" fill="rgb(232,68,36)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="2063.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="9.4426%" y="2037" width="0.0128%" height="15" fill="rgb(219,59,54)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="9.4426%" y="2021" width="0.0128%" height="15" fill="rgb(250,92,33)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="9.4426%" y="2005" width="0.0128%" height="15" fill="rgb(229,162,54)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="9.4426%" y="1989" width="0.0128%" height="15" fill="rgb(244,114,52)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="9.4426%" y="1973" width="0.0128%" height="15" fill="rgb(212,211,43)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4426%" y="1957" width="0.0128%" height="15" fill="rgb(226,147,8)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.4426%" y="1941" width="0.0128%" height="15" fill="rgb(226,23,13)" fg:x="2216" fg:w="3"/><text x="9.6926%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="9.4554%" y="2213" width="0.0170%" height="15" fill="rgb(240,63,4)" fg:x="2219" fg:w="4"/><text x="9.7054%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="9.4554%" y="2197" width="0.0170%" height="15" fill="rgb(221,1,32)" fg:x="2219" fg:w="4"/><text x="9.7054%" y="2207.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="9.4554%" y="2181" width="0.0170%" height="15" fill="rgb(242,117,10)" fg:x="2219" fg:w="4"/><text x="9.7054%" y="2191.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="9.4554%" y="2229" width="0.0298%" height="15" fill="rgb(249,172,44)" fg:x="2219" fg:w="7"/><text x="9.7054%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="9.4725%" y="2213" width="0.0128%" height="15" fill="rgb(244,46,45)" fg:x="2223" fg:w="3"/><text x="9.7225%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="9.4725%" y="2197" width="0.0128%" height="15" fill="rgb(206,43,17)" fg:x="2223" fg:w="3"/><text x="9.7225%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="9.4554%" y="2405" width="0.0341%" height="15" fill="rgb(239,218,39)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="9.4554%" y="2389" width="0.0341%" height="15" fill="rgb(208,169,54)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="9.4554%" y="2373" width="0.0341%" height="15" fill="rgb(247,25,42)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="9.4554%" y="2357" width="0.0341%" height="15" fill="rgb(226,23,31)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="9.4554%" y="2341" width="0.0341%" height="15" fill="rgb(247,16,28)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="9.4554%" y="2325" width="0.0341%" height="15" fill="rgb(231,147,38)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="9.4554%" y="2309" width="0.0341%" height="15" fill="rgb(253,81,48)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="9.4554%" y="2293" width="0.0341%" height="15" fill="rgb(249,222,43)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="9.4554%" y="2277" width="0.0341%" height="15" fill="rgb(221,3,27)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="9.4554%" y="2261" width="0.0341%" height="15" fill="rgb(228,180,5)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="9.4554%" y="2245" width="0.0341%" height="15" fill="rgb(227,131,42)" fg:x="2219" fg:w="8"/><text x="9.7054%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="9.4895%" y="2101" width="0.0213%" height="15" fill="rgb(212,3,39)" fg:x="2227" fg:w="5"/><text x="9.7395%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="9.4895%" y="2085" width="0.0213%" height="15" fill="rgb(226,45,5)" fg:x="2227" fg:w="5"/><text x="9.7395%" y="2095.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="9.4895%" y="2069" width="0.0213%" height="15" fill="rgb(215,167,45)" fg:x="2227" fg:w="5"/><text x="9.7395%" y="2079.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="9.4895%" y="2053" width="0.0213%" height="15" fill="rgb(250,218,53)" fg:x="2227" fg:w="5"/><text x="9.7395%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="9.5108%" y="2101" width="0.0128%" height="15" fill="rgb(207,140,0)" fg:x="2232" fg:w="3"/><text x="9.7608%" y="2111.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="9.5108%" y="2085" width="0.0128%" height="15" fill="rgb(238,133,51)" fg:x="2232" fg:w="3"/><text x="9.7608%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="9.4895%" y="2293" width="0.0384%" height="15" fill="rgb(218,203,53)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="9.4895%" y="2277" width="0.0384%" height="15" fill="rgb(226,184,25)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="9.4895%" y="2261" width="0.0384%" height="15" fill="rgb(231,121,21)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="9.4895%" y="2245" width="0.0384%" height="15" fill="rgb(251,14,34)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="9.4895%" y="2229" width="0.0384%" height="15" fill="rgb(249,193,11)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="9.4895%" y="2213" width="0.0384%" height="15" fill="rgb(220,172,37)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="9.4895%" y="2197" width="0.0384%" height="15" fill="rgb(231,229,43)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="9.4895%" y="2181" width="0.0384%" height="15" fill="rgb(250,161,5)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="9.4895%" y="2165" width="0.0384%" height="15" fill="rgb(218,225,18)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="9.4895%" y="2149" width="0.0384%" height="15" fill="rgb(245,45,42)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="9.4895%" y="2133" width="0.0384%" height="15" fill="rgb(211,115,1)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="9.4895%" y="2117" width="0.0384%" height="15" fill="rgb(248,133,52)" fg:x="2227" fg:w="9"/><text x="9.7395%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.5279%" y="2181" width="0.0128%" height="15" fill="rgb(238,100,21)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="9.5279%" y="2165" width="0.0128%" height="15" fill="rgb(247,144,11)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="9.5279%" y="2149" width="0.0128%" height="15" fill="rgb(206,164,16)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="9.5279%" y="2133" width="0.0128%" height="15" fill="rgb(222,34,3)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="9.5279%" y="2117" width="0.0128%" height="15" fill="rgb(248,82,4)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="9.5279%" y="2101" width="0.0128%" height="15" fill="rgb(228,81,46)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="9.5279%" y="2085" width="0.0128%" height="15" fill="rgb(227,67,47)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="9.5279%" y="2069" width="0.0128%" height="15" fill="rgb(215,93,53)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="9.5279%" y="2053" width="0.0128%" height="15" fill="rgb(248,194,39)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="9.5279%" y="2037" width="0.0128%" height="15" fill="rgb(215,5,19)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="9.5279%" y="2021" width="0.0128%" height="15" fill="rgb(226,215,51)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="9.5279%" y="2005" width="0.0128%" height="15" fill="rgb(225,56,26)" fg:x="2236" fg:w="3"/><text x="9.7779%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="9.5279%" y="2245" width="0.0298%" height="15" fill="rgb(222,75,29)" fg:x="2236" fg:w="7"/><text x="9.7779%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="9.5279%" y="2229" width="0.0298%" height="15" fill="rgb(236,139,6)" fg:x="2236" fg:w="7"/><text x="9.7779%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="9.5279%" y="2213" width="0.0298%" height="15" fill="rgb(223,137,36)" fg:x="2236" fg:w="7"/><text x="9.7779%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="9.5279%" y="2197" width="0.0298%" height="15" fill="rgb(226,99,2)" fg:x="2236" fg:w="7"/><text x="9.7779%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="9.5407%" y="2181" width="0.0170%" height="15" fill="rgb(206,133,23)" fg:x="2239" fg:w="4"/><text x="9.7907%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.5407%" y="2165" width="0.0170%" height="15" fill="rgb(243,173,15)" fg:x="2239" fg:w="4"/><text x="9.7907%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="9.5407%" y="2149" width="0.0170%" height="15" fill="rgb(228,69,28)" fg:x="2239" fg:w="4"/><text x="9.7907%" y="2159.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="9.5577%" y="1925" width="0.0170%" height="15" fill="rgb(212,51,22)" fg:x="2243" fg:w="4"/><text x="9.8077%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="9.5577%" y="1909" width="0.0170%" height="15" fill="rgb(227,113,0)" fg:x="2243" fg:w="4"/><text x="9.8077%" y="1919.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="9.5577%" y="1893" width="0.0170%" height="15" fill="rgb(252,84,27)" fg:x="2243" fg:w="4"/><text x="9.8077%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="9.5577%" y="2117" width="0.0213%" height="15" fill="rgb(223,145,39)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="9.5577%" y="2101" width="0.0213%" height="15" fill="rgb(239,219,30)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="9.5577%" y="2085" width="0.0213%" height="15" fill="rgb(224,196,39)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="9.5577%" y="2069" width="0.0213%" height="15" fill="rgb(205,35,43)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="9.5577%" y="2053" width="0.0213%" height="15" fill="rgb(228,201,21)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="9.5577%" y="2037" width="0.0213%" height="15" fill="rgb(237,118,16)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="9.5577%" y="2021" width="0.0213%" height="15" fill="rgb(241,17,19)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="9.5577%" y="2005" width="0.0213%" height="15" fill="rgb(214,10,25)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="9.5577%" y="1989" width="0.0213%" height="15" fill="rgb(238,37,29)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="9.5577%" y="1973" width="0.0213%" height="15" fill="rgb(253,83,25)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="9.5577%" y="1957" width="0.0213%" height="15" fill="rgb(234,192,12)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="9.5577%" y="1941" width="0.0213%" height="15" fill="rgb(241,216,45)" fg:x="2243" fg:w="5"/><text x="9.8077%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (25 samples, 0.11%)</title><rect x="9.4895%" y="2357" width="0.1065%" height="15" fill="rgb(242,22,33)" fg:x="2227" fg:w="25"/><text x="9.7395%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="9.4895%" y="2341" width="0.1065%" height="15" fill="rgb(231,105,49)" fg:x="2227" fg:w="25"/><text x="9.7395%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="9.4895%" y="2325" width="0.1065%" height="15" fill="rgb(218,204,15)" fg:x="2227" fg:w="25"/><text x="9.7395%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="9.4895%" y="2309" width="0.1065%" height="15" fill="rgb(235,138,41)" fg:x="2227" fg:w="25"/><text x="9.7395%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="9.5279%" y="2293" width="0.0682%" height="15" fill="rgb(246,0,9)" fg:x="2236" fg:w="16"/><text x="9.7779%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="9.5279%" y="2277" width="0.0682%" height="15" fill="rgb(210,74,4)" fg:x="2236" fg:w="16"/><text x="9.7779%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="9.5279%" y="2261" width="0.0682%" height="15" fill="rgb(250,60,41)" fg:x="2236" fg:w="16"/><text x="9.7779%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="9.5577%" y="2245" width="0.0384%" height="15" fill="rgb(220,115,12)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="9.5577%" y="2229" width="0.0384%" height="15" fill="rgb(237,100,13)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2239.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="9.5577%" y="2213" width="0.0384%" height="15" fill="rgb(213,55,26)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="9.5577%" y="2197" width="0.0384%" height="15" fill="rgb(216,17,4)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="9.5577%" y="2181" width="0.0384%" height="15" fill="rgb(220,153,47)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="9.5577%" y="2165" width="0.0384%" height="15" fill="rgb(215,131,9)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="9.5577%" y="2149" width="0.0384%" height="15" fill="rgb(233,46,42)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="9.5577%" y="2133" width="0.0384%" height="15" fill="rgb(226,86,7)" fg:x="2243" fg:w="9"/><text x="9.8077%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="9.5790%" y="2117" width="0.0170%" height="15" fill="rgb(239,226,21)" fg:x="2248" fg:w="4"/><text x="9.8290%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.5790%" y="2101" width="0.0170%" height="15" fill="rgb(244,137,22)" fg:x="2248" fg:w="4"/><text x="9.8290%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="9.5790%" y="2085" width="0.0170%" height="15" fill="rgb(211,139,35)" fg:x="2248" fg:w="4"/><text x="9.8290%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (7 samples, 0.03%)</title><rect x="9.5960%" y="2037" width="0.0298%" height="15" fill="rgb(214,62,50)" fg:x="2252" fg:w="7"/><text x="9.8460%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (7 samples, 0.03%)</title><rect x="9.5960%" y="2021" width="0.0298%" height="15" fill="rgb(212,113,44)" fg:x="2252" fg:w="7"/><text x="9.8460%" y="2031.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="9.6003%" y="2005" width="0.0256%" height="15" fill="rgb(226,150,43)" fg:x="2253" fg:w="6"/><text x="9.8503%" y="2015.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="9.6003%" y="1989" width="0.0256%" height="15" fill="rgb(250,71,37)" fg:x="2253" fg:w="6"/><text x="9.8503%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="9.5960%" y="2229" width="0.0511%" height="15" fill="rgb(219,76,19)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="9.5960%" y="2213" width="0.0511%" height="15" fill="rgb(250,39,11)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (12 samples, 0.05%)</title><rect x="9.5960%" y="2197" width="0.0511%" height="15" fill="rgb(230,64,31)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (12 samples, 0.05%)</title><rect x="9.5960%" y="2181" width="0.0511%" height="15" fill="rgb(208,222,23)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (12 samples, 0.05%)</title><rect x="9.5960%" y="2165" width="0.0511%" height="15" fill="rgb(227,125,18)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (12 samples, 0.05%)</title><rect x="9.5960%" y="2149" width="0.0511%" height="15" fill="rgb(234,210,9)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (12 samples, 0.05%)</title><rect x="9.5960%" y="2133" width="0.0511%" height="15" fill="rgb(217,127,24)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (12 samples, 0.05%)</title><rect x="9.5960%" y="2117" width="0.0511%" height="15" fill="rgb(239,141,48)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (12 samples, 0.05%)</title><rect x="9.5960%" y="2101" width="0.0511%" height="15" fill="rgb(227,109,8)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="9.5960%" y="2085" width="0.0511%" height="15" fill="rgb(235,184,23)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (12 samples, 0.05%)</title><rect x="9.5960%" y="2069" width="0.0511%" height="15" fill="rgb(227,226,48)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (12 samples, 0.05%)</title><rect x="9.5960%" y="2053" width="0.0511%" height="15" fill="rgb(206,150,11)" fg:x="2252" fg:w="12"/><text x="9.8460%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="9.6301%" y="2037" width="0.0170%" height="15" fill="rgb(254,2,33)" fg:x="2260" fg:w="4"/><text x="9.8801%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="9.6301%" y="2021" width="0.0170%" height="15" fill="rgb(243,160,20)" fg:x="2260" fg:w="4"/><text x="9.8801%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="9.6472%" y="2181" width="0.0128%" height="15" fill="rgb(218,208,30)" fg:x="2264" fg:w="3"/><text x="9.8972%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="9.6472%" y="2165" width="0.0128%" height="15" fill="rgb(224,120,49)" fg:x="2264" fg:w="3"/><text x="9.8972%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="9.6472%" y="2149" width="0.0128%" height="15" fill="rgb(246,12,2)" fg:x="2264" fg:w="3"/><text x="9.8972%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.6472%" y="2133" width="0.0128%" height="15" fill="rgb(236,117,3)" fg:x="2264" fg:w="3"/><text x="9.8972%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="9.6472%" y="2117" width="0.0128%" height="15" fill="rgb(216,128,52)" fg:x="2264" fg:w="3"/><text x="9.8972%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="9.6472%" y="2101" width="0.0128%" height="15" fill="rgb(246,145,19)" fg:x="2264" fg:w="3"/><text x="9.8972%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="9.6472%" y="2085" width="0.0128%" height="15" fill="rgb(222,11,46)" fg:x="2264" fg:w="3"/><text x="9.8972%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (411 samples, 1.75%)</title><rect x="7.9214%" y="3141" width="1.7513%" height="15" fill="rgb(245,82,36)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3151.50"></text></g><g><title>rayon_core::job::JobRef::execute (411 samples, 1.75%)</title><rect x="7.9214%" y="3125" width="1.7513%" height="15" fill="rgb(250,73,51)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3135.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (411 samples, 1.75%)</title><rect x="7.9214%" y="3109" width="1.7513%" height="15" fill="rgb(221,189,23)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3119.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (411 samples, 1.75%)</title><rect x="7.9214%" y="3093" width="1.7513%" height="15" fill="rgb(210,33,7)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (411 samples, 1.75%)</title><rect x="7.9214%" y="3077" width="1.7513%" height="15" fill="rgb(210,107,22)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3087.50"></text></g><g><title>std::panic::catch_unwind (411 samples, 1.75%)</title><rect x="7.9214%" y="3061" width="1.7513%" height="15" fill="rgb(222,116,37)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3071.50"></text></g><g><title>std::panicking::try (411 samples, 1.75%)</title><rect x="7.9214%" y="3045" width="1.7513%" height="15" fill="rgb(254,17,48)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3055.50"></text></g><g><title>std::panicking::try::do_call (411 samples, 1.75%)</title><rect x="7.9214%" y="3029" width="1.7513%" height="15" fill="rgb(224,36,32)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (411 samples, 1.75%)</title><rect x="7.9214%" y="3013" width="1.7513%" height="15" fill="rgb(232,90,46)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3023.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (411 samples, 1.75%)</title><rect x="7.9214%" y="2997" width="1.7513%" height="15" fill="rgb(241,66,40)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (411 samples, 1.75%)</title><rect x="7.9214%" y="2981" width="1.7513%" height="15" fill="rgb(249,184,29)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (411 samples, 1.75%)</title><rect x="7.9214%" y="2965" width="1.7513%" height="15" fill="rgb(231,181,1)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (411 samples, 1.75%)</title><rect x="7.9214%" y="2949" width="1.7513%" height="15" fill="rgb(224,94,2)" fg:x="1859" fg:w="411"/><text x="8.1714%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (407 samples, 1.73%)</title><rect x="7.9385%" y="2933" width="1.7343%" height="15" fill="rgb(229,170,15)" fg:x="1863" fg:w="407"/><text x="8.1885%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (407 samples, 1.73%)</title><rect x="7.9385%" y="2917" width="1.7343%" height="15" fill="rgb(240,127,35)" fg:x="1863" fg:w="407"/><text x="8.1885%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (407 samples, 1.73%)</title><rect x="7.9385%" y="2901" width="1.7343%" height="15" fill="rgb(248,196,34)" fg:x="1863" fg:w="407"/><text x="8.1885%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (213 samples, 0.91%)</title><rect x="8.7651%" y="2885" width="0.9076%" height="15" fill="rgb(236,137,7)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (213 samples, 0.91%)</title><rect x="8.7651%" y="2869" width="0.9076%" height="15" fill="rgb(235,127,16)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2879.50"></text></g><g><title>std::panicking::try (213 samples, 0.91%)</title><rect x="8.7651%" y="2853" width="0.9076%" height="15" fill="rgb(250,192,54)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (213 samples, 0.91%)</title><rect x="8.7651%" y="2837" width="0.9076%" height="15" fill="rgb(218,98,20)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (213 samples, 0.91%)</title><rect x="8.7651%" y="2821" width="0.9076%" height="15" fill="rgb(230,176,47)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (213 samples, 0.91%)</title><rect x="8.7651%" y="2805" width="0.9076%" height="15" fill="rgb(244,2,33)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (213 samples, 0.91%)</title><rect x="8.7651%" y="2789" width="0.9076%" height="15" fill="rgb(231,100,17)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (213 samples, 0.91%)</title><rect x="8.7651%" y="2773" width="0.9076%" height="15" fill="rgb(245,23,12)" fg:x="2057" fg:w="213"/><text x="9.0151%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (210 samples, 0.89%)</title><rect x="8.7779%" y="2757" width="0.8948%" height="15" fill="rgb(249,55,22)" fg:x="2060" fg:w="210"/><text x="9.0279%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (210 samples, 0.89%)</title><rect x="8.7779%" y="2741" width="0.8948%" height="15" fill="rgb(207,134,9)" fg:x="2060" fg:w="210"/><text x="9.0279%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (210 samples, 0.89%)</title><rect x="8.7779%" y="2725" width="0.8948%" height="15" fill="rgb(218,134,0)" fg:x="2060" fg:w="210"/><text x="9.0279%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (121 samples, 0.52%)</title><rect x="9.1572%" y="2709" width="0.5156%" height="15" fill="rgb(213,212,33)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (121 samples, 0.52%)</title><rect x="9.1572%" y="2693" width="0.5156%" height="15" fill="rgb(252,106,18)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2703.50"></text></g><g><title>std::panicking::try (121 samples, 0.52%)</title><rect x="9.1572%" y="2677" width="0.5156%" height="15" fill="rgb(208,126,42)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (121 samples, 0.52%)</title><rect x="9.1572%" y="2661" width="0.5156%" height="15" fill="rgb(246,175,29)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (121 samples, 0.52%)</title><rect x="9.1572%" y="2645" width="0.5156%" height="15" fill="rgb(215,13,50)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (121 samples, 0.52%)</title><rect x="9.1572%" y="2629" width="0.5156%" height="15" fill="rgb(216,172,15)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (121 samples, 0.52%)</title><rect x="9.1572%" y="2613" width="0.5156%" height="15" fill="rgb(212,103,13)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (121 samples, 0.52%)</title><rect x="9.1572%" y="2597" width="0.5156%" height="15" fill="rgb(231,171,36)" fg:x="2149" fg:w="121"/><text x="9.4072%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (108 samples, 0.46%)</title><rect x="9.2125%" y="2581" width="0.4602%" height="15" fill="rgb(250,123,20)" fg:x="2162" fg:w="108"/><text x="9.4625%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (108 samples, 0.46%)</title><rect x="9.2125%" y="2565" width="0.4602%" height="15" fill="rgb(212,53,50)" fg:x="2162" fg:w="108"/><text x="9.4625%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (108 samples, 0.46%)</title><rect x="9.2125%" y="2549" width="0.4602%" height="15" fill="rgb(243,54,12)" fg:x="2162" fg:w="108"/><text x="9.4625%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (51 samples, 0.22%)</title><rect x="9.4554%" y="2533" width="0.2173%" height="15" fill="rgb(234,101,34)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (51 samples, 0.22%)</title><rect x="9.4554%" y="2517" width="0.2173%" height="15" fill="rgb(254,67,22)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2527.50"></text></g><g><title>std::panicking::try (51 samples, 0.22%)</title><rect x="9.4554%" y="2501" width="0.2173%" height="15" fill="rgb(250,35,47)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (51 samples, 0.22%)</title><rect x="9.4554%" y="2485" width="0.2173%" height="15" fill="rgb(226,126,38)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (51 samples, 0.22%)</title><rect x="9.4554%" y="2469" width="0.2173%" height="15" fill="rgb(216,138,53)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (51 samples, 0.22%)</title><rect x="9.4554%" y="2453" width="0.2173%" height="15" fill="rgb(246,199,43)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (51 samples, 0.22%)</title><rect x="9.4554%" y="2437" width="0.2173%" height="15" fill="rgb(232,125,11)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.22%)</title><rect x="9.4554%" y="2421" width="0.2173%" height="15" fill="rgb(218,219,45)" fg:x="2219" fg:w="51"/><text x="9.7054%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (43 samples, 0.18%)</title><rect x="9.4895%" y="2405" width="0.1832%" height="15" fill="rgb(216,102,54)" fg:x="2227" fg:w="43"/><text x="9.7395%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.18%)</title><rect x="9.4895%" y="2389" width="0.1832%" height="15" fill="rgb(250,228,7)" fg:x="2227" fg:w="43"/><text x="9.7395%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43 samples, 0.18%)</title><rect x="9.4895%" y="2373" width="0.1832%" height="15" fill="rgb(226,125,25)" fg:x="2227" fg:w="43"/><text x="9.7395%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="9.5960%" y="2357" width="0.0767%" height="15" fill="rgb(224,165,27)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="9.5960%" y="2341" width="0.0767%" height="15" fill="rgb(233,86,3)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2351.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="9.5960%" y="2325" width="0.0767%" height="15" fill="rgb(228,116,20)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="9.5960%" y="2309" width="0.0767%" height="15" fill="rgb(209,192,17)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="9.5960%" y="2293" width="0.0767%" height="15" fill="rgb(224,88,34)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18 samples, 0.08%)</title><rect x="9.5960%" y="2277" width="0.0767%" height="15" fill="rgb(233,38,6)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="9.5960%" y="2261" width="0.0767%" height="15" fill="rgb(212,59,30)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="9.5960%" y="2245" width="0.0767%" height="15" fill="rgb(213,80,3)" fg:x="2252" fg:w="18"/><text x="9.8460%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="9.6472%" y="2229" width="0.0256%" height="15" fill="rgb(251,178,7)" fg:x="2264" fg:w="6"/><text x="9.8972%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="9.6472%" y="2213" width="0.0256%" height="15" fill="rgb(213,154,26)" fg:x="2264" fg:w="6"/><text x="9.8972%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="9.6472%" y="2197" width="0.0256%" height="15" fill="rgb(238,165,49)" fg:x="2264" fg:w="6"/><text x="9.8972%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="9.6600%" y="2181" width="0.0128%" height="15" fill="rgb(248,91,46)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="9.6600%" y="2165" width="0.0128%" height="15" fill="rgb(244,21,52)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2175.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="9.6600%" y="2149" width="0.0128%" height="15" fill="rgb(247,122,20)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="9.6600%" y="2133" width="0.0128%" height="15" fill="rgb(218,27,9)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="9.6600%" y="2117" width="0.0128%" height="15" fill="rgb(246,7,6)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="9.6600%" y="2101" width="0.0128%" height="15" fill="rgb(227,135,54)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="9.6600%" y="2085" width="0.0128%" height="15" fill="rgb(247,14,11)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.6600%" y="2069" width="0.0128%" height="15" fill="rgb(206,149,34)" fg:x="2267" fg:w="3"/><text x="9.9100%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work (3 samples, 0.01%)</title><rect x="9.6727%" y="3141" width="0.0128%" height="15" fill="rgb(227,228,4)" fg:x="2270" fg:w="3"/><text x="9.9227%" y="3151.50"></text></g><g><title>std::sys::unix::futex::futex_wait (9 samples, 0.04%)</title><rect x="9.6855%" y="3061" width="0.0384%" height="15" fill="rgb(238,218,28)" fg:x="2273" fg:w="9"/><text x="9.9355%" y="3071.50"></text></g><g><title>syscall (8 samples, 0.03%)</title><rect x="9.6898%" y="3045" width="0.0341%" height="15" fill="rgb(252,86,40)" fg:x="2274" fg:w="8"/><text x="9.9398%" y="3055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (424 samples, 1.81%)</title><rect x="7.9214%" y="3173" width="1.8067%" height="15" fill="rgb(251,225,11)" fg:x="1859" fg:w="424"/><text x="8.1714%" y="3183.50">r..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (424 samples, 1.81%)</title><rect x="7.9214%" y="3157" width="1.8067%" height="15" fill="rgb(206,46,49)" fg:x="1859" fg:w="424"/><text x="8.1714%" y="3167.50">r..</text></g><g><title>rayon_core::sleep::Sleep::no_work_found (10 samples, 0.04%)</title><rect x="9.6855%" y="3141" width="0.0426%" height="15" fill="rgb(245,128,24)" fg:x="2273" fg:w="10"/><text x="9.9355%" y="3151.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (10 samples, 0.04%)</title><rect x="9.6855%" y="3125" width="0.0426%" height="15" fill="rgb(219,177,34)" fg:x="2273" fg:w="10"/><text x="9.9355%" y="3135.50"></text></g><g><title>std::sync::condvar::Condvar::wait (10 samples, 0.04%)</title><rect x="9.6855%" y="3109" width="0.0426%" height="15" fill="rgb(218,60,48)" fg:x="2273" fg:w="10"/><text x="9.9355%" y="3119.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (10 samples, 0.04%)</title><rect x="9.6855%" y="3093" width="0.0426%" height="15" fill="rgb(221,11,5)" fg:x="2273" fg:w="10"/><text x="9.9355%" y="3103.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (10 samples, 0.04%)</title><rect x="9.6855%" y="3077" width="0.0426%" height="15" fill="rgb(220,148,13)" fg:x="2273" fg:w="10"/><text x="9.9355%" y="3087.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (20 samples, 0.09%)</title><rect x="9.7324%" y="2853" width="0.0852%" height="15" fill="rgb(210,16,3)" fg:x="2284" fg:w="20"/><text x="9.9824%" y="2863.50"></text></g><g><title>std::f64::<impl f64>::exp (20 samples, 0.09%)</title><rect x="9.7324%" y="2837" width="0.0852%" height="15" fill="rgb(236,80,2)" fg:x="2284" fg:w="20"/><text x="9.9824%" y="2847.50"></text></g><g><title>exp (20 samples, 0.09%)</title><rect x="9.7324%" y="2821" width="0.0852%" height="15" fill="rgb(239,129,19)" fg:x="2284" fg:w="20"/><text x="9.9824%" y="2831.50"></text></g><g><title>[libm.so.6] (16 samples, 0.07%)</title><rect x="9.7494%" y="2805" width="0.0682%" height="15" fill="rgb(220,106,35)" fg:x="2288" fg:w="16"/><text x="9.9994%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="9.8176%" y="2853" width="0.0426%" height="15" fill="rgb(252,139,45)" fg:x="2304" fg:w="10"/><text x="10.0676%" y="2863.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="9.8176%" y="2837" width="0.0426%" height="15" fill="rgb(229,8,36)" fg:x="2304" fg:w="10"/><text x="10.0676%" y="2847.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (42 samples, 0.18%)</title><rect x="9.7281%" y="2869" width="0.1790%" height="15" fill="rgb(230,126,33)" fg:x="2283" fg:w="42"/><text x="9.9781%" y="2879.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (11 samples, 0.05%)</title><rect x="9.8602%" y="2853" width="0.0469%" height="15" fill="rgb(239,140,21)" fg:x="2314" fg:w="11"/><text x="10.1102%" y="2863.50"></text></g><g><title>std::f64::<impl f64>::sqrt (11 samples, 0.05%)</title><rect x="9.8602%" y="2837" width="0.0469%" height="15" fill="rgb(254,104,9)" fg:x="2314" fg:w="11"/><text x="10.1102%" y="2847.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (46 samples, 0.20%)</title><rect x="9.7281%" y="3029" width="0.1960%" height="15" fill="rgb(239,52,14)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (46 samples, 0.20%)</title><rect x="9.7281%" y="3013" width="0.1960%" height="15" fill="rgb(208,227,44)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="3023.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (46 samples, 0.20%)</title><rect x="9.7281%" y="2997" width="0.1960%" height="15" fill="rgb(246,18,19)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="3007.50"></text></g><g><title>core::option::Option<T>::map (46 samples, 0.20%)</title><rect x="9.7281%" y="2981" width="0.1960%" height="15" fill="rgb(235,228,25)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="2991.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (46 samples, 0.20%)</title><rect x="9.7281%" y="2965" width="0.1960%" height="15" fill="rgb(240,156,20)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="2975.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (46 samples, 0.20%)</title><rect x="9.7281%" y="2949" width="0.1960%" height="15" fill="rgb(224,8,20)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="2959.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (46 samples, 0.20%)</title><rect x="9.7281%" y="2933" width="0.1960%" height="15" fill="rgb(214,12,52)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="2943.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (46 samples, 0.20%)</title><rect x="9.7281%" y="2917" width="0.1960%" height="15" fill="rgb(211,220,47)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="2927.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (46 samples, 0.20%)</title><rect x="9.7281%" y="2901" width="0.1960%" height="15" fill="rgb(250,173,5)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="2911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (46 samples, 0.20%)</title><rect x="9.7281%" y="2885" width="0.1960%" height="15" fill="rgb(250,125,52)" fg:x="2283" fg:w="46"/><text x="9.9781%" y="2895.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="9.9071%" y="2869" width="0.0170%" height="15" fill="rgb(209,133,18)" fg:x="2325" fg:w="4"/><text x="10.1571%" y="2879.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="9.9242%" y="2901" width="0.0341%" height="15" fill="rgb(216,173,22)" fg:x="2329" fg:w="8"/><text x="10.1742%" y="2911.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="9.9242%" y="2885" width="0.0341%" height="15" fill="rgb(205,3,22)" fg:x="2329" fg:w="8"/><text x="10.1742%" y="2895.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="9.9242%" y="2869" width="0.0341%" height="15" fill="rgb(248,22,20)" fg:x="2329" fg:w="8"/><text x="10.1742%" y="2879.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="9.9242%" y="2853" width="0.0341%" height="15" fill="rgb(233,6,29)" fg:x="2329" fg:w="8"/><text x="10.1742%" y="2863.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="9.9242%" y="2837" width="0.0341%" height="15" fill="rgb(240,22,54)" fg:x="2329" fg:w="8"/><text x="10.1742%" y="2847.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="9.9242%" y="2821" width="0.0341%" height="15" fill="rgb(231,133,32)" fg:x="2329" fg:w="8"/><text x="10.1742%" y="2831.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="9.9412%" y="2805" width="0.0170%" height="15" fill="rgb(248,193,4)" fg:x="2333" fg:w="4"/><text x="10.1912%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (55 samples, 0.23%)</title><rect x="9.7281%" y="3045" width="0.2344%" height="15" fill="rgb(211,178,46)" fg:x="2283" fg:w="55"/><text x="9.9781%" y="3055.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="9.9242%" y="3029" width="0.0384%" height="15" fill="rgb(224,5,42)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="3039.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="9.9242%" y="3013" width="0.0384%" height="15" fill="rgb(239,176,25)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="3023.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="9.9242%" y="2997" width="0.0384%" height="15" fill="rgb(245,187,50)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="3007.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (9 samples, 0.04%)</title><rect x="9.9242%" y="2981" width="0.0384%" height="15" fill="rgb(248,24,15)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="2991.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="9.9242%" y="2965" width="0.0384%" height="15" fill="rgb(205,166,13)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="2975.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="9.9242%" y="2949" width="0.0384%" height="15" fill="rgb(208,114,23)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="2959.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="9.9242%" y="2933" width="0.0384%" height="15" fill="rgb(239,127,18)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="2943.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="9.9242%" y="2917" width="0.0384%" height="15" fill="rgb(219,154,28)" fg:x="2329" fg:w="9"/><text x="10.1742%" y="2927.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (27 samples, 0.12%)</title><rect x="9.9710%" y="2741" width="0.1151%" height="15" fill="rgb(225,157,23)" fg:x="2340" fg:w="27"/><text x="10.2210%" y="2751.50"></text></g><g><title>std::f64::<impl f64>::exp (27 samples, 0.12%)</title><rect x="9.9710%" y="2725" width="0.1151%" height="15" fill="rgb(219,8,6)" fg:x="2340" fg:w="27"/><text x="10.2210%" y="2735.50"></text></g><g><title>exp (25 samples, 0.11%)</title><rect x="9.9795%" y="2709" width="0.1065%" height="15" fill="rgb(212,47,6)" fg:x="2342" fg:w="25"/><text x="10.2295%" y="2719.50"></text></g><g><title>[libm.so.6] (18 samples, 0.08%)</title><rect x="10.0094%" y="2693" width="0.0767%" height="15" fill="rgb(224,190,4)" fg:x="2349" fg:w="18"/><text x="10.2594%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (14 samples, 0.06%)</title><rect x="10.0861%" y="2741" width="0.0597%" height="15" fill="rgb(239,183,29)" fg:x="2367" fg:w="14"/><text x="10.3361%" y="2751.50"></text></g><g><title>core::f64::<impl f64>::recip (14 samples, 0.06%)</title><rect x="10.0861%" y="2725" width="0.0597%" height="15" fill="rgb(213,57,7)" fg:x="2367" fg:w="14"/><text x="10.3361%" y="2735.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (57 samples, 0.24%)</title><rect x="9.9668%" y="2757" width="0.2429%" height="15" fill="rgb(216,148,1)" fg:x="2339" fg:w="57"/><text x="10.2168%" y="2767.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (15 samples, 0.06%)</title><rect x="10.1457%" y="2741" width="0.0639%" height="15" fill="rgb(236,182,29)" fg:x="2381" fg:w="15"/><text x="10.3957%" y="2751.50"></text></g><g><title>std::f64::<impl f64>::sqrt (15 samples, 0.06%)</title><rect x="10.1457%" y="2725" width="0.0639%" height="15" fill="rgb(244,120,48)" fg:x="2381" fg:w="15"/><text x="10.3957%" y="2735.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (61 samples, 0.26%)</title><rect x="9.9625%" y="2917" width="0.2599%" height="15" fill="rgb(206,71,34)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (61 samples, 0.26%)</title><rect x="9.9625%" y="2901" width="0.2599%" height="15" fill="rgb(242,32,6)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2911.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (61 samples, 0.26%)</title><rect x="9.9625%" y="2885" width="0.2599%" height="15" fill="rgb(241,35,3)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2895.50"></text></g><g><title>core::option::Option<T>::map (61 samples, 0.26%)</title><rect x="9.9625%" y="2869" width="0.2599%" height="15" fill="rgb(222,62,19)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2879.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (61 samples, 0.26%)</title><rect x="9.9625%" y="2853" width="0.2599%" height="15" fill="rgb(223,110,41)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2863.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (61 samples, 0.26%)</title><rect x="9.9625%" y="2837" width="0.2599%" height="15" fill="rgb(208,224,4)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2847.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (61 samples, 0.26%)</title><rect x="9.9625%" y="2821" width="0.2599%" height="15" fill="rgb(241,137,19)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2831.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (61 samples, 0.26%)</title><rect x="9.9625%" y="2805" width="0.2599%" height="15" fill="rgb(244,24,17)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2815.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (61 samples, 0.26%)</title><rect x="9.9625%" y="2789" width="0.2599%" height="15" fill="rgb(245,178,49)" fg:x="2338" fg:w="61"/><text x="10.2125%" y="2799.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (60 samples, 0.26%)</title><rect x="9.9668%" y="2773" width="0.2557%" height="15" fill="rgb(219,160,38)" fg:x="2339" fg:w="60"/><text x="10.2168%" y="2783.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="10.2096%" y="2757" width="0.0128%" height="15" fill="rgb(228,137,14)" fg:x="2396" fg:w="3"/><text x="10.4596%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (65 samples, 0.28%)</title><rect x="9.9625%" y="2933" width="0.2770%" height="15" fill="rgb(237,134,11)" fg:x="2338" fg:w="65"/><text x="10.2125%" y="2943.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="10.2224%" y="2917" width="0.0170%" height="15" fill="rgb(211,126,44)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2927.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="10.2224%" y="2901" width="0.0170%" height="15" fill="rgb(226,171,33)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2911.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="10.2224%" y="2885" width="0.0170%" height="15" fill="rgb(253,99,13)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2895.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="10.2224%" y="2869" width="0.0170%" height="15" fill="rgb(244,48,7)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2879.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="10.2224%" y="2853" width="0.0170%" height="15" fill="rgb(244,217,54)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2863.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="10.2224%" y="2837" width="0.0170%" height="15" fill="rgb(224,15,18)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2847.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="10.2224%" y="2821" width="0.0170%" height="15" fill="rgb(244,99,12)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2831.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="10.2224%" y="2805" width="0.0170%" height="15" fill="rgb(233,226,8)" fg:x="2399" fg:w="4"/><text x="10.4724%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (8 samples, 0.03%)</title><rect x="10.2437%" y="2629" width="0.0341%" height="15" fill="rgb(229,211,3)" fg:x="2404" fg:w="8"/><text x="10.4937%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::exp (8 samples, 0.03%)</title><rect x="10.2437%" y="2613" width="0.0341%" height="15" fill="rgb(216,140,21)" fg:x="2404" fg:w="8"/><text x="10.4937%" y="2623.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="10.2480%" y="2597" width="0.0298%" height="15" fill="rgb(234,122,30)" fg:x="2405" fg:w="7"/><text x="10.4980%" y="2607.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="10.2480%" y="2581" width="0.0298%" height="15" fill="rgb(236,25,46)" fg:x="2405" fg:w="7"/><text x="10.4980%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (9 samples, 0.04%)</title><rect x="10.2778%" y="2629" width="0.0384%" height="15" fill="rgb(217,52,54)" fg:x="2412" fg:w="9"/><text x="10.5278%" y="2639.50"></text></g><g><title>core::f64::<impl f64>::recip (9 samples, 0.04%)</title><rect x="10.2778%" y="2613" width="0.0384%" height="15" fill="rgb(222,29,26)" fg:x="2412" fg:w="9"/><text x="10.5278%" y="2623.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (18 samples, 0.08%)</title><rect x="10.2437%" y="2645" width="0.0767%" height="15" fill="rgb(216,177,29)" fg:x="2404" fg:w="18"/><text x="10.4937%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (20 samples, 0.09%)</title><rect x="10.2437%" y="2821" width="0.0852%" height="15" fill="rgb(247,136,51)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2831.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (20 samples, 0.09%)</title><rect x="10.2437%" y="2805" width="0.0852%" height="15" fill="rgb(231,47,47)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (20 samples, 0.09%)</title><rect x="10.2437%" y="2789" width="0.0852%" height="15" fill="rgb(211,192,36)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (20 samples, 0.09%)</title><rect x="10.2437%" y="2773" width="0.0852%" height="15" fill="rgb(229,156,32)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2783.50"></text></g><g><title>core::option::Option<T>::map (20 samples, 0.09%)</title><rect x="10.2437%" y="2757" width="0.0852%" height="15" fill="rgb(248,213,20)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2767.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (20 samples, 0.09%)</title><rect x="10.2437%" y="2741" width="0.0852%" height="15" fill="rgb(217,64,7)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (20 samples, 0.09%)</title><rect x="10.2437%" y="2725" width="0.0852%" height="15" fill="rgb(232,142,8)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (20 samples, 0.09%)</title><rect x="10.2437%" y="2709" width="0.0852%" height="15" fill="rgb(224,92,44)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (20 samples, 0.09%)</title><rect x="10.2437%" y="2693" width="0.0852%" height="15" fill="rgb(214,169,17)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2703.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (20 samples, 0.09%)</title><rect x="10.2437%" y="2677" width="0.0852%" height="15" fill="rgb(210,59,37)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (20 samples, 0.09%)</title><rect x="10.2437%" y="2661" width="0.0852%" height="15" fill="rgb(214,116,48)" fg:x="2404" fg:w="20"/><text x="10.4937%" y="2671.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="10.3290%" y="2773" width="0.0213%" height="15" fill="rgb(244,191,6)" fg:x="2424" fg:w="5"/><text x="10.5790%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="10.3290%" y="2757" width="0.0213%" height="15" fill="rgb(241,50,52)" fg:x="2424" fg:w="5"/><text x="10.5790%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.3290%" y="2741" width="0.0213%" height="15" fill="rgb(236,75,39)" fg:x="2424" fg:w="5"/><text x="10.5790%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.3290%" y="2725" width="0.0213%" height="15" fill="rgb(236,99,0)" fg:x="2424" fg:w="5"/><text x="10.5790%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="10.3375%" y="2709" width="0.0128%" height="15" fill="rgb(207,202,15)" fg:x="2426" fg:w="3"/><text x="10.5875%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.3375%" y="2693" width="0.0128%" height="15" fill="rgb(233,207,14)" fg:x="2426" fg:w="3"/><text x="10.5875%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="10.3375%" y="2677" width="0.0128%" height="15" fill="rgb(226,27,51)" fg:x="2426" fg:w="3"/><text x="10.5875%" y="2687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="10.3503%" y="2021" width="0.0170%" height="15" fill="rgb(206,104,42)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="10.3503%" y="2005" width="0.0170%" height="15" fill="rgb(212,225,4)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="10.3503%" y="1989" width="0.0170%" height="15" fill="rgb(233,96,42)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1999.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="10.3503%" y="1973" width="0.0170%" height="15" fill="rgb(229,21,32)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1983.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="10.3503%" y="1957" width="0.0170%" height="15" fill="rgb(226,216,24)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="10.3503%" y="1941" width="0.0170%" height="15" fill="rgb(221,163,17)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1951.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="10.3503%" y="1925" width="0.0170%" height="15" fill="rgb(216,216,42)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1935.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="10.3503%" y="1909" width="0.0170%" height="15" fill="rgb(240,118,7)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1919.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="10.3503%" y="1893" width="0.0170%" height="15" fill="rgb(221,67,37)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1903.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="10.3503%" y="1877" width="0.0170%" height="15" fill="rgb(241,32,44)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1887.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="10.3503%" y="1861" width="0.0170%" height="15" fill="rgb(235,204,43)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1845" width="0.0170%" height="15" fill="rgb(213,116,10)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1829" width="0.0170%" height="15" fill="rgb(239,15,48)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1813" width="0.0170%" height="15" fill="rgb(207,123,36)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.3503%" y="1797" width="0.0170%" height="15" fill="rgb(209,103,30)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.3503%" y="1781" width="0.0170%" height="15" fill="rgb(238,100,19)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.3503%" y="1765" width="0.0170%" height="15" fill="rgb(244,30,14)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1749" width="0.0170%" height="15" fill="rgb(249,174,6)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="10.3503%" y="1733" width="0.0170%" height="15" fill="rgb(235,213,41)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="10.3503%" y="1717" width="0.0170%" height="15" fill="rgb(213,118,6)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1727.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="10.3503%" y="1701" width="0.0170%" height="15" fill="rgb(235,44,51)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="10.3503%" y="1685" width="0.0170%" height="15" fill="rgb(217,9,53)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="10.3503%" y="1669" width="0.0170%" height="15" fill="rgb(237,172,34)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1653" width="0.0170%" height="15" fill="rgb(206,206,11)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1637" width="0.0170%" height="15" fill="rgb(214,149,29)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.3503%" y="1621" width="0.0170%" height="15" fill="rgb(208,123,3)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="10.3503%" y="1605" width="0.0170%" height="15" fill="rgb(229,126,4)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1615.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="10.3503%" y="1589" width="0.0170%" height="15" fill="rgb(222,92,36)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="10.3503%" y="1573" width="0.0170%" height="15" fill="rgb(216,39,41)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1583.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="10.3503%" y="1557" width="0.0170%" height="15" fill="rgb(253,127,28)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1567.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="10.3503%" y="1541" width="0.0170%" height="15" fill="rgb(249,152,51)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1551.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="10.3503%" y="1525" width="0.0170%" height="15" fill="rgb(209,123,42)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="10.3503%" y="1509" width="0.0170%" height="15" fill="rgb(241,118,22)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1493" width="0.0170%" height="15" fill="rgb(208,25,7)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="10.3503%" y="1477" width="0.0170%" height="15" fill="rgb(243,144,39)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1487.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="10.3503%" y="1461" width="0.0170%" height="15" fill="rgb(250,50,5)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3503%" y="1445" width="0.0170%" height="15" fill="rgb(207,67,11)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1455.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="10.3503%" y="1429" width="0.0170%" height="15" fill="rgb(245,204,40)" fg:x="2429" fg:w="4"/><text x="10.6003%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="10.3503%" y="2485" width="0.0341%" height="15" fill="rgb(238,228,24)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="10.3503%" y="2469" width="0.0341%" height="15" fill="rgb(217,116,22)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="10.3503%" y="2453" width="0.0341%" height="15" fill="rgb(234,98,12)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2463.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="10.3503%" y="2437" width="0.0341%" height="15" fill="rgb(242,170,50)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="10.3503%" y="2421" width="0.0341%" height="15" fill="rgb(235,7,5)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="10.3503%" y="2405" width="0.0341%" height="15" fill="rgb(241,114,28)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="10.3503%" y="2389" width="0.0341%" height="15" fill="rgb(246,112,42)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2399.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="10.3503%" y="2373" width="0.0341%" height="15" fill="rgb(248,228,14)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2383.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="10.3503%" y="2357" width="0.0341%" height="15" fill="rgb(208,133,18)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2367.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="10.3503%" y="2341" width="0.0341%" height="15" fill="rgb(207,35,49)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="10.3503%" y="2325" width="0.0341%" height="15" fill="rgb(205,68,36)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="10.3503%" y="2309" width="0.0341%" height="15" fill="rgb(245,62,40)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="10.3503%" y="2293" width="0.0341%" height="15" fill="rgb(228,27,24)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="10.3503%" y="2277" width="0.0341%" height="15" fill="rgb(253,19,12)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="10.3503%" y="2261" width="0.0341%" height="15" fill="rgb(232,28,20)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="10.3503%" y="2245" width="0.0341%" height="15" fill="rgb(218,35,51)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="10.3503%" y="2229" width="0.0341%" height="15" fill="rgb(212,90,40)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="10.3503%" y="2213" width="0.0341%" height="15" fill="rgb(220,172,12)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="10.3503%" y="2197" width="0.0341%" height="15" fill="rgb(226,159,20)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="10.3503%" y="2181" width="0.0341%" height="15" fill="rgb(234,205,16)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2191.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="10.3503%" y="2165" width="0.0341%" height="15" fill="rgb(207,9,39)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="10.3503%" y="2149" width="0.0341%" height="15" fill="rgb(249,143,15)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="10.3503%" y="2133" width="0.0341%" height="15" fill="rgb(253,133,29)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="10.3503%" y="2117" width="0.0341%" height="15" fill="rgb(221,187,0)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="10.3503%" y="2101" width="0.0341%" height="15" fill="rgb(205,204,26)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="10.3503%" y="2085" width="0.0341%" height="15" fill="rgb(224,68,54)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="10.3503%" y="2069" width="0.0341%" height="15" fill="rgb(209,67,4)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="10.3503%" y="2053" width="0.0341%" height="15" fill="rgb(228,229,18)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="10.3503%" y="2037" width="0.0341%" height="15" fill="rgb(231,89,13)" fg:x="2429" fg:w="8"/><text x="10.6003%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="10.3673%" y="2021" width="0.0170%" height="15" fill="rgb(210,182,18)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="10.3673%" y="2005" width="0.0170%" height="15" fill="rgb(240,105,2)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="2015.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="10.3673%" y="1989" width="0.0170%" height="15" fill="rgb(207,170,50)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="10.3673%" y="1973" width="0.0170%" height="15" fill="rgb(232,133,24)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="10.3673%" y="1957" width="0.0170%" height="15" fill="rgb(235,166,27)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3673%" y="1941" width="0.0170%" height="15" fill="rgb(209,19,13)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3673%" y="1925" width="0.0170%" height="15" fill="rgb(226,79,39)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.3673%" y="1909" width="0.0170%" height="15" fill="rgb(222,163,10)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.3673%" y="1893" width="0.0170%" height="15" fill="rgb(214,44,19)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.3673%" y="1877" width="0.0170%" height="15" fill="rgb(210,217,13)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3673%" y="1861" width="0.0170%" height="15" fill="rgb(237,61,54)" fg:x="2433" fg:w="4"/><text x="10.6173%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="10.3503%" y="2773" width="0.0511%" height="15" fill="rgb(226,184,24)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="10.3503%" y="2757" width="0.0511%" height="15" fill="rgb(223,226,4)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2767.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="10.3503%" y="2741" width="0.0511%" height="15" fill="rgb(210,26,41)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2751.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="10.3503%" y="2725" width="0.0511%" height="15" fill="rgb(220,221,6)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2735.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="10.3503%" y="2709" width="0.0511%" height="15" fill="rgb(225,89,49)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="10.3503%" y="2693" width="0.0511%" height="15" fill="rgb(218,70,45)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="10.3503%" y="2677" width="0.0511%" height="15" fill="rgb(238,166,21)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="10.3503%" y="2661" width="0.0511%" height="15" fill="rgb(224,141,44)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2671.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="10.3503%" y="2645" width="0.0511%" height="15" fill="rgb(230,12,49)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="10.3503%" y="2629" width="0.0511%" height="15" fill="rgb(212,174,12)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="10.3503%" y="2613" width="0.0511%" height="15" fill="rgb(246,67,9)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2623.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="10.3503%" y="2597" width="0.0511%" height="15" fill="rgb(239,35,23)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="10.3503%" y="2581" width="0.0511%" height="15" fill="rgb(211,167,0)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="10.3503%" y="2565" width="0.0511%" height="15" fill="rgb(225,119,45)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="10.3503%" y="2549" width="0.0511%" height="15" fill="rgb(210,162,6)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="10.3503%" y="2533" width="0.0511%" height="15" fill="rgb(208,118,35)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="10.3503%" y="2517" width="0.0511%" height="15" fill="rgb(239,4,53)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="10.3503%" y="2501" width="0.0511%" height="15" fill="rgb(213,130,21)" fg:x="2429" fg:w="12"/><text x="10.6003%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="10.3844%" y="2485" width="0.0170%" height="15" fill="rgb(235,148,0)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="10.3844%" y="2469" width="0.0170%" height="15" fill="rgb(244,224,18)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2479.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="10.3844%" y="2453" width="0.0170%" height="15" fill="rgb(211,214,4)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="10.3844%" y="2437" width="0.0170%" height="15" fill="rgb(206,119,25)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="10.3844%" y="2421" width="0.0170%" height="15" fill="rgb(243,93,47)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3844%" y="2405" width="0.0170%" height="15" fill="rgb(224,194,6)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3844%" y="2389" width="0.0170%" height="15" fill="rgb(243,229,6)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.3844%" y="2373" width="0.0170%" height="15" fill="rgb(207,23,50)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.3844%" y="2357" width="0.0170%" height="15" fill="rgb(253,192,32)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.3844%" y="2341" width="0.0170%" height="15" fill="rgb(213,21,6)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.3844%" y="2325" width="0.0170%" height="15" fill="rgb(243,151,13)" fg:x="2437" fg:w="4"/><text x="10.6344%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="10.4014%" y="2645" width="0.0170%" height="15" fill="rgb(233,165,41)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="10.4014%" y="2629" width="0.0170%" height="15" fill="rgb(246,176,45)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="10.4014%" y="2613" width="0.0170%" height="15" fill="rgb(217,170,52)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="10.4014%" y="2597" width="0.0170%" height="15" fill="rgb(214,203,54)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="10.4014%" y="2581" width="0.0170%" height="15" fill="rgb(248,215,49)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="10.4014%" y="2565" width="0.0170%" height="15" fill="rgb(208,46,10)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="10.4014%" y="2549" width="0.0170%" height="15" fill="rgb(254,5,31)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="10.4014%" y="2533" width="0.0170%" height="15" fill="rgb(222,104,33)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="10.4014%" y="2517" width="0.0170%" height="15" fill="rgb(248,49,16)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="10.4014%" y="2501" width="0.0170%" height="15" fill="rgb(232,198,41)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="10.4014%" y="2485" width="0.0170%" height="15" fill="rgb(214,125,3)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="10.4014%" y="2469" width="0.0170%" height="15" fill="rgb(229,220,28)" fg:x="2441" fg:w="4"/><text x="10.6514%" y="2479.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (43 samples, 0.18%)</title><rect x="10.2395%" y="2885" width="0.1832%" height="15" fill="rgb(222,64,37)" fg:x="2403" fg:w="43"/><text x="10.4895%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (43 samples, 0.18%)</title><rect x="10.2395%" y="2869" width="0.1832%" height="15" fill="rgb(249,184,13)" fg:x="2403" fg:w="43"/><text x="10.4895%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (43 samples, 0.18%)</title><rect x="10.2395%" y="2853" width="0.1832%" height="15" fill="rgb(252,176,6)" fg:x="2403" fg:w="43"/><text x="10.4895%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.18%)</title><rect x="10.2395%" y="2837" width="0.1832%" height="15" fill="rgb(228,153,7)" fg:x="2403" fg:w="43"/><text x="10.4895%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="10.3290%" y="2821" width="0.0937%" height="15" fill="rgb(242,193,5)" fg:x="2424" fg:w="22"/><text x="10.5790%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="10.3290%" y="2805" width="0.0937%" height="15" fill="rgb(232,140,9)" fg:x="2424" fg:w="22"/><text x="10.5790%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="10.3290%" y="2789" width="0.0937%" height="15" fill="rgb(213,222,16)" fg:x="2424" fg:w="22"/><text x="10.5790%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="10.4014%" y="2773" width="0.0213%" height="15" fill="rgb(222,75,50)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="10.4014%" y="2757" width="0.0213%" height="15" fill="rgb(205,180,2)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2767.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="10.4014%" y="2741" width="0.0213%" height="15" fill="rgb(216,34,7)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="10.4014%" y="2725" width="0.0213%" height="15" fill="rgb(253,16,32)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="10.4014%" y="2709" width="0.0213%" height="15" fill="rgb(208,97,28)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4014%" y="2693" width="0.0213%" height="15" fill="rgb(225,92,11)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4014%" y="2677" width="0.0213%" height="15" fill="rgb(243,38,12)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.4014%" y="2661" width="0.0213%" height="15" fill="rgb(208,139,16)" fg:x="2441" fg:w="5"/><text x="10.6514%" y="2671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="10.4312%" y="2021" width="0.0256%" height="15" fill="rgb(227,24,9)" fg:x="2448" fg:w="6"/><text x="10.6812%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="10.4312%" y="2005" width="0.0256%" height="15" fill="rgb(206,62,11)" fg:x="2448" fg:w="6"/><text x="10.6812%" y="2015.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (4 samples, 0.02%)</title><rect x="10.4397%" y="1989" width="0.0170%" height="15" fill="rgb(228,134,27)" fg:x="2450" fg:w="4"/><text x="10.6897%" y="1999.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="10.4397%" y="1973" width="0.0170%" height="15" fill="rgb(205,55,33)" fg:x="2450" fg:w="4"/><text x="10.6897%" y="1983.50"></text></g><g><title>std::sync::condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="10.4397%" y="1957" width="0.0170%" height="15" fill="rgb(243,75,43)" fg:x="2450" fg:w="4"/><text x="10.6897%" y="1967.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="10.4397%" y="1941" width="0.0170%" height="15" fill="rgb(223,27,42)" fg:x="2450" fg:w="4"/><text x="10.6897%" y="1951.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="10.4397%" y="1925" width="0.0170%" height="15" fill="rgb(232,189,33)" fg:x="2450" fg:w="4"/><text x="10.6897%" y="1935.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="10.4397%" y="1909" width="0.0170%" height="15" fill="rgb(210,9,39)" fg:x="2450" fg:w="4"/><text x="10.6897%" y="1919.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="10.4397%" y="1893" width="0.0170%" height="15" fill="rgb(242,85,26)" fg:x="2450" fg:w="4"/><text x="10.6897%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="10.4568%" y="1733" width="0.0128%" height="15" fill="rgb(248,44,4)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4568%" y="1717" width="0.0128%" height="15" fill="rgb(250,96,46)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4568%" y="1701" width="0.0128%" height="15" fill="rgb(229,116,26)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.4568%" y="1685" width="0.0128%" height="15" fill="rgb(246,94,34)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.4568%" y="1669" width="0.0128%" height="15" fill="rgb(251,73,21)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1679.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="10.4568%" y="1653" width="0.0128%" height="15" fill="rgb(254,121,25)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="10.4568%" y="1637" width="0.0128%" height="15" fill="rgb(215,161,49)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1647.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="10.4568%" y="1621" width="0.0128%" height="15" fill="rgb(221,43,13)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1631.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="10.4568%" y="1605" width="0.0128%" height="15" fill="rgb(249,5,37)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1615.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="10.4568%" y="1589" width="0.0128%" height="15" fill="rgb(226,25,44)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="10.4568%" y="1573" width="0.0128%" height="15" fill="rgb(238,189,16)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4568%" y="1557" width="0.0128%" height="15" fill="rgb(251,186,8)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="10.4568%" y="1541" width="0.0128%" height="15" fill="rgb(254,34,31)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1551.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="10.4568%" y="1525" width="0.0128%" height="15" fill="rgb(225,215,27)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1535.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4568%" y="1509" width="0.0128%" height="15" fill="rgb(221,192,48)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1519.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="10.4568%" y="1493" width="0.0128%" height="15" fill="rgb(219,137,20)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1503.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="10.4568%" y="1477" width="0.0128%" height="15" fill="rgb(219,84,11)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1487.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="10.4568%" y="1461" width="0.0128%" height="15" fill="rgb(224,10,23)" fg:x="2454" fg:w="3"/><text x="10.7068%" y="1471.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="10.4568%" y="1845" width="0.0213%" height="15" fill="rgb(248,22,39)" fg:x="2454" fg:w="5"/><text x="10.7068%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4568%" y="1829" width="0.0213%" height="15" fill="rgb(212,154,20)" fg:x="2454" fg:w="5"/><text x="10.7068%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4568%" y="1813" width="0.0213%" height="15" fill="rgb(236,199,50)" fg:x="2454" fg:w="5"/><text x="10.7068%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.4568%" y="1797" width="0.0213%" height="15" fill="rgb(211,9,17)" fg:x="2454" fg:w="5"/><text x="10.7068%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="10.4568%" y="1781" width="0.0213%" height="15" fill="rgb(243,216,36)" fg:x="2454" fg:w="5"/><text x="10.7068%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.4568%" y="1765" width="0.0213%" height="15" fill="rgb(250,2,10)" fg:x="2454" fg:w="5"/><text x="10.7068%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4568%" y="1749" width="0.0213%" height="15" fill="rgb(226,50,48)" fg:x="2454" fg:w="5"/><text x="10.7068%" y="1759.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (16 samples, 0.07%)</title><rect x="10.4312%" y="2309" width="0.0682%" height="15" fill="rgb(243,81,16)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.07%)</title><rect x="10.4312%" y="2293" width="0.0682%" height="15" fill="rgb(250,14,2)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (16 samples, 0.07%)</title><rect x="10.4312%" y="2277" width="0.0682%" height="15" fill="rgb(233,135,29)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (16 samples, 0.07%)</title><rect x="10.4312%" y="2261" width="0.0682%" height="15" fill="rgb(224,64,43)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (16 samples, 0.07%)</title><rect x="10.4312%" y="2245" width="0.0682%" height="15" fill="rgb(238,84,13)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (16 samples, 0.07%)</title><rect x="10.4312%" y="2229" width="0.0682%" height="15" fill="rgb(253,48,26)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="10.4312%" y="2213" width="0.0682%" height="15" fill="rgb(205,223,31)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="10.4312%" y="2197" width="0.0682%" height="15" fill="rgb(221,41,32)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2207.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="10.4312%" y="2181" width="0.0682%" height="15" fill="rgb(213,158,31)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="10.4312%" y="2165" width="0.0682%" height="15" fill="rgb(245,126,43)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="10.4312%" y="2149" width="0.0682%" height="15" fill="rgb(227,7,22)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (16 samples, 0.07%)</title><rect x="10.4312%" y="2133" width="0.0682%" height="15" fill="rgb(252,90,44)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="10.4312%" y="2117" width="0.0682%" height="15" fill="rgb(253,91,0)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="10.4312%" y="2101" width="0.0682%" height="15" fill="rgb(252,175,49)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="10.4312%" y="2085" width="0.0682%" height="15" fill="rgb(246,150,1)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="10.4312%" y="2069" width="0.0682%" height="15" fill="rgb(241,192,25)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="10.4312%" y="2053" width="0.0682%" height="15" fill="rgb(239,187,11)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="10.4312%" y="2037" width="0.0682%" height="15" fill="rgb(218,202,51)" fg:x="2448" fg:w="16"/><text x="10.6812%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="10.4568%" y="2021" width="0.0426%" height="15" fill="rgb(225,176,8)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="10.4568%" y="2005" width="0.0426%" height="15" fill="rgb(219,122,41)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="2015.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="10.4568%" y="1989" width="0.0426%" height="15" fill="rgb(248,140,20)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="10.4568%" y="1973" width="0.0426%" height="15" fill="rgb(245,41,37)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="10.4568%" y="1957" width="0.0426%" height="15" fill="rgb(235,82,39)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="10.4568%" y="1941" width="0.0426%" height="15" fill="rgb(230,108,42)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="10.4568%" y="1925" width="0.0426%" height="15" fill="rgb(215,150,50)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="10.4568%" y="1909" width="0.0426%" height="15" fill="rgb(233,212,5)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="10.4568%" y="1893" width="0.0426%" height="15" fill="rgb(245,80,22)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="10.4568%" y="1877" width="0.0426%" height="15" fill="rgb(238,129,16)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="10.4568%" y="1861" width="0.0426%" height="15" fill="rgb(240,19,0)" fg:x="2454" fg:w="10"/><text x="10.7068%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="10.4781%" y="1845" width="0.0213%" height="15" fill="rgb(232,42,35)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="10.4781%" y="1829" width="0.0213%" height="15" fill="rgb(223,130,24)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1839.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="10.4781%" y="1813" width="0.0213%" height="15" fill="rgb(237,16,22)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="10.4781%" y="1797" width="0.0213%" height="15" fill="rgb(248,192,20)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="10.4781%" y="1781" width="0.0213%" height="15" fill="rgb(233,167,2)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4781%" y="1765" width="0.0213%" height="15" fill="rgb(252,71,44)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4781%" y="1749" width="0.0213%" height="15" fill="rgb(238,37,47)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.4781%" y="1733" width="0.0213%" height="15" fill="rgb(214,202,54)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="10.4781%" y="1717" width="0.0213%" height="15" fill="rgb(254,165,40)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.4781%" y="1701" width="0.0213%" height="15" fill="rgb(246,173,38)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="10.4781%" y="1685" width="0.0213%" height="15" fill="rgb(215,3,27)" fg:x="2459" fg:w="5"/><text x="10.7281%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="10.4866%" y="1669" width="0.0128%" height="15" fill="rgb(239,169,51)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="10.4866%" y="1653" width="0.0128%" height="15" fill="rgb(212,5,25)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="10.4866%" y="1637" width="0.0128%" height="15" fill="rgb(243,45,17)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="10.4866%" y="1621" width="0.0128%" height="15" fill="rgb(242,97,9)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="10.4866%" y="1605" width="0.0128%" height="15" fill="rgb(228,71,31)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4866%" y="1589" width="0.0128%" height="15" fill="rgb(252,184,16)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4866%" y="1573" width="0.0128%" height="15" fill="rgb(236,169,46)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.4866%" y="1557" width="0.0128%" height="15" fill="rgb(207,17,47)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.4866%" y="1541" width="0.0128%" height="15" fill="rgb(206,201,28)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="10.4866%" y="1525" width="0.0128%" height="15" fill="rgb(224,184,23)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="10.4866%" y="1509" width="0.0128%" height="15" fill="rgb(208,139,48)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="10.4866%" y="1493" width="0.0128%" height="15" fill="rgb(208,130,10)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="10.4866%" y="1477" width="0.0128%" height="15" fill="rgb(211,213,45)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="10.4866%" y="1461" width="0.0128%" height="15" fill="rgb(235,100,30)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="10.4866%" y="1445" width="0.0128%" height="15" fill="rgb(206,144,31)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4866%" y="1429" width="0.0128%" height="15" fill="rgb(224,200,26)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="10.4866%" y="1413" width="0.0128%" height="15" fill="rgb(247,104,53)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="10.4866%" y="1397" width="0.0128%" height="15" fill="rgb(220,14,17)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="10.4866%" y="1381" width="0.0128%" height="15" fill="rgb(230,140,40)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="10.4866%" y="1365" width="0.0128%" height="15" fill="rgb(229,2,41)" fg:x="2461" fg:w="3"/><text x="10.7366%" y="1375.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (18 samples, 0.08%)</title><rect x="10.4312%" y="2597" width="0.0767%" height="15" fill="rgb(232,89,16)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="10.4312%" y="2581" width="0.0767%" height="15" fill="rgb(247,59,52)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="10.4312%" y="2565" width="0.0767%" height="15" fill="rgb(226,110,21)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="10.4312%" y="2549" width="0.0767%" height="15" fill="rgb(224,176,43)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="10.4312%" y="2533" width="0.0767%" height="15" fill="rgb(221,73,6)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="10.4312%" y="2517" width="0.0767%" height="15" fill="rgb(232,78,19)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="10.4312%" y="2501" width="0.0767%" height="15" fill="rgb(233,112,48)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="10.4312%" y="2485" width="0.0767%" height="15" fill="rgb(243,131,47)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="10.4312%" y="2469" width="0.0767%" height="15" fill="rgb(226,51,1)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2479.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="10.4312%" y="2453" width="0.0767%" height="15" fill="rgb(247,58,7)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="10.4312%" y="2437" width="0.0767%" height="15" fill="rgb(209,7,32)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="10.4312%" y="2421" width="0.0767%" height="15" fill="rgb(209,39,41)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18 samples, 0.08%)</title><rect x="10.4312%" y="2405" width="0.0767%" height="15" fill="rgb(226,182,46)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="10.4312%" y="2389" width="0.0767%" height="15" fill="rgb(230,219,10)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="10.4312%" y="2373" width="0.0767%" height="15" fill="rgb(227,175,30)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="10.4312%" y="2357" width="0.0767%" height="15" fill="rgb(217,2,50)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="10.4312%" y="2341" width="0.0767%" height="15" fill="rgb(229,160,0)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="10.4312%" y="2325" width="0.0767%" height="15" fill="rgb(207,78,37)" fg:x="2448" fg:w="18"/><text x="10.6812%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="10.5079%" y="2421" width="0.0128%" height="15" fill="rgb(225,57,0)" fg:x="2466" fg:w="3"/><text x="10.7579%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5079%" y="2405" width="0.0128%" height="15" fill="rgb(232,154,2)" fg:x="2466" fg:w="3"/><text x="10.7579%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5079%" y="2389" width="0.0128%" height="15" fill="rgb(241,212,25)" fg:x="2466" fg:w="3"/><text x="10.7579%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.5079%" y="2373" width="0.0128%" height="15" fill="rgb(226,69,20)" fg:x="2466" fg:w="3"/><text x="10.7579%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="10.5079%" y="2357" width="0.0128%" height="15" fill="rgb(247,184,54)" fg:x="2466" fg:w="3"/><text x="10.7579%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.5079%" y="2341" width="0.0128%" height="15" fill="rgb(210,145,0)" fg:x="2466" fg:w="3"/><text x="10.7579%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5079%" y="2325" width="0.0128%" height="15" fill="rgb(253,82,12)" fg:x="2466" fg:w="3"/><text x="10.7579%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="10.5207%" y="1093" width="0.0213%" height="15" fill="rgb(245,42,11)" fg:x="2469" fg:w="5"/><text x="10.7707%" y="1103.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="10.5207%" y="1077" width="0.0213%" height="15" fill="rgb(219,147,32)" fg:x="2469" fg:w="5"/><text x="10.7707%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.5207%" y="1061" width="0.0213%" height="15" fill="rgb(246,12,7)" fg:x="2469" fg:w="5"/><text x="10.7707%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.5207%" y="1045" width="0.0213%" height="15" fill="rgb(243,50,9)" fg:x="2469" fg:w="5"/><text x="10.7707%" y="1055.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="10.5207%" y="1029" width="0.0213%" height="15" fill="rgb(219,149,6)" fg:x="2469" fg:w="5"/><text x="10.7707%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.5207%" y="1013" width="0.0213%" height="15" fill="rgb(241,51,42)" fg:x="2469" fg:w="5"/><text x="10.7707%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="10.5207%" y="997" width="0.0213%" height="15" fill="rgb(226,128,27)" fg:x="2469" fg:w="5"/><text x="10.7707%" y="1007.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="10.5250%" y="981" width="0.0170%" height="15" fill="rgb(244,144,4)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="991.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="10.5250%" y="965" width="0.0170%" height="15" fill="rgb(221,4,13)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="975.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="10.5250%" y="949" width="0.0170%" height="15" fill="rgb(208,170,28)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="959.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="10.5250%" y="933" width="0.0170%" height="15" fill="rgb(226,131,13)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="943.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="10.5250%" y="917" width="0.0170%" height="15" fill="rgb(215,72,41)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="927.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5250%" y="901" width="0.0170%" height="15" fill="rgb(243,108,20)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5250%" y="885" width="0.0170%" height="15" fill="rgb(230,189,17)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.5250%" y="869" width="0.0170%" height="15" fill="rgb(220,50,17)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="879.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.5250%" y="853" width="0.0170%" height="15" fill="rgb(248,152,48)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.5250%" y="837" width="0.0170%" height="15" fill="rgb(244,91,11)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5250%" y="821" width="0.0170%" height="15" fill="rgb(220,157,5)" fg:x="2470" fg:w="4"/><text x="10.7750%" y="831.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="10.5420%" y="917" width="0.0170%" height="15" fill="rgb(253,137,8)" fg:x="2474" fg:w="4"/><text x="10.7920%" y="927.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5420%" y="901" width="0.0170%" height="15" fill="rgb(217,137,51)" fg:x="2474" fg:w="4"/><text x="10.7920%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5420%" y="885" width="0.0170%" height="15" fill="rgb(218,209,53)" fg:x="2474" fg:w="4"/><text x="10.7920%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.5420%" y="869" width="0.0170%" height="15" fill="rgb(249,137,25)" fg:x="2474" fg:w="4"/><text x="10.7920%" y="879.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.5420%" y="853" width="0.0170%" height="15" fill="rgb(239,155,26)" fg:x="2474" fg:w="4"/><text x="10.7920%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.5420%" y="837" width="0.0170%" height="15" fill="rgb(227,85,46)" fg:x="2474" fg:w="4"/><text x="10.7920%" y="847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5420%" y="821" width="0.0170%" height="15" fill="rgb(251,107,43)" fg:x="2474" fg:w="4"/><text x="10.7920%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (13 samples, 0.06%)</title><rect x="10.5207%" y="1557" width="0.0554%" height="15" fill="rgb(234,170,33)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="10.5207%" y="1541" width="0.0554%" height="15" fill="rgb(206,29,35)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (13 samples, 0.06%)</title><rect x="10.5207%" y="1525" width="0.0554%" height="15" fill="rgb(227,138,25)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1535.50"></text></g><g><title>rayon_core::job::JobRef::execute (13 samples, 0.06%)</title><rect x="10.5207%" y="1509" width="0.0554%" height="15" fill="rgb(249,131,35)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1519.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (13 samples, 0.06%)</title><rect x="10.5207%" y="1493" width="0.0554%" height="15" fill="rgb(239,6,40)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1503.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (13 samples, 0.06%)</title><rect x="10.5207%" y="1477" width="0.0554%" height="15" fill="rgb(246,136,47)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1487.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="10.5207%" y="1461" width="0.0554%" height="15" fill="rgb(253,58,26)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1471.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="10.5207%" y="1445" width="0.0554%" height="15" fill="rgb(237,141,10)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1455.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="10.5207%" y="1429" width="0.0554%" height="15" fill="rgb(234,156,12)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1439.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="10.5207%" y="1413" width="0.0554%" height="15" fill="rgb(243,224,36)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1423.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="10.5207%" y="1397" width="0.0554%" height="15" fill="rgb(205,229,51)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1407.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (13 samples, 0.06%)</title><rect x="10.5207%" y="1381" width="0.0554%" height="15" fill="rgb(223,189,4)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="10.5207%" y="1365" width="0.0554%" height="15" fill="rgb(249,167,54)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="10.5207%" y="1349" width="0.0554%" height="15" fill="rgb(218,34,28)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="10.5207%" y="1333" width="0.0554%" height="15" fill="rgb(232,109,42)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1343.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="10.5207%" y="1317" width="0.0554%" height="15" fill="rgb(248,214,46)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1327.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="10.5207%" y="1301" width="0.0554%" height="15" fill="rgb(244,216,40)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="10.5207%" y="1285" width="0.0554%" height="15" fill="rgb(231,226,31)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1295.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="10.5207%" y="1269" width="0.0554%" height="15" fill="rgb(238,38,43)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1279.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="10.5207%" y="1253" width="0.0554%" height="15" fill="rgb(208,88,43)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1263.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="10.5207%" y="1237" width="0.0554%" height="15" fill="rgb(205,136,37)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1247.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="10.5207%" y="1221" width="0.0554%" height="15" fill="rgb(237,34,14)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1231.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="10.5207%" y="1205" width="0.0554%" height="15" fill="rgb(236,193,44)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="10.5207%" y="1189" width="0.0554%" height="15" fill="rgb(231,48,10)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="10.5207%" y="1173" width="0.0554%" height="15" fill="rgb(213,141,34)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="10.5207%" y="1157" width="0.0554%" height="15" fill="rgb(249,130,34)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="10.5207%" y="1141" width="0.0554%" height="15" fill="rgb(219,42,41)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="10.5207%" y="1125" width="0.0554%" height="15" fill="rgb(224,100,54)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="10.5207%" y="1109" width="0.0554%" height="15" fill="rgb(229,200,27)" fg:x="2469" fg:w="13"/><text x="10.7707%" y="1119.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="10.5420%" y="1093" width="0.0341%" height="15" fill="rgb(217,118,10)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="1103.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="10.5420%" y="1077" width="0.0341%" height="15" fill="rgb(206,22,3)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="1087.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="10.5420%" y="1061" width="0.0341%" height="15" fill="rgb(232,163,46)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="1071.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="10.5420%" y="1045" width="0.0341%" height="15" fill="rgb(206,95,13)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="1055.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="10.5420%" y="1029" width="0.0341%" height="15" fill="rgb(253,154,18)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="10.5420%" y="1013" width="0.0341%" height="15" fill="rgb(219,32,23)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="10.5420%" y="997" width="0.0341%" height="15" fill="rgb(230,191,45)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="10.5420%" y="981" width="0.0341%" height="15" fill="rgb(229,64,36)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="991.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="10.5420%" y="965" width="0.0341%" height="15" fill="rgb(205,129,25)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="10.5420%" y="949" width="0.0341%" height="15" fill="rgb(254,112,7)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="10.5420%" y="933" width="0.0341%" height="15" fill="rgb(226,53,48)" fg:x="2474" fg:w="8"/><text x="10.7920%" y="943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="10.5591%" y="917" width="0.0170%" height="15" fill="rgb(214,153,38)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="927.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="10.5591%" y="901" width="0.0170%" height="15" fill="rgb(243,101,7)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="911.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="10.5591%" y="885" width="0.0170%" height="15" fill="rgb(240,140,22)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="895.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="10.5591%" y="869" width="0.0170%" height="15" fill="rgb(235,114,2)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="10.5591%" y="853" width="0.0170%" height="15" fill="rgb(242,59,12)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5591%" y="837" width="0.0170%" height="15" fill="rgb(252,134,9)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5591%" y="821" width="0.0170%" height="15" fill="rgb(236,4,44)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.5591%" y="805" width="0.0170%" height="15" fill="rgb(254,172,41)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="815.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.5591%" y="789" width="0.0170%" height="15" fill="rgb(244,63,20)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.5591%" y="773" width="0.0170%" height="15" fill="rgb(250,73,31)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.5591%" y="757" width="0.0170%" height="15" fill="rgb(241,38,36)" fg:x="2478" fg:w="4"/><text x="10.8091%" y="767.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="10.5761%" y="1381" width="0.0128%" height="15" fill="rgb(245,211,2)" fg:x="2482" fg:w="3"/><text x="10.8261%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5761%" y="1365" width="0.0128%" height="15" fill="rgb(206,120,28)" fg:x="2482" fg:w="3"/><text x="10.8261%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5761%" y="1349" width="0.0128%" height="15" fill="rgb(211,59,34)" fg:x="2482" fg:w="3"/><text x="10.8261%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.5761%" y="1333" width="0.0128%" height="15" fill="rgb(233,168,5)" fg:x="2482" fg:w="3"/><text x="10.8261%" y="1343.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="10.5761%" y="1317" width="0.0128%" height="15" fill="rgb(234,33,13)" fg:x="2482" fg:w="3"/><text x="10.8261%" y="1327.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.5761%" y="1301" width="0.0128%" height="15" fill="rgb(231,150,26)" fg:x="2482" fg:w="3"/><text x="10.8261%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5761%" y="1285" width="0.0128%" height="15" fill="rgb(217,191,4)" fg:x="2482" fg:w="3"/><text x="10.8261%" y="1295.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="10.5889%" y="1205" width="0.0128%" height="15" fill="rgb(246,198,38)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5889%" y="1189" width="0.0128%" height="15" fill="rgb(245,64,37)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5889%" y="1173" width="0.0128%" height="15" fill="rgb(250,30,36)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.5889%" y="1157" width="0.0128%" height="15" fill="rgb(217,86,53)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.5889%" y="1141" width="0.0128%" height="15" fill="rgb(228,157,16)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1151.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="10.5889%" y="1125" width="0.0128%" height="15" fill="rgb(217,59,31)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="10.5889%" y="1109" width="0.0128%" height="15" fill="rgb(237,138,41)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1119.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="10.5889%" y="1093" width="0.0128%" height="15" fill="rgb(227,91,49)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1103.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="10.5889%" y="1077" width="0.0128%" height="15" fill="rgb(247,21,44)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1087.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="10.5889%" y="1061" width="0.0128%" height="15" fill="rgb(219,210,51)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1071.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="10.5889%" y="1045" width="0.0128%" height="15" fill="rgb(209,140,6)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5889%" y="1029" width="0.0128%" height="15" fill="rgb(221,188,24)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1039.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="10.5889%" y="1013" width="0.0128%" height="15" fill="rgb(232,154,20)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1023.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="10.5889%" y="997" width="0.0128%" height="15" fill="rgb(244,137,50)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="1007.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="10.5889%" y="981" width="0.0128%" height="15" fill="rgb(225,185,43)" fg:x="2485" fg:w="3"/><text x="10.8389%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (21 samples, 0.09%)</title><rect x="10.5207%" y="2021" width="0.0895%" height="15" fill="rgb(213,205,38)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.09%)</title><rect x="10.5207%" y="2005" width="0.0895%" height="15" fill="rgb(236,73,12)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (21 samples, 0.09%)</title><rect x="10.5207%" y="1989" width="0.0895%" height="15" fill="rgb(235,219,13)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1999.50"></text></g><g><title>rayon_core::job::JobRef::execute (21 samples, 0.09%)</title><rect x="10.5207%" y="1973" width="0.0895%" height="15" fill="rgb(218,59,36)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1983.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (21 samples, 0.09%)</title><rect x="10.5207%" y="1957" width="0.0895%" height="15" fill="rgb(205,110,39)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (21 samples, 0.09%)</title><rect x="10.5207%" y="1941" width="0.0895%" height="15" fill="rgb(218,206,42)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1951.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="10.5207%" y="1925" width="0.0895%" height="15" fill="rgb(248,125,24)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1935.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="10.5207%" y="1909" width="0.0895%" height="15" fill="rgb(242,28,27)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1919.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="10.5207%" y="1893" width="0.0895%" height="15" fill="rgb(216,228,15)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1903.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="10.5207%" y="1877" width="0.0895%" height="15" fill="rgb(235,116,46)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1887.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="10.5207%" y="1861" width="0.0895%" height="15" fill="rgb(224,18,32)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (21 samples, 0.09%)</title><rect x="10.5207%" y="1845" width="0.0895%" height="15" fill="rgb(252,5,12)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="10.5207%" y="1829" width="0.0895%" height="15" fill="rgb(251,36,5)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="10.5207%" y="1813" width="0.0895%" height="15" fill="rgb(217,53,14)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="10.5207%" y="1797" width="0.0895%" height="15" fill="rgb(215,86,45)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="10.5207%" y="1781" width="0.0895%" height="15" fill="rgb(242,169,11)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="10.5207%" y="1765" width="0.0895%" height="15" fill="rgb(211,213,45)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="10.5207%" y="1749" width="0.0895%" height="15" fill="rgb(205,88,11)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="10.5207%" y="1733" width="0.0895%" height="15" fill="rgb(252,69,26)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="10.5207%" y="1717" width="0.0895%" height="15" fill="rgb(246,123,37)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1727.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="10.5207%" y="1701" width="0.0895%" height="15" fill="rgb(212,205,5)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="10.5207%" y="1685" width="0.0895%" height="15" fill="rgb(253,148,0)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="10.5207%" y="1669" width="0.0895%" height="15" fill="rgb(239,22,4)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="10.5207%" y="1653" width="0.0895%" height="15" fill="rgb(226,26,53)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="10.5207%" y="1637" width="0.0895%" height="15" fill="rgb(225,229,45)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="10.5207%" y="1621" width="0.0895%" height="15" fill="rgb(220,60,37)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="10.5207%" y="1605" width="0.0895%" height="15" fill="rgb(217,180,35)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="10.5207%" y="1589" width="0.0895%" height="15" fill="rgb(229,7,53)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="10.5207%" y="1573" width="0.0895%" height="15" fill="rgb(254,137,3)" fg:x="2469" fg:w="21"/><text x="10.7707%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="10.5761%" y="1557" width="0.0341%" height="15" fill="rgb(215,140,41)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="10.5761%" y="1541" width="0.0341%" height="15" fill="rgb(250,80,15)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1551.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="10.5761%" y="1525" width="0.0341%" height="15" fill="rgb(252,191,6)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="10.5761%" y="1509" width="0.0341%" height="15" fill="rgb(246,217,18)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="10.5761%" y="1493" width="0.0341%" height="15" fill="rgb(223,93,7)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="10.5761%" y="1477" width="0.0341%" height="15" fill="rgb(225,55,52)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="10.5761%" y="1461" width="0.0341%" height="15" fill="rgb(240,31,24)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="10.5761%" y="1445" width="0.0341%" height="15" fill="rgb(205,56,52)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="10.5761%" y="1429" width="0.0341%" height="15" fill="rgb(246,146,12)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="10.5761%" y="1413" width="0.0341%" height="15" fill="rgb(239,84,36)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="10.5761%" y="1397" width="0.0341%" height="15" fill="rgb(207,41,40)" fg:x="2482" fg:w="8"/><text x="10.8261%" y="1407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="10.5889%" y="1381" width="0.0213%" height="15" fill="rgb(241,179,25)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1391.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="10.5889%" y="1365" width="0.0213%" height="15" fill="rgb(210,0,34)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1375.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="10.5889%" y="1349" width="0.0213%" height="15" fill="rgb(225,217,29)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1359.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="10.5889%" y="1333" width="0.0213%" height="15" fill="rgb(216,191,38)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="10.5889%" y="1317" width="0.0213%" height="15" fill="rgb(232,140,52)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="10.5889%" y="1301" width="0.0213%" height="15" fill="rgb(223,158,51)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.5889%" y="1285" width="0.0213%" height="15" fill="rgb(235,29,51)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.5889%" y="1269" width="0.0213%" height="15" fill="rgb(215,181,18)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="10.5889%" y="1253" width="0.0213%" height="15" fill="rgb(227,125,34)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.5889%" y="1237" width="0.0213%" height="15" fill="rgb(230,197,49)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="10.5889%" y="1221" width="0.0213%" height="15" fill="rgb(239,141,16)" fg:x="2485" fg:w="5"/><text x="10.8389%" y="1231.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="10.5207%" y="2133" width="0.0937%" height="15" fill="rgb(225,105,43)" fg:x="2469" fg:w="22"/><text x="10.7707%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="10.5207%" y="2117" width="0.0937%" height="15" fill="rgb(214,131,14)" fg:x="2469" fg:w="22"/><text x="10.7707%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="10.5207%" y="2101" width="0.0937%" height="15" fill="rgb(229,177,11)" fg:x="2469" fg:w="22"/><text x="10.7707%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="10.5207%" y="2085" width="0.0937%" height="15" fill="rgb(231,180,14)" fg:x="2469" fg:w="22"/><text x="10.7707%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="10.5207%" y="2069" width="0.0937%" height="15" fill="rgb(232,88,2)" fg:x="2469" fg:w="22"/><text x="10.7707%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="10.5207%" y="2053" width="0.0937%" height="15" fill="rgb(205,220,8)" fg:x="2469" fg:w="22"/><text x="10.7707%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="10.5207%" y="2037" width="0.0937%" height="15" fill="rgb(225,23,53)" fg:x="2469" fg:w="22"/><text x="10.7707%" y="2047.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (26 samples, 0.11%)</title><rect x="10.5207%" y="2421" width="0.1108%" height="15" fill="rgb(213,62,29)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.11%)</title><rect x="10.5207%" y="2405" width="0.1108%" height="15" fill="rgb(227,75,7)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (26 samples, 0.11%)</title><rect x="10.5207%" y="2389" width="0.1108%" height="15" fill="rgb(207,105,14)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (26 samples, 0.11%)</title><rect x="10.5207%" y="2373" width="0.1108%" height="15" fill="rgb(245,62,29)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (26 samples, 0.11%)</title><rect x="10.5207%" y="2357" width="0.1108%" height="15" fill="rgb(236,202,4)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (26 samples, 0.11%)</title><rect x="10.5207%" y="2341" width="0.1108%" height="15" fill="rgb(250,67,1)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="10.5207%" y="2325" width="0.1108%" height="15" fill="rgb(253,115,44)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="10.5207%" y="2309" width="0.1108%" height="15" fill="rgb(251,139,18)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2319.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="10.5207%" y="2293" width="0.1108%" height="15" fill="rgb(218,22,32)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="10.5207%" y="2277" width="0.1108%" height="15" fill="rgb(243,53,5)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="10.5207%" y="2261" width="0.1108%" height="15" fill="rgb(227,56,16)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (26 samples, 0.11%)</title><rect x="10.5207%" y="2245" width="0.1108%" height="15" fill="rgb(245,53,0)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="10.5207%" y="2229" width="0.1108%" height="15" fill="rgb(216,170,35)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="10.5207%" y="2213" width="0.1108%" height="15" fill="rgb(211,200,8)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="10.5207%" y="2197" width="0.1108%" height="15" fill="rgb(228,204,44)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="10.5207%" y="2181" width="0.1108%" height="15" fill="rgb(214,121,17)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="10.5207%" y="2165" width="0.1108%" height="15" fill="rgb(233,64,38)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="10.5207%" y="2149" width="0.1108%" height="15" fill="rgb(253,54,19)" fg:x="2469" fg:w="26"/><text x="10.7707%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="10.6145%" y="2133" width="0.0170%" height="15" fill="rgb(253,94,18)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="10.6145%" y="2117" width="0.0170%" height="15" fill="rgb(227,57,52)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="10.6145%" y="2101" width="0.0170%" height="15" fill="rgb(230,228,50)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="10.6145%" y="2085" width="0.0170%" height="15" fill="rgb(217,205,27)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="10.6145%" y="2069" width="0.0170%" height="15" fill="rgb(252,71,50)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="10.6145%" y="2053" width="0.0170%" height="15" fill="rgb(209,86,4)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.6145%" y="2037" width="0.0170%" height="15" fill="rgb(229,94,0)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.6145%" y="2021" width="0.0170%" height="15" fill="rgb(252,223,21)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.6145%" y="2005" width="0.0170%" height="15" fill="rgb(230,210,4)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.6145%" y="1989" width="0.0170%" height="15" fill="rgb(240,149,38)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.6145%" y="1973" width="0.0170%" height="15" fill="rgb(254,105,20)" fg:x="2491" fg:w="4"/><text x="10.8645%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="10.6400%" y="1957" width="0.0128%" height="15" fill="rgb(253,87,46)" fg:x="2497" fg:w="3"/><text x="10.8900%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="10.6400%" y="1941" width="0.0128%" height="15" fill="rgb(253,116,33)" fg:x="2497" fg:w="3"/><text x="10.8900%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.6400%" y="1925" width="0.0128%" height="15" fill="rgb(229,198,5)" fg:x="2497" fg:w="3"/><text x="10.8900%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.6400%" y="1909" width="0.0128%" height="15" fill="rgb(242,38,37)" fg:x="2497" fg:w="3"/><text x="10.8900%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="10.6400%" y="1893" width="0.0128%" height="15" fill="rgb(242,69,53)" fg:x="2497" fg:w="3"/><text x="10.8900%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.6400%" y="1877" width="0.0128%" height="15" fill="rgb(249,80,16)" fg:x="2497" fg:w="3"/><text x="10.8900%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="10.6400%" y="1861" width="0.0128%" height="15" fill="rgb(206,128,11)" fg:x="2497" fg:w="3"/><text x="10.8900%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="10.6400%" y="2245" width="0.0256%" height="15" fill="rgb(212,35,20)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="10.6400%" y="2229" width="0.0256%" height="15" fill="rgb(236,79,13)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="10.6400%" y="2213" width="0.0256%" height="15" fill="rgb(233,123,3)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="10.6400%" y="2197" width="0.0256%" height="15" fill="rgb(214,93,52)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="10.6400%" y="2181" width="0.0256%" height="15" fill="rgb(251,37,40)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="10.6400%" y="2165" width="0.0256%" height="15" fill="rgb(227,80,54)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="10.6400%" y="2149" width="0.0256%" height="15" fill="rgb(254,48,11)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="10.6400%" y="2133" width="0.0256%" height="15" fill="rgb(235,193,26)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2143.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="10.6400%" y="2117" width="0.0256%" height="15" fill="rgb(229,99,21)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="10.6400%" y="2101" width="0.0256%" height="15" fill="rgb(211,140,41)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="10.6400%" y="2085" width="0.0256%" height="15" fill="rgb(240,227,30)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="10.6400%" y="2069" width="0.0256%" height="15" fill="rgb(215,224,45)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="10.6400%" y="2053" width="0.0256%" height="15" fill="rgb(206,123,31)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="10.6400%" y="2037" width="0.0256%" height="15" fill="rgb(210,138,16)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="10.6400%" y="2021" width="0.0256%" height="15" fill="rgb(228,57,28)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="10.6400%" y="2005" width="0.0256%" height="15" fill="rgb(242,170,10)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="10.6400%" y="1989" width="0.0256%" height="15" fill="rgb(228,214,39)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="10.6400%" y="1973" width="0.0256%" height="15" fill="rgb(218,179,33)" fg:x="2497" fg:w="6"/><text x="10.8900%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="10.6528%" y="1957" width="0.0128%" height="15" fill="rgb(235,193,39)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="10.6528%" y="1941" width="0.0128%" height="15" fill="rgb(219,221,36)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1951.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="10.6528%" y="1925" width="0.0128%" height="15" fill="rgb(248,218,19)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="10.6528%" y="1909" width="0.0128%" height="15" fill="rgb(205,50,9)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="10.6528%" y="1893" width="0.0128%" height="15" fill="rgb(238,81,28)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="10.6528%" y="1877" width="0.0128%" height="15" fill="rgb(235,110,19)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.6528%" y="1861" width="0.0128%" height="15" fill="rgb(214,7,14)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.6528%" y="1845" width="0.0128%" height="15" fill="rgb(211,77,3)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="10.6528%" y="1829" width="0.0128%" height="15" fill="rgb(229,5,9)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.6528%" y="1813" width="0.0128%" height="15" fill="rgb(225,90,11)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="10.6528%" y="1797" width="0.0128%" height="15" fill="rgb(242,56,8)" fg:x="2500" fg:w="3"/><text x="10.9028%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="10.6741%" y="2069" width="0.0170%" height="15" fill="rgb(249,212,39)" fg:x="2505" fg:w="4"/><text x="10.9241%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="10.6741%" y="2053" width="0.0170%" height="15" fill="rgb(236,90,9)" fg:x="2505" fg:w="4"/><text x="10.9241%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.6741%" y="2037" width="0.0170%" height="15" fill="rgb(206,88,35)" fg:x="2505" fg:w="4"/><text x="10.9241%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.6741%" y="2021" width="0.0170%" height="15" fill="rgb(205,126,30)" fg:x="2505" fg:w="4"/><text x="10.9241%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.6741%" y="2005" width="0.0170%" height="15" fill="rgb(230,176,12)" fg:x="2505" fg:w="4"/><text x="10.9241%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.6741%" y="1989" width="0.0170%" height="15" fill="rgb(243,19,9)" fg:x="2505" fg:w="4"/><text x="10.9241%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.6741%" y="1973" width="0.0170%" height="15" fill="rgb(245,171,17)" fg:x="2505" fg:w="4"/><text x="10.9241%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (65 samples, 0.28%)</title><rect x="10.4227%" y="2885" width="0.2770%" height="15" fill="rgb(227,52,21)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (65 samples, 0.28%)</title><rect x="10.4227%" y="2869" width="0.2770%" height="15" fill="rgb(238,69,14)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2879.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (65 samples, 0.28%)</title><rect x="10.4227%" y="2853" width="0.2770%" height="15" fill="rgb(241,156,39)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2863.50"></text></g><g><title>rayon_core::job::JobRef::execute (65 samples, 0.28%)</title><rect x="10.4227%" y="2837" width="0.2770%" height="15" fill="rgb(212,227,28)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2847.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (65 samples, 0.28%)</title><rect x="10.4227%" y="2821" width="0.2770%" height="15" fill="rgb(209,118,27)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2831.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (65 samples, 0.28%)</title><rect x="10.4227%" y="2805" width="0.2770%" height="15" fill="rgb(226,102,5)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (65 samples, 0.28%)</title><rect x="10.4227%" y="2789" width="0.2770%" height="15" fill="rgb(223,34,3)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (65 samples, 0.28%)</title><rect x="10.4227%" y="2773" width="0.2770%" height="15" fill="rgb(221,81,38)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2783.50"></text></g><g><title>std::panicking::try (65 samples, 0.28%)</title><rect x="10.4227%" y="2757" width="0.2770%" height="15" fill="rgb(236,219,28)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (65 samples, 0.28%)</title><rect x="10.4227%" y="2741" width="0.2770%" height="15" fill="rgb(213,200,14)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (65 samples, 0.28%)</title><rect x="10.4227%" y="2725" width="0.2770%" height="15" fill="rgb(240,33,19)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2735.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (65 samples, 0.28%)</title><rect x="10.4227%" y="2709" width="0.2770%" height="15" fill="rgb(233,113,27)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (65 samples, 0.28%)</title><rect x="10.4227%" y="2693" width="0.2770%" height="15" fill="rgb(220,221,18)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (65 samples, 0.28%)</title><rect x="10.4227%" y="2677" width="0.2770%" height="15" fill="rgb(238,92,8)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.28%)</title><rect x="10.4227%" y="2661" width="0.2770%" height="15" fill="rgb(222,164,16)" fg:x="2446" fg:w="65"/><text x="10.6727%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (63 samples, 0.27%)</title><rect x="10.4312%" y="2645" width="0.2685%" height="15" fill="rgb(241,119,3)" fg:x="2448" fg:w="63"/><text x="10.6812%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (63 samples, 0.27%)</title><rect x="10.4312%" y="2629" width="0.2685%" height="15" fill="rgb(241,44,8)" fg:x="2448" fg:w="63"/><text x="10.6812%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (63 samples, 0.27%)</title><rect x="10.4312%" y="2613" width="0.2685%" height="15" fill="rgb(230,36,40)" fg:x="2448" fg:w="63"/><text x="10.6812%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (45 samples, 0.19%)</title><rect x="10.5079%" y="2597" width="0.1918%" height="15" fill="rgb(243,16,36)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (45 samples, 0.19%)</title><rect x="10.5079%" y="2581" width="0.1918%" height="15" fill="rgb(231,4,26)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2591.50"></text></g><g><title>std::panicking::try (45 samples, 0.19%)</title><rect x="10.5079%" y="2565" width="0.1918%" height="15" fill="rgb(240,9,31)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (45 samples, 0.19%)</title><rect x="10.5079%" y="2549" width="0.1918%" height="15" fill="rgb(207,173,15)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (45 samples, 0.19%)</title><rect x="10.5079%" y="2533" width="0.1918%" height="15" fill="rgb(224,192,53)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (45 samples, 0.19%)</title><rect x="10.5079%" y="2517" width="0.1918%" height="15" fill="rgb(223,67,28)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (45 samples, 0.19%)</title><rect x="10.5079%" y="2501" width="0.1918%" height="15" fill="rgb(211,20,47)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.19%)</title><rect x="10.5079%" y="2485" width="0.1918%" height="15" fill="rgb(240,228,2)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (45 samples, 0.19%)</title><rect x="10.5079%" y="2469" width="0.1918%" height="15" fill="rgb(248,151,12)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (45 samples, 0.19%)</title><rect x="10.5079%" y="2453" width="0.1918%" height="15" fill="rgb(244,8,39)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (45 samples, 0.19%)</title><rect x="10.5079%" y="2437" width="0.1918%" height="15" fill="rgb(222,26,8)" fg:x="2466" fg:w="45"/><text x="10.7579%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="10.6315%" y="2421" width="0.0682%" height="15" fill="rgb(213,106,44)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="10.6315%" y="2405" width="0.0682%" height="15" fill="rgb(214,129,20)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2415.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="10.6315%" y="2389" width="0.0682%" height="15" fill="rgb(212,32,13)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="10.6315%" y="2373" width="0.0682%" height="15" fill="rgb(208,168,33)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="10.6315%" y="2357" width="0.0682%" height="15" fill="rgb(231,207,8)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="10.6315%" y="2341" width="0.0682%" height="15" fill="rgb(235,219,23)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="10.6315%" y="2325" width="0.0682%" height="15" fill="rgb(226,216,26)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="10.6315%" y="2309" width="0.0682%" height="15" fill="rgb(239,137,16)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="10.6315%" y="2293" width="0.0682%" height="15" fill="rgb(207,12,36)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="10.6315%" y="2277" width="0.0682%" height="15" fill="rgb(210,214,24)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="10.6315%" y="2261" width="0.0682%" height="15" fill="rgb(206,56,30)" fg:x="2495" fg:w="16"/><text x="10.8815%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="10.6656%" y="2245" width="0.0341%" height="15" fill="rgb(228,143,26)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="10.6656%" y="2229" width="0.0341%" height="15" fill="rgb(216,218,46)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2239.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="10.6656%" y="2213" width="0.0341%" height="15" fill="rgb(206,6,19)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="10.6656%" y="2197" width="0.0341%" height="15" fill="rgb(239,177,51)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="10.6656%" y="2181" width="0.0341%" height="15" fill="rgb(216,55,25)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="10.6656%" y="2165" width="0.0341%" height="15" fill="rgb(231,163,29)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="10.6656%" y="2149" width="0.0341%" height="15" fill="rgb(232,149,50)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="10.6656%" y="2133" width="0.0341%" height="15" fill="rgb(223,142,48)" fg:x="2503" fg:w="8"/><text x="10.9156%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="10.6741%" y="2117" width="0.0256%" height="15" fill="rgb(245,83,23)" fg:x="2505" fg:w="6"/><text x="10.9241%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="10.6741%" y="2101" width="0.0256%" height="15" fill="rgb(224,63,2)" fg:x="2505" fg:w="6"/><text x="10.9241%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="10.6741%" y="2085" width="0.0256%" height="15" fill="rgb(218,65,53)" fg:x="2505" fg:w="6"/><text x="10.9241%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (10 samples, 0.04%)</title><rect x="10.7039%" y="2565" width="0.0426%" height="15" fill="rgb(221,84,29)" fg:x="2512" fg:w="10"/><text x="10.9539%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (10 samples, 0.04%)</title><rect x="10.7039%" y="2549" width="0.0426%" height="15" fill="rgb(234,0,32)" fg:x="2512" fg:w="10"/><text x="10.9539%" y="2559.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="10.7125%" y="2533" width="0.0341%" height="15" fill="rgb(206,20,16)" fg:x="2514" fg:w="8"/><text x="10.9625%" y="2543.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="10.7167%" y="2517" width="0.0298%" height="15" fill="rgb(244,172,18)" fg:x="2515" fg:w="7"/><text x="10.9667%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (6 samples, 0.03%)</title><rect x="10.7465%" y="2565" width="0.0256%" height="15" fill="rgb(254,133,1)" fg:x="2522" fg:w="6"/><text x="10.9965%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (6 samples, 0.03%)</title><rect x="10.7465%" y="2549" width="0.0256%" height="15" fill="rgb(222,206,41)" fg:x="2522" fg:w="6"/><text x="10.9965%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (21 samples, 0.09%)</title><rect x="10.6997%" y="2581" width="0.0895%" height="15" fill="rgb(212,3,42)" fg:x="2511" fg:w="21"/><text x="10.9497%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="10.7721%" y="2565" width="0.0170%" height="15" fill="rgb(241,11,4)" fg:x="2528" fg:w="4"/><text x="11.0221%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="10.7721%" y="2549" width="0.0170%" height="15" fill="rgb(205,19,26)" fg:x="2528" fg:w="4"/><text x="11.0221%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (23 samples, 0.10%)</title><rect x="10.6997%" y="2757" width="0.0980%" height="15" fill="rgb(210,179,32)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2767.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (23 samples, 0.10%)</title><rect x="10.6997%" y="2741" width="0.0980%" height="15" fill="rgb(227,116,49)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (23 samples, 0.10%)</title><rect x="10.6997%" y="2725" width="0.0980%" height="15" fill="rgb(211,146,6)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (23 samples, 0.10%)</title><rect x="10.6997%" y="2709" width="0.0980%" height="15" fill="rgb(219,44,39)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (23 samples, 0.10%)</title><rect x="10.6997%" y="2693" width="0.0980%" height="15" fill="rgb(234,128,11)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (23 samples, 0.10%)</title><rect x="10.6997%" y="2677" width="0.0980%" height="15" fill="rgb(220,183,53)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (23 samples, 0.10%)</title><rect x="10.6997%" y="2661" width="0.0980%" height="15" fill="rgb(213,219,32)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (23 samples, 0.10%)</title><rect x="10.6997%" y="2645" width="0.0980%" height="15" fill="rgb(232,156,16)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (23 samples, 0.10%)</title><rect x="10.6997%" y="2629" width="0.0980%" height="15" fill="rgb(246,135,34)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (23 samples, 0.10%)</title><rect x="10.6997%" y="2613" width="0.0980%" height="15" fill="rgb(241,99,0)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (23 samples, 0.10%)</title><rect x="10.6997%" y="2597" width="0.0980%" height="15" fill="rgb(222,103,45)" fg:x="2511" fg:w="23"/><text x="10.9497%" y="2607.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="10.7977%" y="2453" width="0.0170%" height="15" fill="rgb(212,57,4)" fg:x="2534" fg:w="4"/><text x="11.0477%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="10.7977%" y="2437" width="0.0170%" height="15" fill="rgb(215,68,47)" fg:x="2534" fg:w="4"/><text x="11.0477%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="10.7977%" y="2645" width="0.0256%" height="15" fill="rgb(230,84,2)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="10.7977%" y="2629" width="0.0256%" height="15" fill="rgb(220,102,14)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="10.7977%" y="2613" width="0.0256%" height="15" fill="rgb(240,10,32)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="10.7977%" y="2597" width="0.0256%" height="15" fill="rgb(215,47,27)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="10.7977%" y="2581" width="0.0256%" height="15" fill="rgb(233,188,43)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="10.7977%" y="2565" width="0.0256%" height="15" fill="rgb(253,190,1)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="10.7977%" y="2549" width="0.0256%" height="15" fill="rgb(206,114,52)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="10.7977%" y="2533" width="0.0256%" height="15" fill="rgb(233,120,37)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="10.7977%" y="2517" width="0.0256%" height="15" fill="rgb(214,52,39)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="10.7977%" y="2501" width="0.0256%" height="15" fill="rgb(223,80,29)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="10.7977%" y="2485" width="0.0256%" height="15" fill="rgb(230,101,40)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="10.7977%" y="2469" width="0.0256%" height="15" fill="rgb(219,211,8)" fg:x="2534" fg:w="6"/><text x="11.0477%" y="2479.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="10.8232%" y="2597" width="0.0213%" height="15" fill="rgb(252,126,28)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="10.8232%" y="2581" width="0.0213%" height="15" fill="rgb(215,56,38)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.8232%" y="2565" width="0.0213%" height="15" fill="rgb(249,55,44)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.8232%" y="2549" width="0.0213%" height="15" fill="rgb(220,221,32)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="10.8232%" y="2533" width="0.0213%" height="15" fill="rgb(212,216,41)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="10.8232%" y="2517" width="0.0213%" height="15" fill="rgb(228,213,43)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="10.8232%" y="2501" width="0.0213%" height="15" fill="rgb(211,31,26)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="10.8232%" y="2485" width="0.0213%" height="15" fill="rgb(229,202,19)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="10.8232%" y="2469" width="0.0213%" height="15" fill="rgb(229,105,46)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="10.8232%" y="2453" width="0.0213%" height="15" fill="rgb(235,108,1)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="10.8232%" y="2437" width="0.0213%" height="15" fill="rgb(245,111,35)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="10.8232%" y="2421" width="0.0213%" height="15" fill="rgb(219,185,31)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="10.8232%" y="2405" width="0.0213%" height="15" fill="rgb(214,4,43)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="10.8232%" y="2389" width="0.0213%" height="15" fill="rgb(235,227,40)" fg:x="2540" fg:w="5"/><text x="11.0732%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="10.8318%" y="2373" width="0.0128%" height="15" fill="rgb(230,88,30)" fg:x="2542" fg:w="3"/><text x="11.0818%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="10.7977%" y="2709" width="0.0511%" height="15" fill="rgb(216,217,1)" fg:x="2534" fg:w="12"/><text x="11.0477%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="10.7977%" y="2693" width="0.0511%" height="15" fill="rgb(248,139,50)" fg:x="2534" fg:w="12"/><text x="11.0477%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="10.7977%" y="2677" width="0.0511%" height="15" fill="rgb(233,1,21)" fg:x="2534" fg:w="12"/><text x="11.0477%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="10.7977%" y="2661" width="0.0511%" height="15" fill="rgb(215,183,12)" fg:x="2534" fg:w="12"/><text x="11.0477%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="10.8232%" y="2645" width="0.0256%" height="15" fill="rgb(229,104,42)" fg:x="2540" fg:w="6"/><text x="11.0732%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="10.8232%" y="2629" width="0.0256%" height="15" fill="rgb(243,34,48)" fg:x="2540" fg:w="6"/><text x="11.0732%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="10.8232%" y="2613" width="0.0256%" height="15" fill="rgb(239,11,44)" fg:x="2540" fg:w="6"/><text x="11.0732%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="10.8488%" y="2581" width="0.0170%" height="15" fill="rgb(231,98,35)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="10.8488%" y="2565" width="0.0170%" height="15" fill="rgb(233,28,25)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="10.8488%" y="2549" width="0.0170%" height="15" fill="rgb(234,123,11)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="10.8488%" y="2533" width="0.0170%" height="15" fill="rgb(220,69,3)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="10.8488%" y="2517" width="0.0170%" height="15" fill="rgb(214,64,36)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="10.8488%" y="2501" width="0.0170%" height="15" fill="rgb(211,138,32)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="10.8488%" y="2485" width="0.0170%" height="15" fill="rgb(213,118,47)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="10.8488%" y="2469" width="0.0170%" height="15" fill="rgb(243,124,49)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="10.8488%" y="2453" width="0.0170%" height="15" fill="rgb(221,30,28)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="10.8488%" y="2437" width="0.0170%" height="15" fill="rgb(246,37,13)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="10.8488%" y="2421" width="0.0170%" height="15" fill="rgb(249,66,14)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="10.8488%" y="2405" width="0.0170%" height="15" fill="rgb(213,166,5)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="10.8488%" y="2389" width="0.0170%" height="15" fill="rgb(221,66,24)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="10.8488%" y="2373" width="0.0170%" height="15" fill="rgb(210,132,17)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2383.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="10.8488%" y="2357" width="0.0170%" height="15" fill="rgb(243,202,5)" fg:x="2546" fg:w="4"/><text x="11.0988%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (215 samples, 0.92%)</title><rect x="9.9625%" y="2997" width="0.9161%" height="15" fill="rgb(233,70,48)" fg:x="2338" fg:w="215"/><text x="10.2125%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (215 samples, 0.92%)</title><rect x="9.9625%" y="2981" width="0.9161%" height="15" fill="rgb(238,41,26)" fg:x="2338" fg:w="215"/><text x="10.2125%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (215 samples, 0.92%)</title><rect x="9.9625%" y="2965" width="0.9161%" height="15" fill="rgb(241,19,31)" fg:x="2338" fg:w="215"/><text x="10.2125%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (215 samples, 0.92%)</title><rect x="9.9625%" y="2949" width="0.9161%" height="15" fill="rgb(214,76,10)" fg:x="2338" fg:w="215"/><text x="10.2125%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (150 samples, 0.64%)</title><rect x="10.2395%" y="2933" width="0.6392%" height="15" fill="rgb(254,202,22)" fg:x="2403" fg:w="150"/><text x="10.4895%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (150 samples, 0.64%)</title><rect x="10.2395%" y="2917" width="0.6392%" height="15" fill="rgb(214,72,24)" fg:x="2403" fg:w="150"/><text x="10.4895%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (150 samples, 0.64%)</title><rect x="10.2395%" y="2901" width="0.6392%" height="15" fill="rgb(221,92,46)" fg:x="2403" fg:w="150"/><text x="10.4895%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (42 samples, 0.18%)</title><rect x="10.6997%" y="2885" width="0.1790%" height="15" fill="rgb(246,13,50)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (42 samples, 0.18%)</title><rect x="10.6997%" y="2869" width="0.1790%" height="15" fill="rgb(240,165,38)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2879.50"></text></g><g><title>std::panicking::try (42 samples, 0.18%)</title><rect x="10.6997%" y="2853" width="0.1790%" height="15" fill="rgb(241,24,51)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (42 samples, 0.18%)</title><rect x="10.6997%" y="2837" width="0.1790%" height="15" fill="rgb(227,51,44)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (42 samples, 0.18%)</title><rect x="10.6997%" y="2821" width="0.1790%" height="15" fill="rgb(231,121,3)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (42 samples, 0.18%)</title><rect x="10.6997%" y="2805" width="0.1790%" height="15" fill="rgb(245,3,41)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42 samples, 0.18%)</title><rect x="10.6997%" y="2789" width="0.1790%" height="15" fill="rgb(214,13,26)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.18%)</title><rect x="10.6997%" y="2773" width="0.1790%" height="15" fill="rgb(252,75,11)" fg:x="2511" fg:w="42"/><text x="10.9497%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="10.7977%" y="2757" width="0.0810%" height="15" fill="rgb(218,226,17)" fg:x="2534" fg:w="19"/><text x="11.0477%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="10.7977%" y="2741" width="0.0810%" height="15" fill="rgb(248,89,38)" fg:x="2534" fg:w="19"/><text x="11.0477%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="10.7977%" y="2725" width="0.0810%" height="15" fill="rgb(237,73,46)" fg:x="2534" fg:w="19"/><text x="11.0477%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="10.8488%" y="2709" width="0.0298%" height="15" fill="rgb(242,78,33)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="10.8488%" y="2693" width="0.0298%" height="15" fill="rgb(235,60,3)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2703.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="10.8488%" y="2677" width="0.0298%" height="15" fill="rgb(216,172,19)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="10.8488%" y="2661" width="0.0298%" height="15" fill="rgb(227,6,42)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="10.8488%" y="2645" width="0.0298%" height="15" fill="rgb(223,207,42)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="10.8488%" y="2629" width="0.0298%" height="15" fill="rgb(246,138,30)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="10.8488%" y="2613" width="0.0298%" height="15" fill="rgb(251,199,47)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="10.8488%" y="2597" width="0.0298%" height="15" fill="rgb(228,218,44)" fg:x="2546" fg:w="7"/><text x="11.0988%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="10.8659%" y="2581" width="0.0128%" height="15" fill="rgb(220,68,6)" fg:x="2550" fg:w="3"/><text x="11.1159%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.8659%" y="2565" width="0.0128%" height="15" fill="rgb(240,60,26)" fg:x="2550" fg:w="3"/><text x="11.1159%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="10.8659%" y="2549" width="0.0128%" height="15" fill="rgb(211,200,19)" fg:x="2550" fg:w="3"/><text x="11.1159%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="10.8786%" y="2709" width="0.0170%" height="15" fill="rgb(242,145,30)" fg:x="2553" fg:w="4"/><text x="11.1286%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="10.8786%" y="2693" width="0.0170%" height="15" fill="rgb(225,64,13)" fg:x="2553" fg:w="4"/><text x="11.1286%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="10.8786%" y="2677" width="0.0170%" height="15" fill="rgb(218,103,35)" fg:x="2553" fg:w="4"/><text x="11.1286%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.8786%" y="2661" width="0.0170%" height="15" fill="rgb(216,93,46)" fg:x="2553" fg:w="4"/><text x="11.1286%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="10.8786%" y="2645" width="0.0170%" height="15" fill="rgb(225,159,27)" fg:x="2553" fg:w="4"/><text x="11.1286%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.8786%" y="2629" width="0.0170%" height="15" fill="rgb(225,204,11)" fg:x="2553" fg:w="4"/><text x="11.1286%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="10.8786%" y="2613" width="0.0170%" height="15" fill="rgb(205,56,4)" fg:x="2553" fg:w="4"/><text x="11.1286%" y="2623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="10.8786%" y="2997" width="0.0384%" height="15" fill="rgb(206,6,35)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="3007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="10.8786%" y="2981" width="0.0384%" height="15" fill="rgb(247,73,52)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2991.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="10.8786%" y="2965" width="0.0384%" height="15" fill="rgb(246,97,4)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2975.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="10.8786%" y="2949" width="0.0384%" height="15" fill="rgb(212,37,15)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2959.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="10.8786%" y="2933" width="0.0384%" height="15" fill="rgb(208,130,40)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2943.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="10.8786%" y="2917" width="0.0384%" height="15" fill="rgb(236,55,29)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="10.8786%" y="2901" width="0.0384%" height="15" fill="rgb(209,156,45)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2911.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="10.8786%" y="2885" width="0.0384%" height="15" fill="rgb(249,107,4)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2895.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="10.8786%" y="2869" width="0.0384%" height="15" fill="rgb(227,7,13)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2879.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="10.8786%" y="2853" width="0.0384%" height="15" fill="rgb(250,129,14)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="10.8786%" y="2837" width="0.0384%" height="15" fill="rgb(229,92,13)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2847.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="10.8786%" y="2821" width="0.0384%" height="15" fill="rgb(245,98,39)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="10.8786%" y="2805" width="0.0384%" height="15" fill="rgb(234,135,48)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="10.8786%" y="2789" width="0.0384%" height="15" fill="rgb(230,98,28)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="10.8786%" y="2773" width="0.0384%" height="15" fill="rgb(223,121,0)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="10.8786%" y="2757" width="0.0384%" height="15" fill="rgb(234,173,33)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="10.8786%" y="2741" width="0.0384%" height="15" fill="rgb(245,47,8)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="10.8786%" y="2725" width="0.0384%" height="15" fill="rgb(205,17,20)" fg:x="2553" fg:w="9"/><text x="11.1286%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="10.8957%" y="2709" width="0.0213%" height="15" fill="rgb(232,151,16)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="10.8957%" y="2693" width="0.0213%" height="15" fill="rgb(208,30,32)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2703.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="10.8957%" y="2677" width="0.0213%" height="15" fill="rgb(254,26,3)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="10.8957%" y="2661" width="0.0213%" height="15" fill="rgb(240,177,30)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="10.8957%" y="2645" width="0.0213%" height="15" fill="rgb(248,76,44)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="10.8957%" y="2629" width="0.0213%" height="15" fill="rgb(241,186,54)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="10.8957%" y="2613" width="0.0213%" height="15" fill="rgb(249,171,29)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.8957%" y="2597" width="0.0213%" height="15" fill="rgb(237,151,44)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="10.8957%" y="2581" width="0.0213%" height="15" fill="rgb(228,174,30)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.8957%" y="2565" width="0.0213%" height="15" fill="rgb(252,14,37)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="10.8957%" y="2549" width="0.0213%" height="15" fill="rgb(207,111,40)" fg:x="2557" fg:w="5"/><text x="11.1457%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="10.9042%" y="2533" width="0.0128%" height="15" fill="rgb(248,171,54)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="10.9042%" y="2517" width="0.0128%" height="15" fill="rgb(211,127,2)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2527.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="10.9042%" y="2501" width="0.0128%" height="15" fill="rgb(236,87,47)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="10.9042%" y="2485" width="0.0128%" height="15" fill="rgb(223,190,45)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="10.9042%" y="2469" width="0.0128%" height="15" fill="rgb(215,5,16)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="10.9042%" y="2453" width="0.0128%" height="15" fill="rgb(252,82,33)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="10.9042%" y="2437" width="0.0128%" height="15" fill="rgb(247,213,44)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.9042%" y="2421" width="0.0128%" height="15" fill="rgb(205,196,44)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.9042%" y="2405" width="0.0128%" height="15" fill="rgb(237,96,54)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="10.9042%" y="2389" width="0.0128%" height="15" fill="rgb(230,113,34)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="10.9042%" y="2373" width="0.0128%" height="15" fill="rgb(221,224,12)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="10.9042%" y="2357" width="0.0128%" height="15" fill="rgb(219,112,44)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="10.9042%" y="2341" width="0.0128%" height="15" fill="rgb(210,31,13)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="10.9042%" y="2325" width="0.0128%" height="15" fill="rgb(230,25,16)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="10.9042%" y="2309" width="0.0128%" height="15" fill="rgb(246,108,53)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="10.9042%" y="2293" width="0.0128%" height="15" fill="rgb(241,172,50)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="10.9042%" y="2277" width="0.0128%" height="15" fill="rgb(235,141,10)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="10.9042%" y="2261" width="0.0128%" height="15" fill="rgb(220,174,43)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="10.9042%" y="2245" width="0.0128%" height="15" fill="rgb(215,181,40)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="10.9042%" y="2229" width="0.0128%" height="15" fill="rgb(230,97,2)" fg:x="2559" fg:w="3"/><text x="11.1542%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (25 samples, 0.11%)</title><rect x="10.9170%" y="2677" width="0.1065%" height="15" fill="rgb(211,25,27)" fg:x="2562" fg:w="25"/><text x="11.1670%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::exp (25 samples, 0.11%)</title><rect x="10.9170%" y="2661" width="0.1065%" height="15" fill="rgb(230,87,26)" fg:x="2562" fg:w="25"/><text x="11.1670%" y="2671.50"></text></g><g><title>exp (23 samples, 0.10%)</title><rect x="10.9255%" y="2645" width="0.0980%" height="15" fill="rgb(227,160,17)" fg:x="2564" fg:w="23"/><text x="11.1755%" y="2655.50"></text></g><g><title>[libm.so.6] (22 samples, 0.09%)</title><rect x="10.9298%" y="2629" width="0.0937%" height="15" fill="rgb(244,85,34)" fg:x="2565" fg:w="22"/><text x="11.1798%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (11 samples, 0.05%)</title><rect x="11.0235%" y="2677" width="0.0469%" height="15" fill="rgb(207,70,0)" fg:x="2587" fg:w="11"/><text x="11.2735%" y="2687.50"></text></g><g><title>core::f64::<impl f64>::recip (11 samples, 0.05%)</title><rect x="11.0235%" y="2661" width="0.0469%" height="15" fill="rgb(223,129,7)" fg:x="2587" fg:w="11"/><text x="11.2735%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (51 samples, 0.22%)</title><rect x="10.9170%" y="2693" width="0.2173%" height="15" fill="rgb(246,105,7)" fg:x="2562" fg:w="51"/><text x="11.1670%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (15 samples, 0.06%)</title><rect x="11.0704%" y="2677" width="0.0639%" height="15" fill="rgb(215,154,42)" fg:x="2598" fg:w="15"/><text x="11.3204%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::sqrt (15 samples, 0.06%)</title><rect x="11.0704%" y="2661" width="0.0639%" height="15" fill="rgb(220,215,30)" fg:x="2598" fg:w="15"/><text x="11.3204%" y="2671.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (53 samples, 0.23%)</title><rect x="10.9170%" y="2853" width="0.2258%" height="15" fill="rgb(228,81,51)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (53 samples, 0.23%)</title><rect x="10.9170%" y="2837" width="0.2258%" height="15" fill="rgb(247,71,54)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (53 samples, 0.23%)</title><rect x="10.9170%" y="2821" width="0.2258%" height="15" fill="rgb(234,176,34)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2831.50"></text></g><g><title>core::option::Option<T>::map (53 samples, 0.23%)</title><rect x="10.9170%" y="2805" width="0.2258%" height="15" fill="rgb(241,103,54)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2815.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (53 samples, 0.23%)</title><rect x="10.9170%" y="2789" width="0.2258%" height="15" fill="rgb(228,22,34)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2799.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (53 samples, 0.23%)</title><rect x="10.9170%" y="2773" width="0.2258%" height="15" fill="rgb(241,179,48)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (53 samples, 0.23%)</title><rect x="10.9170%" y="2757" width="0.2258%" height="15" fill="rgb(235,167,37)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2767.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (53 samples, 0.23%)</title><rect x="10.9170%" y="2741" width="0.2258%" height="15" fill="rgb(213,109,30)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2751.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (53 samples, 0.23%)</title><rect x="10.9170%" y="2725" width="0.2258%" height="15" fill="rgb(222,172,16)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (53 samples, 0.23%)</title><rect x="10.9170%" y="2709" width="0.2258%" height="15" fill="rgb(233,192,5)" fg:x="2562" fg:w="53"/><text x="11.1670%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (56 samples, 0.24%)</title><rect x="10.9170%" y="2869" width="0.2386%" height="15" fill="rgb(247,189,41)" fg:x="2562" fg:w="56"/><text x="11.1670%" y="2879.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="11.1428%" y="2853" width="0.0128%" height="15" fill="rgb(218,134,47)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2863.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="11.1428%" y="2837" width="0.0128%" height="15" fill="rgb(216,29,3)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="11.1428%" y="2821" width="0.0128%" height="15" fill="rgb(246,140,12)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="11.1428%" y="2805" width="0.0128%" height="15" fill="rgb(230,136,11)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2815.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="11.1428%" y="2789" width="0.0128%" height="15" fill="rgb(247,22,47)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2799.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="11.1428%" y="2773" width="0.0128%" height="15" fill="rgb(218,84,22)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2783.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="11.1428%" y="2757" width="0.0128%" height="15" fill="rgb(216,87,39)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2767.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="11.1428%" y="2741" width="0.0128%" height="15" fill="rgb(221,178,8)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2751.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="11.1428%" y="2725" width="0.0128%" height="15" fill="rgb(230,42,11)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="11.1428%" y="2709" width="0.0128%" height="15" fill="rgb(237,229,4)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2719.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="11.1428%" y="2693" width="0.0128%" height="15" fill="rgb(222,31,33)" fg:x="2615" fg:w="3"/><text x="11.3928%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (9 samples, 0.04%)</title><rect x="11.1556%" y="2565" width="0.0384%" height="15" fill="rgb(210,17,39)" fg:x="2618" fg:w="9"/><text x="11.4056%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (9 samples, 0.04%)</title><rect x="11.1556%" y="2549" width="0.0384%" height="15" fill="rgb(244,93,20)" fg:x="2618" fg:w="9"/><text x="11.4056%" y="2559.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="11.1556%" y="2533" width="0.0384%" height="15" fill="rgb(210,40,47)" fg:x="2618" fg:w="9"/><text x="11.4056%" y="2543.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="11.1599%" y="2517" width="0.0341%" height="15" fill="rgb(239,211,47)" fg:x="2619" fg:w="8"/><text x="11.4099%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="11.1940%" y="2565" width="0.0213%" height="15" fill="rgb(251,223,49)" fg:x="2627" fg:w="5"/><text x="11.4440%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="11.1940%" y="2549" width="0.0213%" height="15" fill="rgb(221,149,5)" fg:x="2627" fg:w="5"/><text x="11.4440%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (22 samples, 0.09%)</title><rect x="11.1556%" y="2757" width="0.0937%" height="15" fill="rgb(219,224,51)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2767.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (22 samples, 0.09%)</title><rect x="11.1556%" y="2741" width="0.0937%" height="15" fill="rgb(223,7,8)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (22 samples, 0.09%)</title><rect x="11.1556%" y="2725" width="0.0937%" height="15" fill="rgb(241,217,22)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (22 samples, 0.09%)</title><rect x="11.1556%" y="2709" width="0.0937%" height="15" fill="rgb(248,209,0)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (22 samples, 0.09%)</title><rect x="11.1556%" y="2693" width="0.0937%" height="15" fill="rgb(217,205,4)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (22 samples, 0.09%)</title><rect x="11.1556%" y="2677" width="0.0937%" height="15" fill="rgb(228,124,39)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (22 samples, 0.09%)</title><rect x="11.1556%" y="2661" width="0.0937%" height="15" fill="rgb(250,116,42)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (22 samples, 0.09%)</title><rect x="11.1556%" y="2645" width="0.0937%" height="15" fill="rgb(223,202,9)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (22 samples, 0.09%)</title><rect x="11.1556%" y="2629" width="0.0937%" height="15" fill="rgb(242,222,40)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (22 samples, 0.09%)</title><rect x="11.1556%" y="2613" width="0.0937%" height="15" fill="rgb(229,99,46)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (22 samples, 0.09%)</title><rect x="11.1556%" y="2597" width="0.0937%" height="15" fill="rgb(225,56,46)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2607.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (22 samples, 0.09%)</title><rect x="11.1556%" y="2581" width="0.0937%" height="15" fill="rgb(227,94,5)" fg:x="2618" fg:w="22"/><text x="11.4056%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (8 samples, 0.03%)</title><rect x="11.2153%" y="2565" width="0.0341%" height="15" fill="rgb(205,112,38)" fg:x="2632" fg:w="8"/><text x="11.4653%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (8 samples, 0.03%)</title><rect x="11.2153%" y="2549" width="0.0341%" height="15" fill="rgb(231,133,46)" fg:x="2632" fg:w="8"/><text x="11.4653%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="11.2494%" y="2469" width="0.0256%" height="15" fill="rgb(217,16,9)" fg:x="2640" fg:w="6"/><text x="11.4994%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="11.2621%" y="2453" width="0.0128%" height="15" fill="rgb(249,173,9)" fg:x="2643" fg:w="3"/><text x="11.5121%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="11.2621%" y="2437" width="0.0128%" height="15" fill="rgb(205,163,53)" fg:x="2643" fg:w="3"/><text x="11.5121%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="11.2494%" y="2645" width="0.0298%" height="15" fill="rgb(217,54,41)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="11.2494%" y="2629" width="0.0298%" height="15" fill="rgb(228,216,12)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="11.2494%" y="2613" width="0.0298%" height="15" fill="rgb(244,228,15)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="11.2494%" y="2597" width="0.0298%" height="15" fill="rgb(221,176,53)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="11.2494%" y="2581" width="0.0298%" height="15" fill="rgb(205,94,34)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="11.2494%" y="2565" width="0.0298%" height="15" fill="rgb(213,110,48)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="11.2494%" y="2549" width="0.0298%" height="15" fill="rgb(236,142,28)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="11.2494%" y="2533" width="0.0298%" height="15" fill="rgb(225,135,29)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="11.2494%" y="2517" width="0.0298%" height="15" fill="rgb(252,45,31)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="11.2494%" y="2501" width="0.0298%" height="15" fill="rgb(211,187,50)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="11.2494%" y="2485" width="0.0298%" height="15" fill="rgb(229,109,7)" fg:x="2640" fg:w="7"/><text x="11.4994%" y="2495.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="11.2792%" y="2373" width="0.0128%" height="15" fill="rgb(251,131,51)" fg:x="2647" fg:w="3"/><text x="11.5292%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="11.2792%" y="2597" width="0.0170%" height="15" fill="rgb(251,180,35)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="11.2792%" y="2581" width="0.0170%" height="15" fill="rgb(211,46,32)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="11.2792%" y="2565" width="0.0170%" height="15" fill="rgb(248,123,17)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.2792%" y="2549" width="0.0170%" height="15" fill="rgb(227,141,18)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="11.2792%" y="2533" width="0.0170%" height="15" fill="rgb(216,102,9)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="11.2792%" y="2517" width="0.0170%" height="15" fill="rgb(253,47,13)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="11.2792%" y="2501" width="0.0170%" height="15" fill="rgb(226,93,23)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="11.2792%" y="2485" width="0.0170%" height="15" fill="rgb(247,104,17)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="11.2792%" y="2469" width="0.0170%" height="15" fill="rgb(233,203,26)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="11.2792%" y="2453" width="0.0170%" height="15" fill="rgb(244,98,49)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="11.2792%" y="2437" width="0.0170%" height="15" fill="rgb(235,134,22)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="11.2792%" y="2421" width="0.0170%" height="15" fill="rgb(221,70,32)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="11.2792%" y="2405" width="0.0170%" height="15" fill="rgb(238,15,50)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="11.2792%" y="2389" width="0.0170%" height="15" fill="rgb(215,221,48)" fg:x="2647" fg:w="4"/><text x="11.5292%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="11.2494%" y="2709" width="0.0554%" height="15" fill="rgb(236,73,3)" fg:x="2640" fg:w="13"/><text x="11.4994%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="11.2494%" y="2693" width="0.0554%" height="15" fill="rgb(250,107,11)" fg:x="2640" fg:w="13"/><text x="11.4994%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="11.2494%" y="2677" width="0.0554%" height="15" fill="rgb(242,39,14)" fg:x="2640" fg:w="13"/><text x="11.4994%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="11.2494%" y="2661" width="0.0554%" height="15" fill="rgb(248,164,37)" fg:x="2640" fg:w="13"/><text x="11.4994%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="11.2792%" y="2645" width="0.0256%" height="15" fill="rgb(217,60,12)" fg:x="2647" fg:w="6"/><text x="11.5292%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="11.2792%" y="2629" width="0.0256%" height="15" fill="rgb(240,125,29)" fg:x="2647" fg:w="6"/><text x="11.5292%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="11.2792%" y="2613" width="0.0256%" height="15" fill="rgb(208,207,28)" fg:x="2647" fg:w="6"/><text x="11.5292%" y="2623.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="11.3133%" y="2389" width="0.0128%" height="15" fill="rgb(209,159,27)" fg:x="2655" fg:w="3"/><text x="11.5633%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="11.3133%" y="2373" width="0.0128%" height="15" fill="rgb(251,176,53)" fg:x="2655" fg:w="3"/><text x="11.5633%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="11.3090%" y="2405" width="0.0298%" height="15" fill="rgb(211,85,7)" fg:x="2654" fg:w="7"/><text x="11.5590%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="11.3261%" y="2389" width="0.0128%" height="15" fill="rgb(216,64,54)" fg:x="2658" fg:w="3"/><text x="11.5761%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="11.3261%" y="2373" width="0.0128%" height="15" fill="rgb(217,54,24)" fg:x="2658" fg:w="3"/><text x="11.5761%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="11.3090%" y="2581" width="0.0384%" height="15" fill="rgb(208,206,53)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="11.3090%" y="2565" width="0.0384%" height="15" fill="rgb(251,74,39)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="11.3090%" y="2549" width="0.0384%" height="15" fill="rgb(226,47,5)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="11.3090%" y="2533" width="0.0384%" height="15" fill="rgb(234,111,33)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="11.3090%" y="2517" width="0.0384%" height="15" fill="rgb(251,14,10)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="11.3090%" y="2501" width="0.0384%" height="15" fill="rgb(232,43,0)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="11.3090%" y="2485" width="0.0384%" height="15" fill="rgb(222,68,43)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="11.3090%" y="2469" width="0.0384%" height="15" fill="rgb(217,24,23)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="11.3090%" y="2453" width="0.0384%" height="15" fill="rgb(229,209,14)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="11.3090%" y="2437" width="0.0384%" height="15" fill="rgb(250,149,48)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="11.3090%" y="2421" width="0.0384%" height="15" fill="rgb(210,120,37)" fg:x="2654" fg:w="9"/><text x="11.5590%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (46 samples, 0.20%)</title><rect x="11.1556%" y="2821" width="0.1960%" height="15" fill="rgb(210,21,8)" fg:x="2618" fg:w="46"/><text x="11.4056%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (46 samples, 0.20%)</title><rect x="11.1556%" y="2805" width="0.1960%" height="15" fill="rgb(243,145,7)" fg:x="2618" fg:w="46"/><text x="11.4056%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46 samples, 0.20%)</title><rect x="11.1556%" y="2789" width="0.1960%" height="15" fill="rgb(238,178,32)" fg:x="2618" fg:w="46"/><text x="11.4056%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.20%)</title><rect x="11.1556%" y="2773" width="0.1960%" height="15" fill="rgb(222,4,10)" fg:x="2618" fg:w="46"/><text x="11.4056%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="11.2494%" y="2757" width="0.1023%" height="15" fill="rgb(239,7,37)" fg:x="2640" fg:w="24"/><text x="11.4994%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="11.2494%" y="2741" width="0.1023%" height="15" fill="rgb(215,31,37)" fg:x="2640" fg:w="24"/><text x="11.4994%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="11.2494%" y="2725" width="0.1023%" height="15" fill="rgb(224,83,33)" fg:x="2640" fg:w="24"/><text x="11.4994%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="11.3090%" y="2709" width="0.0426%" height="15" fill="rgb(239,55,3)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="11.3090%" y="2693" width="0.0426%" height="15" fill="rgb(247,92,11)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2703.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="11.3090%" y="2677" width="0.0426%" height="15" fill="rgb(239,200,7)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="11.3090%" y="2661" width="0.0426%" height="15" fill="rgb(227,115,8)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="11.3090%" y="2645" width="0.0426%" height="15" fill="rgb(215,189,27)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="11.3090%" y="2629" width="0.0426%" height="15" fill="rgb(251,216,39)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="11.3090%" y="2613" width="0.0426%" height="15" fill="rgb(207,29,47)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="11.3090%" y="2597" width="0.0426%" height="15" fill="rgb(210,71,34)" fg:x="2654" fg:w="10"/><text x="11.5590%" y="2607.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="11.3559%" y="2501" width="0.0469%" height="15" fill="rgb(253,217,51)" fg:x="2665" fg:w="11"/><text x="11.6059%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="11.3559%" y="2485" width="0.0469%" height="15" fill="rgb(222,117,46)" fg:x="2665" fg:w="11"/><text x="11.6059%" y="2495.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="11.3601%" y="2469" width="0.0426%" height="15" fill="rgb(226,132,6)" fg:x="2666" fg:w="10"/><text x="11.6101%" y="2479.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="11.3729%" y="2453" width="0.0298%" height="15" fill="rgb(254,145,51)" fg:x="2669" fg:w="7"/><text x="11.6229%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (7 samples, 0.03%)</title><rect x="11.4028%" y="2501" width="0.0298%" height="15" fill="rgb(231,199,27)" fg:x="2676" fg:w="7"/><text x="11.6528%" y="2511.50"></text></g><g><title>core::f64::<impl f64>::recip (7 samples, 0.03%)</title><rect x="11.4028%" y="2485" width="0.0298%" height="15" fill="rgb(245,158,14)" fg:x="2676" fg:w="7"/><text x="11.6528%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (26 samples, 0.11%)</title><rect x="11.3516%" y="2517" width="0.1108%" height="15" fill="rgb(240,113,14)" fg:x="2664" fg:w="26"/><text x="11.6016%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (7 samples, 0.03%)</title><rect x="11.4326%" y="2501" width="0.0298%" height="15" fill="rgb(210,20,13)" fg:x="2683" fg:w="7"/><text x="11.6826%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::sqrt (7 samples, 0.03%)</title><rect x="11.4326%" y="2485" width="0.0298%" height="15" fill="rgb(241,144,13)" fg:x="2683" fg:w="7"/><text x="11.6826%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (28 samples, 0.12%)</title><rect x="11.3516%" y="2693" width="0.1193%" height="15" fill="rgb(235,43,34)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2703.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (28 samples, 0.12%)</title><rect x="11.3516%" y="2677" width="0.1193%" height="15" fill="rgb(208,36,20)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (28 samples, 0.12%)</title><rect x="11.3516%" y="2661" width="0.1193%" height="15" fill="rgb(239,204,10)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (28 samples, 0.12%)</title><rect x="11.3516%" y="2645" width="0.1193%" height="15" fill="rgb(217,84,43)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2655.50"></text></g><g><title>core::option::Option<T>::map (28 samples, 0.12%)</title><rect x="11.3516%" y="2629" width="0.1193%" height="15" fill="rgb(241,170,50)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (28 samples, 0.12%)</title><rect x="11.3516%" y="2613" width="0.1193%" height="15" fill="rgb(226,205,29)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (28 samples, 0.12%)</title><rect x="11.3516%" y="2597" width="0.1193%" height="15" fill="rgb(233,113,1)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (28 samples, 0.12%)</title><rect x="11.3516%" y="2581" width="0.1193%" height="15" fill="rgb(253,98,13)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2591.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (28 samples, 0.12%)</title><rect x="11.3516%" y="2565" width="0.1193%" height="15" fill="rgb(211,115,12)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2575.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (28 samples, 0.12%)</title><rect x="11.3516%" y="2549" width="0.1193%" height="15" fill="rgb(208,12,16)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (28 samples, 0.12%)</title><rect x="11.3516%" y="2533" width="0.1193%" height="15" fill="rgb(237,193,54)" fg:x="2664" fg:w="28"/><text x="11.6016%" y="2543.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="11.4752%" y="2389" width="0.0128%" height="15" fill="rgb(243,22,42)" fg:x="2693" fg:w="3"/><text x="11.7252%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="11.4752%" y="2373" width="0.0128%" height="15" fill="rgb(233,151,36)" fg:x="2693" fg:w="3"/><text x="11.7252%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="11.4709%" y="2581" width="0.0341%" height="15" fill="rgb(237,57,45)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="11.4709%" y="2565" width="0.0341%" height="15" fill="rgb(221,88,17)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="11.4709%" y="2549" width="0.0341%" height="15" fill="rgb(230,79,15)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="11.4709%" y="2533" width="0.0341%" height="15" fill="rgb(213,57,13)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="11.4709%" y="2517" width="0.0341%" height="15" fill="rgb(222,116,39)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="11.4709%" y="2501" width="0.0341%" height="15" fill="rgb(245,107,2)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="11.4709%" y="2485" width="0.0341%" height="15" fill="rgb(238,1,10)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="11.4709%" y="2469" width="0.0341%" height="15" fill="rgb(249,4,48)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="11.4709%" y="2453" width="0.0341%" height="15" fill="rgb(223,151,18)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="11.4709%" y="2437" width="0.0341%" height="15" fill="rgb(227,65,43)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="11.4709%" y="2421" width="0.0341%" height="15" fill="rgb(218,40,45)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="11.4709%" y="2405" width="0.0341%" height="15" fill="rgb(252,121,31)" fg:x="2692" fg:w="8"/><text x="11.7209%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="11.4880%" y="2389" width="0.0170%" height="15" fill="rgb(219,158,43)" fg:x="2696" fg:w="4"/><text x="11.7380%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="11.4880%" y="2373" width="0.0170%" height="15" fill="rgb(231,162,42)" fg:x="2696" fg:w="4"/><text x="11.7380%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="11.4709%" y="2645" width="0.0384%" height="15" fill="rgb(217,179,25)" fg:x="2692" fg:w="9"/><text x="11.7209%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="11.4709%" y="2629" width="0.0384%" height="15" fill="rgb(206,212,31)" fg:x="2692" fg:w="9"/><text x="11.7209%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="11.4709%" y="2613" width="0.0384%" height="15" fill="rgb(235,144,12)" fg:x="2692" fg:w="9"/><text x="11.7209%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="11.4709%" y="2597" width="0.0384%" height="15" fill="rgb(213,51,10)" fg:x="2692" fg:w="9"/><text x="11.7209%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="11.5093%" y="2517" width="0.0298%" height="15" fill="rgb(231,145,14)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2527.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="11.5093%" y="2501" width="0.0298%" height="15" fill="rgb(235,15,28)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="11.5093%" y="2485" width="0.0298%" height="15" fill="rgb(237,206,10)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="11.5093%" y="2469" width="0.0298%" height="15" fill="rgb(236,227,27)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="11.5093%" y="2453" width="0.0298%" height="15" fill="rgb(246,83,35)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="11.5093%" y="2437" width="0.0298%" height="15" fill="rgb(220,136,24)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="11.5093%" y="2421" width="0.0298%" height="15" fill="rgb(217,3,25)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="11.5093%" y="2405" width="0.0298%" height="15" fill="rgb(239,24,14)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="11.5093%" y="2389" width="0.0298%" height="15" fill="rgb(244,16,53)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="11.5093%" y="2373" width="0.0298%" height="15" fill="rgb(208,175,44)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="11.5093%" y="2357" width="0.0298%" height="15" fill="rgb(252,18,48)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2367.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="11.5093%" y="2341" width="0.0298%" height="15" fill="rgb(234,199,32)" fg:x="2701" fg:w="7"/><text x="11.7593%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="11.5263%" y="2325" width="0.0128%" height="15" fill="rgb(225,77,54)" fg:x="2705" fg:w="3"/><text x="11.7763%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="11.5263%" y="2309" width="0.0128%" height="15" fill="rgb(225,42,25)" fg:x="2705" fg:w="3"/><text x="11.7763%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (1,233 samples, 5.25%)</title><rect x="6.2894%" y="3285" width="5.2540%" height="15" fill="rgb(242,227,46)" fg:x="1476" fg:w="1233"/><text x="6.5394%" y="3295.50">rayon_..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (1,233 samples, 5.25%)</title><rect x="6.2894%" y="3269" width="5.2540%" height="15" fill="rgb(246,197,35)" fg:x="1476" fg:w="1233"/><text x="6.5394%" y="3279.50">rayon_..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (1,233 samples, 5.25%)</title><rect x="6.2894%" y="3253" width="5.2540%" height="15" fill="rgb(215,159,26)" fg:x="1476" fg:w="1233"/><text x="6.5394%" y="3263.50">rayon:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,233 samples, 5.25%)</title><rect x="6.2894%" y="3237" width="5.2540%" height="15" fill="rgb(212,194,50)" fg:x="1476" fg:w="1233"/><text x="6.5394%" y="3247.50">rayon:..</text></g><g><title>rayon_core::join::join_context (1,200 samples, 5.11%)</title><rect x="6.4300%" y="3221" width="5.1133%" height="15" fill="rgb(246,132,1)" fg:x="1509" fg:w="1200"/><text x="6.6800%" y="3231.50">rayon_..</text></g><g><title>rayon_core::registry::in_worker (1,200 samples, 5.11%)</title><rect x="6.4300%" y="3205" width="5.1133%" height="15" fill="rgb(217,71,7)" fg:x="1509" fg:w="1200"/><text x="6.6800%" y="3215.50">rayon_..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,200 samples, 5.11%)</title><rect x="6.4300%" y="3189" width="5.1133%" height="15" fill="rgb(252,59,32)" fg:x="1509" fg:w="1200"/><text x="6.6800%" y="3199.50">rayon_..</text></g><g><title>rayon_core::unwind::halt_unwinding (426 samples, 1.82%)</title><rect x="9.7281%" y="3173" width="1.8152%" height="15" fill="rgb(253,204,25)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3183.50">r..</text></g><g><title>std::panic::catch_unwind (426 samples, 1.82%)</title><rect x="9.7281%" y="3157" width="1.8152%" height="15" fill="rgb(232,21,16)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3167.50">s..</text></g><g><title>std::panicking::try (426 samples, 1.82%)</title><rect x="9.7281%" y="3141" width="1.8152%" height="15" fill="rgb(248,90,29)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3151.50">s..</text></g><g><title>std::panicking::try::do_call (426 samples, 1.82%)</title><rect x="9.7281%" y="3125" width="1.8152%" height="15" fill="rgb(249,223,7)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3135.50">s..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (426 samples, 1.82%)</title><rect x="9.7281%" y="3109" width="1.8152%" height="15" fill="rgb(231,119,42)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3119.50"><..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (426 samples, 1.82%)</title><rect x="9.7281%" y="3093" width="1.8152%" height="15" fill="rgb(215,41,35)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3103.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (426 samples, 1.82%)</title><rect x="9.7281%" y="3077" width="1.8152%" height="15" fill="rgb(220,44,45)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3087.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (426 samples, 1.82%)</title><rect x="9.7281%" y="3061" width="1.8152%" height="15" fill="rgb(253,197,36)" fg:x="2283" fg:w="426"/><text x="9.9781%" y="3071.50">r..</text></g><g><title>rayon_core::join::join_context (371 samples, 1.58%)</title><rect x="9.9625%" y="3045" width="1.5809%" height="15" fill="rgb(245,225,54)" fg:x="2338" fg:w="371"/><text x="10.2125%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (371 samples, 1.58%)</title><rect x="9.9625%" y="3029" width="1.5809%" height="15" fill="rgb(239,94,37)" fg:x="2338" fg:w="371"/><text x="10.2125%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (371 samples, 1.58%)</title><rect x="9.9625%" y="3013" width="1.5809%" height="15" fill="rgb(242,217,10)" fg:x="2338" fg:w="371"/><text x="10.2125%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (147 samples, 0.63%)</title><rect x="10.9170%" y="2997" width="0.6264%" height="15" fill="rgb(250,193,7)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (147 samples, 0.63%)</title><rect x="10.9170%" y="2981" width="0.6264%" height="15" fill="rgb(230,104,19)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="2991.50"></text></g><g><title>std::panicking::try (147 samples, 0.63%)</title><rect x="10.9170%" y="2965" width="0.6264%" height="15" fill="rgb(230,181,4)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (147 samples, 0.63%)</title><rect x="10.9170%" y="2949" width="0.6264%" height="15" fill="rgb(216,219,49)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (147 samples, 0.63%)</title><rect x="10.9170%" y="2933" width="0.6264%" height="15" fill="rgb(254,144,0)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (147 samples, 0.63%)</title><rect x="10.9170%" y="2917" width="0.6264%" height="15" fill="rgb(205,209,38)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (147 samples, 0.63%)</title><rect x="10.9170%" y="2901" width="0.6264%" height="15" fill="rgb(240,21,42)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (147 samples, 0.63%)</title><rect x="10.9170%" y="2885" width="0.6264%" height="15" fill="rgb(241,132,3)" fg:x="2562" fg:w="147"/><text x="11.1670%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (91 samples, 0.39%)</title><rect x="11.1556%" y="2869" width="0.3878%" height="15" fill="rgb(225,14,2)" fg:x="2618" fg:w="91"/><text x="11.4056%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (91 samples, 0.39%)</title><rect x="11.1556%" y="2853" width="0.3878%" height="15" fill="rgb(210,141,35)" fg:x="2618" fg:w="91"/><text x="11.4056%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (91 samples, 0.39%)</title><rect x="11.1556%" y="2837" width="0.3878%" height="15" fill="rgb(251,14,44)" fg:x="2618" fg:w="91"/><text x="11.4056%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (45 samples, 0.19%)</title><rect x="11.3516%" y="2821" width="0.1918%" height="15" fill="rgb(247,48,18)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (45 samples, 0.19%)</title><rect x="11.3516%" y="2805" width="0.1918%" height="15" fill="rgb(225,0,40)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2815.50"></text></g><g><title>std::panicking::try (45 samples, 0.19%)</title><rect x="11.3516%" y="2789" width="0.1918%" height="15" fill="rgb(221,31,33)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (45 samples, 0.19%)</title><rect x="11.3516%" y="2773" width="0.1918%" height="15" fill="rgb(237,42,40)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (45 samples, 0.19%)</title><rect x="11.3516%" y="2757" width="0.1918%" height="15" fill="rgb(233,51,29)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (45 samples, 0.19%)</title><rect x="11.3516%" y="2741" width="0.1918%" height="15" fill="rgb(226,58,20)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (45 samples, 0.19%)</title><rect x="11.3516%" y="2725" width="0.1918%" height="15" fill="rgb(208,98,7)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.19%)</title><rect x="11.3516%" y="2709" width="0.1918%" height="15" fill="rgb(228,143,44)" fg:x="2664" fg:w="45"/><text x="11.6016%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="11.4709%" y="2693" width="0.0724%" height="15" fill="rgb(246,55,38)" fg:x="2692" fg:w="17"/><text x="11.7209%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="11.4709%" y="2677" width="0.0724%" height="15" fill="rgb(247,87,16)" fg:x="2692" fg:w="17"/><text x="11.7209%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="11.4709%" y="2661" width="0.0724%" height="15" fill="rgb(234,129,42)" fg:x="2692" fg:w="17"/><text x="11.7209%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="11.5093%" y="2645" width="0.0341%" height="15" fill="rgb(220,82,16)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="11.5093%" y="2629" width="0.0341%" height="15" fill="rgb(211,88,4)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2639.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="11.5093%" y="2613" width="0.0341%" height="15" fill="rgb(248,151,21)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="11.5093%" y="2597" width="0.0341%" height="15" fill="rgb(238,163,6)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="11.5093%" y="2581" width="0.0341%" height="15" fill="rgb(209,183,11)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="11.5093%" y="2565" width="0.0341%" height="15" fill="rgb(219,37,20)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="11.5093%" y="2549" width="0.0341%" height="15" fill="rgb(210,158,4)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="11.5093%" y="2533" width="0.0341%" height="15" fill="rgb(221,167,53)" fg:x="2701" fg:w="8"/><text x="11.7593%" y="2543.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (20 samples, 0.09%)</title><rect x="11.5476%" y="2853" width="0.0852%" height="15" fill="rgb(237,151,45)" fg:x="2710" fg:w="20"/><text x="11.7976%" y="2863.50"></text></g><g><title>std::f64::<impl f64>::exp (20 samples, 0.09%)</title><rect x="11.5476%" y="2837" width="0.0852%" height="15" fill="rgb(231,39,3)" fg:x="2710" fg:w="20"/><text x="11.7976%" y="2847.50"></text></g><g><title>exp (19 samples, 0.08%)</title><rect x="11.5519%" y="2821" width="0.0810%" height="15" fill="rgb(212,167,28)" fg:x="2711" fg:w="19"/><text x="11.8019%" y="2831.50"></text></g><g><title>[libm.so.6] (16 samples, 0.07%)</title><rect x="11.5647%" y="2805" width="0.0682%" height="15" fill="rgb(232,178,8)" fg:x="2714" fg:w="16"/><text x="11.8147%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="11.6414%" y="2853" width="0.0426%" height="15" fill="rgb(225,151,20)" fg:x="2732" fg:w="10"/><text x="11.8914%" y="2863.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="11.6414%" y="2837" width="0.0426%" height="15" fill="rgb(238,3,37)" fg:x="2732" fg:w="10"/><text x="11.8914%" y="2847.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (42 samples, 0.18%)</title><rect x="11.5434%" y="2869" width="0.1790%" height="15" fill="rgb(251,147,42)" fg:x="2709" fg:w="42"/><text x="11.7934%" y="2879.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (9 samples, 0.04%)</title><rect x="11.6840%" y="2853" width="0.0384%" height="15" fill="rgb(208,173,10)" fg:x="2742" fg:w="9"/><text x="11.9340%" y="2863.50"></text></g><g><title>std::f64::<impl f64>::sqrt (9 samples, 0.04%)</title><rect x="11.6840%" y="2837" width="0.0384%" height="15" fill="rgb(246,225,4)" fg:x="2742" fg:w="9"/><text x="11.9340%" y="2847.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (43 samples, 0.18%)</title><rect x="11.5434%" y="3029" width="0.1832%" height="15" fill="rgb(248,102,6)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (43 samples, 0.18%)</title><rect x="11.5434%" y="3013" width="0.1832%" height="15" fill="rgb(232,6,21)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="3023.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (43 samples, 0.18%)</title><rect x="11.5434%" y="2997" width="0.1832%" height="15" fill="rgb(221,179,22)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="3007.50"></text></g><g><title>core::option::Option<T>::map (43 samples, 0.18%)</title><rect x="11.5434%" y="2981" width="0.1832%" height="15" fill="rgb(252,50,20)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="2991.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (43 samples, 0.18%)</title><rect x="11.5434%" y="2965" width="0.1832%" height="15" fill="rgb(222,56,38)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="2975.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (43 samples, 0.18%)</title><rect x="11.5434%" y="2949" width="0.1832%" height="15" fill="rgb(206,193,29)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="2959.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (43 samples, 0.18%)</title><rect x="11.5434%" y="2933" width="0.1832%" height="15" fill="rgb(239,192,45)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="2943.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (43 samples, 0.18%)</title><rect x="11.5434%" y="2917" width="0.1832%" height="15" fill="rgb(254,18,36)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="2927.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (43 samples, 0.18%)</title><rect x="11.5434%" y="2901" width="0.1832%" height="15" fill="rgb(221,127,11)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="2911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (43 samples, 0.18%)</title><rect x="11.5434%" y="2885" width="0.1832%" height="15" fill="rgb(234,146,35)" fg:x="2709" fg:w="43"/><text x="11.7934%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (44 samples, 0.19%)</title><rect x="11.5434%" y="3045" width="0.1875%" height="15" fill="rgb(254,201,37)" fg:x="2709" fg:w="44"/><text x="11.7934%" y="3055.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="11.7309%" y="2741" width="0.0256%" height="15" fill="rgb(211,202,23)" fg:x="2753" fg:w="6"/><text x="11.9809%" y="2751.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="11.7309%" y="2725" width="0.0256%" height="15" fill="rgb(237,91,2)" fg:x="2753" fg:w="6"/><text x="11.9809%" y="2735.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="11.7309%" y="2709" width="0.0256%" height="15" fill="rgb(226,228,36)" fg:x="2753" fg:w="6"/><text x="11.9809%" y="2719.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="11.7309%" y="2693" width="0.0256%" height="15" fill="rgb(213,63,50)" fg:x="2753" fg:w="6"/><text x="11.9809%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="11.7564%" y="2741" width="0.0213%" height="15" fill="rgb(235,194,19)" fg:x="2759" fg:w="5"/><text x="12.0064%" y="2751.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="11.7564%" y="2725" width="0.0213%" height="15" fill="rgb(207,204,18)" fg:x="2759" fg:w="5"/><text x="12.0064%" y="2735.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (12 samples, 0.05%)</title><rect x="11.7309%" y="2757" width="0.0511%" height="15" fill="rgb(248,8,7)" fg:x="2753" fg:w="12"/><text x="11.9809%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (14 samples, 0.06%)</title><rect x="11.7309%" y="2933" width="0.0597%" height="15" fill="rgb(223,145,47)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2943.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (14 samples, 0.06%)</title><rect x="11.7309%" y="2917" width="0.0597%" height="15" fill="rgb(228,84,11)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (14 samples, 0.06%)</title><rect x="11.7309%" y="2901" width="0.0597%" height="15" fill="rgb(218,76,45)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2911.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (14 samples, 0.06%)</title><rect x="11.7309%" y="2885" width="0.0597%" height="15" fill="rgb(223,80,15)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2895.50"></text></g><g><title>core::option::Option<T>::map (14 samples, 0.06%)</title><rect x="11.7309%" y="2869" width="0.0597%" height="15" fill="rgb(219,218,33)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2879.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (14 samples, 0.06%)</title><rect x="11.7309%" y="2853" width="0.0597%" height="15" fill="rgb(208,51,11)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2863.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (14 samples, 0.06%)</title><rect x="11.7309%" y="2837" width="0.0597%" height="15" fill="rgb(229,165,39)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2847.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (14 samples, 0.06%)</title><rect x="11.7309%" y="2821" width="0.0597%" height="15" fill="rgb(241,100,24)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2831.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (14 samples, 0.06%)</title><rect x="11.7309%" y="2805" width="0.0597%" height="15" fill="rgb(228,14,23)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2815.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (14 samples, 0.06%)</title><rect x="11.7309%" y="2789" width="0.0597%" height="15" fill="rgb(247,116,52)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2799.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (14 samples, 0.06%)</title><rect x="11.7309%" y="2773" width="0.0597%" height="15" fill="rgb(216,149,33)" fg:x="2753" fg:w="14"/><text x="11.9809%" y="2783.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (9 samples, 0.04%)</title><rect x="11.7905%" y="2629" width="0.0384%" height="15" fill="rgb(238,142,29)" fg:x="2767" fg:w="9"/><text x="12.0405%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::exp (9 samples, 0.04%)</title><rect x="11.7905%" y="2613" width="0.0384%" height="15" fill="rgb(224,83,40)" fg:x="2767" fg:w="9"/><text x="12.0405%" y="2623.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="11.7905%" y="2597" width="0.0384%" height="15" fill="rgb(234,165,11)" fg:x="2767" fg:w="9"/><text x="12.0405%" y="2607.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="11.7990%" y="2581" width="0.0298%" height="15" fill="rgb(215,96,23)" fg:x="2769" fg:w="7"/><text x="12.0490%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (7 samples, 0.03%)</title><rect x="11.8289%" y="2629" width="0.0298%" height="15" fill="rgb(233,179,26)" fg:x="2776" fg:w="7"/><text x="12.0789%" y="2639.50"></text></g><g><title>core::f64::<impl f64>::recip (7 samples, 0.03%)</title><rect x="11.8289%" y="2613" width="0.0298%" height="15" fill="rgb(225,129,33)" fg:x="2776" fg:w="7"/><text x="12.0789%" y="2623.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (18 samples, 0.08%)</title><rect x="11.7905%" y="2645" width="0.0767%" height="15" fill="rgb(237,49,13)" fg:x="2767" fg:w="18"/><text x="12.0405%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (19 samples, 0.08%)</title><rect x="11.7905%" y="2821" width="0.0810%" height="15" fill="rgb(211,3,31)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2831.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (19 samples, 0.08%)</title><rect x="11.7905%" y="2805" width="0.0810%" height="15" fill="rgb(216,152,19)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (19 samples, 0.08%)</title><rect x="11.7905%" y="2789" width="0.0810%" height="15" fill="rgb(251,121,35)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (19 samples, 0.08%)</title><rect x="11.7905%" y="2773" width="0.0810%" height="15" fill="rgb(210,217,47)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2783.50"></text></g><g><title>core::option::Option<T>::map (19 samples, 0.08%)</title><rect x="11.7905%" y="2757" width="0.0810%" height="15" fill="rgb(244,116,22)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2767.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (19 samples, 0.08%)</title><rect x="11.7905%" y="2741" width="0.0810%" height="15" fill="rgb(228,17,21)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (19 samples, 0.08%)</title><rect x="11.7905%" y="2725" width="0.0810%" height="15" fill="rgb(240,149,34)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (19 samples, 0.08%)</title><rect x="11.7905%" y="2709" width="0.0810%" height="15" fill="rgb(208,125,47)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (19 samples, 0.08%)</title><rect x="11.7905%" y="2693" width="0.0810%" height="15" fill="rgb(249,186,39)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2703.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (19 samples, 0.08%)</title><rect x="11.7905%" y="2677" width="0.0810%" height="15" fill="rgb(240,220,33)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (19 samples, 0.08%)</title><rect x="11.7905%" y="2661" width="0.0810%" height="15" fill="rgb(243,110,23)" fg:x="2767" fg:w="19"/><text x="12.0405%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="11.8715%" y="2709" width="0.0128%" height="15" fill="rgb(219,163,46)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2719.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="11.8715%" y="2693" width="0.0128%" height="15" fill="rgb(216,126,30)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="11.8715%" y="2677" width="0.0128%" height="15" fill="rgb(208,139,11)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2687.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="11.8715%" y="2661" width="0.0128%" height="15" fill="rgb(213,118,36)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2671.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="11.8715%" y="2645" width="0.0128%" height="15" fill="rgb(226,43,17)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="11.8715%" y="2629" width="0.0128%" height="15" fill="rgb(254,217,4)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="11.8715%" y="2613" width="0.0128%" height="15" fill="rgb(210,134,47)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="11.8715%" y="2597" width="0.0128%" height="15" fill="rgb(237,24,49)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="11.8715%" y="2581" width="0.0128%" height="15" fill="rgb(251,39,46)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2591.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="11.8715%" y="2565" width="0.0128%" height="15" fill="rgb(251,220,3)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2575.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="11.8715%" y="2549" width="0.0128%" height="15" fill="rgb(228,105,12)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="11.8715%" y="2533" width="0.0128%" height="15" fill="rgb(215,196,1)" fg:x="2786" fg:w="3"/><text x="12.1215%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="11.8928%" y="2021" width="0.0213%" height="15" fill="rgb(214,33,39)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.8928%" y="2005" width="0.0213%" height="15" fill="rgb(220,19,52)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="11.8928%" y="1989" width="0.0213%" height="15" fill="rgb(221,78,38)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1999.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="11.8928%" y="1973" width="0.0213%" height="15" fill="rgb(253,30,16)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1983.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="11.8928%" y="1957" width="0.0213%" height="15" fill="rgb(242,65,0)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="11.8928%" y="1941" width="0.0213%" height="15" fill="rgb(235,201,12)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1951.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="11.8928%" y="1925" width="0.0213%" height="15" fill="rgb(233,161,9)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1935.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="11.8928%" y="1909" width="0.0213%" height="15" fill="rgb(241,207,41)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1919.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="11.8928%" y="1893" width="0.0213%" height="15" fill="rgb(212,69,46)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1903.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="11.8928%" y="1877" width="0.0213%" height="15" fill="rgb(239,69,45)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1887.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="11.8928%" y="1861" width="0.0213%" height="15" fill="rgb(242,117,48)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="11.8928%" y="1845" width="0.0213%" height="15" fill="rgb(228,41,36)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="11.8928%" y="1829" width="0.0213%" height="15" fill="rgb(212,3,32)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="11.8928%" y="1813" width="0.0213%" height="15" fill="rgb(233,41,49)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.8928%" y="1797" width="0.0213%" height="15" fill="rgb(252,170,49)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="11.8928%" y="1781" width="0.0213%" height="15" fill="rgb(229,53,26)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.8928%" y="1765" width="0.0213%" height="15" fill="rgb(217,157,12)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="11.8928%" y="1749" width="0.0213%" height="15" fill="rgb(227,17,9)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="11.8928%" y="1733" width="0.0213%" height="15" fill="rgb(218,84,12)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="11.8928%" y="1717" width="0.0213%" height="15" fill="rgb(212,79,24)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1727.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="11.8928%" y="1701" width="0.0213%" height="15" fill="rgb(217,222,37)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="11.8928%" y="1685" width="0.0213%" height="15" fill="rgb(246,208,8)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="11.8928%" y="1669" width="0.0213%" height="15" fill="rgb(244,133,10)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="11.8928%" y="1653" width="0.0213%" height="15" fill="rgb(209,219,41)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="11.8928%" y="1637" width="0.0213%" height="15" fill="rgb(253,175,45)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.8928%" y="1621" width="0.0213%" height="15" fill="rgb(235,100,37)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="11.8928%" y="1605" width="0.0213%" height="15" fill="rgb(225,87,19)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.8928%" y="1589" width="0.0213%" height="15" fill="rgb(217,152,17)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="11.8928%" y="1573" width="0.0213%" height="15" fill="rgb(235,72,13)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="11.8928%" y="1557" width="0.0213%" height="15" fill="rgb(233,140,18)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.8928%" y="1541" width="0.0213%" height="15" fill="rgb(207,212,28)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1551.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="11.8928%" y="1525" width="0.0213%" height="15" fill="rgb(220,130,25)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1535.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="11.8928%" y="1509" width="0.0213%" height="15" fill="rgb(205,55,34)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1519.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="11.8928%" y="1493" width="0.0213%" height="15" fill="rgb(237,54,35)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1503.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="11.8928%" y="1477" width="0.0213%" height="15" fill="rgb(208,67,23)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1487.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="11.8928%" y="1461" width="0.0213%" height="15" fill="rgb(206,207,50)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1471.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="11.8928%" y="1445" width="0.0213%" height="15" fill="rgb(213,211,42)" fg:x="2791" fg:w="5"/><text x="12.1428%" y="1455.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="11.8971%" y="1429" width="0.0170%" height="15" fill="rgb(252,197,50)" fg:x="2792" fg:w="4"/><text x="12.1471%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="11.8885%" y="2661" width="0.0298%" height="15" fill="rgb(251,211,41)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="11.8885%" y="2645" width="0.0298%" height="15" fill="rgb(229,211,5)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="11.8885%" y="2629" width="0.0298%" height="15" fill="rgb(239,36,31)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2639.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="11.8885%" y="2613" width="0.0298%" height="15" fill="rgb(248,67,31)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2623.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="11.8885%" y="2597" width="0.0298%" height="15" fill="rgb(249,55,44)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2607.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="11.8885%" y="2581" width="0.0298%" height="15" fill="rgb(216,82,12)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2591.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="11.8885%" y="2565" width="0.0298%" height="15" fill="rgb(242,174,1)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2575.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="11.8885%" y="2549" width="0.0298%" height="15" fill="rgb(208,120,29)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2559.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="11.8885%" y="2533" width="0.0298%" height="15" fill="rgb(221,105,43)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2543.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="11.8885%" y="2517" width="0.0298%" height="15" fill="rgb(234,124,22)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2527.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="11.8885%" y="2501" width="0.0298%" height="15" fill="rgb(212,23,30)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2511.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="11.8885%" y="2485" width="0.0298%" height="15" fill="rgb(219,122,53)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="11.8885%" y="2469" width="0.0298%" height="15" fill="rgb(248,84,24)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="11.8885%" y="2453" width="0.0298%" height="15" fill="rgb(245,115,18)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.8885%" y="2437" width="0.0298%" height="15" fill="rgb(227,176,51)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2447.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="11.8885%" y="2421" width="0.0298%" height="15" fill="rgb(229,63,42)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2431.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.8885%" y="2405" width="0.0298%" height="15" fill="rgb(247,202,24)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="11.8885%" y="2389" width="0.0298%" height="15" fill="rgb(244,173,20)" fg:x="2790" fg:w="7"/><text x="12.1385%" y="2399.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="11.8928%" y="2373" width="0.0256%" height="15" fill="rgb(242,81,47)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2383.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="11.8928%" y="2357" width="0.0256%" height="15" fill="rgb(231,185,54)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2367.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="11.8928%" y="2341" width="0.0256%" height="15" fill="rgb(243,55,32)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2351.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="11.8928%" y="2325" width="0.0256%" height="15" fill="rgb(208,167,19)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2335.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="11.8928%" y="2309" width="0.0256%" height="15" fill="rgb(231,72,35)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="11.8928%" y="2293" width="0.0256%" height="15" fill="rgb(250,173,51)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="11.8928%" y="2277" width="0.0256%" height="15" fill="rgb(209,5,22)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="11.8928%" y="2261" width="0.0256%" height="15" fill="rgb(250,174,19)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="11.8928%" y="2245" width="0.0256%" height="15" fill="rgb(217,3,49)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="11.8928%" y="2229" width="0.0256%" height="15" fill="rgb(218,225,5)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="11.8928%" y="2213" width="0.0256%" height="15" fill="rgb(236,89,11)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="11.8928%" y="2197" width="0.0256%" height="15" fill="rgb(206,33,28)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="11.8928%" y="2181" width="0.0256%" height="15" fill="rgb(241,56,42)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2191.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="11.8928%" y="2165" width="0.0256%" height="15" fill="rgb(222,44,11)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="11.8928%" y="2149" width="0.0256%" height="15" fill="rgb(234,111,20)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="11.8928%" y="2133" width="0.0256%" height="15" fill="rgb(237,77,6)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="11.8928%" y="2117" width="0.0256%" height="15" fill="rgb(235,111,23)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="11.8928%" y="2101" width="0.0256%" height="15" fill="rgb(251,135,29)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="11.8928%" y="2085" width="0.0256%" height="15" fill="rgb(217,57,1)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="11.8928%" y="2069" width="0.0256%" height="15" fill="rgb(249,119,31)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="11.8928%" y="2053" width="0.0256%" height="15" fill="rgb(233,164,33)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="11.8928%" y="2037" width="0.0256%" height="15" fill="rgb(250,217,43)" fg:x="2791" fg:w="6"/><text x="12.1428%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="11.8715%" y="2773" width="0.0554%" height="15" fill="rgb(232,154,50)" fg:x="2786" fg:w="13"/><text x="12.1215%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="11.8715%" y="2757" width="0.0554%" height="15" fill="rgb(227,190,8)" fg:x="2786" fg:w="13"/><text x="12.1215%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="11.8715%" y="2741" width="0.0554%" height="15" fill="rgb(209,217,32)" fg:x="2786" fg:w="13"/><text x="12.1215%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="11.8715%" y="2725" width="0.0554%" height="15" fill="rgb(243,203,50)" fg:x="2786" fg:w="13"/><text x="12.1215%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="11.8843%" y="2709" width="0.0426%" height="15" fill="rgb(232,152,27)" fg:x="2789" fg:w="10"/><text x="12.1343%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="11.8843%" y="2693" width="0.0426%" height="15" fill="rgb(240,34,29)" fg:x="2789" fg:w="10"/><text x="12.1343%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="11.8843%" y="2677" width="0.0426%" height="15" fill="rgb(215,185,52)" fg:x="2789" fg:w="10"/><text x="12.1343%" y="2687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="11.9269%" y="2773" width="0.0128%" height="15" fill="rgb(240,89,49)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="11.9269%" y="2757" width="0.0128%" height="15" fill="rgb(225,12,52)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2767.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="11.9269%" y="2741" width="0.0128%" height="15" fill="rgb(239,128,45)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2751.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="11.9269%" y="2725" width="0.0128%" height="15" fill="rgb(211,78,47)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2735.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="11.9269%" y="2709" width="0.0128%" height="15" fill="rgb(232,31,21)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="11.9269%" y="2693" width="0.0128%" height="15" fill="rgb(222,168,14)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="11.9269%" y="2677" width="0.0128%" height="15" fill="rgb(209,128,24)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="11.9269%" y="2661" width="0.0128%" height="15" fill="rgb(249,35,13)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2671.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="11.9269%" y="2645" width="0.0128%" height="15" fill="rgb(218,7,2)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="11.9269%" y="2629" width="0.0128%" height="15" fill="rgb(238,107,27)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="11.9269%" y="2613" width="0.0128%" height="15" fill="rgb(217,88,38)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2623.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="11.9269%" y="2597" width="0.0128%" height="15" fill="rgb(230,207,0)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="11.9269%" y="2581" width="0.0128%" height="15" fill="rgb(249,64,54)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="11.9269%" y="2565" width="0.0128%" height="15" fill="rgb(231,7,11)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.9269%" y="2549" width="0.0128%" height="15" fill="rgb(205,149,21)" fg:x="2799" fg:w="3"/><text x="12.1769%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="11.9397%" y="2469" width="0.0128%" height="15" fill="rgb(215,126,34)" fg:x="2802" fg:w="3"/><text x="12.1897%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="11.9397%" y="2645" width="0.0256%" height="15" fill="rgb(241,132,45)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="11.9397%" y="2629" width="0.0256%" height="15" fill="rgb(252,69,32)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="11.9397%" y="2613" width="0.0256%" height="15" fill="rgb(232,204,19)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="11.9397%" y="2597" width="0.0256%" height="15" fill="rgb(249,15,47)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="11.9397%" y="2581" width="0.0256%" height="15" fill="rgb(209,227,23)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="11.9397%" y="2565" width="0.0256%" height="15" fill="rgb(248,92,24)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="11.9397%" y="2549" width="0.0256%" height="15" fill="rgb(247,59,2)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="11.9397%" y="2533" width="0.0256%" height="15" fill="rgb(221,30,5)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="11.9397%" y="2517" width="0.0256%" height="15" fill="rgb(208,108,53)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="11.9397%" y="2501" width="0.0256%" height="15" fill="rgb(211,183,26)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="11.9397%" y="2485" width="0.0256%" height="15" fill="rgb(232,132,4)" fg:x="2802" fg:w="6"/><text x="12.1897%" y="2495.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (44 samples, 0.19%)</title><rect x="11.7905%" y="2885" width="0.1875%" height="15" fill="rgb(253,128,37)" fg:x="2767" fg:w="44"/><text x="12.0405%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (44 samples, 0.19%)</title><rect x="11.7905%" y="2869" width="0.1875%" height="15" fill="rgb(221,58,24)" fg:x="2767" fg:w="44"/><text x="12.0405%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (44 samples, 0.19%)</title><rect x="11.7905%" y="2853" width="0.1875%" height="15" fill="rgb(230,54,45)" fg:x="2767" fg:w="44"/><text x="12.0405%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (44 samples, 0.19%)</title><rect x="11.7905%" y="2837" width="0.1875%" height="15" fill="rgb(254,21,18)" fg:x="2767" fg:w="44"/><text x="12.0405%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="11.8715%" y="2821" width="0.1065%" height="15" fill="rgb(221,108,0)" fg:x="2786" fg:w="25"/><text x="12.1215%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="11.8715%" y="2805" width="0.1065%" height="15" fill="rgb(206,95,1)" fg:x="2786" fg:w="25"/><text x="12.1215%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="11.8715%" y="2789" width="0.1065%" height="15" fill="rgb(237,52,5)" fg:x="2786" fg:w="25"/><text x="12.1215%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="11.9397%" y="2773" width="0.0384%" height="15" fill="rgb(218,150,34)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="11.9397%" y="2757" width="0.0384%" height="15" fill="rgb(235,194,28)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2767.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="11.9397%" y="2741" width="0.0384%" height="15" fill="rgb(245,92,18)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="11.9397%" y="2725" width="0.0384%" height="15" fill="rgb(253,203,53)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="11.9397%" y="2709" width="0.0384%" height="15" fill="rgb(249,185,47)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="11.9397%" y="2693" width="0.0384%" height="15" fill="rgb(252,194,52)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="11.9397%" y="2677" width="0.0384%" height="15" fill="rgb(210,53,36)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="11.9397%" y="2661" width="0.0384%" height="15" fill="rgb(237,37,25)" fg:x="2802" fg:w="9"/><text x="12.1897%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="11.9652%" y="2645" width="0.0128%" height="15" fill="rgb(242,116,27)" fg:x="2808" fg:w="3"/><text x="12.2152%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.9652%" y="2629" width="0.0128%" height="15" fill="rgb(213,185,26)" fg:x="2808" fg:w="3"/><text x="12.2152%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="11.9652%" y="2613" width="0.0128%" height="15" fill="rgb(225,204,8)" fg:x="2808" fg:w="3"/><text x="12.2152%" y="2623.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="11.9780%" y="2485" width="0.0170%" height="15" fill="rgb(254,111,37)" fg:x="2811" fg:w="4"/><text x="12.2280%" y="2495.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="11.9780%" y="2469" width="0.0170%" height="15" fill="rgb(242,35,9)" fg:x="2811" fg:w="4"/><text x="12.2280%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="11.9780%" y="2597" width="0.0213%" height="15" fill="rgb(232,138,49)" fg:x="2811" fg:w="5"/><text x="12.2280%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.9780%" y="2581" width="0.0213%" height="15" fill="rgb(247,56,4)" fg:x="2811" fg:w="5"/><text x="12.2280%" y="2591.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="11.9780%" y="2565" width="0.0213%" height="15" fill="rgb(226,179,17)" fg:x="2811" fg:w="5"/><text x="12.2280%" y="2575.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="11.9780%" y="2549" width="0.0213%" height="15" fill="rgb(216,163,45)" fg:x="2811" fg:w="5"/><text x="12.2280%" y="2559.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="11.9780%" y="2533" width="0.0213%" height="15" fill="rgb(211,157,3)" fg:x="2811" fg:w="5"/><text x="12.2280%" y="2543.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="11.9780%" y="2517" width="0.0213%" height="15" fill="rgb(234,44,20)" fg:x="2811" fg:w="5"/><text x="12.2280%" y="2527.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="11.9780%" y="2501" width="0.0213%" height="15" fill="rgb(254,138,23)" fg:x="2811" fg:w="5"/><text x="12.2280%" y="2511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="11.9993%" y="2421" width="0.0256%" height="15" fill="rgb(206,119,39)" fg:x="2816" fg:w="6"/><text x="12.2493%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="11.9993%" y="2405" width="0.0256%" height="15" fill="rgb(231,105,52)" fg:x="2816" fg:w="6"/><text x="12.2493%" y="2415.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="12.0036%" y="2389" width="0.0213%" height="15" fill="rgb(250,20,5)" fg:x="2817" fg:w="5"/><text x="12.2536%" y="2399.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="12.0036%" y="2373" width="0.0213%" height="15" fill="rgb(215,198,30)" fg:x="2817" fg:w="5"/><text x="12.2536%" y="2383.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="12.0036%" y="2357" width="0.0213%" height="15" fill="rgb(246,142,8)" fg:x="2817" fg:w="5"/><text x="12.2536%" y="2367.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="12.0036%" y="2341" width="0.0213%" height="15" fill="rgb(243,26,38)" fg:x="2817" fg:w="5"/><text x="12.2536%" y="2351.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="12.0036%" y="2325" width="0.0213%" height="15" fill="rgb(205,133,28)" fg:x="2817" fg:w="5"/><text x="12.2536%" y="2335.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="12.0036%" y="2309" width="0.0213%" height="15" fill="rgb(212,34,0)" fg:x="2817" fg:w="5"/><text x="12.2536%" y="2319.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="12.0036%" y="2293" width="0.0213%" height="15" fill="rgb(251,226,22)" fg:x="2817" fg:w="5"/><text x="12.2536%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="12.0419%" y="2069" width="0.0128%" height="15" fill="rgb(252,119,9)" fg:x="2826" fg:w="3"/><text x="12.2919%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.0419%" y="2053" width="0.0128%" height="15" fill="rgb(213,150,50)" fg:x="2826" fg:w="3"/><text x="12.2919%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.0419%" y="2037" width="0.0128%" height="15" fill="rgb(212,24,39)" fg:x="2826" fg:w="3"/><text x="12.2919%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.0419%" y="2021" width="0.0128%" height="15" fill="rgb(213,46,39)" fg:x="2826" fg:w="3"/><text x="12.2919%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.0419%" y="2005" width="0.0128%" height="15" fill="rgb(239,106,12)" fg:x="2826" fg:w="3"/><text x="12.2919%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.0419%" y="1989" width="0.0128%" height="15" fill="rgb(249,229,21)" fg:x="2826" fg:w="3"/><text x="12.2919%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.0419%" y="1973" width="0.0128%" height="15" fill="rgb(212,158,3)" fg:x="2826" fg:w="3"/><text x="12.2919%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (23 samples, 0.10%)</title><rect x="11.9780%" y="2885" width="0.0980%" height="15" fill="rgb(253,26,48)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (23 samples, 0.10%)</title><rect x="11.9780%" y="2869" width="0.0980%" height="15" fill="rgb(238,178,20)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2879.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (23 samples, 0.10%)</title><rect x="11.9780%" y="2853" width="0.0980%" height="15" fill="rgb(208,86,15)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2863.50"></text></g><g><title>rayon_core::job::JobRef::execute (23 samples, 0.10%)</title><rect x="11.9780%" y="2837" width="0.0980%" height="15" fill="rgb(239,42,53)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2847.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (23 samples, 0.10%)</title><rect x="11.9780%" y="2821" width="0.0980%" height="15" fill="rgb(245,226,8)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2831.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (23 samples, 0.10%)</title><rect x="11.9780%" y="2805" width="0.0980%" height="15" fill="rgb(216,176,32)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="11.9780%" y="2789" width="0.0980%" height="15" fill="rgb(231,186,21)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="11.9780%" y="2773" width="0.0980%" height="15" fill="rgb(205,95,49)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2783.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="11.9780%" y="2757" width="0.0980%" height="15" fill="rgb(217,145,8)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="11.9780%" y="2741" width="0.0980%" height="15" fill="rgb(239,144,48)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="11.9780%" y="2725" width="0.0980%" height="15" fill="rgb(214,189,23)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2735.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (23 samples, 0.10%)</title><rect x="11.9780%" y="2709" width="0.0980%" height="15" fill="rgb(229,157,17)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (23 samples, 0.10%)</title><rect x="11.9780%" y="2693" width="0.0980%" height="15" fill="rgb(230,5,48)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="11.9780%" y="2677" width="0.0980%" height="15" fill="rgb(224,156,48)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="11.9780%" y="2661" width="0.0980%" height="15" fill="rgb(223,14,29)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="11.9780%" y="2645" width="0.0980%" height="15" fill="rgb(229,96,36)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="11.9780%" y="2629" width="0.0980%" height="15" fill="rgb(231,102,53)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="11.9780%" y="2613" width="0.0980%" height="15" fill="rgb(210,77,38)" fg:x="2811" fg:w="23"/><text x="12.2280%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="11.9993%" y="2597" width="0.0767%" height="15" fill="rgb(235,131,6)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="11.9993%" y="2581" width="0.0767%" height="15" fill="rgb(252,55,38)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2591.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="11.9993%" y="2565" width="0.0767%" height="15" fill="rgb(246,38,14)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="11.9993%" y="2549" width="0.0767%" height="15" fill="rgb(242,27,5)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="11.9993%" y="2533" width="0.0767%" height="15" fill="rgb(228,65,35)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18 samples, 0.08%)</title><rect x="11.9993%" y="2517" width="0.0767%" height="15" fill="rgb(245,93,11)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="11.9993%" y="2501" width="0.0767%" height="15" fill="rgb(213,1,31)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="11.9993%" y="2485" width="0.0767%" height="15" fill="rgb(237,205,14)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="11.9993%" y="2469" width="0.0767%" height="15" fill="rgb(232,118,45)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="11.9993%" y="2453" width="0.0767%" height="15" fill="rgb(218,5,6)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="11.9993%" y="2437" width="0.0767%" height="15" fill="rgb(251,87,51)" fg:x="2816" fg:w="18"/><text x="12.2493%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="12.0249%" y="2421" width="0.0511%" height="15" fill="rgb(207,225,20)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="12.0249%" y="2405" width="0.0511%" height="15" fill="rgb(222,78,54)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2415.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="12.0249%" y="2389" width="0.0511%" height="15" fill="rgb(232,85,16)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="12.0249%" y="2373" width="0.0511%" height="15" fill="rgb(244,25,33)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="12.0249%" y="2357" width="0.0511%" height="15" fill="rgb(233,24,36)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="12.0249%" y="2341" width="0.0511%" height="15" fill="rgb(253,49,54)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="12.0249%" y="2325" width="0.0511%" height="15" fill="rgb(245,12,22)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="12.0249%" y="2309" width="0.0511%" height="15" fill="rgb(253,141,28)" fg:x="2822" fg:w="12"/><text x="12.2749%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="12.0334%" y="2293" width="0.0426%" height="15" fill="rgb(225,207,27)" fg:x="2824" fg:w="10"/><text x="12.2834%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="12.0334%" y="2277" width="0.0426%" height="15" fill="rgb(220,84,2)" fg:x="2824" fg:w="10"/><text x="12.2834%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="12.0334%" y="2261" width="0.0426%" height="15" fill="rgb(224,37,37)" fg:x="2824" fg:w="10"/><text x="12.2834%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="12.0419%" y="2245" width="0.0341%" height="15" fill="rgb(220,143,18)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="12.0419%" y="2229" width="0.0341%" height="15" fill="rgb(210,88,33)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2239.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="12.0419%" y="2213" width="0.0341%" height="15" fill="rgb(219,87,51)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="12.0419%" y="2197" width="0.0341%" height="15" fill="rgb(211,7,35)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="12.0419%" y="2181" width="0.0341%" height="15" fill="rgb(232,77,2)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="12.0419%" y="2165" width="0.0341%" height="15" fill="rgb(249,94,25)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="12.0419%" y="2149" width="0.0341%" height="15" fill="rgb(215,112,2)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="12.0419%" y="2133" width="0.0341%" height="15" fill="rgb(226,115,48)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="12.0419%" y="2117" width="0.0341%" height="15" fill="rgb(249,196,10)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="12.0419%" y="2101" width="0.0341%" height="15" fill="rgb(237,109,14)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="12.0419%" y="2085" width="0.0341%" height="15" fill="rgb(217,103,53)" fg:x="2826" fg:w="8"/><text x="12.2919%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="12.0547%" y="2069" width="0.0213%" height="15" fill="rgb(244,137,9)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="12.0547%" y="2053" width="0.0213%" height="15" fill="rgb(227,201,3)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="2063.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="12.0547%" y="2037" width="0.0213%" height="15" fill="rgb(243,94,6)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="12.0547%" y="2021" width="0.0213%" height="15" fill="rgb(235,118,5)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="12.0547%" y="2005" width="0.0213%" height="15" fill="rgb(247,10,30)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="12.0547%" y="1989" width="0.0213%" height="15" fill="rgb(205,26,28)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="12.0547%" y="1973" width="0.0213%" height="15" fill="rgb(206,99,35)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.0547%" y="1957" width="0.0213%" height="15" fill="rgb(238,130,40)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="12.0547%" y="1941" width="0.0213%" height="15" fill="rgb(224,126,31)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.0547%" y="1925" width="0.0213%" height="15" fill="rgb(254,105,17)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="12.0547%" y="1909" width="0.0213%" height="15" fill="rgb(216,87,36)" fg:x="2829" fg:w="5"/><text x="12.3047%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="12.0632%" y="1893" width="0.0128%" height="15" fill="rgb(240,21,12)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="12.0632%" y="1877" width="0.0128%" height="15" fill="rgb(245,192,34)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="12.0632%" y="1861" width="0.0128%" height="15" fill="rgb(226,100,49)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="12.0632%" y="1845" width="0.0128%" height="15" fill="rgb(245,188,27)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="12.0632%" y="1829" width="0.0128%" height="15" fill="rgb(212,170,8)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="12.0632%" y="1813" width="0.0128%" height="15" fill="rgb(217,113,29)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.0632%" y="1797" width="0.0128%" height="15" fill="rgb(237,30,3)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.0632%" y="1781" width="0.0128%" height="15" fill="rgb(227,19,28)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="12.0632%" y="1765" width="0.0128%" height="15" fill="rgb(239,172,45)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.0632%" y="1749" width="0.0128%" height="15" fill="rgb(254,55,39)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="12.0632%" y="1733" width="0.0128%" height="15" fill="rgb(249,208,12)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="12.0632%" y="1717" width="0.0128%" height="15" fill="rgb(240,52,13)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="12.0632%" y="1701" width="0.0128%" height="15" fill="rgb(252,149,13)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="12.0632%" y="1685" width="0.0128%" height="15" fill="rgb(232,81,48)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="12.0632%" y="1669" width="0.0128%" height="15" fill="rgb(222,144,2)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="12.0632%" y="1653" width="0.0128%" height="15" fill="rgb(216,81,32)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="12.0632%" y="1637" width="0.0128%" height="15" fill="rgb(244,78,51)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="12.0632%" y="1621" width="0.0128%" height="15" fill="rgb(217,66,21)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="12.0632%" y="1605" width="0.0128%" height="15" fill="rgb(247,101,42)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="12.0632%" y="1589" width="0.0128%" height="15" fill="rgb(227,81,39)" fg:x="2831" fg:w="3"/><text x="12.3132%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (13 samples, 0.06%)</title><rect x="12.0760%" y="2565" width="0.0554%" height="15" fill="rgb(220,223,44)" fg:x="2834" fg:w="13"/><text x="12.3260%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (13 samples, 0.06%)</title><rect x="12.0760%" y="2549" width="0.0554%" height="15" fill="rgb(205,218,2)" fg:x="2834" fg:w="13"/><text x="12.3260%" y="2559.50"></text></g><g><title>exp (13 samples, 0.06%)</title><rect x="12.0760%" y="2533" width="0.0554%" height="15" fill="rgb(212,207,28)" fg:x="2834" fg:w="13"/><text x="12.3260%" y="2543.50"></text></g><g><title>[libm.so.6] (11 samples, 0.05%)</title><rect x="12.0845%" y="2517" width="0.0469%" height="15" fill="rgb(224,12,41)" fg:x="2836" fg:w="11"/><text x="12.3345%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (6 samples, 0.03%)</title><rect x="12.1314%" y="2565" width="0.0256%" height="15" fill="rgb(216,118,12)" fg:x="2847" fg:w="6"/><text x="12.3814%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (6 samples, 0.03%)</title><rect x="12.1314%" y="2549" width="0.0256%" height="15" fill="rgb(252,97,46)" fg:x="2847" fg:w="6"/><text x="12.3814%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (23 samples, 0.10%)</title><rect x="12.0760%" y="2581" width="0.0980%" height="15" fill="rgb(244,206,19)" fg:x="2834" fg:w="23"/><text x="12.3260%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="12.1570%" y="2565" width="0.0170%" height="15" fill="rgb(231,84,31)" fg:x="2853" fg:w="4"/><text x="12.4070%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="12.1570%" y="2549" width="0.0170%" height="15" fill="rgb(244,133,0)" fg:x="2853" fg:w="4"/><text x="12.4070%" y="2559.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (24 samples, 0.10%)</title><rect x="12.0760%" y="2741" width="0.1023%" height="15" fill="rgb(223,15,50)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (24 samples, 0.10%)</title><rect x="12.0760%" y="2725" width="0.1023%" height="15" fill="rgb(250,118,49)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (24 samples, 0.10%)</title><rect x="12.0760%" y="2709" width="0.1023%" height="15" fill="rgb(248,25,38)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (24 samples, 0.10%)</title><rect x="12.0760%" y="2693" width="0.1023%" height="15" fill="rgb(215,70,14)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (24 samples, 0.10%)</title><rect x="12.0760%" y="2677" width="0.1023%" height="15" fill="rgb(215,28,15)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (24 samples, 0.10%)</title><rect x="12.0760%" y="2661" width="0.1023%" height="15" fill="rgb(243,6,28)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (24 samples, 0.10%)</title><rect x="12.0760%" y="2645" width="0.1023%" height="15" fill="rgb(222,130,1)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (24 samples, 0.10%)</title><rect x="12.0760%" y="2629" width="0.1023%" height="15" fill="rgb(236,166,44)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (24 samples, 0.10%)</title><rect x="12.0760%" y="2613" width="0.1023%" height="15" fill="rgb(221,108,14)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (24 samples, 0.10%)</title><rect x="12.0760%" y="2597" width="0.1023%" height="15" fill="rgb(252,3,45)" fg:x="2834" fg:w="24"/><text x="12.3260%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (25 samples, 0.11%)</title><rect x="12.0760%" y="2757" width="0.1065%" height="15" fill="rgb(237,68,30)" fg:x="2834" fg:w="25"/><text x="12.3260%" y="2767.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="12.1825%" y="2453" width="0.0256%" height="15" fill="rgb(211,79,22)" fg:x="2859" fg:w="6"/><text x="12.4325%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="12.1825%" y="2437" width="0.0256%" height="15" fill="rgb(252,185,21)" fg:x="2859" fg:w="6"/><text x="12.4325%" y="2447.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="12.1825%" y="2421" width="0.0256%" height="15" fill="rgb(225,189,26)" fg:x="2859" fg:w="6"/><text x="12.4325%" y="2431.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="12.1911%" y="2405" width="0.0170%" height="15" fill="rgb(241,30,40)" fg:x="2861" fg:w="4"/><text x="12.4411%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="12.2081%" y="2453" width="0.0128%" height="15" fill="rgb(235,215,44)" fg:x="2865" fg:w="3"/><text x="12.4581%" y="2463.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="12.2081%" y="2437" width="0.0128%" height="15" fill="rgb(205,8,29)" fg:x="2865" fg:w="3"/><text x="12.4581%" y="2447.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (11 samples, 0.05%)</title><rect x="12.1825%" y="2469" width="0.0469%" height="15" fill="rgb(241,137,42)" fg:x="2859" fg:w="11"/><text x="12.4325%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="12.1825%" y="2645" width="0.0511%" height="15" fill="rgb(237,155,2)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="12.1825%" y="2629" width="0.0511%" height="15" fill="rgb(245,29,42)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (12 samples, 0.05%)</title><rect x="12.1825%" y="2613" width="0.0511%" height="15" fill="rgb(234,101,35)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (12 samples, 0.05%)</title><rect x="12.1825%" y="2597" width="0.0511%" height="15" fill="rgb(228,64,37)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (12 samples, 0.05%)</title><rect x="12.1825%" y="2581" width="0.0511%" height="15" fill="rgb(217,214,36)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (12 samples, 0.05%)</title><rect x="12.1825%" y="2565" width="0.0511%" height="15" fill="rgb(243,70,3)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (12 samples, 0.05%)</title><rect x="12.1825%" y="2549" width="0.0511%" height="15" fill="rgb(253,158,52)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (12 samples, 0.05%)</title><rect x="12.1825%" y="2533" width="0.0511%" height="15" fill="rgb(234,111,54)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (12 samples, 0.05%)</title><rect x="12.1825%" y="2517" width="0.0511%" height="15" fill="rgb(217,70,32)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="12.1825%" y="2501" width="0.0511%" height="15" fill="rgb(234,18,33)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (12 samples, 0.05%)</title><rect x="12.1825%" y="2485" width="0.0511%" height="15" fill="rgb(234,12,49)" fg:x="2859" fg:w="12"/><text x="12.4325%" y="2495.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="12.1825%" y="2709" width="0.0639%" height="15" fill="rgb(236,10,21)" fg:x="2859" fg:w="15"/><text x="12.4325%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="12.1825%" y="2693" width="0.0639%" height="15" fill="rgb(248,182,45)" fg:x="2859" fg:w="15"/><text x="12.4325%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="12.1825%" y="2677" width="0.0639%" height="15" fill="rgb(217,95,36)" fg:x="2859" fg:w="15"/><text x="12.4325%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="12.1825%" y="2661" width="0.0639%" height="15" fill="rgb(212,110,31)" fg:x="2859" fg:w="15"/><text x="12.4325%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.2337%" y="2645" width="0.0128%" height="15" fill="rgb(206,32,53)" fg:x="2871" fg:w="3"/><text x="12.4837%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.2337%" y="2629" width="0.0128%" height="15" fill="rgb(246,141,37)" fg:x="2871" fg:w="3"/><text x="12.4837%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.2337%" y="2613" width="0.0128%" height="15" fill="rgb(219,16,7)" fg:x="2871" fg:w="3"/><text x="12.4837%" y="2623.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="12.2465%" y="2389" width="0.0256%" height="15" fill="rgb(230,205,45)" fg:x="2874" fg:w="6"/><text x="12.4965%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="12.2465%" y="2373" width="0.0256%" height="15" fill="rgb(231,43,49)" fg:x="2874" fg:w="6"/><text x="12.4965%" y="2383.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="12.2465%" y="2357" width="0.0256%" height="15" fill="rgb(212,106,34)" fg:x="2874" fg:w="6"/><text x="12.4965%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="12.2720%" y="2389" width="0.0170%" height="15" fill="rgb(206,83,17)" fg:x="2880" fg:w="4"/><text x="12.5220%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="12.2720%" y="2373" width="0.0170%" height="15" fill="rgb(244,154,49)" fg:x="2880" fg:w="4"/><text x="12.5220%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (12 samples, 0.05%)</title><rect x="12.2465%" y="2405" width="0.0511%" height="15" fill="rgb(244,149,49)" fg:x="2874" fg:w="12"/><text x="12.4965%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.06%)</title><rect x="12.2465%" y="2581" width="0.0554%" height="15" fill="rgb(227,134,18)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="12.2465%" y="2565" width="0.0554%" height="15" fill="rgb(237,116,36)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (13 samples, 0.06%)</title><rect x="12.2465%" y="2549" width="0.0554%" height="15" fill="rgb(205,129,40)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (13 samples, 0.06%)</title><rect x="12.2465%" y="2533" width="0.0554%" height="15" fill="rgb(236,178,4)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (13 samples, 0.06%)</title><rect x="12.2465%" y="2517" width="0.0554%" height="15" fill="rgb(251,76,53)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (13 samples, 0.06%)</title><rect x="12.2465%" y="2501" width="0.0554%" height="15" fill="rgb(242,92,40)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (13 samples, 0.06%)</title><rect x="12.2465%" y="2485" width="0.0554%" height="15" fill="rgb(209,45,30)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (13 samples, 0.06%)</title><rect x="12.2465%" y="2469" width="0.0554%" height="15" fill="rgb(218,157,36)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (13 samples, 0.06%)</title><rect x="12.2465%" y="2453" width="0.0554%" height="15" fill="rgb(222,186,16)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="12.2465%" y="2437" width="0.0554%" height="15" fill="rgb(254,72,35)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (13 samples, 0.06%)</title><rect x="12.2465%" y="2421" width="0.0554%" height="15" fill="rgb(224,25,35)" fg:x="2874" fg:w="13"/><text x="12.4965%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (138 samples, 0.59%)</title><rect x="11.7309%" y="2997" width="0.5880%" height="15" fill="rgb(206,135,52)" fg:x="2753" fg:w="138"/><text x="11.9809%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (138 samples, 0.59%)</title><rect x="11.7309%" y="2981" width="0.5880%" height="15" fill="rgb(229,174,47)" fg:x="2753" fg:w="138"/><text x="11.9809%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (138 samples, 0.59%)</title><rect x="11.7309%" y="2965" width="0.5880%" height="15" fill="rgb(242,184,21)" fg:x="2753" fg:w="138"/><text x="11.9809%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (138 samples, 0.59%)</title><rect x="11.7309%" y="2949" width="0.5880%" height="15" fill="rgb(213,22,45)" fg:x="2753" fg:w="138"/><text x="11.9809%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (124 samples, 0.53%)</title><rect x="11.7905%" y="2933" width="0.5284%" height="15" fill="rgb(237,81,54)" fg:x="2767" fg:w="124"/><text x="12.0405%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (124 samples, 0.53%)</title><rect x="11.7905%" y="2917" width="0.5284%" height="15" fill="rgb(248,177,18)" fg:x="2767" fg:w="124"/><text x="12.0405%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (124 samples, 0.53%)</title><rect x="11.7905%" y="2901" width="0.5284%" height="15" fill="rgb(254,31,16)" fg:x="2767" fg:w="124"/><text x="12.0405%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (57 samples, 0.24%)</title><rect x="12.0760%" y="2885" width="0.2429%" height="15" fill="rgb(235,20,31)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (57 samples, 0.24%)</title><rect x="12.0760%" y="2869" width="0.2429%" height="15" fill="rgb(240,56,43)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2879.50"></text></g><g><title>std::panicking::try (57 samples, 0.24%)</title><rect x="12.0760%" y="2853" width="0.2429%" height="15" fill="rgb(237,197,51)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (57 samples, 0.24%)</title><rect x="12.0760%" y="2837" width="0.2429%" height="15" fill="rgb(241,162,44)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (57 samples, 0.24%)</title><rect x="12.0760%" y="2821" width="0.2429%" height="15" fill="rgb(224,23,20)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (57 samples, 0.24%)</title><rect x="12.0760%" y="2805" width="0.2429%" height="15" fill="rgb(250,109,34)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (57 samples, 0.24%)</title><rect x="12.0760%" y="2789" width="0.2429%" height="15" fill="rgb(214,175,50)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.24%)</title><rect x="12.0760%" y="2773" width="0.2429%" height="15" fill="rgb(213,182,5)" fg:x="2834" fg:w="57"/><text x="12.3260%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="12.1825%" y="2757" width="0.1364%" height="15" fill="rgb(209,199,19)" fg:x="2859" fg:w="32"/><text x="12.4325%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="12.1825%" y="2741" width="0.1364%" height="15" fill="rgb(236,224,42)" fg:x="2859" fg:w="32"/><text x="12.4325%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="12.1825%" y="2725" width="0.1364%" height="15" fill="rgb(246,226,29)" fg:x="2859" fg:w="32"/><text x="12.4325%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="12.2465%" y="2709" width="0.0724%" height="15" fill="rgb(227,223,11)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="12.2465%" y="2693" width="0.0724%" height="15" fill="rgb(219,7,51)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2703.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="12.2465%" y="2677" width="0.0724%" height="15" fill="rgb(245,167,10)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="12.2465%" y="2661" width="0.0724%" height="15" fill="rgb(237,224,16)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="12.2465%" y="2645" width="0.0724%" height="15" fill="rgb(226,132,13)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="12.2465%" y="2629" width="0.0724%" height="15" fill="rgb(214,140,3)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="12.2465%" y="2613" width="0.0724%" height="15" fill="rgb(221,177,4)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="12.2465%" y="2597" width="0.0724%" height="15" fill="rgb(238,139,3)" fg:x="2874" fg:w="17"/><text x="12.4965%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="12.3019%" y="2581" width="0.0170%" height="15" fill="rgb(216,17,39)" fg:x="2887" fg:w="4"/><text x="12.5519%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.3019%" y="2565" width="0.0170%" height="15" fill="rgb(238,120,9)" fg:x="2887" fg:w="4"/><text x="12.5519%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="12.3019%" y="2549" width="0.0170%" height="15" fill="rgb(244,92,53)" fg:x="2887" fg:w="4"/><text x="12.5519%" y="2559.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="12.3189%" y="2565" width="0.0469%" height="15" fill="rgb(224,148,33)" fg:x="2891" fg:w="11"/><text x="12.5689%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="12.3189%" y="2549" width="0.0469%" height="15" fill="rgb(243,6,36)" fg:x="2891" fg:w="11"/><text x="12.5689%" y="2559.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="12.3317%" y="2533" width="0.0341%" height="15" fill="rgb(230,102,11)" fg:x="2894" fg:w="8"/><text x="12.5817%" y="2543.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="12.3402%" y="2517" width="0.0256%" height="15" fill="rgb(234,148,36)" fg:x="2896" fg:w="6"/><text x="12.5902%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="12.3658%" y="2565" width="0.0213%" height="15" fill="rgb(251,153,25)" fg:x="2902" fg:w="5"/><text x="12.6158%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="12.3658%" y="2549" width="0.0213%" height="15" fill="rgb(215,129,8)" fg:x="2902" fg:w="5"/><text x="12.6158%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (18 samples, 0.08%)</title><rect x="12.3189%" y="2757" width="0.0767%" height="15" fill="rgb(224,128,35)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2767.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (18 samples, 0.08%)</title><rect x="12.3189%" y="2741" width="0.0767%" height="15" fill="rgb(237,56,52)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (18 samples, 0.08%)</title><rect x="12.3189%" y="2725" width="0.0767%" height="15" fill="rgb(234,213,19)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (18 samples, 0.08%)</title><rect x="12.3189%" y="2709" width="0.0767%" height="15" fill="rgb(252,82,23)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (18 samples, 0.08%)</title><rect x="12.3189%" y="2693" width="0.0767%" height="15" fill="rgb(254,201,21)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (18 samples, 0.08%)</title><rect x="12.3189%" y="2677" width="0.0767%" height="15" fill="rgb(250,186,11)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (18 samples, 0.08%)</title><rect x="12.3189%" y="2661" width="0.0767%" height="15" fill="rgb(211,174,5)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (18 samples, 0.08%)</title><rect x="12.3189%" y="2645" width="0.0767%" height="15" fill="rgb(214,121,10)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (18 samples, 0.08%)</title><rect x="12.3189%" y="2629" width="0.0767%" height="15" fill="rgb(241,66,2)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (18 samples, 0.08%)</title><rect x="12.3189%" y="2613" width="0.0767%" height="15" fill="rgb(220,167,19)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (18 samples, 0.08%)</title><rect x="12.3189%" y="2597" width="0.0767%" height="15" fill="rgb(231,54,50)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2607.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (18 samples, 0.08%)</title><rect x="12.3189%" y="2581" width="0.0767%" height="15" fill="rgb(239,217,53)" fg:x="2891" fg:w="18"/><text x="12.5689%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (7 samples, 0.03%)</title><rect x="12.3999%" y="2453" width="0.0298%" height="15" fill="rgb(248,8,0)" fg:x="2910" fg:w="7"/><text x="12.6499%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (7 samples, 0.03%)</title><rect x="12.3999%" y="2437" width="0.0298%" height="15" fill="rgb(229,118,37)" fg:x="2910" fg:w="7"/><text x="12.6499%" y="2447.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="12.4041%" y="2421" width="0.0256%" height="15" fill="rgb(253,223,43)" fg:x="2911" fg:w="6"/><text x="12.6541%" y="2431.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="12.4126%" y="2405" width="0.0170%" height="15" fill="rgb(211,77,36)" fg:x="2913" fg:w="4"/><text x="12.6626%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="12.3956%" y="2645" width="0.0469%" height="15" fill="rgb(219,3,53)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="12.3956%" y="2629" width="0.0469%" height="15" fill="rgb(244,45,42)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (11 samples, 0.05%)</title><rect x="12.3956%" y="2613" width="0.0469%" height="15" fill="rgb(225,95,27)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (11 samples, 0.05%)</title><rect x="12.3956%" y="2597" width="0.0469%" height="15" fill="rgb(207,74,8)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (11 samples, 0.05%)</title><rect x="12.3956%" y="2581" width="0.0469%" height="15" fill="rgb(243,63,36)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (11 samples, 0.05%)</title><rect x="12.3956%" y="2565" width="0.0469%" height="15" fill="rgb(211,180,12)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (11 samples, 0.05%)</title><rect x="12.3956%" y="2549" width="0.0469%" height="15" fill="rgb(254,166,49)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (11 samples, 0.05%)</title><rect x="12.3956%" y="2533" width="0.0469%" height="15" fill="rgb(205,19,0)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (11 samples, 0.05%)</title><rect x="12.3956%" y="2517" width="0.0469%" height="15" fill="rgb(224,172,32)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="12.3956%" y="2501" width="0.0469%" height="15" fill="rgb(254,136,30)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (11 samples, 0.05%)</title><rect x="12.3956%" y="2485" width="0.0469%" height="15" fill="rgb(246,19,35)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (11 samples, 0.05%)</title><rect x="12.3956%" y="2469" width="0.0469%" height="15" fill="rgb(219,24,36)" fg:x="2909" fg:w="11"/><text x="12.6456%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="12.4425%" y="2341" width="0.0128%" height="15" fill="rgb(251,55,1)" fg:x="2920" fg:w="3"/><text x="12.6925%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="12.4425%" y="2325" width="0.0128%" height="15" fill="rgb(218,117,39)" fg:x="2920" fg:w="3"/><text x="12.6925%" y="2335.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="12.4425%" y="2309" width="0.0128%" height="15" fill="rgb(248,169,11)" fg:x="2920" fg:w="3"/><text x="12.6925%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="12.4425%" y="2597" width="0.0256%" height="15" fill="rgb(244,40,44)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="12.4425%" y="2581" width="0.0256%" height="15" fill="rgb(234,62,37)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="12.4425%" y="2565" width="0.0256%" height="15" fill="rgb(207,117,42)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="12.4425%" y="2549" width="0.0256%" height="15" fill="rgb(213,43,2)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="12.4425%" y="2533" width="0.0256%" height="15" fill="rgb(244,202,51)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2543.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="12.4425%" y="2517" width="0.0256%" height="15" fill="rgb(253,174,46)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="12.4425%" y="2501" width="0.0256%" height="15" fill="rgb(251,23,1)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="12.4425%" y="2485" width="0.0256%" height="15" fill="rgb(253,26,1)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="12.4425%" y="2469" width="0.0256%" height="15" fill="rgb(216,89,31)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="12.4425%" y="2453" width="0.0256%" height="15" fill="rgb(209,109,5)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="12.4425%" y="2437" width="0.0256%" height="15" fill="rgb(229,63,13)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="12.4425%" y="2421" width="0.0256%" height="15" fill="rgb(238,137,54)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="12.4425%" y="2405" width="0.0256%" height="15" fill="rgb(228,1,9)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="12.4425%" y="2389" width="0.0256%" height="15" fill="rgb(249,120,48)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="12.4425%" y="2373" width="0.0256%" height="15" fill="rgb(209,72,36)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="12.4425%" y="2357" width="0.0256%" height="15" fill="rgb(247,98,49)" fg:x="2920" fg:w="6"/><text x="12.6925%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="12.4893%" y="1557" width="0.0128%" height="15" fill="rgb(233,75,36)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.4893%" y="1541" width="0.0128%" height="15" fill="rgb(225,14,24)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.4893%" y="1525" width="0.0128%" height="15" fill="rgb(237,193,20)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.4893%" y="1509" width="0.0128%" height="15" fill="rgb(239,122,19)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="12.4893%" y="1493" width="0.0128%" height="15" fill="rgb(231,220,10)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1503.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.4893%" y="1477" width="0.0128%" height="15" fill="rgb(220,66,15)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1487.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.4893%" y="1461" width="0.0128%" height="15" fill="rgb(215,171,52)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1471.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="12.4893%" y="1445" width="0.0128%" height="15" fill="rgb(241,169,50)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1455.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="12.4893%" y="1429" width="0.0128%" height="15" fill="rgb(236,189,0)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1439.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="12.4893%" y="1413" width="0.0128%" height="15" fill="rgb(217,147,20)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1423.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="12.4893%" y="1397" width="0.0128%" height="15" fill="rgb(206,188,39)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="12.4893%" y="1381" width="0.0128%" height="15" fill="rgb(227,118,25)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1391.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="12.4893%" y="1365" width="0.0128%" height="15" fill="rgb(248,171,40)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1375.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="12.4893%" y="1349" width="0.0128%" height="15" fill="rgb(251,90,54)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1359.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="12.4893%" y="1333" width="0.0128%" height="15" fill="rgb(234,11,46)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1343.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="12.4893%" y="1317" width="0.0128%" height="15" fill="rgb(229,134,13)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1327.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="12.4893%" y="1301" width="0.0128%" height="15" fill="rgb(223,129,3)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1311.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="12.4893%" y="1285" width="0.0128%" height="15" fill="rgb(221,124,13)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1295.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.4893%" y="1269" width="0.0128%" height="15" fill="rgb(234,3,18)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1279.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.4893%" y="1253" width="0.0128%" height="15" fill="rgb(249,199,20)" fg:x="2931" fg:w="3"/><text x="12.7393%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="12.4723%" y="2021" width="0.0384%" height="15" fill="rgb(224,134,6)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="12.4723%" y="2005" width="0.0384%" height="15" fill="rgb(254,83,26)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="12.4723%" y="1989" width="0.0384%" height="15" fill="rgb(217,88,9)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1999.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="12.4723%" y="1973" width="0.0384%" height="15" fill="rgb(225,73,2)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1983.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="12.4723%" y="1957" width="0.0384%" height="15" fill="rgb(226,44,39)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="12.4723%" y="1941" width="0.0384%" height="15" fill="rgb(228,53,17)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1951.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="12.4723%" y="1925" width="0.0384%" height="15" fill="rgb(212,27,27)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1935.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="12.4723%" y="1909" width="0.0384%" height="15" fill="rgb(241,50,6)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1919.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="12.4723%" y="1893" width="0.0384%" height="15" fill="rgb(225,28,51)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1903.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="12.4723%" y="1877" width="0.0384%" height="15" fill="rgb(215,33,16)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1887.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="12.4723%" y="1861" width="0.0384%" height="15" fill="rgb(243,40,39)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="12.4723%" y="1845" width="0.0384%" height="15" fill="rgb(225,11,42)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="12.4723%" y="1829" width="0.0384%" height="15" fill="rgb(241,220,38)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="12.4723%" y="1813" width="0.0384%" height="15" fill="rgb(244,52,35)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="12.4723%" y="1797" width="0.0384%" height="15" fill="rgb(246,42,46)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="12.4723%" y="1781" width="0.0384%" height="15" fill="rgb(205,184,13)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="12.4723%" y="1765" width="0.0384%" height="15" fill="rgb(209,48,36)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="12.4723%" y="1749" width="0.0384%" height="15" fill="rgb(244,34,51)" fg:x="2927" fg:w="9"/><text x="12.7223%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="12.4808%" y="1733" width="0.0298%" height="15" fill="rgb(221,107,33)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="12.4808%" y="1717" width="0.0298%" height="15" fill="rgb(224,203,12)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1727.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="12.4808%" y="1701" width="0.0298%" height="15" fill="rgb(230,215,18)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="12.4808%" y="1685" width="0.0298%" height="15" fill="rgb(206,185,35)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="12.4808%" y="1669" width="0.0298%" height="15" fill="rgb(228,140,34)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="12.4808%" y="1653" width="0.0298%" height="15" fill="rgb(208,93,13)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="12.4808%" y="1637" width="0.0298%" height="15" fill="rgb(221,193,39)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="12.4808%" y="1621" width="0.0298%" height="15" fill="rgb(241,132,34)" fg:x="2929" fg:w="7"/><text x="12.7308%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="12.4893%" y="1605" width="0.0213%" height="15" fill="rgb(221,141,10)" fg:x="2931" fg:w="5"/><text x="12.7393%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.4893%" y="1589" width="0.0213%" height="15" fill="rgb(226,90,31)" fg:x="2931" fg:w="5"/><text x="12.7393%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="12.4893%" y="1573" width="0.0213%" height="15" fill="rgb(243,75,5)" fg:x="2931" fg:w="5"/><text x="12.7393%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="12.5107%" y="1845" width="0.0128%" height="15" fill="rgb(227,156,21)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5107%" y="1829" width="0.0128%" height="15" fill="rgb(250,195,8)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5107%" y="1813" width="0.0128%" height="15" fill="rgb(220,134,5)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.5107%" y="1797" width="0.0128%" height="15" fill="rgb(246,106,34)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="12.5107%" y="1781" width="0.0128%" height="15" fill="rgb(205,1,4)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1791.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.5107%" y="1765" width="0.0128%" height="15" fill="rgb(224,151,29)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1775.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.5107%" y="1749" width="0.0128%" height="15" fill="rgb(251,196,0)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="12.5107%" y="1733" width="0.0128%" height="15" fill="rgb(212,127,0)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1743.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="12.5107%" y="1717" width="0.0128%" height="15" fill="rgb(236,71,53)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1727.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5107%" y="1701" width="0.0128%" height="15" fill="rgb(227,99,0)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1711.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5107%" y="1685" width="0.0128%" height="15" fill="rgb(239,89,21)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="12.5107%" y="1669" width="0.0128%" height="15" fill="rgb(243,122,19)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1679.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5107%" y="1653" width="0.0128%" height="15" fill="rgb(229,192,45)" fg:x="2936" fg:w="3"/><text x="12.7607%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (14 samples, 0.06%)</title><rect x="12.4723%" y="2309" width="0.0597%" height="15" fill="rgb(235,165,35)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="12.4723%" y="2293" width="0.0597%" height="15" fill="rgb(253,202,0)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (14 samples, 0.06%)</title><rect x="12.4723%" y="2277" width="0.0597%" height="15" fill="rgb(235,51,20)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (14 samples, 0.06%)</title><rect x="12.4723%" y="2261" width="0.0597%" height="15" fill="rgb(218,95,46)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (14 samples, 0.06%)</title><rect x="12.4723%" y="2245" width="0.0597%" height="15" fill="rgb(212,81,10)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (14 samples, 0.06%)</title><rect x="12.4723%" y="2229" width="0.0597%" height="15" fill="rgb(240,59,0)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="12.4723%" y="2213" width="0.0597%" height="15" fill="rgb(212,191,42)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="12.4723%" y="2197" width="0.0597%" height="15" fill="rgb(233,140,3)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2207.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="12.4723%" y="2181" width="0.0597%" height="15" fill="rgb(215,69,23)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="12.4723%" y="2165" width="0.0597%" height="15" fill="rgb(240,202,20)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="12.4723%" y="2149" width="0.0597%" height="15" fill="rgb(209,146,50)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (14 samples, 0.06%)</title><rect x="12.4723%" y="2133" width="0.0597%" height="15" fill="rgb(253,102,54)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="12.4723%" y="2117" width="0.0597%" height="15" fill="rgb(250,173,47)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="12.4723%" y="2101" width="0.0597%" height="15" fill="rgb(232,142,7)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="12.4723%" y="2085" width="0.0597%" height="15" fill="rgb(230,157,47)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="12.4723%" y="2069" width="0.0597%" height="15" fill="rgb(214,177,35)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="12.4723%" y="2053" width="0.0597%" height="15" fill="rgb(234,119,46)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="12.4723%" y="2037" width="0.0597%" height="15" fill="rgb(241,180,50)" fg:x="2927" fg:w="14"/><text x="12.7223%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="12.5107%" y="2021" width="0.0213%" height="15" fill="rgb(221,54,25)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="12.5107%" y="2005" width="0.0213%" height="15" fill="rgb(209,157,44)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="2015.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="12.5107%" y="1989" width="0.0213%" height="15" fill="rgb(246,115,41)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="12.5107%" y="1973" width="0.0213%" height="15" fill="rgb(229,86,1)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="12.5107%" y="1957" width="0.0213%" height="15" fill="rgb(240,108,53)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5107%" y="1941" width="0.0213%" height="15" fill="rgb(227,134,2)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5107%" y="1925" width="0.0213%" height="15" fill="rgb(213,129,25)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.5107%" y="1909" width="0.0213%" height="15" fill="rgb(226,35,21)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="12.5107%" y="1893" width="0.0213%" height="15" fill="rgb(208,129,26)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.5107%" y="1877" width="0.0213%" height="15" fill="rgb(224,83,6)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5107%" y="1861" width="0.0213%" height="15" fill="rgb(227,52,39)" fg:x="2936" fg:w="5"/><text x="12.7607%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="12.5320%" y="2021" width="0.0128%" height="15" fill="rgb(241,30,17)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="12.5320%" y="2005" width="0.0128%" height="15" fill="rgb(246,186,42)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="12.5320%" y="1989" width="0.0128%" height="15" fill="rgb(221,169,15)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1999.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="12.5320%" y="1973" width="0.0128%" height="15" fill="rgb(235,108,21)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1983.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="12.5320%" y="1957" width="0.0128%" height="15" fill="rgb(219,148,30)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="12.5320%" y="1941" width="0.0128%" height="15" fill="rgb(220,109,5)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1951.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="12.5320%" y="1925" width="0.0128%" height="15" fill="rgb(213,203,48)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1935.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="12.5320%" y="1909" width="0.0128%" height="15" fill="rgb(244,71,33)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1919.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="12.5320%" y="1893" width="0.0128%" height="15" fill="rgb(209,23,2)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1903.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="12.5320%" y="1877" width="0.0128%" height="15" fill="rgb(219,97,7)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1887.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="12.5320%" y="1861" width="0.0128%" height="15" fill="rgb(216,161,23)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5320%" y="1845" width="0.0128%" height="15" fill="rgb(207,45,42)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5320%" y="1829" width="0.0128%" height="15" fill="rgb(241,61,4)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5320%" y="1813" width="0.0128%" height="15" fill="rgb(236,170,1)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.5320%" y="1797" width="0.0128%" height="15" fill="rgb(239,72,5)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.5320%" y="1781" width="0.0128%" height="15" fill="rgb(214,13,50)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.5320%" y="1765" width="0.0128%" height="15" fill="rgb(224,88,9)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5320%" y="1749" width="0.0128%" height="15" fill="rgb(238,192,34)" fg:x="2941" fg:w="3"/><text x="12.7820%" y="1759.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="12.5320%" y="2133" width="0.0213%" height="15" fill="rgb(217,203,50)" fg:x="2941" fg:w="5"/><text x="12.7820%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5320%" y="2117" width="0.0213%" height="15" fill="rgb(241,123,32)" fg:x="2941" fg:w="5"/><text x="12.7820%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5320%" y="2101" width="0.0213%" height="15" fill="rgb(248,151,39)" fg:x="2941" fg:w="5"/><text x="12.7820%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.5320%" y="2085" width="0.0213%" height="15" fill="rgb(208,89,6)" fg:x="2941" fg:w="5"/><text x="12.7820%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="12.5320%" y="2069" width="0.0213%" height="15" fill="rgb(254,43,26)" fg:x="2941" fg:w="5"/><text x="12.7820%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.5320%" y="2053" width="0.0213%" height="15" fill="rgb(216,158,13)" fg:x="2941" fg:w="5"/><text x="12.7820%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5320%" y="2037" width="0.0213%" height="15" fill="rgb(212,47,37)" fg:x="2941" fg:w="5"/><text x="12.7820%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="12.5533%" y="1957" width="0.0128%" height="15" fill="rgb(254,16,10)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5533%" y="1941" width="0.0128%" height="15" fill="rgb(223,228,16)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5533%" y="1925" width="0.0128%" height="15" fill="rgb(249,108,50)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.5533%" y="1909" width="0.0128%" height="15" fill="rgb(208,220,5)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="12.5533%" y="1893" width="0.0128%" height="15" fill="rgb(217,89,48)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1903.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.5533%" y="1877" width="0.0128%" height="15" fill="rgb(212,113,41)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1887.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.5533%" y="1861" width="0.0128%" height="15" fill="rgb(231,127,5)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="12.5533%" y="1845" width="0.0128%" height="15" fill="rgb(217,141,17)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1855.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="12.5533%" y="1829" width="0.0128%" height="15" fill="rgb(245,125,54)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1839.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5533%" y="1813" width="0.0128%" height="15" fill="rgb(248,125,3)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1823.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5533%" y="1797" width="0.0128%" height="15" fill="rgb(236,119,51)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="12.5533%" y="1781" width="0.0128%" height="15" fill="rgb(239,99,8)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1791.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="12.5533%" y="1765" width="0.0128%" height="15" fill="rgb(224,228,4)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1775.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="12.5533%" y="1749" width="0.0128%" height="15" fill="rgb(220,131,45)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1759.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="12.5533%" y="1733" width="0.0128%" height="15" fill="rgb(215,62,5)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1743.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="12.5533%" y="1717" width="0.0128%" height="15" fill="rgb(253,12,24)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1727.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="12.5533%" y="1701" width="0.0128%" height="15" fill="rgb(248,120,50)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1711.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="12.5533%" y="1685" width="0.0128%" height="15" fill="rgb(245,194,10)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1695.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.5533%" y="1669" width="0.0128%" height="15" fill="rgb(241,149,38)" fg:x="2946" fg:w="3"/><text x="12.8033%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (25 samples, 0.11%)</title><rect x="12.4680%" y="2597" width="0.1065%" height="15" fill="rgb(219,215,7)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (25 samples, 0.11%)</title><rect x="12.4680%" y="2581" width="0.1065%" height="15" fill="rgb(208,120,31)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (25 samples, 0.11%)</title><rect x="12.4680%" y="2565" width="0.1065%" height="15" fill="rgb(244,30,8)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2575.50"></text></g><g><title>rayon_core::job::JobRef::execute (25 samples, 0.11%)</title><rect x="12.4680%" y="2549" width="0.1065%" height="15" fill="rgb(238,35,44)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2559.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (25 samples, 0.11%)</title><rect x="12.4680%" y="2533" width="0.1065%" height="15" fill="rgb(243,218,37)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2543.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (25 samples, 0.11%)</title><rect x="12.4680%" y="2517" width="0.1065%" height="15" fill="rgb(218,169,10)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (25 samples, 0.11%)</title><rect x="12.4680%" y="2501" width="0.1065%" height="15" fill="rgb(221,144,10)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2511.50"></text></g><g><title>std::panic::catch_unwind (25 samples, 0.11%)</title><rect x="12.4680%" y="2485" width="0.1065%" height="15" fill="rgb(226,41,38)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2495.50"></text></g><g><title>std::panicking::try (25 samples, 0.11%)</title><rect x="12.4680%" y="2469" width="0.1065%" height="15" fill="rgb(228,3,1)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2479.50"></text></g><g><title>std::panicking::try::do_call (25 samples, 0.11%)</title><rect x="12.4680%" y="2453" width="0.1065%" height="15" fill="rgb(209,129,12)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (25 samples, 0.11%)</title><rect x="12.4680%" y="2437" width="0.1065%" height="15" fill="rgb(213,136,33)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (25 samples, 0.11%)</title><rect x="12.4680%" y="2421" width="0.1065%" height="15" fill="rgb(209,181,29)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="12.4680%" y="2405" width="0.1065%" height="15" fill="rgb(234,173,18)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="12.4680%" y="2389" width="0.1065%" height="15" fill="rgb(227,73,47)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="12.4680%" y="2373" width="0.1065%" height="15" fill="rgb(234,9,34)" fg:x="2926" fg:w="25"/><text x="12.7180%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="12.4723%" y="2357" width="0.1023%" height="15" fill="rgb(235,172,15)" fg:x="2927" fg:w="24"/><text x="12.7223%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="12.4723%" y="2341" width="0.1023%" height="15" fill="rgb(245,61,2)" fg:x="2927" fg:w="24"/><text x="12.7223%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="12.4723%" y="2325" width="0.1023%" height="15" fill="rgb(238,39,47)" fg:x="2927" fg:w="24"/><text x="12.7223%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="12.5320%" y="2309" width="0.0426%" height="15" fill="rgb(234,37,24)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="12.5320%" y="2293" width="0.0426%" height="15" fill="rgb(248,223,24)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2303.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="12.5320%" y="2277" width="0.0426%" height="15" fill="rgb(223,12,15)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="12.5320%" y="2261" width="0.0426%" height="15" fill="rgb(249,6,3)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="12.5320%" y="2245" width="0.0426%" height="15" fill="rgb(237,105,33)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="12.5320%" y="2229" width="0.0426%" height="15" fill="rgb(252,208,35)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="12.5320%" y="2213" width="0.0426%" height="15" fill="rgb(215,181,35)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="12.5320%" y="2197" width="0.0426%" height="15" fill="rgb(246,212,3)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="12.5320%" y="2181" width="0.0426%" height="15" fill="rgb(247,156,24)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="12.5320%" y="2165" width="0.0426%" height="15" fill="rgb(248,9,31)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="12.5320%" y="2149" width="0.0426%" height="15" fill="rgb(234,26,45)" fg:x="2941" fg:w="10"/><text x="12.7820%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="12.5533%" y="2133" width="0.0213%" height="15" fill="rgb(249,11,32)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="12.5533%" y="2117" width="0.0213%" height="15" fill="rgb(249,162,33)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2127.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="12.5533%" y="2101" width="0.0213%" height="15" fill="rgb(232,4,32)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="12.5533%" y="2085" width="0.0213%" height="15" fill="rgb(212,5,45)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="12.5533%" y="2069" width="0.0213%" height="15" fill="rgb(227,95,13)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5533%" y="2053" width="0.0213%" height="15" fill="rgb(223,205,10)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5533%" y="2037" width="0.0213%" height="15" fill="rgb(222,178,8)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.5533%" y="2021" width="0.0213%" height="15" fill="rgb(216,13,22)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="12.5533%" y="2005" width="0.0213%" height="15" fill="rgb(240,167,12)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.5533%" y="1989" width="0.0213%" height="15" fill="rgb(235,68,35)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="12.5533%" y="1973" width="0.0213%" height="15" fill="rgb(253,40,27)" fg:x="2946" fg:w="5"/><text x="12.8033%" y="1983.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="12.5746%" y="2453" width="0.0384%" height="15" fill="rgb(214,19,28)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="12.5746%" y="2437" width="0.0384%" height="15" fill="rgb(210,167,45)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="12.5746%" y="2421" width="0.0384%" height="15" fill="rgb(232,97,40)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="12.5746%" y="2405" width="0.0384%" height="15" fill="rgb(250,35,23)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="12.5746%" y="2389" width="0.0384%" height="15" fill="rgb(248,47,53)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="12.5746%" y="2373" width="0.0384%" height="15" fill="rgb(226,58,50)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="12.5746%" y="2357" width="0.0384%" height="15" fill="rgb(217,105,26)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="12.5746%" y="2341" width="0.0384%" height="15" fill="rgb(208,64,1)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="12.5746%" y="2325" width="0.0384%" height="15" fill="rgb(214,80,1)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="12.5746%" y="2309" width="0.0384%" height="15" fill="rgb(206,175,26)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="12.5746%" y="2293" width="0.0384%" height="15" fill="rgb(235,156,37)" fg:x="2951" fg:w="9"/><text x="12.8246%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (8 samples, 0.03%)</title><rect x="12.5788%" y="2277" width="0.0341%" height="15" fill="rgb(213,100,9)" fg:x="2952" fg:w="8"/><text x="12.8288%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (8 samples, 0.03%)</title><rect x="12.5788%" y="2261" width="0.0341%" height="15" fill="rgb(241,15,13)" fg:x="2952" fg:w="8"/><text x="12.8288%" y="2271.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="12.5788%" y="2245" width="0.0341%" height="15" fill="rgb(205,97,43)" fg:x="2952" fg:w="8"/><text x="12.8288%" y="2255.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="12.5874%" y="2229" width="0.0256%" height="15" fill="rgb(216,106,32)" fg:x="2954" fg:w="6"/><text x="12.8374%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (53 samples, 0.23%)</title><rect x="12.3956%" y="2709" width="0.2258%" height="15" fill="rgb(226,200,8)" fg:x="2909" fg:w="53"/><text x="12.6456%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (53 samples, 0.23%)</title><rect x="12.3956%" y="2693" width="0.2258%" height="15" fill="rgb(244,54,29)" fg:x="2909" fg:w="53"/><text x="12.6456%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (53 samples, 0.23%)</title><rect x="12.3956%" y="2677" width="0.2258%" height="15" fill="rgb(252,169,12)" fg:x="2909" fg:w="53"/><text x="12.6456%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.23%)</title><rect x="12.3956%" y="2661" width="0.2258%" height="15" fill="rgb(231,199,11)" fg:x="2909" fg:w="53"/><text x="12.6456%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="12.4425%" y="2645" width="0.1790%" height="15" fill="rgb(233,191,18)" fg:x="2920" fg:w="42"/><text x="12.6925%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="12.4425%" y="2629" width="0.1790%" height="15" fill="rgb(215,83,47)" fg:x="2920" fg:w="42"/><text x="12.6925%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="12.4425%" y="2613" width="0.1790%" height="15" fill="rgb(251,67,19)" fg:x="2920" fg:w="42"/><text x="12.6925%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="12.5746%" y="2597" width="0.0469%" height="15" fill="rgb(240,7,20)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="12.5746%" y="2581" width="0.0469%" height="15" fill="rgb(210,150,26)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2591.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="12.5746%" y="2565" width="0.0469%" height="15" fill="rgb(228,75,42)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="12.5746%" y="2549" width="0.0469%" height="15" fill="rgb(237,134,48)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="12.5746%" y="2533" width="0.0469%" height="15" fill="rgb(205,80,50)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="12.5746%" y="2517" width="0.0469%" height="15" fill="rgb(217,74,48)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="12.5746%" y="2501" width="0.0469%" height="15" fill="rgb(205,82,50)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="12.5746%" y="2485" width="0.0469%" height="15" fill="rgb(228,1,33)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="12.5746%" y="2469" width="0.0469%" height="15" fill="rgb(214,50,23)" fg:x="2951" fg:w="11"/><text x="12.8246%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="12.6214%" y="2277" width="0.0170%" height="15" fill="rgb(210,62,9)" fg:x="2962" fg:w="4"/><text x="12.8714%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="12.6214%" y="2261" width="0.0170%" height="15" fill="rgb(210,104,37)" fg:x="2962" fg:w="4"/><text x="12.8714%" y="2271.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="12.6214%" y="2245" width="0.0170%" height="15" fill="rgb(232,104,43)" fg:x="2962" fg:w="4"/><text x="12.8714%" y="2255.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="12.6214%" y="2229" width="0.0170%" height="15" fill="rgb(244,52,6)" fg:x="2962" fg:w="4"/><text x="12.8714%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="12.6214%" y="2469" width="0.0256%" height="15" fill="rgb(211,174,52)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="12.6214%" y="2453" width="0.0256%" height="15" fill="rgb(229,48,4)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="12.6214%" y="2437" width="0.0256%" height="15" fill="rgb(205,155,16)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="12.6214%" y="2421" width="0.0256%" height="15" fill="rgb(211,141,53)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="12.6214%" y="2405" width="0.0256%" height="15" fill="rgb(240,148,11)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="12.6214%" y="2389" width="0.0256%" height="15" fill="rgb(214,45,23)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="12.6214%" y="2373" width="0.0256%" height="15" fill="rgb(248,74,26)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="12.6214%" y="2357" width="0.0256%" height="15" fill="rgb(218,121,16)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="12.6214%" y="2341" width="0.0256%" height="15" fill="rgb(218,10,47)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="12.6214%" y="2325" width="0.0256%" height="15" fill="rgb(227,99,14)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="12.6214%" y="2309" width="0.0256%" height="15" fill="rgb(229,83,46)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="12.6214%" y="2293" width="0.0256%" height="15" fill="rgb(228,25,1)" fg:x="2962" fg:w="6"/><text x="12.8714%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="12.6470%" y="2357" width="0.0170%" height="15" fill="rgb(252,190,15)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="12.6470%" y="2341" width="0.0170%" height="15" fill="rgb(213,103,51)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="12.6470%" y="2325" width="0.0170%" height="15" fill="rgb(220,38,44)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="12.6470%" y="2309" width="0.0170%" height="15" fill="rgb(210,45,26)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="12.6470%" y="2293" width="0.0170%" height="15" fill="rgb(205,95,48)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="12.6470%" y="2277" width="0.0170%" height="15" fill="rgb(225,179,37)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="12.6470%" y="2261" width="0.0170%" height="15" fill="rgb(230,209,3)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="12.6470%" y="2245" width="0.0170%" height="15" fill="rgb(248,12,46)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="12.6470%" y="2229" width="0.0170%" height="15" fill="rgb(234,18,0)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="12.6470%" y="2213" width="0.0170%" height="15" fill="rgb(238,197,14)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="12.6470%" y="2197" width="0.0170%" height="15" fill="rgb(251,162,48)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="12.6470%" y="2181" width="0.0170%" height="15" fill="rgb(237,73,42)" fg:x="2968" fg:w="4"/><text x="12.8970%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="12.6470%" y="2421" width="0.0341%" height="15" fill="rgb(211,108,8)" fg:x="2968" fg:w="8"/><text x="12.8970%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="12.6470%" y="2405" width="0.0341%" height="15" fill="rgb(213,45,22)" fg:x="2968" fg:w="8"/><text x="12.8970%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="12.6470%" y="2389" width="0.0341%" height="15" fill="rgb(252,154,5)" fg:x="2968" fg:w="8"/><text x="12.8970%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="12.6470%" y="2373" width="0.0341%" height="15" fill="rgb(221,79,52)" fg:x="2968" fg:w="8"/><text x="12.8970%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="12.6641%" y="2357" width="0.0170%" height="15" fill="rgb(229,220,36)" fg:x="2972" fg:w="4"/><text x="12.9141%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.6641%" y="2341" width="0.0170%" height="15" fill="rgb(211,17,16)" fg:x="2972" fg:w="4"/><text x="12.9141%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="12.6641%" y="2325" width="0.0170%" height="15" fill="rgb(222,55,31)" fg:x="2972" fg:w="4"/><text x="12.9141%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="12.6811%" y="2181" width="0.0128%" height="15" fill="rgb(221,221,31)" fg:x="2976" fg:w="3"/><text x="12.9311%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="12.6939%" y="2133" width="0.0256%" height="15" fill="rgb(227,168,26)" fg:x="2979" fg:w="6"/><text x="12.9439%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="12.6939%" y="2117" width="0.0256%" height="15" fill="rgb(224,139,9)" fg:x="2979" fg:w="6"/><text x="12.9439%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="12.6939%" y="2101" width="0.0256%" height="15" fill="rgb(254,172,0)" fg:x="2979" fg:w="6"/><text x="12.9439%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="12.6939%" y="2085" width="0.0256%" height="15" fill="rgb(235,203,1)" fg:x="2979" fg:w="6"/><text x="12.9439%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="12.7024%" y="2069" width="0.0170%" height="15" fill="rgb(216,205,24)" fg:x="2981" fg:w="4"/><text x="12.9524%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.7024%" y="2053" width="0.0170%" height="15" fill="rgb(233,24,6)" fg:x="2981" fg:w="4"/><text x="12.9524%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="12.7024%" y="2037" width="0.0170%" height="15" fill="rgb(244,110,9)" fg:x="2981" fg:w="4"/><text x="12.9524%" y="2047.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="12.7237%" y="1845" width="0.0128%" height="15" fill="rgb(239,222,42)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="12.7237%" y="1829" width="0.0128%" height="15" fill="rgb(218,145,13)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="12.7237%" y="1813" width="0.0128%" height="15" fill="rgb(207,69,11)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="12.7237%" y="1797" width="0.0128%" height="15" fill="rgb(220,223,22)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="12.7237%" y="1781" width="0.0128%" height="15" fill="rgb(245,102,5)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="12.7237%" y="1765" width="0.0128%" height="15" fill="rgb(211,148,2)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="12.7237%" y="1749" width="0.0128%" height="15" fill="rgb(241,13,44)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="12.7237%" y="1733" width="0.0128%" height="15" fill="rgb(219,137,21)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1743.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="12.7237%" y="1717" width="0.0128%" height="15" fill="rgb(242,206,5)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="12.7237%" y="1701" width="0.0128%" height="15" fill="rgb(217,114,22)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="12.7237%" y="1685" width="0.0128%" height="15" fill="rgb(253,206,42)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1669" width="0.0128%" height="15" fill="rgb(236,102,18)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1653" width="0.0128%" height="15" fill="rgb(208,59,49)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1637" width="0.0128%" height="15" fill="rgb(215,194,28)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.7237%" y="1621" width="0.0128%" height="15" fill="rgb(243,207,11)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.7237%" y="1605" width="0.0128%" height="15" fill="rgb(254,179,35)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.7237%" y="1589" width="0.0128%" height="15" fill="rgb(235,97,3)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1573" width="0.0128%" height="15" fill="rgb(215,155,33)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="12.7237%" y="1557" width="0.0128%" height="15" fill="rgb(223,128,12)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="12.7237%" y="1541" width="0.0128%" height="15" fill="rgb(208,157,18)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1551.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="12.7237%" y="1525" width="0.0128%" height="15" fill="rgb(249,70,54)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="12.7237%" y="1509" width="0.0128%" height="15" fill="rgb(244,118,24)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="12.7237%" y="1493" width="0.0128%" height="15" fill="rgb(211,54,0)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1477" width="0.0128%" height="15" fill="rgb(245,137,45)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1461" width="0.0128%" height="15" fill="rgb(232,154,31)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.7237%" y="1445" width="0.0128%" height="15" fill="rgb(253,6,39)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.7237%" y="1429" width="0.0128%" height="15" fill="rgb(234,183,24)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.7237%" y="1413" width="0.0128%" height="15" fill="rgb(252,84,40)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1397" width="0.0128%" height="15" fill="rgb(224,65,2)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="12.7237%" y="1381" width="0.0128%" height="15" fill="rgb(229,38,24)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1391.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="12.7237%" y="1365" width="0.0128%" height="15" fill="rgb(218,131,50)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1375.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="12.7237%" y="1349" width="0.0128%" height="15" fill="rgb(233,106,18)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1359.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="12.7237%" y="1333" width="0.0128%" height="15" fill="rgb(220,216,11)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="12.7237%" y="1317" width="0.0128%" height="15" fill="rgb(251,100,45)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1301" width="0.0128%" height="15" fill="rgb(235,143,32)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1285" width="0.0128%" height="15" fill="rgb(248,124,34)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.7237%" y="1269" width="0.0128%" height="15" fill="rgb(225,221,4)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="12.7237%" y="1253" width="0.0128%" height="15" fill="rgb(242,27,43)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1263.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.7237%" y="1237" width="0.0128%" height="15" fill="rgb(227,54,8)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="12.7237%" y="1221" width="0.0128%" height="15" fill="rgb(253,139,49)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1231.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="12.7237%" y="1205" width="0.0128%" height="15" fill="rgb(231,26,43)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1215.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="12.7237%" y="1189" width="0.0128%" height="15" fill="rgb(207,121,39)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1199.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="12.7237%" y="1173" width="0.0128%" height="15" fill="rgb(223,101,35)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1183.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="12.7237%" y="1157" width="0.0128%" height="15" fill="rgb(232,87,23)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1167.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1141" width="0.0128%" height="15" fill="rgb(225,180,29)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1151.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="12.7237%" y="1125" width="0.0128%" height="15" fill="rgb(225,25,17)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1135.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="12.7237%" y="1109" width="0.0128%" height="15" fill="rgb(223,8,52)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1119.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7237%" y="1093" width="0.0128%" height="15" fill="rgb(246,42,21)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1103.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="12.7237%" y="1077" width="0.0128%" height="15" fill="rgb(205,64,43)" fg:x="2986" fg:w="3"/><text x="12.9737%" y="1087.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="12.7194%" y="2133" width="0.0256%" height="15" fill="rgb(221,160,13)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="12.7194%" y="2117" width="0.0256%" height="15" fill="rgb(239,58,35)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="12.7194%" y="2101" width="0.0256%" height="15" fill="rgb(251,26,40)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="12.7194%" y="2085" width="0.0256%" height="15" fill="rgb(247,0,4)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="12.7194%" y="2069" width="0.0256%" height="15" fill="rgb(218,130,10)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="12.7194%" y="2053" width="0.0256%" height="15" fill="rgb(239,32,7)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="12.7194%" y="2037" width="0.0256%" height="15" fill="rgb(210,192,24)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="12.7194%" y="2021" width="0.0256%" height="15" fill="rgb(226,212,17)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2031.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="12.7194%" y="2005" width="0.0256%" height="15" fill="rgb(219,201,28)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="12.7194%" y="1989" width="0.0256%" height="15" fill="rgb(235,207,41)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="12.7194%" y="1973" width="0.0256%" height="15" fill="rgb(241,95,54)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="12.7194%" y="1957" width="0.0256%" height="15" fill="rgb(248,12,23)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="12.7194%" y="1941" width="0.0256%" height="15" fill="rgb(228,173,4)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="12.7194%" y="1925" width="0.0256%" height="15" fill="rgb(254,99,5)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="12.7194%" y="1909" width="0.0256%" height="15" fill="rgb(212,184,17)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="12.7194%" y="1893" width="0.0256%" height="15" fill="rgb(252,174,1)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="12.7194%" y="1877" width="0.0256%" height="15" fill="rgb(241,118,51)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="12.7194%" y="1861" width="0.0256%" height="15" fill="rgb(227,94,47)" fg:x="2985" fg:w="6"/><text x="12.9694%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="12.7535%" y="1957" width="0.0128%" height="15" fill="rgb(229,104,2)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7535%" y="1941" width="0.0128%" height="15" fill="rgb(219,28,31)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7535%" y="1925" width="0.0128%" height="15" fill="rgb(233,109,36)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.7535%" y="1909" width="0.0128%" height="15" fill="rgb(246,88,11)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="12.7535%" y="1893" width="0.0128%" height="15" fill="rgb(209,212,17)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="12.7535%" y="1877" width="0.0128%" height="15" fill="rgb(243,59,29)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="12.7535%" y="1861" width="0.0128%" height="15" fill="rgb(244,205,48)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="12.7535%" y="1845" width="0.0128%" height="15" fill="rgb(227,30,6)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="12.7535%" y="1829" width="0.0128%" height="15" fill="rgb(220,205,48)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="12.7535%" y="1813" width="0.0128%" height="15" fill="rgb(250,94,14)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="12.7535%" y="1797" width="0.0128%" height="15" fill="rgb(216,119,42)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7535%" y="1781" width="0.0128%" height="15" fill="rgb(232,155,0)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="12.7535%" y="1765" width="0.0128%" height="15" fill="rgb(212,24,32)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="12.7535%" y="1749" width="0.0128%" height="15" fill="rgb(216,69,20)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="12.7535%" y="1733" width="0.0128%" height="15" fill="rgb(229,73,31)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="12.7535%" y="1717" width="0.0128%" height="15" fill="rgb(224,219,20)" fg:x="2993" fg:w="3"/><text x="13.0035%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="12.7663%" y="1653" width="0.0128%" height="15" fill="rgb(215,146,41)" fg:x="2996" fg:w="3"/><text x="13.0163%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="12.7663%" y="1637" width="0.0128%" height="15" fill="rgb(244,71,31)" fg:x="2996" fg:w="3"/><text x="13.0163%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="12.7663%" y="1621" width="0.0128%" height="15" fill="rgb(224,24,11)" fg:x="2996" fg:w="3"/><text x="13.0163%" y="1631.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="12.7663%" y="1605" width="0.0128%" height="15" fill="rgb(229,76,15)" fg:x="2996" fg:w="3"/><text x="13.0163%" y="1615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (25 samples, 0.11%)</title><rect x="12.6811%" y="2421" width="0.1065%" height="15" fill="rgb(209,93,2)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (25 samples, 0.11%)</title><rect x="12.6811%" y="2405" width="0.1065%" height="15" fill="rgb(216,200,50)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (25 samples, 0.11%)</title><rect x="12.6811%" y="2389" width="0.1065%" height="15" fill="rgb(211,67,34)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (25 samples, 0.11%)</title><rect x="12.6811%" y="2373" width="0.1065%" height="15" fill="rgb(225,87,47)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (25 samples, 0.11%)</title><rect x="12.6811%" y="2357" width="0.1065%" height="15" fill="rgb(217,185,16)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (25 samples, 0.11%)</title><rect x="12.6811%" y="2341" width="0.1065%" height="15" fill="rgb(205,0,0)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (25 samples, 0.11%)</title><rect x="12.6811%" y="2325" width="0.1065%" height="15" fill="rgb(207,116,45)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (25 samples, 0.11%)</title><rect x="12.6811%" y="2309" width="0.1065%" height="15" fill="rgb(221,156,26)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2319.50"></text></g><g><title>std::panicking::try (25 samples, 0.11%)</title><rect x="12.6811%" y="2293" width="0.1065%" height="15" fill="rgb(213,140,4)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (25 samples, 0.11%)</title><rect x="12.6811%" y="2277" width="0.1065%" height="15" fill="rgb(231,224,15)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (25 samples, 0.11%)</title><rect x="12.6811%" y="2261" width="0.1065%" height="15" fill="rgb(244,76,20)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (25 samples, 0.11%)</title><rect x="12.6811%" y="2245" width="0.1065%" height="15" fill="rgb(238,117,7)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="12.6811%" y="2229" width="0.1065%" height="15" fill="rgb(235,1,10)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="12.6811%" y="2213" width="0.1065%" height="15" fill="rgb(216,165,6)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="12.6811%" y="2197" width="0.1065%" height="15" fill="rgb(246,91,35)" fg:x="2976" fg:w="25"/><text x="12.9311%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="12.6939%" y="2181" width="0.0937%" height="15" fill="rgb(228,96,24)" fg:x="2979" fg:w="22"/><text x="12.9439%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="12.6939%" y="2165" width="0.0937%" height="15" fill="rgb(254,217,53)" fg:x="2979" fg:w="22"/><text x="12.9439%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="12.6939%" y="2149" width="0.0937%" height="15" fill="rgb(209,60,0)" fg:x="2979" fg:w="22"/><text x="12.9439%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="12.7450%" y="2133" width="0.0426%" height="15" fill="rgb(250,93,26)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="12.7450%" y="2117" width="0.0426%" height="15" fill="rgb(211,9,40)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2127.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="12.7450%" y="2101" width="0.0426%" height="15" fill="rgb(242,57,20)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="12.7450%" y="2085" width="0.0426%" height="15" fill="rgb(248,85,48)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="12.7450%" y="2069" width="0.0426%" height="15" fill="rgb(212,117,2)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="12.7450%" y="2053" width="0.0426%" height="15" fill="rgb(243,19,3)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="12.7450%" y="2037" width="0.0426%" height="15" fill="rgb(232,217,24)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="12.7450%" y="2021" width="0.0426%" height="15" fill="rgb(224,175,40)" fg:x="2991" fg:w="10"/><text x="12.9950%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="12.7535%" y="2005" width="0.0341%" height="15" fill="rgb(212,162,32)" fg:x="2993" fg:w="8"/><text x="13.0035%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="12.7535%" y="1989" width="0.0341%" height="15" fill="rgb(215,9,4)" fg:x="2993" fg:w="8"/><text x="13.0035%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="12.7535%" y="1973" width="0.0341%" height="15" fill="rgb(242,42,7)" fg:x="2993" fg:w="8"/><text x="13.0035%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="12.7663%" y="1957" width="0.0213%" height="15" fill="rgb(242,184,45)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="12.7663%" y="1941" width="0.0213%" height="15" fill="rgb(228,111,51)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1951.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="12.7663%" y="1925" width="0.0213%" height="15" fill="rgb(236,147,17)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="12.7663%" y="1909" width="0.0213%" height="15" fill="rgb(210,75,22)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="12.7663%" y="1893" width="0.0213%" height="15" fill="rgb(217,159,45)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="12.7663%" y="1877" width="0.0213%" height="15" fill="rgb(245,165,53)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="12.7663%" y="1861" width="0.0213%" height="15" fill="rgb(251,190,50)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.7663%" y="1845" width="0.0213%" height="15" fill="rgb(208,203,29)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="12.7663%" y="1829" width="0.0213%" height="15" fill="rgb(207,209,35)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="12.7663%" y="1813" width="0.0213%" height="15" fill="rgb(230,144,49)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="12.7663%" y="1797" width="0.0213%" height="15" fill="rgb(229,31,6)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="12.7663%" y="1781" width="0.0213%" height="15" fill="rgb(251,129,24)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="12.7663%" y="1765" width="0.0213%" height="15" fill="rgb(235,105,15)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="12.7663%" y="1749" width="0.0213%" height="15" fill="rgb(216,52,43)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="12.7663%" y="1733" width="0.0213%" height="15" fill="rgb(238,144,41)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="12.7663%" y="1717" width="0.0213%" height="15" fill="rgb(243,63,9)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="12.7663%" y="1701" width="0.0213%" height="15" fill="rgb(246,208,1)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="12.7663%" y="1685" width="0.0213%" height="15" fill="rgb(233,182,18)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="12.7663%" y="1669" width="0.0213%" height="15" fill="rgb(242,224,8)" fg:x="2996" fg:w="5"/><text x="13.0163%" y="1679.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="12.7919%" y="2101" width="0.0213%" height="15" fill="rgb(243,54,37)" fg:x="3002" fg:w="5"/><text x="13.0419%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="12.7919%" y="2085" width="0.0213%" height="15" fill="rgb(233,192,12)" fg:x="3002" fg:w="5"/><text x="13.0419%" y="2095.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="12.7919%" y="2069" width="0.0213%" height="15" fill="rgb(251,192,53)" fg:x="3002" fg:w="5"/><text x="13.0419%" y="2079.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="12.7961%" y="2053" width="0.0170%" height="15" fill="rgb(246,141,26)" fg:x="3003" fg:w="4"/><text x="13.0461%" y="2063.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="12.7919%" y="2117" width="0.0298%" height="15" fill="rgb(239,195,19)" fg:x="3002" fg:w="7"/><text x="13.0419%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="12.7876%" y="2277" width="0.0384%" height="15" fill="rgb(241,16,39)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="12.7876%" y="2261" width="0.0384%" height="15" fill="rgb(223,13,53)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="12.7876%" y="2245" width="0.0384%" height="15" fill="rgb(214,227,0)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="12.7876%" y="2229" width="0.0384%" height="15" fill="rgb(228,103,26)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="12.7876%" y="2213" width="0.0384%" height="15" fill="rgb(254,177,53)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="12.7876%" y="2197" width="0.0384%" height="15" fill="rgb(208,201,34)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="12.7876%" y="2181" width="0.0384%" height="15" fill="rgb(212,39,5)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="12.7876%" y="2165" width="0.0384%" height="15" fill="rgb(246,117,3)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="12.7876%" y="2149" width="0.0384%" height="15" fill="rgb(244,118,39)" fg:x="3001" fg:w="9"/><text x="13.0376%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="12.7919%" y="2133" width="0.0341%" height="15" fill="rgb(241,64,10)" fg:x="3002" fg:w="8"/><text x="13.0419%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="12.7876%" y="2293" width="0.0426%" height="15" fill="rgb(229,39,44)" fg:x="3001" fg:w="10"/><text x="13.0376%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="12.8388%" y="2133" width="0.0128%" height="15" fill="rgb(230,226,3)" fg:x="3013" fg:w="3"/><text x="13.0888%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8388%" y="2117" width="0.0128%" height="15" fill="rgb(222,13,42)" fg:x="3013" fg:w="3"/><text x="13.0888%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8388%" y="2101" width="0.0128%" height="15" fill="rgb(247,180,54)" fg:x="3013" fg:w="3"/><text x="13.0888%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.8388%" y="2085" width="0.0128%" height="15" fill="rgb(205,96,16)" fg:x="3013" fg:w="3"/><text x="13.0888%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.8388%" y="2069" width="0.0128%" height="15" fill="rgb(205,100,21)" fg:x="3013" fg:w="3"/><text x="13.0888%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.8388%" y="2053" width="0.0128%" height="15" fill="rgb(248,51,4)" fg:x="3013" fg:w="3"/><text x="13.0888%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8388%" y="2037" width="0.0128%" height="15" fill="rgb(217,197,30)" fg:x="3013" fg:w="3"/><text x="13.0888%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="12.8302%" y="2245" width="0.0341%" height="15" fill="rgb(240,179,40)" fg:x="3011" fg:w="8"/><text x="13.0802%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="12.8302%" y="2229" width="0.0341%" height="15" fill="rgb(212,185,35)" fg:x="3011" fg:w="8"/><text x="13.0802%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="12.8302%" y="2213" width="0.0341%" height="15" fill="rgb(251,222,31)" fg:x="3011" fg:w="8"/><text x="13.0802%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="12.8302%" y="2197" width="0.0341%" height="15" fill="rgb(208,140,36)" fg:x="3011" fg:w="8"/><text x="13.0802%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="12.8388%" y="2181" width="0.0256%" height="15" fill="rgb(220,148,1)" fg:x="3013" fg:w="6"/><text x="13.0888%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="12.8388%" y="2165" width="0.0256%" height="15" fill="rgb(254,4,28)" fg:x="3013" fg:w="6"/><text x="13.0888%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="12.8388%" y="2149" width="0.0256%" height="15" fill="rgb(222,185,44)" fg:x="3013" fg:w="6"/><text x="13.0888%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="12.8515%" y="2133" width="0.0128%" height="15" fill="rgb(215,74,39)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="12.8515%" y="2117" width="0.0128%" height="15" fill="rgb(247,86,4)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2127.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="12.8515%" y="2101" width="0.0128%" height="15" fill="rgb(231,105,32)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="12.8515%" y="2085" width="0.0128%" height="15" fill="rgb(222,65,35)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="12.8515%" y="2069" width="0.0128%" height="15" fill="rgb(218,145,35)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8515%" y="2053" width="0.0128%" height="15" fill="rgb(208,7,15)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8515%" y="2037" width="0.0128%" height="15" fill="rgb(209,83,13)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.8515%" y="2021" width="0.0128%" height="15" fill="rgb(218,3,10)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.8515%" y="2005" width="0.0128%" height="15" fill="rgb(211,219,4)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.8515%" y="1989" width="0.0128%" height="15" fill="rgb(228,194,12)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8515%" y="1973" width="0.0128%" height="15" fill="rgb(210,175,7)" fg:x="3016" fg:w="3"/><text x="13.1015%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="12.8686%" y="2069" width="0.0128%" height="15" fill="rgb(243,132,6)" fg:x="3020" fg:w="3"/><text x="13.1186%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8686%" y="2053" width="0.0128%" height="15" fill="rgb(207,72,18)" fg:x="3020" fg:w="3"/><text x="13.1186%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8686%" y="2037" width="0.0128%" height="15" fill="rgb(236,1,18)" fg:x="3020" fg:w="3"/><text x="13.1186%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.8686%" y="2021" width="0.0128%" height="15" fill="rgb(227,0,18)" fg:x="3020" fg:w="3"/><text x="13.1186%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="12.8686%" y="2005" width="0.0128%" height="15" fill="rgb(247,37,5)" fg:x="3020" fg:w="3"/><text x="13.1186%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.8686%" y="1989" width="0.0128%" height="15" fill="rgb(237,179,24)" fg:x="3020" fg:w="3"/><text x="13.1186%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="12.8686%" y="1973" width="0.0128%" height="15" fill="rgb(226,53,20)" fg:x="3020" fg:w="3"/><text x="13.1186%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (65 samples, 0.28%)</title><rect x="12.6214%" y="2709" width="0.2770%" height="15" fill="rgb(247,75,7)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (65 samples, 0.28%)</title><rect x="12.6214%" y="2693" width="0.2770%" height="15" fill="rgb(233,96,12)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (65 samples, 0.28%)</title><rect x="12.6214%" y="2677" width="0.2770%" height="15" fill="rgb(224,125,0)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (65 samples, 0.28%)</title><rect x="12.6214%" y="2661" width="0.2770%" height="15" fill="rgb(224,92,25)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (65 samples, 0.28%)</title><rect x="12.6214%" y="2645" width="0.2770%" height="15" fill="rgb(224,42,24)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (65 samples, 0.28%)</title><rect x="12.6214%" y="2629" width="0.2770%" height="15" fill="rgb(234,132,49)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (65 samples, 0.28%)</title><rect x="12.6214%" y="2613" width="0.2770%" height="15" fill="rgb(248,100,35)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (65 samples, 0.28%)</title><rect x="12.6214%" y="2597" width="0.2770%" height="15" fill="rgb(239,94,40)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2607.50"></text></g><g><title>std::panicking::try (65 samples, 0.28%)</title><rect x="12.6214%" y="2581" width="0.2770%" height="15" fill="rgb(235,139,28)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (65 samples, 0.28%)</title><rect x="12.6214%" y="2565" width="0.2770%" height="15" fill="rgb(217,144,7)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (65 samples, 0.28%)</title><rect x="12.6214%" y="2549" width="0.2770%" height="15" fill="rgb(227,55,4)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (65 samples, 0.28%)</title><rect x="12.6214%" y="2533" width="0.2770%" height="15" fill="rgb(252,82,54)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (65 samples, 0.28%)</title><rect x="12.6214%" y="2517" width="0.2770%" height="15" fill="rgb(245,172,4)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (65 samples, 0.28%)</title><rect x="12.6214%" y="2501" width="0.2770%" height="15" fill="rgb(207,26,27)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.28%)</title><rect x="12.6214%" y="2485" width="0.2770%" height="15" fill="rgb(252,98,18)" fg:x="2962" fg:w="65"/><text x="12.8714%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (59 samples, 0.25%)</title><rect x="12.6470%" y="2469" width="0.2514%" height="15" fill="rgb(244,8,26)" fg:x="2968" fg:w="59"/><text x="12.8970%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (59 samples, 0.25%)</title><rect x="12.6470%" y="2453" width="0.2514%" height="15" fill="rgb(237,173,45)" fg:x="2968" fg:w="59"/><text x="12.8970%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (59 samples, 0.25%)</title><rect x="12.6470%" y="2437" width="0.2514%" height="15" fill="rgb(208,213,49)" fg:x="2968" fg:w="59"/><text x="12.8970%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="12.7876%" y="2421" width="0.1108%" height="15" fill="rgb(212,122,37)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="12.7876%" y="2405" width="0.1108%" height="15" fill="rgb(213,80,17)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2415.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="12.7876%" y="2389" width="0.1108%" height="15" fill="rgb(206,210,43)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="12.7876%" y="2373" width="0.1108%" height="15" fill="rgb(229,214,3)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="12.7876%" y="2357" width="0.1108%" height="15" fill="rgb(235,213,29)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (26 samples, 0.11%)</title><rect x="12.7876%" y="2341" width="0.1108%" height="15" fill="rgb(248,135,26)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="12.7876%" y="2325" width="0.1108%" height="15" fill="rgb(242,188,12)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="12.7876%" y="2309" width="0.1108%" height="15" fill="rgb(245,38,12)" fg:x="3001" fg:w="26"/><text x="13.0376%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="12.8302%" y="2293" width="0.0682%" height="15" fill="rgb(218,42,13)" fg:x="3011" fg:w="16"/><text x="13.0802%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="12.8302%" y="2277" width="0.0682%" height="15" fill="rgb(238,132,49)" fg:x="3011" fg:w="16"/><text x="13.0802%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="12.8302%" y="2261" width="0.0682%" height="15" fill="rgb(209,196,19)" fg:x="3011" fg:w="16"/><text x="13.0802%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="12.8643%" y="2245" width="0.0341%" height="15" fill="rgb(244,131,22)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="12.8643%" y="2229" width="0.0341%" height="15" fill="rgb(223,18,34)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2239.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="12.8643%" y="2213" width="0.0341%" height="15" fill="rgb(252,124,54)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="12.8643%" y="2197" width="0.0341%" height="15" fill="rgb(229,106,42)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="12.8643%" y="2181" width="0.0341%" height="15" fill="rgb(221,129,1)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="12.8643%" y="2165" width="0.0341%" height="15" fill="rgb(229,74,15)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="12.8643%" y="2149" width="0.0341%" height="15" fill="rgb(210,206,50)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="12.8643%" y="2133" width="0.0341%" height="15" fill="rgb(251,114,31)" fg:x="3019" fg:w="8"/><text x="13.1143%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="12.8686%" y="2117" width="0.0298%" height="15" fill="rgb(215,225,28)" fg:x="3020" fg:w="7"/><text x="13.1186%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="12.8686%" y="2101" width="0.0298%" height="15" fill="rgb(237,109,14)" fg:x="3020" fg:w="7"/><text x="13.1186%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="12.8686%" y="2085" width="0.0298%" height="15" fill="rgb(230,13,37)" fg:x="3020" fg:w="7"/><text x="13.1186%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="12.8814%" y="2069" width="0.0170%" height="15" fill="rgb(231,40,28)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="12.8814%" y="2053" width="0.0170%" height="15" fill="rgb(231,202,18)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="12.8814%" y="2037" width="0.0170%" height="15" fill="rgb(225,33,18)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="12.8814%" y="2021" width="0.0170%" height="15" fill="rgb(223,64,47)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="12.8814%" y="2005" width="0.0170%" height="15" fill="rgb(234,114,13)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="12.8814%" y="1989" width="0.0170%" height="15" fill="rgb(248,56,40)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="12.8814%" y="1973" width="0.0170%" height="15" fill="rgb(221,194,21)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.8814%" y="1957" width="0.0170%" height="15" fill="rgb(242,108,46)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="12.8814%" y="1941" width="0.0170%" height="15" fill="rgb(220,106,10)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.8814%" y="1925" width="0.0170%" height="15" fill="rgb(211,88,4)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="12.8814%" y="1909" width="0.0170%" height="15" fill="rgb(214,95,34)" fg:x="3023" fg:w="4"/><text x="13.1314%" y="1919.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (7 samples, 0.03%)</title><rect x="12.8984%" y="2389" width="0.0298%" height="15" fill="rgb(250,160,33)" fg:x="3027" fg:w="7"/><text x="13.1484%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (7 samples, 0.03%)</title><rect x="12.8984%" y="2373" width="0.0298%" height="15" fill="rgb(225,29,10)" fg:x="3027" fg:w="7"/><text x="13.1484%" y="2383.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="12.9027%" y="2357" width="0.0256%" height="15" fill="rgb(224,28,30)" fg:x="3028" fg:w="6"/><text x="13.1527%" y="2367.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="12.9069%" y="2341" width="0.0213%" height="15" fill="rgb(231,77,4)" fg:x="3029" fg:w="5"/><text x="13.1569%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (6 samples, 0.03%)</title><rect x="12.9282%" y="2389" width="0.0256%" height="15" fill="rgb(209,63,21)" fg:x="3034" fg:w="6"/><text x="13.1782%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (6 samples, 0.03%)</title><rect x="12.9282%" y="2373" width="0.0256%" height="15" fill="rgb(226,22,11)" fg:x="3034" fg:w="6"/><text x="13.1782%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (22 samples, 0.09%)</title><rect x="12.8984%" y="2405" width="0.0937%" height="15" fill="rgb(216,82,30)" fg:x="3027" fg:w="22"/><text x="13.1484%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (9 samples, 0.04%)</title><rect x="12.9538%" y="2389" width="0.0384%" height="15" fill="rgb(246,227,38)" fg:x="3040" fg:w="9"/><text x="13.2038%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (9 samples, 0.04%)</title><rect x="12.9538%" y="2373" width="0.0384%" height="15" fill="rgb(251,203,53)" fg:x="3040" fg:w="9"/><text x="13.2038%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (24 samples, 0.10%)</title><rect x="12.8984%" y="2565" width="0.1023%" height="15" fill="rgb(254,101,1)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (24 samples, 0.10%)</title><rect x="12.8984%" y="2549" width="0.1023%" height="15" fill="rgb(241,180,5)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (24 samples, 0.10%)</title><rect x="12.8984%" y="2533" width="0.1023%" height="15" fill="rgb(218,168,4)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (24 samples, 0.10%)</title><rect x="12.8984%" y="2517" width="0.1023%" height="15" fill="rgb(224,223,32)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (24 samples, 0.10%)</title><rect x="12.8984%" y="2501" width="0.1023%" height="15" fill="rgb(236,106,22)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (24 samples, 0.10%)</title><rect x="12.8984%" y="2485" width="0.1023%" height="15" fill="rgb(206,121,5)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (24 samples, 0.10%)</title><rect x="12.8984%" y="2469" width="0.1023%" height="15" fill="rgb(233,87,28)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (24 samples, 0.10%)</title><rect x="12.8984%" y="2453" width="0.1023%" height="15" fill="rgb(236,137,17)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (24 samples, 0.10%)</title><rect x="12.8984%" y="2437" width="0.1023%" height="15" fill="rgb(209,183,38)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (24 samples, 0.10%)</title><rect x="12.8984%" y="2421" width="0.1023%" height="15" fill="rgb(206,162,44)" fg:x="3027" fg:w="24"/><text x="13.1484%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (26 samples, 0.11%)</title><rect x="12.8984%" y="2581" width="0.1108%" height="15" fill="rgb(237,70,39)" fg:x="3027" fg:w="26"/><text x="13.1484%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (14 samples, 0.06%)</title><rect x="13.0092%" y="2277" width="0.0597%" height="15" fill="rgb(212,176,5)" fg:x="3053" fg:w="14"/><text x="13.2592%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (14 samples, 0.06%)</title><rect x="13.0092%" y="2261" width="0.0597%" height="15" fill="rgb(232,95,16)" fg:x="3053" fg:w="14"/><text x="13.2592%" y="2271.50"></text></g><g><title>exp (14 samples, 0.06%)</title><rect x="13.0092%" y="2245" width="0.0597%" height="15" fill="rgb(219,115,35)" fg:x="3053" fg:w="14"/><text x="13.2592%" y="2255.50"></text></g><g><title>[libm.so.6] (11 samples, 0.05%)</title><rect x="13.0220%" y="2229" width="0.0469%" height="15" fill="rgb(251,67,27)" fg:x="3056" fg:w="11"/><text x="13.2720%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="13.0689%" y="2277" width="0.0128%" height="15" fill="rgb(222,95,40)" fg:x="3067" fg:w="3"/><text x="13.3189%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="13.0689%" y="2261" width="0.0128%" height="15" fill="rgb(250,35,16)" fg:x="3067" fg:w="3"/><text x="13.3189%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (20 samples, 0.09%)</title><rect x="13.0092%" y="2453" width="0.0852%" height="15" fill="rgb(224,86,44)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (20 samples, 0.09%)</title><rect x="13.0092%" y="2437" width="0.0852%" height="15" fill="rgb(237,53,53)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (20 samples, 0.09%)</title><rect x="13.0092%" y="2421" width="0.0852%" height="15" fill="rgb(208,171,33)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (20 samples, 0.09%)</title><rect x="13.0092%" y="2405" width="0.0852%" height="15" fill="rgb(222,64,27)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (20 samples, 0.09%)</title><rect x="13.0092%" y="2389" width="0.0852%" height="15" fill="rgb(221,121,35)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (20 samples, 0.09%)</title><rect x="13.0092%" y="2373" width="0.0852%" height="15" fill="rgb(228,137,42)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (20 samples, 0.09%)</title><rect x="13.0092%" y="2357" width="0.0852%" height="15" fill="rgb(227,54,21)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (20 samples, 0.09%)</title><rect x="13.0092%" y="2341" width="0.0852%" height="15" fill="rgb(240,168,33)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (20 samples, 0.09%)</title><rect x="13.0092%" y="2325" width="0.0852%" height="15" fill="rgb(243,159,6)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (20 samples, 0.09%)</title><rect x="13.0092%" y="2309" width="0.0852%" height="15" fill="rgb(205,211,41)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (20 samples, 0.09%)</title><rect x="13.0092%" y="2293" width="0.0852%" height="15" fill="rgb(253,30,1)" fg:x="3053" fg:w="20"/><text x="13.2592%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="13.0816%" y="2277" width="0.0128%" height="15" fill="rgb(226,80,18)" fg:x="3070" fg:w="3"/><text x="13.3316%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="13.0816%" y="2261" width="0.0128%" height="15" fill="rgb(253,156,46)" fg:x="3070" fg:w="3"/><text x="13.3316%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (22 samples, 0.09%)</title><rect x="13.0092%" y="2469" width="0.0937%" height="15" fill="rgb(248,87,27)" fg:x="3053" fg:w="22"/><text x="13.2592%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="13.1115%" y="2309" width="0.0213%" height="15" fill="rgb(227,122,2)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="13.1115%" y="2293" width="0.0213%" height="15" fill="rgb(229,94,39)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="13.1115%" y="2277" width="0.0213%" height="15" fill="rgb(225,173,31)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="13.1115%" y="2261" width="0.0213%" height="15" fill="rgb(239,176,30)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="13.1115%" y="2245" width="0.0213%" height="15" fill="rgb(212,104,21)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="13.1115%" y="2229" width="0.0213%" height="15" fill="rgb(240,209,40)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="13.1115%" y="2213" width="0.0213%" height="15" fill="rgb(234,195,5)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="13.1115%" y="2197" width="0.0213%" height="15" fill="rgb(238,213,1)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2207.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="13.1115%" y="2181" width="0.0213%" height="15" fill="rgb(235,182,54)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="13.1115%" y="2165" width="0.0213%" height="15" fill="rgb(229,50,46)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="13.1115%" y="2149" width="0.0213%" height="15" fill="rgb(219,145,13)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="13.1115%" y="2133" width="0.0213%" height="15" fill="rgb(220,226,10)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="13.1115%" y="2117" width="0.0213%" height="15" fill="rgb(248,47,30)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="13.1115%" y="2101" width="0.0213%" height="15" fill="rgb(231,209,44)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.1115%" y="2085" width="0.0213%" height="15" fill="rgb(209,80,30)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="13.1115%" y="2069" width="0.0213%" height="15" fill="rgb(232,9,14)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="13.1115%" y="2053" width="0.0213%" height="15" fill="rgb(243,91,43)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="13.1115%" y="2037" width="0.0213%" height="15" fill="rgb(231,90,52)" fg:x="3077" fg:w="5"/><text x="13.3615%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="13.1200%" y="2021" width="0.0128%" height="15" fill="rgb(253,192,44)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="13.1200%" y="2005" width="0.0128%" height="15" fill="rgb(241,66,31)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="2015.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="13.1200%" y="1989" width="0.0128%" height="15" fill="rgb(235,81,37)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="13.1200%" y="1973" width="0.0128%" height="15" fill="rgb(223,221,9)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="13.1200%" y="1957" width="0.0128%" height="15" fill="rgb(242,180,7)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="13.1200%" y="1941" width="0.0128%" height="15" fill="rgb(243,78,19)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.1200%" y="1925" width="0.0128%" height="15" fill="rgb(233,23,17)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.1200%" y="1909" width="0.0128%" height="15" fill="rgb(252,122,45)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="13.1200%" y="1893" width="0.0128%" height="15" fill="rgb(247,108,20)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="13.1200%" y="1877" width="0.0128%" height="15" fill="rgb(235,84,21)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="13.1200%" y="1861" width="0.0128%" height="15" fill="rgb(247,129,10)" fg:x="3079" fg:w="3"/><text x="13.3700%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="13.1029%" y="2421" width="0.0511%" height="15" fill="rgb(208,173,14)" fg:x="3075" fg:w="12"/><text x="13.3529%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="13.1029%" y="2405" width="0.0511%" height="15" fill="rgb(236,31,38)" fg:x="3075" fg:w="12"/><text x="13.3529%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="13.1029%" y="2389" width="0.0511%" height="15" fill="rgb(232,65,17)" fg:x="3075" fg:w="12"/><text x="13.3529%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="13.1029%" y="2373" width="0.0511%" height="15" fill="rgb(224,45,49)" fg:x="3075" fg:w="12"/><text x="13.3529%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="13.1029%" y="2357" width="0.0511%" height="15" fill="rgb(225,2,53)" fg:x="3075" fg:w="12"/><text x="13.3529%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="13.1029%" y="2341" width="0.0511%" height="15" fill="rgb(248,210,53)" fg:x="3075" fg:w="12"/><text x="13.3529%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="13.1029%" y="2325" width="0.0511%" height="15" fill="rgb(211,1,30)" fg:x="3075" fg:w="12"/><text x="13.3529%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="13.1328%" y="2309" width="0.0213%" height="15" fill="rgb(224,96,15)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="13.1328%" y="2293" width="0.0213%" height="15" fill="rgb(252,45,11)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2303.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="13.1328%" y="2277" width="0.0213%" height="15" fill="rgb(220,125,38)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="13.1328%" y="2261" width="0.0213%" height="15" fill="rgb(243,161,33)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="13.1328%" y="2245" width="0.0213%" height="15" fill="rgb(248,197,34)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="13.1328%" y="2229" width="0.0213%" height="15" fill="rgb(228,165,23)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="13.1328%" y="2213" width="0.0213%" height="15" fill="rgb(236,94,38)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.1328%" y="2197" width="0.0213%" height="15" fill="rgb(220,13,23)" fg:x="3082" fg:w="5"/><text x="13.3828%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="13.1370%" y="2181" width="0.0170%" height="15" fill="rgb(234,26,39)" fg:x="3083" fg:w="4"/><text x="13.3870%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="13.1370%" y="2165" width="0.0170%" height="15" fill="rgb(205,117,44)" fg:x="3083" fg:w="4"/><text x="13.3870%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="13.1370%" y="2149" width="0.0170%" height="15" fill="rgb(250,42,2)" fg:x="3083" fg:w="4"/><text x="13.3870%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.1626%" y="2181" width="0.0128%" height="15" fill="rgb(223,83,14)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.1626%" y="2165" width="0.0128%" height="15" fill="rgb(241,147,50)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.1626%" y="2149" width="0.0128%" height="15" fill="rgb(218,90,6)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.1626%" y="2133" width="0.0128%" height="15" fill="rgb(210,191,5)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.1626%" y="2117" width="0.0128%" height="15" fill="rgb(225,139,19)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.1626%" y="2101" width="0.0128%" height="15" fill="rgb(210,1,33)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.1626%" y="2085" width="0.0128%" height="15" fill="rgb(213,50,3)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.1626%" y="2069" width="0.0128%" height="15" fill="rgb(234,227,4)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.1626%" y="2053" width="0.0128%" height="15" fill="rgb(246,63,5)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.1626%" y="2037" width="0.0128%" height="15" fill="rgb(245,136,27)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.1626%" y="2021" width="0.0128%" height="15" fill="rgb(247,199,27)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.1626%" y="2005" width="0.0128%" height="15" fill="rgb(252,158,49)" fg:x="3089" fg:w="3"/><text x="13.4126%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="13.1626%" y="2245" width="0.0256%" height="15" fill="rgb(254,73,1)" fg:x="3089" fg:w="6"/><text x="13.4126%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="13.1626%" y="2229" width="0.0256%" height="15" fill="rgb(248,93,19)" fg:x="3089" fg:w="6"/><text x="13.4126%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="13.1626%" y="2213" width="0.0256%" height="15" fill="rgb(206,67,5)" fg:x="3089" fg:w="6"/><text x="13.4126%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="13.1626%" y="2197" width="0.0256%" height="15" fill="rgb(209,210,4)" fg:x="3089" fg:w="6"/><text x="13.4126%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="13.1754%" y="2181" width="0.0128%" height="15" fill="rgb(214,185,36)" fg:x="3092" fg:w="3"/><text x="13.4254%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="13.1754%" y="2165" width="0.0128%" height="15" fill="rgb(233,191,26)" fg:x="3092" fg:w="3"/><text x="13.4254%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="13.1754%" y="2149" width="0.0128%" height="15" fill="rgb(248,94,17)" fg:x="3092" fg:w="3"/><text x="13.4254%" y="2159.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.1882%" y="1941" width="0.0128%" height="15" fill="rgb(250,64,4)" fg:x="3095" fg:w="3"/><text x="13.4382%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.1882%" y="2117" width="0.0170%" height="15" fill="rgb(218,41,53)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="13.1882%" y="2101" width="0.0170%" height="15" fill="rgb(251,176,28)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="13.1882%" y="2085" width="0.0170%" height="15" fill="rgb(247,22,9)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="13.1882%" y="2069" width="0.0170%" height="15" fill="rgb(218,201,14)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="13.1882%" y="2053" width="0.0170%" height="15" fill="rgb(218,94,10)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="13.1882%" y="2037" width="0.0170%" height="15" fill="rgb(222,183,52)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="13.1882%" y="2021" width="0.0170%" height="15" fill="rgb(242,140,25)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="13.1882%" y="2005" width="0.0170%" height="15" fill="rgb(235,197,38)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="13.1882%" y="1989" width="0.0170%" height="15" fill="rgb(237,136,15)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="13.1882%" y="1973" width="0.0170%" height="15" fill="rgb(223,44,49)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="13.1882%" y="1957" width="0.0170%" height="15" fill="rgb(227,71,15)" fg:x="3095" fg:w="4"/><text x="13.4382%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (49 samples, 0.21%)</title><rect x="13.0092%" y="2533" width="0.2088%" height="15" fill="rgb(225,153,20)" fg:x="3053" fg:w="49"/><text x="13.2592%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (49 samples, 0.21%)</title><rect x="13.0092%" y="2517" width="0.2088%" height="15" fill="rgb(210,190,26)" fg:x="3053" fg:w="49"/><text x="13.2592%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (49 samples, 0.21%)</title><rect x="13.0092%" y="2501" width="0.2088%" height="15" fill="rgb(223,147,5)" fg:x="3053" fg:w="49"/><text x="13.2592%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.21%)</title><rect x="13.0092%" y="2485" width="0.2088%" height="15" fill="rgb(207,14,23)" fg:x="3053" fg:w="49"/><text x="13.2592%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="13.1029%" y="2469" width="0.1151%" height="15" fill="rgb(211,195,53)" fg:x="3075" fg:w="27"/><text x="13.3529%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="13.1029%" y="2453" width="0.1151%" height="15" fill="rgb(237,75,46)" fg:x="3075" fg:w="27"/><text x="13.3529%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="13.1029%" y="2437" width="0.1151%" height="15" fill="rgb(254,55,14)" fg:x="3075" fg:w="27"/><text x="13.3529%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="13.1626%" y="2421" width="0.0554%" height="15" fill="rgb(230,185,30)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="13.1626%" y="2405" width="0.0554%" height="15" fill="rgb(220,14,11)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2415.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="13.1626%" y="2389" width="0.0554%" height="15" fill="rgb(215,169,44)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="13.1626%" y="2373" width="0.0554%" height="15" fill="rgb(253,203,20)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="13.1626%" y="2357" width="0.0554%" height="15" fill="rgb(229,225,17)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="13.1626%" y="2341" width="0.0554%" height="15" fill="rgb(236,76,26)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="13.1626%" y="2325" width="0.0554%" height="15" fill="rgb(234,15,30)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="13.1626%" y="2309" width="0.0554%" height="15" fill="rgb(211,113,48)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="13.1626%" y="2293" width="0.0554%" height="15" fill="rgb(221,31,36)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="13.1626%" y="2277" width="0.0554%" height="15" fill="rgb(215,118,52)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="13.1626%" y="2261" width="0.0554%" height="15" fill="rgb(241,151,27)" fg:x="3089" fg:w="13"/><text x="13.4126%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="13.1882%" y="2245" width="0.0298%" height="15" fill="rgb(253,51,3)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="13.1882%" y="2229" width="0.0298%" height="15" fill="rgb(216,201,24)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2239.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="13.1882%" y="2213" width="0.0298%" height="15" fill="rgb(231,107,4)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="13.1882%" y="2197" width="0.0298%" height="15" fill="rgb(243,97,54)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="13.1882%" y="2181" width="0.0298%" height="15" fill="rgb(221,32,51)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="13.1882%" y="2165" width="0.0298%" height="15" fill="rgb(218,171,35)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="13.1882%" y="2149" width="0.0298%" height="15" fill="rgb(214,20,53)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="13.1882%" y="2133" width="0.0298%" height="15" fill="rgb(239,9,52)" fg:x="3095" fg:w="7"/><text x="13.4382%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="13.2052%" y="2117" width="0.0128%" height="15" fill="rgb(215,114,45)" fg:x="3099" fg:w="3"/><text x="13.4552%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="13.2052%" y="2101" width="0.0128%" height="15" fill="rgb(208,118,9)" fg:x="3099" fg:w="3"/><text x="13.4552%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2052%" y="2085" width="0.0128%" height="15" fill="rgb(235,7,39)" fg:x="3099" fg:w="3"/><text x="13.4552%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="13.2265%" y="629" width="0.0128%" height="15" fill="rgb(243,225,15)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="13.2265%" y="613" width="0.0128%" height="15" fill="rgb(225,216,18)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="13.2265%" y="597" width="0.0128%" height="15" fill="rgb(233,36,38)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="607.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="13.2265%" y="581" width="0.0128%" height="15" fill="rgb(239,88,23)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="591.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="13.2265%" y="565" width="0.0128%" height="15" fill="rgb(219,181,35)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="575.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="13.2265%" y="549" width="0.0128%" height="15" fill="rgb(215,18,46)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="13.2265%" y="533" width="0.0128%" height="15" fill="rgb(241,38,11)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="543.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="13.2265%" y="517" width="0.0128%" height="15" fill="rgb(248,169,45)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="527.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="13.2265%" y="501" width="0.0128%" height="15" fill="rgb(239,50,49)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="511.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="13.2265%" y="485" width="0.0128%" height="15" fill="rgb(231,96,31)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="13.2265%" y="469" width="0.0128%" height="15" fill="rgb(224,193,37)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="453" width="0.0128%" height="15" fill="rgb(227,153,50)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="463.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="437" width="0.0128%" height="15" fill="rgb(249,228,3)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="421" width="0.0128%" height="15" fill="rgb(219,164,43)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.2265%" y="405" width="0.0128%" height="15" fill="rgb(216,45,41)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="415.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="13.2265%" y="389" width="0.0128%" height="15" fill="rgb(210,226,51)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="13.2265%" y="373" width="0.0128%" height="15" fill="rgb(209,117,49)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="383.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="357" width="0.0128%" height="15" fill="rgb(206,196,24)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="367.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="13.2265%" y="341" width="0.0128%" height="15" fill="rgb(253,218,3)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="351.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="13.2265%" y="325" width="0.0128%" height="15" fill="rgb(252,166,2)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="335.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="13.2265%" y="309" width="0.0128%" height="15" fill="rgb(236,218,26)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="319.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="13.2265%" y="293" width="0.0128%" height="15" fill="rgb(254,84,19)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="303.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="13.2265%" y="277" width="0.0128%" height="15" fill="rgb(219,137,29)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="287.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="261" width="0.0128%" height="15" fill="rgb(227,47,52)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="245" width="0.0128%" height="15" fill="rgb(229,167,24)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.2265%" y="229" width="0.0128%" height="15" fill="rgb(233,164,1)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="239.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.2265%" y="213" width="0.0128%" height="15" fill="rgb(218,88,48)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="223.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.2265%" y="197" width="0.0128%" height="15" fill="rgb(226,214,24)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="207.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.2265%" y="181" width="0.0128%" height="15" fill="rgb(233,29,12)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="191.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.2265%" y="165" width="0.0128%" height="15" fill="rgb(219,120,34)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="175.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.2265%" y="149" width="0.0128%" height="15" fill="rgb(226,78,44)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.2265%" y="133" width="0.0128%" height="15" fill="rgb(240,15,48)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="143.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.2265%" y="117" width="0.0128%" height="15" fill="rgb(253,176,7)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="101" width="0.0128%" height="15" fill="rgb(206,166,28)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="111.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.2265%" y="85" width="0.0128%" height="15" fill="rgb(241,53,51)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="95.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.2265%" y="69" width="0.0128%" height="15" fill="rgb(249,112,30)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="79.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2265%" y="53" width="0.0128%" height="15" fill="rgb(217,85,30)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="63.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.2265%" y="37" width="0.0128%" height="15" fill="rgb(233,49,7)" fg:x="3104" fg:w="3"/><text x="13.4765%" y="47.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="13.2265%" y="917" width="0.0213%" height="15" fill="rgb(234,109,9)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="927.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="13.2265%" y="901" width="0.0213%" height="15" fill="rgb(253,95,22)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="13.2265%" y="885" width="0.0213%" height="15" fill="rgb(233,176,25)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="895.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="13.2265%" y="869" width="0.0213%" height="15" fill="rgb(236,33,39)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="879.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="13.2265%" y="853" width="0.0213%" height="15" fill="rgb(223,226,42)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="863.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="13.2265%" y="837" width="0.0213%" height="15" fill="rgb(216,99,33)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="13.2265%" y="821" width="0.0213%" height="15" fill="rgb(235,84,23)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="831.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="13.2265%" y="805" width="0.0213%" height="15" fill="rgb(232,2,27)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="815.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="13.2265%" y="789" width="0.0213%" height="15" fill="rgb(241,23,22)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="799.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="13.2265%" y="773" width="0.0213%" height="15" fill="rgb(211,73,27)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="13.2265%" y="757" width="0.0213%" height="15" fill="rgb(235,109,49)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="13.2265%" y="741" width="0.0213%" height="15" fill="rgb(230,99,29)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="13.2265%" y="725" width="0.0213%" height="15" fill="rgb(245,199,7)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="13.2265%" y="709" width="0.0213%" height="15" fill="rgb(217,179,10)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.2265%" y="693" width="0.0213%" height="15" fill="rgb(254,99,47)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="703.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="13.2265%" y="677" width="0.0213%" height="15" fill="rgb(251,121,7)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="13.2265%" y="661" width="0.0213%" height="15" fill="rgb(250,177,26)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="671.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="13.2265%" y="645" width="0.0213%" height="15" fill="rgb(232,88,15)" fg:x="3104" fg:w="5"/><text x="13.4765%" y="655.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="13.2478%" y="629" width="0.0128%" height="15" fill="rgb(251,54,54)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="639.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2478%" y="613" width="0.0128%" height="15" fill="rgb(208,177,15)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2478%" y="597" width="0.0128%" height="15" fill="rgb(205,97,32)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.2478%" y="581" width="0.0128%" height="15" fill="rgb(217,192,13)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.2478%" y="565" width="0.0128%" height="15" fill="rgb(215,163,41)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="575.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.2478%" y="549" width="0.0128%" height="15" fill="rgb(246,83,29)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="559.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.2478%" y="533" width="0.0128%" height="15" fill="rgb(219,2,45)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.2478%" y="517" width="0.0128%" height="15" fill="rgb(242,215,33)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="527.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.2478%" y="501" width="0.0128%" height="15" fill="rgb(217,1,6)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.2478%" y="485" width="0.0128%" height="15" fill="rgb(207,85,52)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.2478%" y="469" width="0.0128%" height="15" fill="rgb(231,171,19)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2478%" y="453" width="0.0128%" height="15" fill="rgb(207,128,4)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="463.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.2478%" y="437" width="0.0128%" height="15" fill="rgb(219,208,4)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="447.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.2478%" y="421" width="0.0128%" height="15" fill="rgb(235,161,42)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2478%" y="405" width="0.0128%" height="15" fill="rgb(247,218,18)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="415.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.2478%" y="389" width="0.0128%" height="15" fill="rgb(232,114,51)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="399.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="13.2478%" y="373" width="0.0128%" height="15" fill="rgb(222,95,3)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="383.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="13.2478%" y="357" width="0.0128%" height="15" fill="rgb(240,65,29)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="367.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="13.2478%" y="341" width="0.0128%" height="15" fill="rgb(249,209,20)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="351.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="13.2478%" y="325" width="0.0128%" height="15" fill="rgb(241,48,37)" fg:x="3109" fg:w="3"/><text x="13.4978%" y="335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="13.2478%" y="741" width="0.0256%" height="15" fill="rgb(230,140,42)" fg:x="3109" fg:w="6"/><text x="13.4978%" y="751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="13.2478%" y="725" width="0.0256%" height="15" fill="rgb(230,176,45)" fg:x="3109" fg:w="6"/><text x="13.4978%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="13.2478%" y="709" width="0.0256%" height="15" fill="rgb(245,112,21)" fg:x="3109" fg:w="6"/><text x="13.4978%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="13.2478%" y="693" width="0.0256%" height="15" fill="rgb(207,183,35)" fg:x="3109" fg:w="6"/><text x="13.4978%" y="703.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="13.2478%" y="677" width="0.0256%" height="15" fill="rgb(227,44,33)" fg:x="3109" fg:w="6"/><text x="13.4978%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="13.2478%" y="661" width="0.0256%" height="15" fill="rgb(246,120,21)" fg:x="3109" fg:w="6"/><text x="13.4978%" y="671.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="13.2478%" y="645" width="0.0256%" height="15" fill="rgb(235,57,52)" fg:x="3109" fg:w="6"/><text x="13.4978%" y="655.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="13.2606%" y="629" width="0.0128%" height="15" fill="rgb(238,84,10)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="639.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="13.2606%" y="613" width="0.0128%" height="15" fill="rgb(251,200,32)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="623.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="13.2606%" y="597" width="0.0128%" height="15" fill="rgb(247,159,13)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="607.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="13.2606%" y="581" width="0.0128%" height="15" fill="rgb(238,64,4)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="591.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="13.2606%" y="565" width="0.0128%" height="15" fill="rgb(221,131,51)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="575.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2606%" y="549" width="0.0128%" height="15" fill="rgb(242,5,29)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2606%" y="533" width="0.0128%" height="15" fill="rgb(214,130,32)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.2606%" y="517" width="0.0128%" height="15" fill="rgb(244,210,16)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.2606%" y="501" width="0.0128%" height="15" fill="rgb(234,48,26)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="511.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.2606%" y="485" width="0.0128%" height="15" fill="rgb(231,82,38)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="495.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.2606%" y="469" width="0.0128%" height="15" fill="rgb(254,128,41)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.2606%" y="453" width="0.0128%" height="15" fill="rgb(212,73,49)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="463.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.2606%" y="437" width="0.0128%" height="15" fill="rgb(205,62,54)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.2606%" y="421" width="0.0128%" height="15" fill="rgb(228,0,8)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.2606%" y="405" width="0.0128%" height="15" fill="rgb(251,28,17)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2606%" y="389" width="0.0128%" height="15" fill="rgb(238,105,27)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.2606%" y="373" width="0.0128%" height="15" fill="rgb(237,216,33)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="383.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.2606%" y="357" width="0.0128%" height="15" fill="rgb(229,228,25)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2606%" y="341" width="0.0128%" height="15" fill="rgb(233,75,23)" fg:x="3112" fg:w="3"/><text x="13.5106%" y="351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="13.2734%" y="565" width="0.0128%" height="15" fill="rgb(231,207,16)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="575.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2734%" y="549" width="0.0128%" height="15" fill="rgb(231,191,45)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2734%" y="533" width="0.0128%" height="15" fill="rgb(224,133,17)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.2734%" y="517" width="0.0128%" height="15" fill="rgb(209,178,27)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.2734%" y="501" width="0.0128%" height="15" fill="rgb(218,37,11)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="511.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.2734%" y="485" width="0.0128%" height="15" fill="rgb(251,226,25)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="495.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.2734%" y="469" width="0.0128%" height="15" fill="rgb(209,222,27)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.2734%" y="453" width="0.0128%" height="15" fill="rgb(238,22,21)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="463.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.2734%" y="437" width="0.0128%" height="15" fill="rgb(233,161,25)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.2734%" y="421" width="0.0128%" height="15" fill="rgb(226,122,53)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.2734%" y="405" width="0.0128%" height="15" fill="rgb(220,123,17)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2734%" y="389" width="0.0128%" height="15" fill="rgb(230,224,35)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.2734%" y="373" width="0.0128%" height="15" fill="rgb(246,83,8)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="383.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.2734%" y="357" width="0.0128%" height="15" fill="rgb(230,214,17)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2734%" y="341" width="0.0128%" height="15" fill="rgb(222,97,18)" fg:x="3115" fg:w="3"/><text x="13.5234%" y="351.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (17 samples, 0.07%)</title><rect x="13.2265%" y="1381" width="0.0724%" height="15" fill="rgb(206,79,1)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1391.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="13.2265%" y="1365" width="0.0724%" height="15" fill="rgb(214,121,34)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1375.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (17 samples, 0.07%)</title><rect x="13.2265%" y="1349" width="0.0724%" height="15" fill="rgb(249,199,46)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1359.50"></text></g><g><title>rayon_core::job::JobRef::execute (17 samples, 0.07%)</title><rect x="13.2265%" y="1333" width="0.0724%" height="15" fill="rgb(214,222,46)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1343.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (17 samples, 0.07%)</title><rect x="13.2265%" y="1317" width="0.0724%" height="15" fill="rgb(248,168,30)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1327.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (17 samples, 0.07%)</title><rect x="13.2265%" y="1301" width="0.0724%" height="15" fill="rgb(226,14,28)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1311.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="13.2265%" y="1285" width="0.0724%" height="15" fill="rgb(253,123,1)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1295.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="13.2265%" y="1269" width="0.0724%" height="15" fill="rgb(225,24,42)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1279.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="13.2265%" y="1253" width="0.0724%" height="15" fill="rgb(216,161,37)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1263.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="13.2265%" y="1237" width="0.0724%" height="15" fill="rgb(251,164,26)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1247.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="13.2265%" y="1221" width="0.0724%" height="15" fill="rgb(219,177,3)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1231.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (17 samples, 0.07%)</title><rect x="13.2265%" y="1205" width="0.0724%" height="15" fill="rgb(222,65,0)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="13.2265%" y="1189" width="0.0724%" height="15" fill="rgb(223,69,54)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="13.2265%" y="1173" width="0.0724%" height="15" fill="rgb(235,30,27)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="13.2265%" y="1157" width="0.0724%" height="15" fill="rgb(220,183,50)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="13.2265%" y="1141" width="0.0724%" height="15" fill="rgb(248,198,15)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="13.2265%" y="1125" width="0.0724%" height="15" fill="rgb(222,211,4)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="13.2265%" y="1109" width="0.0724%" height="15" fill="rgb(214,102,34)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1119.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="13.2265%" y="1093" width="0.0724%" height="15" fill="rgb(245,92,5)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1103.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="13.2265%" y="1077" width="0.0724%" height="15" fill="rgb(252,72,51)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1087.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="13.2265%" y="1061" width="0.0724%" height="15" fill="rgb(252,208,19)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1071.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="13.2265%" y="1045" width="0.0724%" height="15" fill="rgb(211,69,7)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1055.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="13.2265%" y="1029" width="0.0724%" height="15" fill="rgb(211,27,16)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="13.2265%" y="1013" width="0.0724%" height="15" fill="rgb(219,216,14)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="13.2265%" y="997" width="0.0724%" height="15" fill="rgb(219,71,8)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="13.2265%" y="981" width="0.0724%" height="15" fill="rgb(223,170,53)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="991.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="13.2265%" y="965" width="0.0724%" height="15" fill="rgb(246,21,26)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="13.2265%" y="949" width="0.0724%" height="15" fill="rgb(248,20,46)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="13.2265%" y="933" width="0.0724%" height="15" fill="rgb(252,94,11)" fg:x="3104" fg:w="17"/><text x="13.4765%" y="943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="13.2478%" y="917" width="0.0511%" height="15" fill="rgb(236,163,8)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="927.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="13.2478%" y="901" width="0.0511%" height="15" fill="rgb(217,221,45)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="911.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="13.2478%" y="885" width="0.0511%" height="15" fill="rgb(238,38,17)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="895.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="13.2478%" y="869" width="0.0511%" height="15" fill="rgb(242,210,23)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="13.2478%" y="853" width="0.0511%" height="15" fill="rgb(250,86,53)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="13.2478%" y="837" width="0.0511%" height="15" fill="rgb(223,168,25)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="13.2478%" y="821" width="0.0511%" height="15" fill="rgb(251,189,4)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="13.2478%" y="805" width="0.0511%" height="15" fill="rgb(245,19,28)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="815.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="13.2478%" y="789" width="0.0511%" height="15" fill="rgb(207,10,34)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="13.2478%" y="773" width="0.0511%" height="15" fill="rgb(235,153,31)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="13.2478%" y="757" width="0.0511%" height="15" fill="rgb(228,72,37)" fg:x="3109" fg:w="12"/><text x="13.4978%" y="767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="13.2734%" y="741" width="0.0256%" height="15" fill="rgb(215,15,16)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="751.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="13.2734%" y="725" width="0.0256%" height="15" fill="rgb(250,119,29)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="735.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="13.2734%" y="709" width="0.0256%" height="15" fill="rgb(214,59,1)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="719.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="13.2734%" y="693" width="0.0256%" height="15" fill="rgb(223,109,25)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="13.2734%" y="677" width="0.0256%" height="15" fill="rgb(230,198,22)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="13.2734%" y="661" width="0.0256%" height="15" fill="rgb(245,184,46)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="13.2734%" y="645" width="0.0256%" height="15" fill="rgb(253,73,16)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="13.2734%" y="629" width="0.0256%" height="15" fill="rgb(206,94,45)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="639.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="13.2734%" y="613" width="0.0256%" height="15" fill="rgb(236,83,27)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="13.2734%" y="597" width="0.0256%" height="15" fill="rgb(220,196,8)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="607.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="13.2734%" y="581" width="0.0256%" height="15" fill="rgb(254,185,14)" fg:x="3115" fg:w="6"/><text x="13.5234%" y="591.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="13.2862%" y="565" width="0.0128%" height="15" fill="rgb(226,50,22)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="575.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="13.2862%" y="549" width="0.0128%" height="15" fill="rgb(253,147,0)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="559.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="13.2862%" y="533" width="0.0128%" height="15" fill="rgb(252,46,33)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="543.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="13.2862%" y="517" width="0.0128%" height="15" fill="rgb(242,22,54)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="527.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="13.2862%" y="501" width="0.0128%" height="15" fill="rgb(223,178,32)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="511.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2862%" y="485" width="0.0128%" height="15" fill="rgb(214,106,53)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2862%" y="469" width="0.0128%" height="15" fill="rgb(232,65,50)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.2862%" y="453" width="0.0128%" height="15" fill="rgb(231,110,28)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="463.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.2862%" y="437" width="0.0128%" height="15" fill="rgb(216,71,40)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="447.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.2862%" y="421" width="0.0128%" height="15" fill="rgb(229,89,53)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="431.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.2862%" y="405" width="0.0128%" height="15" fill="rgb(210,124,14)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.2862%" y="389" width="0.0128%" height="15" fill="rgb(236,213,6)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="399.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.2862%" y="373" width="0.0128%" height="15" fill="rgb(228,41,5)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.2862%" y="357" width="0.0128%" height="15" fill="rgb(221,167,25)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.2862%" y="341" width="0.0128%" height="15" fill="rgb(228,144,37)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="351.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2862%" y="325" width="0.0128%" height="15" fill="rgb(227,189,38)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.2862%" y="309" width="0.0128%" height="15" fill="rgb(218,8,2)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="319.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.2862%" y="293" width="0.0128%" height="15" fill="rgb(209,61,28)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.2862%" y="277" width="0.0128%" height="15" fill="rgb(233,140,39)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="287.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.2862%" y="261" width="0.0128%" height="15" fill="rgb(251,66,48)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="271.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="13.2862%" y="245" width="0.0128%" height="15" fill="rgb(210,44,45)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="255.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="13.2862%" y="229" width="0.0128%" height="15" fill="rgb(214,136,46)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="239.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="13.2862%" y="213" width="0.0128%" height="15" fill="rgb(207,130,50)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="223.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="13.2862%" y="197" width="0.0128%" height="15" fill="rgb(228,102,49)" fg:x="3118" fg:w="3"/><text x="13.5362%" y="207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (19 samples, 0.08%)</title><rect x="13.2265%" y="1845" width="0.0810%" height="15" fill="rgb(253,55,1)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.08%)</title><rect x="13.2265%" y="1829" width="0.0810%" height="15" fill="rgb(238,222,9)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (19 samples, 0.08%)</title><rect x="13.2265%" y="1813" width="0.0810%" height="15" fill="rgb(246,99,6)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (19 samples, 0.08%)</title><rect x="13.2265%" y="1797" width="0.0810%" height="15" fill="rgb(219,110,26)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (19 samples, 0.08%)</title><rect x="13.2265%" y="1781" width="0.0810%" height="15" fill="rgb(239,160,33)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (19 samples, 0.08%)</title><rect x="13.2265%" y="1765" width="0.0810%" height="15" fill="rgb(220,202,23)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="13.2265%" y="1749" width="0.0810%" height="15" fill="rgb(208,80,26)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="13.2265%" y="1733" width="0.0810%" height="15" fill="rgb(243,85,7)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1743.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="13.2265%" y="1717" width="0.0810%" height="15" fill="rgb(228,77,47)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="13.2265%" y="1701" width="0.0810%" height="15" fill="rgb(212,226,8)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="13.2265%" y="1685" width="0.0810%" height="15" fill="rgb(241,120,54)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (19 samples, 0.08%)</title><rect x="13.2265%" y="1669" width="0.0810%" height="15" fill="rgb(226,80,16)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (19 samples, 0.08%)</title><rect x="13.2265%" y="1653" width="0.0810%" height="15" fill="rgb(240,76,13)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="13.2265%" y="1637" width="0.0810%" height="15" fill="rgb(252,74,8)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="13.2265%" y="1621" width="0.0810%" height="15" fill="rgb(244,155,2)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="13.2265%" y="1605" width="0.0810%" height="15" fill="rgb(215,81,35)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="13.2265%" y="1589" width="0.0810%" height="15" fill="rgb(206,55,2)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="13.2265%" y="1573" width="0.0810%" height="15" fill="rgb(231,2,34)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="13.2265%" y="1557" width="0.0810%" height="15" fill="rgb(242,176,48)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="13.2265%" y="1541" width="0.0810%" height="15" fill="rgb(249,31,36)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1551.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="13.2265%" y="1525" width="0.0810%" height="15" fill="rgb(205,18,17)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="13.2265%" y="1509" width="0.0810%" height="15" fill="rgb(254,130,5)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="13.2265%" y="1493" width="0.0810%" height="15" fill="rgb(229,42,45)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="13.2265%" y="1477" width="0.0810%" height="15" fill="rgb(245,95,25)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="13.2265%" y="1461" width="0.0810%" height="15" fill="rgb(249,193,38)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="13.2265%" y="1445" width="0.0810%" height="15" fill="rgb(241,140,43)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="13.2265%" y="1429" width="0.0810%" height="15" fill="rgb(245,78,48)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="13.2265%" y="1413" width="0.0810%" height="15" fill="rgb(214,92,39)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="13.2265%" y="1397" width="0.0810%" height="15" fill="rgb(211,189,14)" fg:x="3104" fg:w="19"/><text x="13.4765%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (21 samples, 0.09%)</title><rect x="13.2265%" y="2133" width="0.0895%" height="15" fill="rgb(218,7,24)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.09%)</title><rect x="13.2265%" y="2117" width="0.0895%" height="15" fill="rgb(224,200,49)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (21 samples, 0.09%)</title><rect x="13.2265%" y="2101" width="0.0895%" height="15" fill="rgb(218,210,14)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (21 samples, 0.09%)</title><rect x="13.2265%" y="2085" width="0.0895%" height="15" fill="rgb(234,142,31)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (21 samples, 0.09%)</title><rect x="13.2265%" y="2069" width="0.0895%" height="15" fill="rgb(227,165,2)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (21 samples, 0.09%)</title><rect x="13.2265%" y="2053" width="0.0895%" height="15" fill="rgb(232,44,46)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="13.2265%" y="2037" width="0.0895%" height="15" fill="rgb(236,149,47)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="13.2265%" y="2021" width="0.0895%" height="15" fill="rgb(227,45,31)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2031.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="13.2265%" y="2005" width="0.0895%" height="15" fill="rgb(240,176,51)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="13.2265%" y="1989" width="0.0895%" height="15" fill="rgb(249,146,41)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="13.2265%" y="1973" width="0.0895%" height="15" fill="rgb(213,208,4)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (21 samples, 0.09%)</title><rect x="13.2265%" y="1957" width="0.0895%" height="15" fill="rgb(245,84,36)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="13.2265%" y="1941" width="0.0895%" height="15" fill="rgb(254,84,18)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="13.2265%" y="1925" width="0.0895%" height="15" fill="rgb(225,38,54)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="13.2265%" y="1909" width="0.0895%" height="15" fill="rgb(246,50,30)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="13.2265%" y="1893" width="0.0895%" height="15" fill="rgb(246,148,9)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="13.2265%" y="1877" width="0.0895%" height="15" fill="rgb(223,75,4)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="13.2265%" y="1861" width="0.0895%" height="15" fill="rgb(239,148,41)" fg:x="3104" fg:w="21"/><text x="13.4765%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (25 samples, 0.11%)</title><rect x="13.2265%" y="2245" width="0.1065%" height="15" fill="rgb(205,195,3)" fg:x="3104" fg:w="25"/><text x="13.4765%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="13.2265%" y="2229" width="0.1065%" height="15" fill="rgb(254,161,1)" fg:x="3104" fg:w="25"/><text x="13.4765%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="13.2265%" y="2213" width="0.1065%" height="15" fill="rgb(211,229,8)" fg:x="3104" fg:w="25"/><text x="13.4765%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="13.2265%" y="2197" width="0.1065%" height="15" fill="rgb(220,97,9)" fg:x="3104" fg:w="25"/><text x="13.4765%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="13.2265%" y="2181" width="0.1065%" height="15" fill="rgb(240,218,8)" fg:x="3104" fg:w="25"/><text x="13.4765%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="13.2265%" y="2165" width="0.1065%" height="15" fill="rgb(250,44,0)" fg:x="3104" fg:w="25"/><text x="13.4765%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="13.2265%" y="2149" width="0.1065%" height="15" fill="rgb(236,41,53)" fg:x="3104" fg:w="25"/><text x="13.4765%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="13.3160%" y="2133" width="0.0170%" height="15" fill="rgb(218,227,13)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="13.3160%" y="2117" width="0.0170%" height="15" fill="rgb(217,94,32)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="13.3160%" y="2101" width="0.0170%" height="15" fill="rgb(213,217,12)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="13.3160%" y="2085" width="0.0170%" height="15" fill="rgb(229,13,46)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="13.3160%" y="2069" width="0.0170%" height="15" fill="rgb(243,139,5)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3160%" y="2053" width="0.0170%" height="15" fill="rgb(249,38,45)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3160%" y="2037" width="0.0170%" height="15" fill="rgb(216,70,11)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.3160%" y="2021" width="0.0170%" height="15" fill="rgb(253,101,25)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="13.3160%" y="2005" width="0.0170%" height="15" fill="rgb(207,197,30)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="13.3160%" y="1989" width="0.0170%" height="15" fill="rgb(238,87,13)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3160%" y="1973" width="0.0170%" height="15" fill="rgb(215,155,8)" fg:x="3125" fg:w="4"/><text x="13.5660%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="13.3330%" y="2069" width="0.0170%" height="15" fill="rgb(239,166,38)" fg:x="3129" fg:w="4"/><text x="13.5830%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3330%" y="2053" width="0.0170%" height="15" fill="rgb(240,194,35)" fg:x="3129" fg:w="4"/><text x="13.5830%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3330%" y="2037" width="0.0170%" height="15" fill="rgb(219,10,44)" fg:x="3129" fg:w="4"/><text x="13.5830%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.3330%" y="2021" width="0.0170%" height="15" fill="rgb(251,220,35)" fg:x="3129" fg:w="4"/><text x="13.5830%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="13.3330%" y="2005" width="0.0170%" height="15" fill="rgb(218,117,13)" fg:x="3129" fg:w="4"/><text x="13.5830%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="13.3330%" y="1989" width="0.0170%" height="15" fill="rgb(221,213,40)" fg:x="3129" fg:w="4"/><text x="13.5830%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3330%" y="1973" width="0.0170%" height="15" fill="rgb(251,224,35)" fg:x="3129" fg:w="4"/><text x="13.5830%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (35 samples, 0.15%)</title><rect x="13.2180%" y="2533" width="0.1491%" height="15" fill="rgb(241,33,39)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (35 samples, 0.15%)</title><rect x="13.2180%" y="2517" width="0.1491%" height="15" fill="rgb(222,74,17)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (35 samples, 0.15%)</title><rect x="13.2180%" y="2501" width="0.1491%" height="15" fill="rgb(225,103,0)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (35 samples, 0.15%)</title><rect x="13.2180%" y="2485" width="0.1491%" height="15" fill="rgb(240,0,12)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (35 samples, 0.15%)</title><rect x="13.2180%" y="2469" width="0.1491%" height="15" fill="rgb(233,213,37)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (35 samples, 0.15%)</title><rect x="13.2180%" y="2453" width="0.1491%" height="15" fill="rgb(225,84,52)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (35 samples, 0.15%)</title><rect x="13.2180%" y="2437" width="0.1491%" height="15" fill="rgb(247,160,51)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (35 samples, 0.15%)</title><rect x="13.2180%" y="2421" width="0.1491%" height="15" fill="rgb(244,60,51)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2431.50"></text></g><g><title>std::panicking::try (35 samples, 0.15%)</title><rect x="13.2180%" y="2405" width="0.1491%" height="15" fill="rgb(233,114,7)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (35 samples, 0.15%)</title><rect x="13.2180%" y="2389" width="0.1491%" height="15" fill="rgb(246,136,16)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (35 samples, 0.15%)</title><rect x="13.2180%" y="2373" width="0.1491%" height="15" fill="rgb(243,114,45)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (35 samples, 0.15%)</title><rect x="13.2180%" y="2357" width="0.1491%" height="15" fill="rgb(247,183,43)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (35 samples, 0.15%)</title><rect x="13.2180%" y="2341" width="0.1491%" height="15" fill="rgb(251,210,42)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (35 samples, 0.15%)</title><rect x="13.2180%" y="2325" width="0.1491%" height="15" fill="rgb(221,88,35)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.15%)</title><rect x="13.2180%" y="2309" width="0.1491%" height="15" fill="rgb(242,21,20)" fg:x="3102" fg:w="35"/><text x="13.4680%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (33 samples, 0.14%)</title><rect x="13.2265%" y="2293" width="0.1406%" height="15" fill="rgb(233,226,36)" fg:x="3104" fg:w="33"/><text x="13.4765%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.14%)</title><rect x="13.2265%" y="2277" width="0.1406%" height="15" fill="rgb(243,189,34)" fg:x="3104" fg:w="33"/><text x="13.4765%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33 samples, 0.14%)</title><rect x="13.2265%" y="2261" width="0.1406%" height="15" fill="rgb(207,145,50)" fg:x="3104" fg:w="33"/><text x="13.4765%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="13.3330%" y="2245" width="0.0341%" height="15" fill="rgb(242,1,50)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="13.3330%" y="2229" width="0.0341%" height="15" fill="rgb(231,65,32)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2239.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="13.3330%" y="2213" width="0.0341%" height="15" fill="rgb(208,68,49)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="13.3330%" y="2197" width="0.0341%" height="15" fill="rgb(253,54,49)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="13.3330%" y="2181" width="0.0341%" height="15" fill="rgb(245,186,24)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="13.3330%" y="2165" width="0.0341%" height="15" fill="rgb(209,2,41)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="13.3330%" y="2149" width="0.0341%" height="15" fill="rgb(242,208,54)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="13.3330%" y="2133" width="0.0341%" height="15" fill="rgb(225,9,51)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="13.3330%" y="2117" width="0.0341%" height="15" fill="rgb(207,207,25)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="13.3330%" y="2101" width="0.0341%" height="15" fill="rgb(253,96,18)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="13.3330%" y="2085" width="0.0341%" height="15" fill="rgb(252,215,20)" fg:x="3129" fg:w="8"/><text x="13.5830%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="13.3501%" y="2069" width="0.0170%" height="15" fill="rgb(245,227,26)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="13.3501%" y="2053" width="0.0170%" height="15" fill="rgb(241,208,0)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="13.3501%" y="2037" width="0.0170%" height="15" fill="rgb(224,130,10)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="13.3501%" y="2021" width="0.0170%" height="15" fill="rgb(237,29,0)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="13.3501%" y="2005" width="0.0170%" height="15" fill="rgb(219,27,41)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3501%" y="1989" width="0.0170%" height="15" fill="rgb(245,101,19)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3501%" y="1973" width="0.0170%" height="15" fill="rgb(243,44,37)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.3501%" y="1957" width="0.0170%" height="15" fill="rgb(228,213,43)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="13.3501%" y="1941" width="0.0170%" height="15" fill="rgb(219,163,21)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="13.3501%" y="1925" width="0.0170%" height="15" fill="rgb(234,86,24)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="13.3501%" y="1909" width="0.0170%" height="15" fill="rgb(225,10,24)" fg:x="3133" fg:w="4"/><text x="13.6001%" y="1919.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="13.3671%" y="2213" width="0.0469%" height="15" fill="rgb(218,109,7)" fg:x="3137" fg:w="11"/><text x="13.6171%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="13.3671%" y="2197" width="0.0469%" height="15" fill="rgb(210,20,26)" fg:x="3137" fg:w="11"/><text x="13.6171%" y="2207.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="13.3714%" y="2181" width="0.0426%" height="15" fill="rgb(216,18,1)" fg:x="3138" fg:w="10"/><text x="13.6214%" y="2191.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="13.3799%" y="2165" width="0.0341%" height="15" fill="rgb(206,163,23)" fg:x="3140" fg:w="8"/><text x="13.6299%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="13.4140%" y="2213" width="0.0213%" height="15" fill="rgb(229,150,31)" fg:x="3148" fg:w="5"/><text x="13.6640%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="13.4140%" y="2197" width="0.0213%" height="15" fill="rgb(231,10,5)" fg:x="3148" fg:w="5"/><text x="13.6640%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (20 samples, 0.09%)</title><rect x="13.3671%" y="2229" width="0.0852%" height="15" fill="rgb(250,40,50)" fg:x="3137" fg:w="20"/><text x="13.6171%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="13.4353%" y="2213" width="0.0170%" height="15" fill="rgb(217,119,7)" fg:x="3153" fg:w="4"/><text x="13.6853%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="13.4353%" y="2197" width="0.0170%" height="15" fill="rgb(245,214,40)" fg:x="3153" fg:w="4"/><text x="13.6853%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (22 samples, 0.09%)</title><rect x="13.3671%" y="2389" width="0.0937%" height="15" fill="rgb(216,187,1)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (22 samples, 0.09%)</title><rect x="13.3671%" y="2373" width="0.0937%" height="15" fill="rgb(237,146,21)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (22 samples, 0.09%)</title><rect x="13.3671%" y="2357" width="0.0937%" height="15" fill="rgb(210,174,47)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (22 samples, 0.09%)</title><rect x="13.3671%" y="2341" width="0.0937%" height="15" fill="rgb(218,111,39)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (22 samples, 0.09%)</title><rect x="13.3671%" y="2325" width="0.0937%" height="15" fill="rgb(224,95,19)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (22 samples, 0.09%)</title><rect x="13.3671%" y="2309" width="0.0937%" height="15" fill="rgb(234,15,38)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (22 samples, 0.09%)</title><rect x="13.3671%" y="2293" width="0.0937%" height="15" fill="rgb(246,56,12)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (22 samples, 0.09%)</title><rect x="13.3671%" y="2277" width="0.0937%" height="15" fill="rgb(247,16,17)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (22 samples, 0.09%)</title><rect x="13.3671%" y="2261" width="0.0937%" height="15" fill="rgb(215,151,11)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (22 samples, 0.09%)</title><rect x="13.3671%" y="2245" width="0.0937%" height="15" fill="rgb(225,16,24)" fg:x="3137" fg:w="22"/><text x="13.6171%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (24 samples, 0.10%)</title><rect x="13.3671%" y="2405" width="0.1023%" height="15" fill="rgb(217,117,5)" fg:x="3137" fg:w="24"/><text x="13.6171%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="13.4779%" y="1989" width="0.0128%" height="15" fill="rgb(246,187,53)" fg:x="3163" fg:w="3"/><text x="13.7279%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="13.4779%" y="1973" width="0.0128%" height="15" fill="rgb(241,71,40)" fg:x="3163" fg:w="3"/><text x="13.7279%" y="1983.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="13.4779%" y="1957" width="0.0128%" height="15" fill="rgb(231,67,39)" fg:x="3163" fg:w="3"/><text x="13.7279%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.4779%" y="2181" width="0.0170%" height="15" fill="rgb(222,120,24)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="13.4779%" y="2165" width="0.0170%" height="15" fill="rgb(248,3,3)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="13.4779%" y="2149" width="0.0170%" height="15" fill="rgb(228,218,5)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="13.4779%" y="2133" width="0.0170%" height="15" fill="rgb(212,202,43)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="13.4779%" y="2117" width="0.0170%" height="15" fill="rgb(235,183,2)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="13.4779%" y="2101" width="0.0170%" height="15" fill="rgb(230,165,10)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="13.4779%" y="2085" width="0.0170%" height="15" fill="rgb(219,54,40)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="13.4779%" y="2069" width="0.0170%" height="15" fill="rgb(244,73,9)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="13.4779%" y="2053" width="0.0170%" height="15" fill="rgb(212,32,45)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="13.4779%" y="2037" width="0.0170%" height="15" fill="rgb(205,58,31)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="13.4779%" y="2021" width="0.0170%" height="15" fill="rgb(250,120,43)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="13.4779%" y="2005" width="0.0170%" height="15" fill="rgb(235,13,10)" fg:x="3163" fg:w="4"/><text x="13.7279%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="13.4950%" y="2133" width="0.0128%" height="15" fill="rgb(232,219,31)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="13.4950%" y="2117" width="0.0128%" height="15" fill="rgb(218,157,51)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.4950%" y="2101" width="0.0128%" height="15" fill="rgb(211,91,52)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.4950%" y="2085" width="0.0128%" height="15" fill="rgb(240,173,1)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.4950%" y="2069" width="0.0128%" height="15" fill="rgb(248,20,47)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.4950%" y="2053" width="0.0128%" height="15" fill="rgb(217,221,40)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.4950%" y="2037" width="0.0128%" height="15" fill="rgb(226,149,51)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.4950%" y="2021" width="0.0128%" height="15" fill="rgb(252,193,7)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.4950%" y="2005" width="0.0128%" height="15" fill="rgb(205,123,0)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.4950%" y="1989" width="0.0128%" height="15" fill="rgb(233,173,25)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.4950%" y="1973" width="0.0128%" height="15" fill="rgb(216,63,32)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.4950%" y="1957" width="0.0128%" height="15" fill="rgb(209,56,45)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.4950%" y="1941" width="0.0128%" height="15" fill="rgb(226,111,49)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.4950%" y="1925" width="0.0128%" height="15" fill="rgb(244,181,21)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.4950%" y="1909" width="0.0128%" height="15" fill="rgb(222,126,15)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.4950%" y="1893" width="0.0128%" height="15" fill="rgb(222,95,17)" fg:x="3167" fg:w="3"/><text x="13.7450%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.5078%" y="2005" width="0.0170%" height="15" fill="rgb(254,46,5)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="13.5078%" y="1989" width="0.0170%" height="15" fill="rgb(236,216,35)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="13.5078%" y="1973" width="0.0170%" height="15" fill="rgb(217,187,26)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="13.5078%" y="1957" width="0.0170%" height="15" fill="rgb(207,192,25)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="13.5078%" y="1941" width="0.0170%" height="15" fill="rgb(253,135,27)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="13.5078%" y="1925" width="0.0170%" height="15" fill="rgb(211,122,29)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="13.5078%" y="1909" width="0.0170%" height="15" fill="rgb(233,162,40)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="13.5078%" y="1893" width="0.0170%" height="15" fill="rgb(222,184,47)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="13.5078%" y="1877" width="0.0170%" height="15" fill="rgb(249,99,23)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="13.5078%" y="1861" width="0.0170%" height="15" fill="rgb(214,60,12)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="13.5078%" y="1845" width="0.0170%" height="15" fill="rgb(250,229,36)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="13.5078%" y="1829" width="0.0170%" height="15" fill="rgb(232,195,10)" fg:x="3170" fg:w="4"/><text x="13.7578%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="13.4779%" y="2245" width="0.0511%" height="15" fill="rgb(205,213,31)" fg:x="3163" fg:w="12"/><text x="13.7279%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="13.4779%" y="2229" width="0.0511%" height="15" fill="rgb(237,43,8)" fg:x="3163" fg:w="12"/><text x="13.7279%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="13.4779%" y="2213" width="0.0511%" height="15" fill="rgb(216,208,3)" fg:x="3163" fg:w="12"/><text x="13.7279%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="13.4779%" y="2197" width="0.0511%" height="15" fill="rgb(228,179,44)" fg:x="3163" fg:w="12"/><text x="13.7279%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="13.4950%" y="2181" width="0.0341%" height="15" fill="rgb(230,192,27)" fg:x="3167" fg:w="8"/><text x="13.7450%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="13.4950%" y="2165" width="0.0341%" height="15" fill="rgb(251,30,38)" fg:x="3167" fg:w="8"/><text x="13.7450%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="13.4950%" y="2149" width="0.0341%" height="15" fill="rgb(246,55,52)" fg:x="3167" fg:w="8"/><text x="13.7450%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="13.5078%" y="2133" width="0.0213%" height="15" fill="rgb(249,79,26)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="13.5078%" y="2117" width="0.0213%" height="15" fill="rgb(220,202,16)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2127.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="13.5078%" y="2101" width="0.0213%" height="15" fill="rgb(250,170,23)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="13.5078%" y="2085" width="0.0213%" height="15" fill="rgb(230,7,37)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="13.5078%" y="2069" width="0.0213%" height="15" fill="rgb(213,71,1)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5078%" y="2053" width="0.0213%" height="15" fill="rgb(227,87,39)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5078%" y="2037" width="0.0213%" height="15" fill="rgb(210,41,29)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.5078%" y="2021" width="0.0213%" height="15" fill="rgb(206,191,31)" fg:x="3170" fg:w="5"/><text x="13.7578%" y="2031.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="13.5291%" y="1173" width="0.0256%" height="15" fill="rgb(247,75,54)" fg:x="3175" fg:w="6"/><text x="13.7791%" y="1183.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="13.5291%" y="1157" width="0.0256%" height="15" fill="rgb(208,54,50)" fg:x="3175" fg:w="6"/><text x="13.7791%" y="1167.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="13.5291%" y="1141" width="0.0256%" height="15" fill="rgb(214,90,37)" fg:x="3175" fg:w="6"/><text x="13.7791%" y="1151.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="13.5333%" y="1125" width="0.0213%" height="15" fill="rgb(220,132,6)" fg:x="3176" fg:w="5"/><text x="13.7833%" y="1135.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="13.5291%" y="1189" width="0.0384%" height="15" fill="rgb(213,167,7)" fg:x="3175" fg:w="9"/><text x="13.7791%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10 samples, 0.04%)</title><rect x="13.5291%" y="1605" width="0.0426%" height="15" fill="rgb(243,36,27)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="13.5291%" y="1589" width="0.0426%" height="15" fill="rgb(235,147,12)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (10 samples, 0.04%)</title><rect x="13.5291%" y="1573" width="0.0426%" height="15" fill="rgb(212,198,44)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1583.50"></text></g><g><title>rayon_core::job::JobRef::execute (10 samples, 0.04%)</title><rect x="13.5291%" y="1557" width="0.0426%" height="15" fill="rgb(218,68,50)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1567.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (10 samples, 0.04%)</title><rect x="13.5291%" y="1541" width="0.0426%" height="15" fill="rgb(224,79,48)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1551.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (10 samples, 0.04%)</title><rect x="13.5291%" y="1525" width="0.0426%" height="15" fill="rgb(213,191,50)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1535.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="13.5291%" y="1509" width="0.0426%" height="15" fill="rgb(254,146,10)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1519.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="13.5291%" y="1493" width="0.0426%" height="15" fill="rgb(215,175,11)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1503.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="13.5291%" y="1477" width="0.0426%" height="15" fill="rgb(207,49,7)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1487.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="13.5291%" y="1461" width="0.0426%" height="15" fill="rgb(234,144,29)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1471.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="13.5291%" y="1445" width="0.0426%" height="15" fill="rgb(213,222,48)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1455.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5291%" y="1429" width="0.0426%" height="15" fill="rgb(222,8,6)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5291%" y="1413" width="0.0426%" height="15" fill="rgb(221,114,49)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5291%" y="1397" width="0.0426%" height="15" fill="rgb(250,140,42)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="13.5291%" y="1381" width="0.0426%" height="15" fill="rgb(250,150,27)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="13.5291%" y="1365" width="0.0426%" height="15" fill="rgb(252,159,3)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1375.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="13.5291%" y="1349" width="0.0426%" height="15" fill="rgb(241,182,3)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="13.5291%" y="1333" width="0.0426%" height="15" fill="rgb(236,3,9)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1343.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="13.5291%" y="1317" width="0.0426%" height="15" fill="rgb(223,227,51)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1327.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="13.5291%" y="1301" width="0.0426%" height="15" fill="rgb(232,133,30)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1311.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="13.5291%" y="1285" width="0.0426%" height="15" fill="rgb(209,93,27)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="13.5291%" y="1269" width="0.0426%" height="15" fill="rgb(208,108,34)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5291%" y="1253" width="0.0426%" height="15" fill="rgb(215,189,13)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1263.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="13.5291%" y="1237" width="0.0426%" height="15" fill="rgb(206,88,23)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1247.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="13.5291%" y="1221" width="0.0426%" height="15" fill="rgb(240,173,0)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1231.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5291%" y="1205" width="0.0426%" height="15" fill="rgb(223,106,52)" fg:x="3175" fg:w="10"/><text x="13.7791%" y="1215.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="13.5717%" y="1429" width="0.0213%" height="15" fill="rgb(206,130,16)" fg:x="3185" fg:w="5"/><text x="13.8217%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5717%" y="1413" width="0.0213%" height="15" fill="rgb(220,54,25)" fg:x="3185" fg:w="5"/><text x="13.8217%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5717%" y="1397" width="0.0213%" height="15" fill="rgb(210,4,38)" fg:x="3185" fg:w="5"/><text x="13.8217%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.5717%" y="1381" width="0.0213%" height="15" fill="rgb(238,94,39)" fg:x="3185" fg:w="5"/><text x="13.8217%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="13.5717%" y="1365" width="0.0213%" height="15" fill="rgb(234,124,34)" fg:x="3185" fg:w="5"/><text x="13.8217%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="13.5717%" y="1349" width="0.0213%" height="15" fill="rgb(221,91,40)" fg:x="3185" fg:w="5"/><text x="13.8217%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5717%" y="1333" width="0.0213%" height="15" fill="rgb(246,53,28)" fg:x="3185" fg:w="5"/><text x="13.8217%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="13.5802%" y="1317" width="0.0128%" height="15" fill="rgb(229,109,7)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="13.5802%" y="1301" width="0.0128%" height="15" fill="rgb(249,117,8)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1311.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="13.5802%" y="1285" width="0.0128%" height="15" fill="rgb(210,181,1)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="13.5802%" y="1269" width="0.0128%" height="15" fill="rgb(211,66,1)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="13.5802%" y="1253" width="0.0128%" height="15" fill="rgb(221,90,14)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5802%" y="1237" width="0.0128%" height="15" fill="rgb(219,222,44)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5802%" y="1221" width="0.0128%" height="15" fill="rgb(246,34,33)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.5802%" y="1205" width="0.0128%" height="15" fill="rgb(227,135,41)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.5802%" y="1189" width="0.0128%" height="15" fill="rgb(226,15,14)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1199.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.5802%" y="1173" width="0.0128%" height="15" fill="rgb(236,148,47)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.5802%" y="1157" width="0.0128%" height="15" fill="rgb(233,162,52)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1167.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.5802%" y="1141" width="0.0128%" height="15" fill="rgb(244,35,28)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1151.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.5802%" y="1125" width="0.0128%" height="15" fill="rgb(205,121,10)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1135.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.5802%" y="1109" width="0.0128%" height="15" fill="rgb(250,58,18)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1119.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.5802%" y="1093" width="0.0128%" height="15" fill="rgb(216,37,13)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1103.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5802%" y="1077" width="0.0128%" height="15" fill="rgb(221,215,42)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1087.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.5802%" y="1061" width="0.0128%" height="15" fill="rgb(217,214,19)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1071.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.5802%" y="1045" width="0.0128%" height="15" fill="rgb(233,139,13)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5802%" y="1029" width="0.0128%" height="15" fill="rgb(247,168,23)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1039.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.5802%" y="1013" width="0.0128%" height="15" fill="rgb(207,202,1)" fg:x="3187" fg:w="3"/><text x="13.8302%" y="1023.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="13.5930%" y="1253" width="0.0128%" height="15" fill="rgb(220,155,48)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5930%" y="1237" width="0.0128%" height="15" fill="rgb(250,43,26)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5930%" y="1221" width="0.0128%" height="15" fill="rgb(212,190,23)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.5930%" y="1205" width="0.0128%" height="15" fill="rgb(216,39,24)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.5930%" y="1189" width="0.0128%" height="15" fill="rgb(252,113,16)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1199.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.5930%" y="1173" width="0.0128%" height="15" fill="rgb(208,113,19)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.5930%" y="1157" width="0.0128%" height="15" fill="rgb(234,107,25)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1167.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.5930%" y="1141" width="0.0128%" height="15" fill="rgb(234,217,51)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1151.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.5930%" y="1125" width="0.0128%" height="15" fill="rgb(251,29,42)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1135.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.5930%" y="1109" width="0.0128%" height="15" fill="rgb(221,62,51)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1119.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.5930%" y="1093" width="0.0128%" height="15" fill="rgb(240,192,43)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1103.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5930%" y="1077" width="0.0128%" height="15" fill="rgb(224,157,47)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1087.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.5930%" y="1061" width="0.0128%" height="15" fill="rgb(226,84,45)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1071.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.5930%" y="1045" width="0.0128%" height="15" fill="rgb(208,207,23)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.5930%" y="1029" width="0.0128%" height="15" fill="rgb(253,34,51)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1039.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.5930%" y="1013" width="0.0128%" height="15" fill="rgb(227,26,34)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1023.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="13.5930%" y="997" width="0.0128%" height="15" fill="rgb(245,75,19)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="1007.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="13.5930%" y="981" width="0.0128%" height="15" fill="rgb(250,191,31)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="991.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="13.5930%" y="965" width="0.0128%" height="15" fill="rgb(224,11,50)" fg:x="3190" fg:w="3"/><text x="13.8430%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (20 samples, 0.09%)</title><rect x="13.5291%" y="2245" width="0.0852%" height="15" fill="rgb(231,171,7)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.09%)</title><rect x="13.5291%" y="2229" width="0.0852%" height="15" fill="rgb(252,214,10)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (20 samples, 0.09%)</title><rect x="13.5291%" y="2213" width="0.0852%" height="15" fill="rgb(249,45,46)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (20 samples, 0.09%)</title><rect x="13.5291%" y="2197" width="0.0852%" height="15" fill="rgb(240,173,7)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (20 samples, 0.09%)</title><rect x="13.5291%" y="2181" width="0.0852%" height="15" fill="rgb(235,214,13)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (20 samples, 0.09%)</title><rect x="13.5291%" y="2165" width="0.0852%" height="15" fill="rgb(245,156,8)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="13.5291%" y="2149" width="0.0852%" height="15" fill="rgb(235,46,12)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="13.5291%" y="2133" width="0.0852%" height="15" fill="rgb(221,81,14)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2143.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="13.5291%" y="2117" width="0.0852%" height="15" fill="rgb(238,207,9)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="13.5291%" y="2101" width="0.0852%" height="15" fill="rgb(224,129,35)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="13.5291%" y="2085" width="0.0852%" height="15" fill="rgb(243,218,34)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="2069" width="0.0852%" height="15" fill="rgb(220,166,13)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="2053" width="0.0852%" height="15" fill="rgb(227,167,49)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="2037" width="0.0852%" height="15" fill="rgb(234,142,12)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="13.5291%" y="2021" width="0.0852%" height="15" fill="rgb(207,100,48)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="13.5291%" y="2005" width="0.0852%" height="15" fill="rgb(210,25,14)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="13.5291%" y="1989" width="0.0852%" height="15" fill="rgb(246,116,27)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="1973" width="0.0852%" height="15" fill="rgb(214,193,42)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="13.5291%" y="1957" width="0.0852%" height="15" fill="rgb(214,122,8)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="13.5291%" y="1941" width="0.0852%" height="15" fill="rgb(244,173,18)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1951.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="13.5291%" y="1925" width="0.0852%" height="15" fill="rgb(232,68,19)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="13.5291%" y="1909" width="0.0852%" height="15" fill="rgb(236,224,1)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="13.5291%" y="1893" width="0.0852%" height="15" fill="rgb(240,11,8)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="1877" width="0.0852%" height="15" fill="rgb(244,159,20)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="1861" width="0.0852%" height="15" fill="rgb(240,223,54)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="13.5291%" y="1845" width="0.0852%" height="15" fill="rgb(237,146,5)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="13.5291%" y="1829" width="0.0852%" height="15" fill="rgb(218,221,32)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="13.5291%" y="1813" width="0.0852%" height="15" fill="rgb(244,96,26)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="1797" width="0.0852%" height="15" fill="rgb(245,184,37)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="13.5291%" y="1781" width="0.0852%" height="15" fill="rgb(248,91,47)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="13.5291%" y="1765" width="0.0852%" height="15" fill="rgb(243,199,8)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1775.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="13.5291%" y="1749" width="0.0852%" height="15" fill="rgb(249,12,15)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="13.5291%" y="1733" width="0.0852%" height="15" fill="rgb(245,97,12)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="13.5291%" y="1717" width="0.0852%" height="15" fill="rgb(244,61,1)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="1701" width="0.0852%" height="15" fill="rgb(222,194,10)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="1685" width="0.0852%" height="15" fill="rgb(226,178,8)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="13.5291%" y="1669" width="0.0852%" height="15" fill="rgb(241,32,34)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="13.5291%" y="1653" width="0.0852%" height="15" fill="rgb(254,26,6)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="13.5291%" y="1637" width="0.0852%" height="15" fill="rgb(249,71,11)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="13.5291%" y="1621" width="0.0852%" height="15" fill="rgb(232,170,27)" fg:x="3175" fg:w="20"/><text x="13.7791%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="13.5717%" y="1605" width="0.0426%" height="15" fill="rgb(214,223,17)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="13.5717%" y="1589" width="0.0426%" height="15" fill="rgb(250,18,15)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1599.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="13.5717%" y="1573" width="0.0426%" height="15" fill="rgb(212,153,51)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="13.5717%" y="1557" width="0.0426%" height="15" fill="rgb(219,194,12)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="13.5717%" y="1541" width="0.0426%" height="15" fill="rgb(212,58,17)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5717%" y="1525" width="0.0426%" height="15" fill="rgb(254,5,10)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5717%" y="1509" width="0.0426%" height="15" fill="rgb(246,91,7)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="13.5717%" y="1493" width="0.0426%" height="15" fill="rgb(218,108,49)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="13.5717%" y="1477" width="0.0426%" height="15" fill="rgb(238,123,20)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="13.5717%" y="1461" width="0.0426%" height="15" fill="rgb(231,69,23)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="13.5717%" y="1445" width="0.0426%" height="15" fill="rgb(230,209,3)" fg:x="3185" fg:w="10"/><text x="13.8217%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="13.5930%" y="1429" width="0.0213%" height="15" fill="rgb(231,19,0)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="13.5930%" y="1413" width="0.0213%" height="15" fill="rgb(226,192,25)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1423.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="13.5930%" y="1397" width="0.0213%" height="15" fill="rgb(223,175,53)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="13.5930%" y="1381" width="0.0213%" height="15" fill="rgb(248,35,51)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="13.5930%" y="1365" width="0.0213%" height="15" fill="rgb(230,37,26)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5930%" y="1349" width="0.0213%" height="15" fill="rgb(206,120,22)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5930%" y="1333" width="0.0213%" height="15" fill="rgb(207,165,28)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.5930%" y="1317" width="0.0213%" height="15" fill="rgb(226,23,46)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="13.5930%" y="1301" width="0.0213%" height="15" fill="rgb(208,130,44)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="13.5930%" y="1285" width="0.0213%" height="15" fill="rgb(231,67,8)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="13.5930%" y="1269" width="0.0213%" height="15" fill="rgb(205,183,22)" fg:x="3190" fg:w="5"/><text x="13.8430%" y="1279.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="13.6143%" y="1941" width="0.0213%" height="15" fill="rgb(224,47,9)" fg:x="3195" fg:w="5"/><text x="13.8643%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="13.6143%" y="2117" width="0.0256%" height="15" fill="rgb(250,183,49)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="13.6143%" y="2101" width="0.0256%" height="15" fill="rgb(220,151,39)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="13.6143%" y="2085" width="0.0256%" height="15" fill="rgb(220,118,20)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="13.6143%" y="2069" width="0.0256%" height="15" fill="rgb(231,65,51)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="13.6143%" y="2053" width="0.0256%" height="15" fill="rgb(253,125,37)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="13.6143%" y="2037" width="0.0256%" height="15" fill="rgb(232,102,6)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="13.6143%" y="2021" width="0.0256%" height="15" fill="rgb(251,105,13)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="13.6143%" y="2005" width="0.0256%" height="15" fill="rgb(222,179,29)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="13.6143%" y="1989" width="0.0256%" height="15" fill="rgb(229,180,53)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="13.6143%" y="1973" width="0.0256%" height="15" fill="rgb(238,104,13)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="13.6143%" y="1957" width="0.0256%" height="15" fill="rgb(210,130,5)" fg:x="3195" fg:w="6"/><text x="13.8643%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="13.6399%" y="2069" width="0.0170%" height="15" fill="rgb(233,87,49)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6399%" y="2053" width="0.0170%" height="15" fill="rgb(243,34,9)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6399%" y="2037" width="0.0170%" height="15" fill="rgb(235,225,10)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.6399%" y="2021" width="0.0170%" height="15" fill="rgb(212,0,30)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.6399%" y="2005" width="0.0170%" height="15" fill="rgb(211,177,0)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="13.6399%" y="1989" width="0.0170%" height="15" fill="rgb(225,220,11)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="13.6399%" y="1973" width="0.0170%" height="15" fill="rgb(215,10,13)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="13.6399%" y="1957" width="0.0170%" height="15" fill="rgb(240,177,14)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="13.6399%" y="1941" width="0.0170%" height="15" fill="rgb(243,7,39)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="13.6399%" y="1925" width="0.0170%" height="15" fill="rgb(212,99,0)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="13.6399%" y="1909" width="0.0170%" height="15" fill="rgb(225,162,48)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6399%" y="1893" width="0.0170%" height="15" fill="rgb(246,16,25)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="13.6399%" y="1877" width="0.0170%" height="15" fill="rgb(220,150,2)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="13.6399%" y="1861" width="0.0170%" height="15" fill="rgb(237,113,11)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6399%" y="1845" width="0.0170%" height="15" fill="rgb(236,70,20)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="13.6399%" y="1829" width="0.0170%" height="15" fill="rgb(234,94,7)" fg:x="3201" fg:w="4"/><text x="13.8899%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (48 samples, 0.20%)</title><rect x="13.4694%" y="2357" width="0.2045%" height="15" fill="rgb(250,221,0)" fg:x="3161" fg:w="48"/><text x="13.7194%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (48 samples, 0.20%)</title><rect x="13.4694%" y="2341" width="0.2045%" height="15" fill="rgb(245,149,46)" fg:x="3161" fg:w="48"/><text x="13.7194%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (48 samples, 0.20%)</title><rect x="13.4694%" y="2325" width="0.2045%" height="15" fill="rgb(215,37,27)" fg:x="3161" fg:w="48"/><text x="13.7194%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.20%)</title><rect x="13.4694%" y="2309" width="0.2045%" height="15" fill="rgb(232,65,3)" fg:x="3161" fg:w="48"/><text x="13.7194%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (46 samples, 0.20%)</title><rect x="13.4779%" y="2293" width="0.1960%" height="15" fill="rgb(214,2,16)" fg:x="3163" fg:w="46"/><text x="13.7279%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.20%)</title><rect x="13.4779%" y="2277" width="0.1960%" height="15" fill="rgb(227,131,50)" fg:x="3163" fg:w="46"/><text x="13.7279%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (46 samples, 0.20%)</title><rect x="13.4779%" y="2261" width="0.1960%" height="15" fill="rgb(247,131,45)" fg:x="3163" fg:w="46"/><text x="13.7279%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="13.6143%" y="2245" width="0.0597%" height="15" fill="rgb(215,97,47)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="13.6143%" y="2229" width="0.0597%" height="15" fill="rgb(233,143,12)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2239.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="13.6143%" y="2213" width="0.0597%" height="15" fill="rgb(222,57,17)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="13.6143%" y="2197" width="0.0597%" height="15" fill="rgb(214,119,38)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="13.6143%" y="2181" width="0.0597%" height="15" fill="rgb(217,28,47)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="13.6143%" y="2165" width="0.0597%" height="15" fill="rgb(231,14,52)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="13.6143%" y="2149" width="0.0597%" height="15" fill="rgb(220,158,18)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="13.6143%" y="2133" width="0.0597%" height="15" fill="rgb(222,143,46)" fg:x="3195" fg:w="14"/><text x="13.8643%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="13.6399%" y="2117" width="0.0341%" height="15" fill="rgb(227,165,5)" fg:x="3201" fg:w="8"/><text x="13.8899%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="13.6399%" y="2101" width="0.0341%" height="15" fill="rgb(216,222,49)" fg:x="3201" fg:w="8"/><text x="13.8899%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="13.6399%" y="2085" width="0.0341%" height="15" fill="rgb(238,73,39)" fg:x="3201" fg:w="8"/><text x="13.8899%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="13.6569%" y="2069" width="0.0170%" height="15" fill="rgb(252,115,9)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="13.6569%" y="2053" width="0.0170%" height="15" fill="rgb(238,202,4)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="13.6569%" y="2037" width="0.0170%" height="15" fill="rgb(252,153,44)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="13.6569%" y="2021" width="0.0170%" height="15" fill="rgb(235,128,27)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="13.6569%" y="2005" width="0.0170%" height="15" fill="rgb(221,121,47)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6569%" y="1989" width="0.0170%" height="15" fill="rgb(247,211,47)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6569%" y="1973" width="0.0170%" height="15" fill="rgb(252,47,49)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.6569%" y="1957" width="0.0170%" height="15" fill="rgb(219,119,53)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.6569%" y="1941" width="0.0170%" height="15" fill="rgb(243,165,53)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="13.6569%" y="1925" width="0.0170%" height="15" fill="rgb(230,12,35)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="13.6569%" y="1909" width="0.0170%" height="15" fill="rgb(239,57,49)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="13.6569%" y="1893" width="0.0170%" height="15" fill="rgb(231,154,7)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="13.6569%" y="1877" width="0.0170%" height="15" fill="rgb(248,81,34)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="13.6569%" y="1861" width="0.0170%" height="15" fill="rgb(247,9,5)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="13.6569%" y="1845" width="0.0170%" height="15" fill="rgb(228,172,27)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6569%" y="1829" width="0.0170%" height="15" fill="rgb(230,57,44)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="13.6569%" y="1813" width="0.0170%" height="15" fill="rgb(249,35,22)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="13.6569%" y="1797" width="0.0170%" height="15" fill="rgb(250,137,27)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="13.6569%" y="1781" width="0.0170%" height="15" fill="rgb(251,57,31)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="13.6569%" y="1765" width="0.0170%" height="15" fill="rgb(238,60,0)" fg:x="3205" fg:w="4"/><text x="13.9069%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="13.6612%" y="1749" width="0.0128%" height="15" fill="rgb(242,185,39)" fg:x="3206" fg:w="3"/><text x="13.9112%" y="1759.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="13.6612%" y="1733" width="0.0128%" height="15" fill="rgb(240,63,43)" fg:x="3206" fg:w="3"/><text x="13.9112%" y="1743.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="13.6739%" y="2357" width="0.0128%" height="15" fill="rgb(236,155,6)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="13.6739%" y="2341" width="0.0128%" height="15" fill="rgb(215,11,29)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="13.6739%" y="2325" width="0.0128%" height="15" fill="rgb(228,180,48)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="13.6739%" y="2309" width="0.0128%" height="15" fill="rgb(241,102,12)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="13.6739%" y="2293" width="0.0128%" height="15" fill="rgb(246,213,4)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="13.6739%" y="2277" width="0.0128%" height="15" fill="rgb(218,134,35)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="13.6739%" y="2261" width="0.0128%" height="15" fill="rgb(251,117,35)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="13.6739%" y="2245" width="0.0128%" height="15" fill="rgb(206,156,45)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2255.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="13.6739%" y="2229" width="0.0128%" height="15" fill="rgb(218,52,27)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="13.6739%" y="2213" width="0.0128%" height="15" fill="rgb(238,83,36)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="13.6739%" y="2197" width="0.0128%" height="15" fill="rgb(218,53,43)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="13.6739%" y="2181" width="0.0128%" height="15" fill="rgb(239,54,39)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="13.6739%" y="2165" width="0.0128%" height="15" fill="rgb(212,198,13)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="13.6739%" y="2149" width="0.0128%" height="15" fill="rgb(234,54,46)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.6739%" y="2133" width="0.0128%" height="15" fill="rgb(217,120,7)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="13.6739%" y="2117" width="0.0128%" height="15" fill="rgb(246,39,15)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="13.6739%" y="2101" width="0.0128%" height="15" fill="rgb(242,143,31)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="13.6739%" y="2085" width="0.0128%" height="15" fill="rgb(252,60,24)" fg:x="3209" fg:w="3"/><text x="13.9239%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.6867%" y="2229" width="0.0128%" height="15" fill="rgb(249,220,7)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="13.6867%" y="2213" width="0.0128%" height="15" fill="rgb(236,67,13)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="13.6867%" y="2197" width="0.0128%" height="15" fill="rgb(210,62,39)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="13.6867%" y="2181" width="0.0128%" height="15" fill="rgb(219,122,53)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="13.6867%" y="2165" width="0.0128%" height="15" fill="rgb(218,87,25)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="13.6867%" y="2149" width="0.0128%" height="15" fill="rgb(234,179,48)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="13.6867%" y="2133" width="0.0128%" height="15" fill="rgb(248,90,0)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="13.6867%" y="2117" width="0.0128%" height="15" fill="rgb(207,228,37)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="13.6867%" y="2101" width="0.0128%" height="15" fill="rgb(235,214,15)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="13.6867%" y="2085" width="0.0128%" height="15" fill="rgb(210,144,39)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.6867%" y="2069" width="0.0128%" height="15" fill="rgb(222,67,41)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.6867%" y="2053" width="0.0128%" height="15" fill="rgb(205,35,37)" fg:x="3212" fg:w="3"/><text x="13.9367%" y="2063.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="13.6995%" y="1941" width="0.0213%" height="15" fill="rgb(216,125,40)" fg:x="3215" fg:w="5"/><text x="13.9495%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="13.6995%" y="2117" width="0.0256%" height="15" fill="rgb(228,227,20)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="13.6995%" y="2101" width="0.0256%" height="15" fill="rgb(242,173,45)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="13.6995%" y="2085" width="0.0256%" height="15" fill="rgb(215,79,24)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="13.6995%" y="2069" width="0.0256%" height="15" fill="rgb(238,164,38)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="13.6995%" y="2053" width="0.0256%" height="15" fill="rgb(245,196,38)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="13.6995%" y="2037" width="0.0256%" height="15" fill="rgb(231,217,29)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="13.6995%" y="2021" width="0.0256%" height="15" fill="rgb(245,6,4)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="13.6995%" y="2005" width="0.0256%" height="15" fill="rgb(214,76,49)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="13.6995%" y="1989" width="0.0256%" height="15" fill="rgb(205,96,12)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="13.6995%" y="1973" width="0.0256%" height="15" fill="rgb(243,131,4)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="13.6995%" y="1957" width="0.0256%" height="15" fill="rgb(214,114,4)" fg:x="3215" fg:w="6"/><text x="13.9495%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="13.7251%" y="2069" width="0.0170%" height="15" fill="rgb(234,215,15)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="13.7251%" y="2053" width="0.0170%" height="15" fill="rgb(250,216,45)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="13.7251%" y="2037" width="0.0170%" height="15" fill="rgb(236,128,4)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.7251%" y="2021" width="0.0170%" height="15" fill="rgb(234,50,33)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.7251%" y="2005" width="0.0170%" height="15" fill="rgb(253,131,37)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="13.7251%" y="1989" width="0.0170%" height="15" fill="rgb(218,55,27)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="13.7251%" y="1973" width="0.0170%" height="15" fill="rgb(241,220,28)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="13.7251%" y="1957" width="0.0170%" height="15" fill="rgb(241,90,48)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="13.7251%" y="1941" width="0.0170%" height="15" fill="rgb(216,43,37)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="13.7251%" y="1925" width="0.0170%" height="15" fill="rgb(207,173,9)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="13.7251%" y="1909" width="0.0170%" height="15" fill="rgb(240,126,30)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="13.7251%" y="1893" width="0.0170%" height="15" fill="rgb(228,178,53)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="13.7251%" y="1877" width="0.0170%" height="15" fill="rgb(217,33,4)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="13.7251%" y="1861" width="0.0170%" height="15" fill="rgb(206,124,34)" fg:x="3221" fg:w="4"/><text x="13.9751%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="13.7293%" y="1845" width="0.0128%" height="15" fill="rgb(208,122,53)" fg:x="3222" fg:w="3"/><text x="13.9793%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="13.7293%" y="1829" width="0.0128%" height="15" fill="rgb(215,202,26)" fg:x="3222" fg:w="3"/><text x="13.9793%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="13.6995%" y="2181" width="0.0597%" height="15" fill="rgb(232,198,31)" fg:x="3215" fg:w="14"/><text x="13.9495%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="13.6995%" y="2165" width="0.0597%" height="15" fill="rgb(222,23,35)" fg:x="3215" fg:w="14"/><text x="13.9495%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="13.6995%" y="2149" width="0.0597%" height="15" fill="rgb(242,27,53)" fg:x="3215" fg:w="14"/><text x="13.9495%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="13.6995%" y="2133" width="0.0597%" height="15" fill="rgb(210,216,42)" fg:x="3215" fg:w="14"/><text x="13.9495%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="13.7251%" y="2117" width="0.0341%" height="15" fill="rgb(234,39,38)" fg:x="3221" fg:w="8"/><text x="13.9751%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="13.7251%" y="2101" width="0.0341%" height="15" fill="rgb(235,126,54)" fg:x="3221" fg:w="8"/><text x="13.9751%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="13.7251%" y="2085" width="0.0341%" height="15" fill="rgb(235,150,33)" fg:x="3221" fg:w="8"/><text x="13.9751%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="13.7421%" y="2069" width="0.0170%" height="15" fill="rgb(249,49,53)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="13.7421%" y="2053" width="0.0170%" height="15" fill="rgb(238,60,50)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="13.7421%" y="2037" width="0.0170%" height="15" fill="rgb(210,5,2)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="13.7421%" y="2021" width="0.0170%" height="15" fill="rgb(214,207,24)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="13.7421%" y="2005" width="0.0170%" height="15" fill="rgb(228,173,2)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="13.7421%" y="1989" width="0.0170%" height="15" fill="rgb(244,26,8)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="13.7421%" y="1973" width="0.0170%" height="15" fill="rgb(249,153,35)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.7421%" y="1957" width="0.0170%" height="15" fill="rgb(221,215,40)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.7421%" y="1941" width="0.0170%" height="15" fill="rgb(238,106,35)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="13.7421%" y="1925" width="0.0170%" height="15" fill="rgb(207,195,21)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="13.7421%" y="1909" width="0.0170%" height="15" fill="rgb(205,43,29)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="13.7421%" y="1893" width="0.0170%" height="15" fill="rgb(236,35,21)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="13.7421%" y="1877" width="0.0170%" height="15" fill="rgb(244,74,8)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="13.7421%" y="1861" width="0.0170%" height="15" fill="rgb(241,229,7)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="13.7421%" y="1845" width="0.0170%" height="15" fill="rgb(212,223,25)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="13.7421%" y="1829" width="0.0170%" height="15" fill="rgb(234,58,53)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="13.7421%" y="1813" width="0.0170%" height="15" fill="rgb(244,36,1)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="13.7421%" y="1797" width="0.0170%" height="15" fill="rgb(222,40,54)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="13.7421%" y="1781" width="0.0170%" height="15" fill="rgb(210,207,39)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="13.7421%" y="1765" width="0.0170%" height="15" fill="rgb(234,52,14)" fg:x="3225" fg:w="4"/><text x="13.9921%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="13.7464%" y="1749" width="0.0128%" height="15" fill="rgb(239,108,46)" fg:x="3226" fg:w="3"/><text x="13.9964%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="13.7464%" y="1733" width="0.0128%" height="15" fill="rgb(252,223,5)" fg:x="3226" fg:w="3"/><text x="13.9964%" y="1743.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="13.7592%" y="1861" width="0.0170%" height="15" fill="rgb(227,181,11)" fg:x="3229" fg:w="4"/><text x="14.0092%" y="1871.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="13.7592%" y="1845" width="0.0170%" height="15" fill="rgb(248,126,40)" fg:x="3229" fg:w="4"/><text x="14.0092%" y="1855.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="13.7592%" y="1829" width="0.0170%" height="15" fill="rgb(243,1,18)" fg:x="3229" fg:w="4"/><text x="14.0092%" y="1839.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="13.7592%" y="1813" width="0.0170%" height="15" fill="rgb(214,145,23)" fg:x="3229" fg:w="4"/><text x="14.0092%" y="1823.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="13.7762%" y="1861" width="0.0170%" height="15" fill="rgb(241,218,11)" fg:x="3233" fg:w="4"/><text x="14.0262%" y="1871.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="13.7762%" y="1845" width="0.0170%" height="15" fill="rgb(214,219,24)" fg:x="3233" fg:w="4"/><text x="14.0262%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (347 samples, 1.48%)</title><rect x="12.3189%" y="2965" width="1.4786%" height="15" fill="rgb(235,32,7)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2975.50"></text></g><g><title>rayon_core::job::JobRef::execute (347 samples, 1.48%)</title><rect x="12.3189%" y="2949" width="1.4786%" height="15" fill="rgb(227,121,28)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2959.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (347 samples, 1.48%)</title><rect x="12.3189%" y="2933" width="1.4786%" height="15" fill="rgb(216,129,49)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2943.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (347 samples, 1.48%)</title><rect x="12.3189%" y="2917" width="1.4786%" height="15" fill="rgb(207,194,50)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (347 samples, 1.48%)</title><rect x="12.3189%" y="2901" width="1.4786%" height="15" fill="rgb(207,4,18)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2911.50"></text></g><g><title>std::panic::catch_unwind (347 samples, 1.48%)</title><rect x="12.3189%" y="2885" width="1.4786%" height="15" fill="rgb(213,50,30)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2895.50"></text></g><g><title>std::panicking::try (347 samples, 1.48%)</title><rect x="12.3189%" y="2869" width="1.4786%" height="15" fill="rgb(208,77,22)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2879.50"></text></g><g><title>std::panicking::try::do_call (347 samples, 1.48%)</title><rect x="12.3189%" y="2853" width="1.4786%" height="15" fill="rgb(244,204,34)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (347 samples, 1.48%)</title><rect x="12.3189%" y="2837" width="1.4786%" height="15" fill="rgb(230,20,17)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2847.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (347 samples, 1.48%)</title><rect x="12.3189%" y="2821" width="1.4786%" height="15" fill="rgb(237,83,15)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (347 samples, 1.48%)</title><rect x="12.3189%" y="2805" width="1.4786%" height="15" fill="rgb(221,109,25)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (347 samples, 1.48%)</title><rect x="12.3189%" y="2789" width="1.4786%" height="15" fill="rgb(205,194,52)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (347 samples, 1.48%)</title><rect x="12.3189%" y="2773" width="1.4786%" height="15" fill="rgb(244,173,54)" fg:x="2891" fg:w="347"/><text x="12.5689%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (329 samples, 1.40%)</title><rect x="12.3956%" y="2757" width="1.4019%" height="15" fill="rgb(227,181,18)" fg:x="2909" fg:w="329"/><text x="12.6456%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (329 samples, 1.40%)</title><rect x="12.3956%" y="2741" width="1.4019%" height="15" fill="rgb(238,36,30)" fg:x="2909" fg:w="329"/><text x="12.6456%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (329 samples, 1.40%)</title><rect x="12.3956%" y="2725" width="1.4019%" height="15" fill="rgb(254,85,0)" fg:x="2909" fg:w="329"/><text x="12.6456%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (211 samples, 0.90%)</title><rect x="12.8984%" y="2709" width="0.8991%" height="15" fill="rgb(247,63,33)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (211 samples, 0.90%)</title><rect x="12.8984%" y="2693" width="0.8991%" height="15" fill="rgb(220,7,54)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2703.50"></text></g><g><title>std::panicking::try (211 samples, 0.90%)</title><rect x="12.8984%" y="2677" width="0.8991%" height="15" fill="rgb(238,227,21)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (211 samples, 0.90%)</title><rect x="12.8984%" y="2661" width="0.8991%" height="15" fill="rgb(237,29,31)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (211 samples, 0.90%)</title><rect x="12.8984%" y="2645" width="0.8991%" height="15" fill="rgb(211,21,50)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (211 samples, 0.90%)</title><rect x="12.8984%" y="2629" width="0.8991%" height="15" fill="rgb(239,119,2)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (211 samples, 0.90%)</title><rect x="12.8984%" y="2613" width="0.8991%" height="15" fill="rgb(250,2,39)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (211 samples, 0.90%)</title><rect x="12.8984%" y="2597" width="0.8991%" height="15" fill="rgb(244,46,53)" fg:x="3027" fg:w="211"/><text x="13.1484%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (185 samples, 0.79%)</title><rect x="13.0092%" y="2581" width="0.7883%" height="15" fill="rgb(209,21,19)" fg:x="3053" fg:w="185"/><text x="13.2592%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (185 samples, 0.79%)</title><rect x="13.0092%" y="2565" width="0.7883%" height="15" fill="rgb(236,145,4)" fg:x="3053" fg:w="185"/><text x="13.2592%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (185 samples, 0.79%)</title><rect x="13.0092%" y="2549" width="0.7883%" height="15" fill="rgb(220,133,36)" fg:x="3053" fg:w="185"/><text x="13.2592%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (101 samples, 0.43%)</title><rect x="13.3671%" y="2533" width="0.4304%" height="15" fill="rgb(244,18,3)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (101 samples, 0.43%)</title><rect x="13.3671%" y="2517" width="0.4304%" height="15" fill="rgb(232,171,48)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2527.50"></text></g><g><title>std::panicking::try (101 samples, 0.43%)</title><rect x="13.3671%" y="2501" width="0.4304%" height="15" fill="rgb(223,223,53)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (101 samples, 0.43%)</title><rect x="13.3671%" y="2485" width="0.4304%" height="15" fill="rgb(246,92,13)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (101 samples, 0.43%)</title><rect x="13.3671%" y="2469" width="0.4304%" height="15" fill="rgb(229,171,10)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (101 samples, 0.43%)</title><rect x="13.3671%" y="2453" width="0.4304%" height="15" fill="rgb(213,131,26)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (101 samples, 0.43%)</title><rect x="13.3671%" y="2437" width="0.4304%" height="15" fill="rgb(242,87,54)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (101 samples, 0.43%)</title><rect x="13.3671%" y="2421" width="0.4304%" height="15" fill="rgb(237,21,35)" fg:x="3137" fg:w="101"/><text x="13.6171%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (77 samples, 0.33%)</title><rect x="13.4694%" y="2405" width="0.3281%" height="15" fill="rgb(253,13,47)" fg:x="3161" fg:w="77"/><text x="13.7194%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (77 samples, 0.33%)</title><rect x="13.4694%" y="2389" width="0.3281%" height="15" fill="rgb(215,122,49)" fg:x="3161" fg:w="77"/><text x="13.7194%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (77 samples, 0.33%)</title><rect x="13.4694%" y="2373" width="0.3281%" height="15" fill="rgb(209,179,30)" fg:x="3161" fg:w="77"/><text x="13.7194%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="13.6867%" y="2357" width="0.1108%" height="15" fill="rgb(235,100,24)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="13.6867%" y="2341" width="0.1108%" height="15" fill="rgb(209,67,24)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2351.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="13.6867%" y="2325" width="0.1108%" height="15" fill="rgb(206,74,32)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="13.6867%" y="2309" width="0.1108%" height="15" fill="rgb(212,45,25)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="13.6867%" y="2293" width="0.1108%" height="15" fill="rgb(239,26,3)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (26 samples, 0.11%)</title><rect x="13.6867%" y="2277" width="0.1108%" height="15" fill="rgb(218,36,15)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="13.6867%" y="2261" width="0.1108%" height="15" fill="rgb(206,108,24)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="13.6867%" y="2245" width="0.1108%" height="15" fill="rgb(234,204,42)" fg:x="3212" fg:w="26"/><text x="13.9367%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="13.6995%" y="2229" width="0.0980%" height="15" fill="rgb(229,2,11)" fg:x="3215" fg:w="23"/><text x="13.9495%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="13.6995%" y="2213" width="0.0980%" height="15" fill="rgb(221,20,48)" fg:x="3215" fg:w="23"/><text x="13.9495%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="13.6995%" y="2197" width="0.0980%" height="15" fill="rgb(244,164,10)" fg:x="3215" fg:w="23"/><text x="13.9495%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="13.7592%" y="2181" width="0.0384%" height="15" fill="rgb(243,229,2)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="13.7592%" y="2165" width="0.0384%" height="15" fill="rgb(232,131,37)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2175.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="13.7592%" y="2149" width="0.0384%" height="15" fill="rgb(217,156,11)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="13.7592%" y="2133" width="0.0384%" height="15" fill="rgb(239,99,48)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="13.7592%" y="2117" width="0.0384%" height="15" fill="rgb(231,209,9)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="13.7592%" y="2101" width="0.0384%" height="15" fill="rgb(254,97,27)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="13.7592%" y="2085" width="0.0384%" height="15" fill="rgb(223,151,38)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="13.7592%" y="2069" width="0.0384%" height="15" fill="rgb(219,206,35)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="13.7592%" y="2053" width="0.0384%" height="15" fill="rgb(216,130,31)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="13.7592%" y="2037" width="0.0384%" height="15" fill="rgb(251,97,34)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="13.7592%" y="2021" width="0.0384%" height="15" fill="rgb(246,159,47)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="13.7592%" y="2005" width="0.0384%" height="15" fill="rgb(232,87,10)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="13.7592%" y="1989" width="0.0384%" height="15" fill="rgb(249,1,37)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="13.7592%" y="1973" width="0.0384%" height="15" fill="rgb(239,135,14)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="13.7592%" y="1957" width="0.0384%" height="15" fill="rgb(253,116,46)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="13.7592%" y="1941" width="0.0384%" height="15" fill="rgb(222,217,37)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="13.7592%" y="1925" width="0.0384%" height="15" fill="rgb(252,96,8)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="13.7592%" y="1909" width="0.0384%" height="15" fill="rgb(254,103,41)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="13.7592%" y="1893" width="0.0384%" height="15" fill="rgb(218,213,19)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="13.7592%" y="1877" width="0.0384%" height="15" fill="rgb(253,95,21)" fg:x="3229" fg:w="9"/><text x="14.0092%" y="1887.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (10 samples, 0.04%)</title><rect x="13.7975%" y="2965" width="0.0426%" height="15" fill="rgb(229,26,28)" fg:x="3238" fg:w="10"/><text x="14.0475%" y="2975.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (10 samples, 0.04%)</title><rect x="13.7975%" y="2949" width="0.0426%" height="15" fill="rgb(230,129,16)" fg:x="3238" fg:w="10"/><text x="14.0475%" y="2959.50"></text></g><g><title>std::sync::condvar::Condvar::wait (10 samples, 0.04%)</title><rect x="13.7975%" y="2933" width="0.0426%" height="15" fill="rgb(236,126,17)" fg:x="3238" fg:w="10"/><text x="14.0475%" y="2943.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (10 samples, 0.04%)</title><rect x="13.7975%" y="2917" width="0.0426%" height="15" fill="rgb(209,33,33)" fg:x="3238" fg:w="10"/><text x="14.0475%" y="2927.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (10 samples, 0.04%)</title><rect x="13.7975%" y="2901" width="0.0426%" height="15" fill="rgb(227,85,29)" fg:x="3238" fg:w="10"/><text x="14.0475%" y="2911.50"></text></g><g><title>std::sys::unix::futex::futex_wait (10 samples, 0.04%)</title><rect x="13.7975%" y="2885" width="0.0426%" height="15" fill="rgb(241,53,46)" fg:x="3238" fg:w="10"/><text x="14.0475%" y="2895.50"></text></g><g><title>syscall (9 samples, 0.04%)</title><rect x="13.8018%" y="2869" width="0.0384%" height="15" fill="rgb(228,167,53)" fg:x="3239" fg:w="9"/><text x="14.0518%" y="2879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (358 samples, 1.53%)</title><rect x="12.3189%" y="2997" width="1.5255%" height="15" fill="rgb(238,195,45)" fg:x="2891" fg:w="358"/><text x="12.5689%" y="3007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (358 samples, 1.53%)</title><rect x="12.3189%" y="2981" width="1.5255%" height="15" fill="rgb(252,124,45)" fg:x="2891" fg:w="358"/><text x="12.5689%" y="2991.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (7 samples, 0.03%)</title><rect x="13.8529%" y="2677" width="0.0298%" height="15" fill="rgb(251,38,35)" fg:x="3251" fg:w="7"/><text x="14.1029%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::exp (7 samples, 0.03%)</title><rect x="13.8529%" y="2661" width="0.0298%" height="15" fill="rgb(227,33,2)" fg:x="3251" fg:w="7"/><text x="14.1029%" y="2671.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="13.8529%" y="2645" width="0.0298%" height="15" fill="rgb(223,157,46)" fg:x="3251" fg:w="7"/><text x="14.1029%" y="2655.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="13.8614%" y="2629" width="0.0213%" height="15" fill="rgb(222,78,41)" fg:x="3253" fg:w="5"/><text x="14.1114%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (11 samples, 0.05%)</title><rect x="13.8870%" y="2677" width="0.0469%" height="15" fill="rgb(248,176,11)" fg:x="3259" fg:w="11"/><text x="14.1370%" y="2687.50"></text></g><g><title>core::f64::<impl f64>::recip (11 samples, 0.05%)</title><rect x="13.8870%" y="2661" width="0.0469%" height="15" fill="rgb(241,221,18)" fg:x="3259" fg:w="11"/><text x="14.1370%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (27 samples, 0.12%)</title><rect x="13.8444%" y="2693" width="0.1151%" height="15" fill="rgb(218,85,22)" fg:x="3249" fg:w="27"/><text x="14.0944%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (6 samples, 0.03%)</title><rect x="13.9339%" y="2677" width="0.0256%" height="15" fill="rgb(222,223,7)" fg:x="3270" fg:w="6"/><text x="14.1839%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::sqrt (6 samples, 0.03%)</title><rect x="13.9339%" y="2661" width="0.0256%" height="15" fill="rgb(254,59,39)" fg:x="3270" fg:w="6"/><text x="14.1839%" y="2671.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (30 samples, 0.13%)</title><rect x="13.8444%" y="2853" width="0.1278%" height="15" fill="rgb(247,100,27)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (30 samples, 0.13%)</title><rect x="13.8444%" y="2837" width="0.1278%" height="15" fill="rgb(237,207,10)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (30 samples, 0.13%)</title><rect x="13.8444%" y="2821" width="0.1278%" height="15" fill="rgb(220,121,28)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2831.50"></text></g><g><title>core::option::Option<T>::map (30 samples, 0.13%)</title><rect x="13.8444%" y="2805" width="0.1278%" height="15" fill="rgb(213,223,20)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2815.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (30 samples, 0.13%)</title><rect x="13.8444%" y="2789" width="0.1278%" height="15" fill="rgb(205,121,27)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2799.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (30 samples, 0.13%)</title><rect x="13.8444%" y="2773" width="0.1278%" height="15" fill="rgb(253,24,53)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (30 samples, 0.13%)</title><rect x="13.8444%" y="2757" width="0.1278%" height="15" fill="rgb(224,224,47)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2767.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (30 samples, 0.13%)</title><rect x="13.8444%" y="2741" width="0.1278%" height="15" fill="rgb(250,125,36)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2751.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (30 samples, 0.13%)</title><rect x="13.8444%" y="2725" width="0.1278%" height="15" fill="rgb(240,144,38)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (30 samples, 0.13%)</title><rect x="13.8444%" y="2709" width="0.1278%" height="15" fill="rgb(250,15,50)" fg:x="3249" fg:w="30"/><text x="14.0944%" y="2719.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="13.9594%" y="2693" width="0.0128%" height="15" fill="rgb(210,24,26)" fg:x="3276" fg:w="3"/><text x="14.2094%" y="2703.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="13.9722%" y="2725" width="0.0341%" height="15" fill="rgb(234,53,53)" fg:x="3279" fg:w="8"/><text x="14.2222%" y="2735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="13.9722%" y="2709" width="0.0341%" height="15" fill="rgb(208,108,28)" fg:x="3279" fg:w="8"/><text x="14.2222%" y="2719.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="13.9765%" y="2693" width="0.0298%" height="15" fill="rgb(227,143,7)" fg:x="3280" fg:w="7"/><text x="14.2265%" y="2703.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="13.9807%" y="2677" width="0.0256%" height="15" fill="rgb(238,189,38)" fg:x="3281" fg:w="6"/><text x="14.2307%" y="2687.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="13.9807%" y="2661" width="0.0256%" height="15" fill="rgb(222,69,15)" fg:x="3281" fg:w="6"/><text x="14.2307%" y="2671.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="13.9807%" y="2645" width="0.0256%" height="15" fill="rgb(213,169,7)" fg:x="3281" fg:w="6"/><text x="14.2307%" y="2655.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="13.9807%" y="2629" width="0.0256%" height="15" fill="rgb(251,219,4)" fg:x="3281" fg:w="6"/><text x="14.2307%" y="2639.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="13.9893%" y="2613" width="0.0170%" height="15" fill="rgb(241,55,40)" fg:x="3283" fg:w="4"/><text x="14.2393%" y="2623.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (4 samples, 0.02%)</title><rect x="13.9893%" y="2597" width="0.0170%" height="15" fill="rgb(243,57,30)" fg:x="3283" fg:w="4"/><text x="14.2393%" y="2607.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (4 samples, 0.02%)</title><rect x="13.9893%" y="2581" width="0.0170%" height="15" fill="rgb(234,50,30)" fg:x="3283" fg:w="4"/><text x="14.2393%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (40 samples, 0.17%)</title><rect x="13.8444%" y="2869" width="0.1704%" height="15" fill="rgb(239,23,42)" fg:x="3249" fg:w="40"/><text x="14.0944%" y="2879.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="13.9722%" y="2853" width="0.0426%" height="15" fill="rgb(217,38,19)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2863.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="13.9722%" y="2837" width="0.0426%" height="15" fill="rgb(215,179,16)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="13.9722%" y="2821" width="0.0426%" height="15" fill="rgb(254,21,37)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="13.9722%" y="2805" width="0.0426%" height="15" fill="rgb(219,207,48)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2815.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="13.9722%" y="2789" width="0.0426%" height="15" fill="rgb(227,225,41)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2799.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="13.9722%" y="2773" width="0.0426%" height="15" fill="rgb(223,130,1)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2783.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="13.9722%" y="2757" width="0.0426%" height="15" fill="rgb(249,54,42)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2767.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="13.9722%" y="2741" width="0.0426%" height="15" fill="rgb(248,69,25)" fg:x="3279" fg:w="10"/><text x="14.2222%" y="2751.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (13 samples, 0.06%)</title><rect x="14.0148%" y="2565" width="0.0554%" height="15" fill="rgb(234,21,32)" fg:x="3289" fg:w="13"/><text x="14.2648%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (13 samples, 0.06%)</title><rect x="14.0148%" y="2549" width="0.0554%" height="15" fill="rgb(252,136,6)" fg:x="3289" fg:w="13"/><text x="14.2648%" y="2559.50"></text></g><g><title>exp (13 samples, 0.06%)</title><rect x="14.0148%" y="2533" width="0.0554%" height="15" fill="rgb(245,87,12)" fg:x="3289" fg:w="13"/><text x="14.2648%" y="2543.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="14.0319%" y="2517" width="0.0384%" height="15" fill="rgb(208,12,15)" fg:x="3293" fg:w="9"/><text x="14.2819%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="14.0702%" y="2565" width="0.0213%" height="15" fill="rgb(250,98,2)" fg:x="3302" fg:w="5"/><text x="14.3202%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="14.0702%" y="2549" width="0.0213%" height="15" fill="rgb(205,213,15)" fg:x="3302" fg:w="5"/><text x="14.3202%" y="2559.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (21 samples, 0.09%)</title><rect x="14.0148%" y="2741" width="0.0895%" height="15" fill="rgb(248,192,44)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (21 samples, 0.09%)</title><rect x="14.0148%" y="2725" width="0.0895%" height="15" fill="rgb(221,89,17)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (21 samples, 0.09%)</title><rect x="14.0148%" y="2709" width="0.0895%" height="15" fill="rgb(209,55,3)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (21 samples, 0.09%)</title><rect x="14.0148%" y="2693" width="0.0895%" height="15" fill="rgb(247,23,45)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (21 samples, 0.09%)</title><rect x="14.0148%" y="2677" width="0.0895%" height="15" fill="rgb(235,152,23)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (21 samples, 0.09%)</title><rect x="14.0148%" y="2661" width="0.0895%" height="15" fill="rgb(244,63,13)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (21 samples, 0.09%)</title><rect x="14.0148%" y="2645" width="0.0895%" height="15" fill="rgb(227,30,37)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (21 samples, 0.09%)</title><rect x="14.0148%" y="2629" width="0.0895%" height="15" fill="rgb(224,49,42)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (21 samples, 0.09%)</title><rect x="14.0148%" y="2613" width="0.0895%" height="15" fill="rgb(218,129,5)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (21 samples, 0.09%)</title><rect x="14.0148%" y="2597" width="0.0895%" height="15" fill="rgb(240,199,54)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2607.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (21 samples, 0.09%)</title><rect x="14.0148%" y="2581" width="0.0895%" height="15" fill="rgb(234,31,13)" fg:x="3289" fg:w="21"/><text x="14.2648%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="14.0915%" y="2565" width="0.0128%" height="15" fill="rgb(219,73,54)" fg:x="3307" fg:w="3"/><text x="14.3415%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="14.0915%" y="2549" width="0.0128%" height="15" fill="rgb(251,162,10)" fg:x="3307" fg:w="3"/><text x="14.3415%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (25 samples, 0.11%)</title><rect x="14.0148%" y="2757" width="0.1065%" height="15" fill="rgb(240,138,47)" fg:x="3289" fg:w="25"/><text x="14.2648%" y="2767.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="14.1043%" y="2741" width="0.0170%" height="15" fill="rgb(216,138,26)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2751.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="14.1043%" y="2725" width="0.0170%" height="15" fill="rgb(243,17,35)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="14.1043%" y="2709" width="0.0170%" height="15" fill="rgb(241,60,18)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="14.1043%" y="2693" width="0.0170%" height="15" fill="rgb(234,2,44)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2703.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="14.1043%" y="2677" width="0.0170%" height="15" fill="rgb(225,225,33)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="14.1043%" y="2661" width="0.0170%" height="15" fill="rgb(234,50,31)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2671.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="14.1043%" y="2645" width="0.0170%" height="15" fill="rgb(249,6,25)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2655.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="14.1043%" y="2629" width="0.0170%" height="15" fill="rgb(241,5,17)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2639.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="14.1043%" y="2613" width="0.0170%" height="15" fill="rgb(207,116,10)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2623.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="14.1043%" y="2597" width="0.0170%" height="15" fill="rgb(222,128,18)" fg:x="3310" fg:w="4"/><text x="14.3543%" y="2607.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="14.1086%" y="2581" width="0.0128%" height="15" fill="rgb(229,109,25)" fg:x="3311" fg:w="3"/><text x="14.3586%" y="2591.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="14.1086%" y="2565" width="0.0128%" height="15" fill="rgb(222,102,25)" fg:x="3311" fg:w="3"/><text x="14.3586%" y="2575.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="14.1086%" y="2549" width="0.0128%" height="15" fill="rgb(239,211,5)" fg:x="3311" fg:w="3"/><text x="14.3586%" y="2559.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="14.1086%" y="2533" width="0.0128%" height="15" fill="rgb(223,136,26)" fg:x="3311" fg:w="3"/><text x="14.3586%" y="2543.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (9 samples, 0.04%)</title><rect x="14.1214%" y="2453" width="0.0384%" height="15" fill="rgb(227,30,15)" fg:x="3314" fg:w="9"/><text x="14.3714%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (9 samples, 0.04%)</title><rect x="14.1214%" y="2437" width="0.0384%" height="15" fill="rgb(247,76,4)" fg:x="3314" fg:w="9"/><text x="14.3714%" y="2447.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="14.1214%" y="2421" width="0.0384%" height="15" fill="rgb(245,38,48)" fg:x="3314" fg:w="9"/><text x="14.3714%" y="2431.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="14.1256%" y="2405" width="0.0341%" height="15" fill="rgb(210,220,14)" fg:x="3315" fg:w="8"/><text x="14.3756%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="14.1640%" y="2453" width="0.0426%" height="15" fill="rgb(224,60,51)" fg:x="3324" fg:w="10"/><text x="14.4140%" y="2463.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="14.1640%" y="2437" width="0.0426%" height="15" fill="rgb(212,133,49)" fg:x="3324" fg:w="10"/><text x="14.4140%" y="2447.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (25 samples, 0.11%)</title><rect x="14.1214%" y="2469" width="0.1065%" height="15" fill="rgb(231,39,22)" fg:x="3314" fg:w="25"/><text x="14.3714%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="14.2066%" y="2453" width="0.0213%" height="15" fill="rgb(236,173,22)" fg:x="3334" fg:w="5"/><text x="14.4566%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="14.2066%" y="2437" width="0.0213%" height="15" fill="rgb(210,70,0)" fg:x="3334" fg:w="5"/><text x="14.4566%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (26 samples, 0.11%)</title><rect x="14.1214%" y="2645" width="0.1108%" height="15" fill="rgb(215,170,11)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (26 samples, 0.11%)</title><rect x="14.1214%" y="2629" width="0.1108%" height="15" fill="rgb(220,154,28)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (26 samples, 0.11%)</title><rect x="14.1214%" y="2613" width="0.1108%" height="15" fill="rgb(240,160,41)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (26 samples, 0.11%)</title><rect x="14.1214%" y="2597" width="0.1108%" height="15" fill="rgb(243,215,41)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (26 samples, 0.11%)</title><rect x="14.1214%" y="2581" width="0.1108%" height="15" fill="rgb(214,208,31)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (26 samples, 0.11%)</title><rect x="14.1214%" y="2565" width="0.1108%" height="15" fill="rgb(247,57,22)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (26 samples, 0.11%)</title><rect x="14.1214%" y="2549" width="0.1108%" height="15" fill="rgb(228,73,52)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (26 samples, 0.11%)</title><rect x="14.1214%" y="2533" width="0.1108%" height="15" fill="rgb(252,60,9)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (26 samples, 0.11%)</title><rect x="14.1214%" y="2517" width="0.1108%" height="15" fill="rgb(233,9,51)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (26 samples, 0.11%)</title><rect x="14.1214%" y="2501" width="0.1108%" height="15" fill="rgb(223,67,14)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (26 samples, 0.11%)</title><rect x="14.1214%" y="2485" width="0.1108%" height="15" fill="rgb(222,86,2)" fg:x="3314" fg:w="26"/><text x="14.3714%" y="2495.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="14.2364%" y="2341" width="0.0128%" height="15" fill="rgb(243,58,54)" fg:x="3341" fg:w="3"/><text x="14.4864%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="14.2364%" y="2325" width="0.0128%" height="15" fill="rgb(210,200,39)" fg:x="3341" fg:w="3"/><text x="14.4864%" y="2335.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="14.2364%" y="2309" width="0.0128%" height="15" fill="rgb(238,135,9)" fg:x="3341" fg:w="3"/><text x="14.4864%" y="2319.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="14.2535%" y="2341" width="0.0128%" height="15" fill="rgb(232,179,7)" fg:x="3345" fg:w="3"/><text x="14.5035%" y="2351.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="14.2535%" y="2325" width="0.0128%" height="15" fill="rgb(245,65,41)" fg:x="3345" fg:w="3"/><text x="14.5035%" y="2335.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (12 samples, 0.05%)</title><rect x="14.2364%" y="2357" width="0.0511%" height="15" fill="rgb(227,43,8)" fg:x="3341" fg:w="12"/><text x="14.4864%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="14.2662%" y="2341" width="0.0213%" height="15" fill="rgb(235,91,14)" fg:x="3348" fg:w="5"/><text x="14.5162%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="14.2662%" y="2325" width="0.0213%" height="15" fill="rgb(235,219,31)" fg:x="3348" fg:w="5"/><text x="14.5162%" y="2335.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (5 samples, 0.02%)</title><rect x="14.2875%" y="2357" width="0.0213%" height="15" fill="rgb(227,121,25)" fg:x="3353" fg:w="5"/><text x="14.5375%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (18 samples, 0.08%)</title><rect x="14.2364%" y="2533" width="0.0767%" height="15" fill="rgb(254,129,24)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2543.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (18 samples, 0.08%)</title><rect x="14.2364%" y="2517" width="0.0767%" height="15" fill="rgb(226,144,49)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (18 samples, 0.08%)</title><rect x="14.2364%" y="2501" width="0.0767%" height="15" fill="rgb(214,187,32)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (18 samples, 0.08%)</title><rect x="14.2364%" y="2485" width="0.0767%" height="15" fill="rgb(243,129,46)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (18 samples, 0.08%)</title><rect x="14.2364%" y="2469" width="0.0767%" height="15" fill="rgb(221,185,35)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (18 samples, 0.08%)</title><rect x="14.2364%" y="2453" width="0.0767%" height="15" fill="rgb(205,0,32)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (18 samples, 0.08%)</title><rect x="14.2364%" y="2437" width="0.0767%" height="15" fill="rgb(229,179,12)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (18 samples, 0.08%)</title><rect x="14.2364%" y="2421" width="0.0767%" height="15" fill="rgb(252,107,19)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (18 samples, 0.08%)</title><rect x="14.2364%" y="2405" width="0.0767%" height="15" fill="rgb(220,95,27)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (18 samples, 0.08%)</title><rect x="14.2364%" y="2389" width="0.0767%" height="15" fill="rgb(240,113,40)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (18 samples, 0.08%)</title><rect x="14.2364%" y="2373" width="0.0767%" height="15" fill="rgb(208,4,43)" fg:x="3341" fg:w="18"/><text x="14.4864%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="14.3131%" y="1045" width="0.0128%" height="15" fill="rgb(247,189,30)" fg:x="3359" fg:w="3"/><text x="14.5631%" y="1055.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.3131%" y="1029" width="0.0128%" height="15" fill="rgb(231,157,17)" fg:x="3359" fg:w="3"/><text x="14.5631%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.3131%" y="1013" width="0.0128%" height="15" fill="rgb(224,139,6)" fg:x="3359" fg:w="3"/><text x="14.5631%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.3131%" y="997" width="0.0128%" height="15" fill="rgb(223,83,16)" fg:x="3359" fg:w="3"/><text x="14.5631%" y="1007.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="14.3131%" y="981" width="0.0128%" height="15" fill="rgb(232,211,20)" fg:x="3359" fg:w="3"/><text x="14.5631%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="14.3131%" y="965" width="0.0128%" height="15" fill="rgb(225,203,35)" fg:x="3359" fg:w="3"/><text x="14.5631%" y="975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="14.3131%" y="949" width="0.0128%" height="15" fill="rgb(215,211,44)" fg:x="3359" fg:w="3"/><text x="14.5631%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="14.3131%" y="1509" width="0.0298%" height="15" fill="rgb(248,213,26)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="14.3131%" y="1493" width="0.0298%" height="15" fill="rgb(214,23,52)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="14.3131%" y="1477" width="0.0298%" height="15" fill="rgb(225,173,50)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1487.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="14.3131%" y="1461" width="0.0298%" height="15" fill="rgb(206,150,22)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1471.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="14.3131%" y="1445" width="0.0298%" height="15" fill="rgb(239,64,23)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1455.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="14.3131%" y="1429" width="0.0298%" height="15" fill="rgb(242,50,38)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1439.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="14.3131%" y="1413" width="0.0298%" height="15" fill="rgb(217,91,15)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1423.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="14.3131%" y="1397" width="0.0298%" height="15" fill="rgb(230,172,6)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1407.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="14.3131%" y="1381" width="0.0298%" height="15" fill="rgb(221,98,26)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1391.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="14.3131%" y="1365" width="0.0298%" height="15" fill="rgb(227,210,45)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1375.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="14.3131%" y="1349" width="0.0298%" height="15" fill="rgb(206,8,30)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1359.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3131%" y="1333" width="0.0298%" height="15" fill="rgb(241,219,17)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1343.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3131%" y="1317" width="0.0298%" height="15" fill="rgb(247,121,29)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3131%" y="1301" width="0.0298%" height="15" fill="rgb(219,169,49)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="14.3131%" y="1285" width="0.0298%" height="15" fill="rgb(253,49,49)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1295.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="14.3131%" y="1269" width="0.0298%" height="15" fill="rgb(217,178,3)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1279.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="14.3131%" y="1253" width="0.0298%" height="15" fill="rgb(234,73,37)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3131%" y="1237" width="0.0298%" height="15" fill="rgb(250,98,22)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="14.3131%" y="1221" width="0.0298%" height="15" fill="rgb(220,108,37)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="14.3131%" y="1205" width="0.0298%" height="15" fill="rgb(225,168,10)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1215.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="14.3131%" y="1189" width="0.0298%" height="15" fill="rgb(247,215,21)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="14.3131%" y="1173" width="0.0298%" height="15" fill="rgb(253,189,31)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="14.3131%" y="1157" width="0.0298%" height="15" fill="rgb(241,54,22)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1167.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3131%" y="1141" width="0.0298%" height="15" fill="rgb(211,87,4)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3131%" y="1125" width="0.0298%" height="15" fill="rgb(245,112,24)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="14.3131%" y="1109" width="0.0298%" height="15" fill="rgb(235,190,41)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1119.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="14.3131%" y="1093" width="0.0298%" height="15" fill="rgb(214,89,8)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="14.3131%" y="1077" width="0.0298%" height="15" fill="rgb(249,155,35)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3131%" y="1061" width="0.0298%" height="15" fill="rgb(249,88,26)" fg:x="3359" fg:w="7"/><text x="14.5631%" y="1071.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="14.3259%" y="1045" width="0.0170%" height="15" fill="rgb(232,56,8)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="1055.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="14.3259%" y="1029" width="0.0170%" height="15" fill="rgb(240,95,3)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="1039.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="14.3259%" y="1013" width="0.0170%" height="15" fill="rgb(222,44,28)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="1023.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="14.3259%" y="997" width="0.0170%" height="15" fill="rgb(234,16,30)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="1007.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="14.3259%" y="981" width="0.0170%" height="15" fill="rgb(223,26,17)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="991.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3259%" y="965" width="0.0170%" height="15" fill="rgb(239,187,47)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3259%" y="949" width="0.0170%" height="15" fill="rgb(247,102,50)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.3259%" y="933" width="0.0170%" height="15" fill="rgb(231,216,22)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="943.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="14.3259%" y="917" width="0.0170%" height="15" fill="rgb(216,201,26)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.3259%" y="901" width="0.0170%" height="15" fill="rgb(214,186,23)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3259%" y="885" width="0.0170%" height="15" fill="rgb(235,184,4)" fg:x="3362" fg:w="4"/><text x="14.5759%" y="895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="14.3131%" y="1797" width="0.0341%" height="15" fill="rgb(244,46,17)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="14.3131%" y="1781" width="0.0341%" height="15" fill="rgb(248,74,46)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="14.3131%" y="1765" width="0.0341%" height="15" fill="rgb(243,79,5)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1775.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="14.3131%" y="1749" width="0.0341%" height="15" fill="rgb(213,148,1)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1759.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="14.3131%" y="1733" width="0.0341%" height="15" fill="rgb(221,30,0)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1743.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="14.3131%" y="1717" width="0.0341%" height="15" fill="rgb(207,85,29)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1727.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="14.3131%" y="1701" width="0.0341%" height="15" fill="rgb(239,31,46)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1711.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="14.3131%" y="1685" width="0.0341%" height="15" fill="rgb(219,6,1)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1695.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="14.3131%" y="1669" width="0.0341%" height="15" fill="rgb(229,90,29)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1679.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="14.3131%" y="1653" width="0.0341%" height="15" fill="rgb(242,201,42)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1663.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="14.3131%" y="1637" width="0.0341%" height="15" fill="rgb(243,80,54)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1647.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="14.3131%" y="1621" width="0.0341%" height="15" fill="rgb(223,166,15)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1631.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="14.3131%" y="1605" width="0.0341%" height="15" fill="rgb(238,78,27)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="14.3131%" y="1589" width="0.0341%" height="15" fill="rgb(235,28,43)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="14.3131%" y="1573" width="0.0341%" height="15" fill="rgb(240,210,28)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1583.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="14.3131%" y="1557" width="0.0341%" height="15" fill="rgb(253,6,46)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1567.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="14.3131%" y="1541" width="0.0341%" height="15" fill="rgb(250,159,47)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="14.3131%" y="1525" width="0.0341%" height="15" fill="rgb(216,139,2)" fg:x="3359" fg:w="8"/><text x="14.5631%" y="1535.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="14.3131%" y="1909" width="0.0511%" height="15" fill="rgb(221,124,44)" fg:x="3359" fg:w="12"/><text x="14.5631%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="14.3131%" y="1893" width="0.0511%" height="15" fill="rgb(205,37,22)" fg:x="3359" fg:w="12"/><text x="14.5631%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="14.3131%" y="1877" width="0.0511%" height="15" fill="rgb(250,55,8)" fg:x="3359" fg:w="12"/><text x="14.5631%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="14.3131%" y="1861" width="0.0511%" height="15" fill="rgb(215,83,48)" fg:x="3359" fg:w="12"/><text x="14.5631%" y="1871.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="14.3131%" y="1845" width="0.0511%" height="15" fill="rgb(253,2,32)" fg:x="3359" fg:w="12"/><text x="14.5631%" y="1855.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="14.3131%" y="1829" width="0.0511%" height="15" fill="rgb(236,67,28)" fg:x="3359" fg:w="12"/><text x="14.5631%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="14.3131%" y="1813" width="0.0511%" height="15" fill="rgb(252,55,15)" fg:x="3359" fg:w="12"/><text x="14.5631%" y="1823.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="14.3472%" y="1797" width="0.0170%" height="15" fill="rgb(243,173,17)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1807.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="14.3472%" y="1781" width="0.0170%" height="15" fill="rgb(215,212,13)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1791.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="14.3472%" y="1765" width="0.0170%" height="15" fill="rgb(253,176,6)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1775.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="14.3472%" y="1749" width="0.0170%" height="15" fill="rgb(236,105,26)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1759.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="14.3472%" y="1733" width="0.0170%" height="15" fill="rgb(239,226,32)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3472%" y="1717" width="0.0170%" height="15" fill="rgb(236,104,51)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3472%" y="1701" width="0.0170%" height="15" fill="rgb(220,172,33)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.3472%" y="1685" width="0.0170%" height="15" fill="rgb(224,182,25)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="14.3472%" y="1669" width="0.0170%" height="15" fill="rgb(236,184,24)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.3472%" y="1653" width="0.0170%" height="15" fill="rgb(241,221,14)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3472%" y="1637" width="0.0170%" height="15" fill="rgb(227,146,5)" fg:x="3367" fg:w="4"/><text x="14.5972%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="14.3642%" y="1733" width="0.0170%" height="15" fill="rgb(214,15,23)" fg:x="3371" fg:w="4"/><text x="14.6142%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3642%" y="1717" width="0.0170%" height="15" fill="rgb(233,157,31)" fg:x="3371" fg:w="4"/><text x="14.6142%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3642%" y="1701" width="0.0170%" height="15" fill="rgb(211,27,52)" fg:x="3371" fg:w="4"/><text x="14.6142%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.3642%" y="1685" width="0.0170%" height="15" fill="rgb(212,223,15)" fg:x="3371" fg:w="4"/><text x="14.6142%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="14.3642%" y="1669" width="0.0170%" height="15" fill="rgb(254,211,0)" fg:x="3371" fg:w="4"/><text x="14.6142%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.3642%" y="1653" width="0.0170%" height="15" fill="rgb(205,43,38)" fg:x="3371" fg:w="4"/><text x="14.6142%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3642%" y="1637" width="0.0170%" height="15" fill="rgb(242,206,46)" fg:x="3371" fg:w="4"/><text x="14.6142%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (19 samples, 0.08%)</title><rect x="14.3131%" y="2021" width="0.0810%" height="15" fill="rgb(220,221,12)" fg:x="3359" fg:w="19"/><text x="14.5631%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (19 samples, 0.08%)</title><rect x="14.3131%" y="2005" width="0.0810%" height="15" fill="rgb(217,156,35)" fg:x="3359" fg:w="19"/><text x="14.5631%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="14.3131%" y="1989" width="0.0810%" height="15" fill="rgb(207,181,49)" fg:x="3359" fg:w="19"/><text x="14.5631%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="14.3131%" y="1973" width="0.0810%" height="15" fill="rgb(235,103,47)" fg:x="3359" fg:w="19"/><text x="14.5631%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="14.3131%" y="1957" width="0.0810%" height="15" fill="rgb(222,63,28)" fg:x="3359" fg:w="19"/><text x="14.5631%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="14.3131%" y="1941" width="0.0810%" height="15" fill="rgb(244,137,21)" fg:x="3359" fg:w="19"/><text x="14.5631%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="14.3131%" y="1925" width="0.0810%" height="15" fill="rgb(228,35,27)" fg:x="3359" fg:w="19"/><text x="14.5631%" y="1935.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="14.3642%" y="1909" width="0.0298%" height="15" fill="rgb(226,191,41)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1919.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="14.3642%" y="1893" width="0.0298%" height="15" fill="rgb(210,154,3)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1903.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="14.3642%" y="1877" width="0.0298%" height="15" fill="rgb(216,60,49)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1887.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="14.3642%" y="1861" width="0.0298%" height="15" fill="rgb(226,17,20)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1871.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="14.3642%" y="1845" width="0.0298%" height="15" fill="rgb(206,115,35)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3642%" y="1829" width="0.0298%" height="15" fill="rgb(227,88,1)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3642%" y="1813" width="0.0298%" height="15" fill="rgb(230,222,24)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="14.3642%" y="1797" width="0.0298%" height="15" fill="rgb(214,124,32)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="14.3642%" y="1781" width="0.0298%" height="15" fill="rgb(240,41,36)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="14.3642%" y="1765" width="0.0298%" height="15" fill="rgb(221,17,52)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3642%" y="1749" width="0.0298%" height="15" fill="rgb(252,70,16)" fg:x="3371" fg:w="7"/><text x="14.6142%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.3813%" y="1733" width="0.0128%" height="15" fill="rgb(250,177,4)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.3813%" y="1717" width="0.0128%" height="15" fill="rgb(240,188,47)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1727.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.3813%" y="1701" width="0.0128%" height="15" fill="rgb(215,92,12)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.3813%" y="1685" width="0.0128%" height="15" fill="rgb(242,110,29)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.3813%" y="1669" width="0.0128%" height="15" fill="rgb(208,211,26)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="14.3813%" y="1653" width="0.0128%" height="15" fill="rgb(244,147,6)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.3813%" y="1637" width="0.0128%" height="15" fill="rgb(211,130,42)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.3813%" y="1621" width="0.0128%" height="15" fill="rgb(220,63,1)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="14.3813%" y="1605" width="0.0128%" height="15" fill="rgb(241,212,30)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="14.3813%" y="1589" width="0.0128%" height="15" fill="rgb(233,153,17)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="14.3813%" y="1573" width="0.0128%" height="15" fill="rgb(236,3,10)" fg:x="3375" fg:w="3"/><text x="14.6313%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="14.3941%" y="1733" width="0.0170%" height="15" fill="rgb(232,41,21)" fg:x="3378" fg:w="4"/><text x="14.6441%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3941%" y="1717" width="0.0170%" height="15" fill="rgb(206,63,51)" fg:x="3378" fg:w="4"/><text x="14.6441%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3941%" y="1701" width="0.0170%" height="15" fill="rgb(250,214,3)" fg:x="3378" fg:w="4"/><text x="14.6441%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.3941%" y="1685" width="0.0170%" height="15" fill="rgb(254,89,27)" fg:x="3378" fg:w="4"/><text x="14.6441%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="14.3941%" y="1669" width="0.0170%" height="15" fill="rgb(249,41,14)" fg:x="3378" fg:w="4"/><text x="14.6441%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.3941%" y="1653" width="0.0170%" height="15" fill="rgb(221,196,51)" fg:x="3378" fg:w="4"/><text x="14.6441%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="14.3941%" y="1637" width="0.0170%" height="15" fill="rgb(214,116,26)" fg:x="3378" fg:w="4"/><text x="14.6441%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="14.3941%" y="1845" width="0.0298%" height="15" fill="rgb(236,67,7)" fg:x="3378" fg:w="7"/><text x="14.6441%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3941%" y="1829" width="0.0298%" height="15" fill="rgb(253,179,32)" fg:x="3378" fg:w="7"/><text x="14.6441%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3941%" y="1813" width="0.0298%" height="15" fill="rgb(218,33,15)" fg:x="3378" fg:w="7"/><text x="14.6441%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="14.3941%" y="1797" width="0.0298%" height="15" fill="rgb(217,202,41)" fg:x="3378" fg:w="7"/><text x="14.6441%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="14.3941%" y="1781" width="0.0298%" height="15" fill="rgb(234,133,5)" fg:x="3378" fg:w="7"/><text x="14.6441%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="14.3941%" y="1765" width="0.0298%" height="15" fill="rgb(240,47,40)" fg:x="3378" fg:w="7"/><text x="14.6441%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="14.3941%" y="1749" width="0.0298%" height="15" fill="rgb(234,166,26)" fg:x="3378" fg:w="7"/><text x="14.6441%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.4111%" y="1733" width="0.0128%" height="15" fill="rgb(244,125,51)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.4111%" y="1717" width="0.0128%" height="15" fill="rgb(229,171,11)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1727.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.4111%" y="1701" width="0.0128%" height="15" fill="rgb(224,38,45)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.4111%" y="1685" width="0.0128%" height="15" fill="rgb(237,27,7)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.4111%" y="1669" width="0.0128%" height="15" fill="rgb(216,52,7)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="14.4111%" y="1653" width="0.0128%" height="15" fill="rgb(243,11,11)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.4111%" y="1637" width="0.0128%" height="15" fill="rgb(253,167,20)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.4111%" y="1621" width="0.0128%" height="15" fill="rgb(215,207,5)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="14.4111%" y="1605" width="0.0128%" height="15" fill="rgb(252,127,31)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="14.4111%" y="1589" width="0.0128%" height="15" fill="rgb(209,106,27)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="14.4111%" y="1573" width="0.0128%" height="15" fill="rgb(214,220,18)" fg:x="3382" fg:w="3"/><text x="14.6611%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="14.4239%" y="1669" width="0.0170%" height="15" fill="rgb(237,89,12)" fg:x="3385" fg:w="4"/><text x="14.6739%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="14.4239%" y="1653" width="0.0170%" height="15" fill="rgb(209,167,36)" fg:x="3385" fg:w="4"/><text x="14.6739%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="14.4239%" y="1637" width="0.0170%" height="15" fill="rgb(243,45,22)" fg:x="3385" fg:w="4"/><text x="14.6739%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.4239%" y="1621" width="0.0170%" height="15" fill="rgb(239,2,46)" fg:x="3385" fg:w="4"/><text x="14.6739%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="14.4239%" y="1605" width="0.0170%" height="15" fill="rgb(241,101,0)" fg:x="3385" fg:w="4"/><text x="14.6739%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.4239%" y="1589" width="0.0170%" height="15" fill="rgb(244,34,31)" fg:x="3385" fg:w="4"/><text x="14.6739%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="14.4239%" y="1573" width="0.0170%" height="15" fill="rgb(248,23,22)" fg:x="3385" fg:w="4"/><text x="14.6739%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (32 samples, 0.14%)</title><rect x="14.3131%" y="2485" width="0.1364%" height="15" fill="rgb(218,27,48)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32 samples, 0.14%)</title><rect x="14.3131%" y="2469" width="0.1364%" height="15" fill="rgb(232,78,1)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (32 samples, 0.14%)</title><rect x="14.3131%" y="2453" width="0.1364%" height="15" fill="rgb(233,169,12)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2463.50"></text></g><g><title>rayon_core::job::JobRef::execute (32 samples, 0.14%)</title><rect x="14.3131%" y="2437" width="0.1364%" height="15" fill="rgb(225,222,54)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (32 samples, 0.14%)</title><rect x="14.3131%" y="2421" width="0.1364%" height="15" fill="rgb(245,126,29)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (32 samples, 0.14%)</title><rect x="14.3131%" y="2405" width="0.1364%" height="15" fill="rgb(241,63,48)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="14.3131%" y="2389" width="0.1364%" height="15" fill="rgb(235,126,38)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2399.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="14.3131%" y="2373" width="0.1364%" height="15" fill="rgb(232,96,49)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2383.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="14.3131%" y="2357" width="0.1364%" height="15" fill="rgb(211,146,40)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2367.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="14.3131%" y="2341" width="0.1364%" height="15" fill="rgb(247,93,44)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="14.3131%" y="2325" width="0.1364%" height="15" fill="rgb(251,41,49)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (32 samples, 0.14%)</title><rect x="14.3131%" y="2309" width="0.1364%" height="15" fill="rgb(218,155,12)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="14.3131%" y="2293" width="0.1364%" height="15" fill="rgb(221,161,30)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="14.3131%" y="2277" width="0.1364%" height="15" fill="rgb(221,179,11)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="14.3131%" y="2261" width="0.1364%" height="15" fill="rgb(224,170,48)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="14.3131%" y="2245" width="0.1364%" height="15" fill="rgb(223,117,5)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="14.3131%" y="2229" width="0.1364%" height="15" fill="rgb(209,52,20)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="14.3131%" y="2213" width="0.1364%" height="15" fill="rgb(209,19,41)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="14.3131%" y="2197" width="0.1364%" height="15" fill="rgb(210,177,12)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="14.3131%" y="2181" width="0.1364%" height="15" fill="rgb(211,159,37)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2191.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="14.3131%" y="2165" width="0.1364%" height="15" fill="rgb(209,20,2)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="14.3131%" y="2149" width="0.1364%" height="15" fill="rgb(244,3,46)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="14.3131%" y="2133" width="0.1364%" height="15" fill="rgb(220,94,38)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (32 samples, 0.14%)</title><rect x="14.3131%" y="2117" width="0.1364%" height="15" fill="rgb(253,14,31)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="14.3131%" y="2101" width="0.1364%" height="15" fill="rgb(234,176,13)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="14.3131%" y="2085" width="0.1364%" height="15" fill="rgb(218,62,25)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="14.3131%" y="2069" width="0.1364%" height="15" fill="rgb(216,124,40)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="14.3131%" y="2053" width="0.1364%" height="15" fill="rgb(228,170,12)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="14.3131%" y="2037" width="0.1364%" height="15" fill="rgb(231,226,5)" fg:x="3359" fg:w="32"/><text x="14.5631%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="14.3941%" y="2021" width="0.0554%" height="15" fill="rgb(237,122,22)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="14.3941%" y="2005" width="0.0554%" height="15" fill="rgb(209,185,25)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="2015.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="14.3941%" y="1989" width="0.0554%" height="15" fill="rgb(228,200,32)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="14.3941%" y="1973" width="0.0554%" height="15" fill="rgb(217,140,10)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="14.3941%" y="1957" width="0.0554%" height="15" fill="rgb(253,17,24)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="14.3941%" y="1941" width="0.0554%" height="15" fill="rgb(212,61,6)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="14.3941%" y="1925" width="0.0554%" height="15" fill="rgb(205,14,25)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="14.3941%" y="1909" width="0.0554%" height="15" fill="rgb(232,69,41)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="14.3941%" y="1893" width="0.0554%" height="15" fill="rgb(241,106,47)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="14.3941%" y="1877" width="0.0554%" height="15" fill="rgb(210,213,53)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="14.3941%" y="1861" width="0.0554%" height="15" fill="rgb(253,175,27)" fg:x="3378" fg:w="13"/><text x="14.6441%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="14.4239%" y="1845" width="0.0256%" height="15" fill="rgb(211,171,24)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="14.4239%" y="1829" width="0.0256%" height="15" fill="rgb(229,80,7)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1839.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="14.4239%" y="1813" width="0.0256%" height="15" fill="rgb(212,46,39)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="14.4239%" y="1797" width="0.0256%" height="15" fill="rgb(240,80,45)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="14.4239%" y="1781" width="0.0256%" height="15" fill="rgb(253,177,40)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="14.4239%" y="1765" width="0.0256%" height="15" fill="rgb(249,200,15)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="14.4239%" y="1749" width="0.0256%" height="15" fill="rgb(217,78,26)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="14.4239%" y="1733" width="0.0256%" height="15" fill="rgb(254,151,32)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="14.4239%" y="1717" width="0.0256%" height="15" fill="rgb(226,165,27)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="14.4239%" y="1701" width="0.0256%" height="15" fill="rgb(250,206,4)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="14.4239%" y="1685" width="0.0256%" height="15" fill="rgb(231,229,27)" fg:x="3385" fg:w="6"/><text x="14.6739%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (53 samples, 0.23%)</title><rect x="14.2321%" y="2597" width="0.2258%" height="15" fill="rgb(239,217,8)" fg:x="3340" fg:w="53"/><text x="14.4821%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (53 samples, 0.23%)</title><rect x="14.2321%" y="2581" width="0.2258%" height="15" fill="rgb(225,204,27)" fg:x="3340" fg:w="53"/><text x="14.4821%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (53 samples, 0.23%)</title><rect x="14.2321%" y="2565" width="0.2258%" height="15" fill="rgb(230,56,32)" fg:x="3340" fg:w="53"/><text x="14.4821%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.23%)</title><rect x="14.2321%" y="2549" width="0.2258%" height="15" fill="rgb(222,56,27)" fg:x="3340" fg:w="53"/><text x="14.4821%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (34 samples, 0.14%)</title><rect x="14.3131%" y="2533" width="0.1449%" height="15" fill="rgb(253,108,27)" fg:x="3359" fg:w="34"/><text x="14.5631%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.14%)</title><rect x="14.3131%" y="2517" width="0.1449%" height="15" fill="rgb(212,87,36)" fg:x="3359" fg:w="34"/><text x="14.5631%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34 samples, 0.14%)</title><rect x="14.3131%" y="2501" width="0.1449%" height="15" fill="rgb(247,82,36)" fg:x="3359" fg:w="34"/><text x="14.5631%" y="2511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="14.4665%" y="2021" width="0.0213%" height="15" fill="rgb(222,143,9)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="14.4665%" y="2005" width="0.0213%" height="15" fill="rgb(238,162,48)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="14.4665%" y="1989" width="0.0213%" height="15" fill="rgb(221,59,43)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1999.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="14.4665%" y="1973" width="0.0213%" height="15" fill="rgb(205,166,41)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1983.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="14.4665%" y="1957" width="0.0213%" height="15" fill="rgb(241,186,40)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="14.4665%" y="1941" width="0.0213%" height="15" fill="rgb(216,119,35)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1951.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="14.4665%" y="1925" width="0.0213%" height="15" fill="rgb(208,68,38)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1935.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="14.4665%" y="1909" width="0.0213%" height="15" fill="rgb(217,113,1)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1919.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="14.4665%" y="1893" width="0.0213%" height="15" fill="rgb(242,153,3)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1903.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="14.4665%" y="1877" width="0.0213%" height="15" fill="rgb(229,76,35)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1887.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="14.4665%" y="1861" width="0.0213%" height="15" fill="rgb(229,125,34)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4665%" y="1845" width="0.0213%" height="15" fill="rgb(238,179,36)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4665%" y="1829" width="0.0213%" height="15" fill="rgb(244,183,19)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4665%" y="1813" width="0.0213%" height="15" fill="rgb(216,85,49)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="14.4665%" y="1797" width="0.0213%" height="15" fill="rgb(208,161,47)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="14.4665%" y="1781" width="0.0213%" height="15" fill="rgb(233,210,18)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1791.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="14.4665%" y="1765" width="0.0213%" height="15" fill="rgb(205,104,42)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="14.4665%" y="1749" width="0.0213%" height="15" fill="rgb(248,90,43)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="14.4665%" y="1733" width="0.0213%" height="15" fill="rgb(206,198,11)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1743.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="14.4665%" y="1717" width="0.0213%" height="15" fill="rgb(239,165,27)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1727.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="14.4665%" y="1701" width="0.0213%" height="15" fill="rgb(246,44,32)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="14.4665%" y="1685" width="0.0213%" height="15" fill="rgb(252,65,42)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4665%" y="1669" width="0.0213%" height="15" fill="rgb(246,197,18)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="14.4665%" y="1653" width="0.0213%" height="15" fill="rgb(216,192,4)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1663.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="14.4665%" y="1637" width="0.0213%" height="15" fill="rgb(208,117,10)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1647.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4665%" y="1621" width="0.0213%" height="15" fill="rgb(240,61,47)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1631.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="14.4665%" y="1605" width="0.0213%" height="15" fill="rgb(228,178,21)" fg:x="3395" fg:w="5"/><text x="14.7165%" y="1615.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="14.4750%" y="1589" width="0.0128%" height="15" fill="rgb(219,96,54)" fg:x="3397" fg:w="3"/><text x="14.7250%" y="1599.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="14.4750%" y="1573" width="0.0128%" height="15" fill="rgb(250,177,24)" fg:x="3397" fg:w="3"/><text x="14.7250%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="14.4878%" y="1621" width="0.0128%" height="15" fill="rgb(242,154,46)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1631.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.4878%" y="1605" width="0.0128%" height="15" fill="rgb(226,176,29)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.4878%" y="1589" width="0.0128%" height="15" fill="rgb(226,29,2)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.4878%" y="1573" width="0.0128%" height="15" fill="rgb(237,104,14)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.4878%" y="1557" width="0.0128%" height="15" fill="rgb(245,207,31)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1567.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.4878%" y="1541" width="0.0128%" height="15" fill="rgb(229,211,45)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.4878%" y="1525" width="0.0128%" height="15" fill="rgb(229,113,15)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1535.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.4878%" y="1509" width="0.0128%" height="15" fill="rgb(237,147,15)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1519.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.4878%" y="1493" width="0.0128%" height="15" fill="rgb(244,120,12)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1503.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.4878%" y="1477" width="0.0128%" height="15" fill="rgb(205,120,12)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.4878%" y="1461" width="0.0128%" height="15" fill="rgb(231,26,45)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.4878%" y="1445" width="0.0128%" height="15" fill="rgb(246,98,1)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.4878%" y="1429" width="0.0128%" height="15" fill="rgb(207,68,45)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1439.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.4878%" y="1413" width="0.0128%" height="15" fill="rgb(231,27,38)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1423.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.4878%" y="1397" width="0.0128%" height="15" fill="rgb(214,223,3)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1407.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.4878%" y="1381" width="0.0128%" height="15" fill="rgb(228,195,46)" fg:x="3400" fg:w="3"/><text x="14.7378%" y="1391.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="14.4878%" y="1733" width="0.0213%" height="15" fill="rgb(231,100,42)" fg:x="3400" fg:w="5"/><text x="14.7378%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4878%" y="1717" width="0.0213%" height="15" fill="rgb(236,53,4)" fg:x="3400" fg:w="5"/><text x="14.7378%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4878%" y="1701" width="0.0213%" height="15" fill="rgb(230,152,12)" fg:x="3400" fg:w="5"/><text x="14.7378%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="14.4878%" y="1685" width="0.0213%" height="15" fill="rgb(226,101,19)" fg:x="3400" fg:w="5"/><text x="14.7378%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="14.4878%" y="1669" width="0.0213%" height="15" fill="rgb(250,149,32)" fg:x="3400" fg:w="5"/><text x="14.7378%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="14.4878%" y="1653" width="0.0213%" height="15" fill="rgb(232,178,12)" fg:x="3400" fg:w="5"/><text x="14.7378%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="14.4878%" y="1637" width="0.0213%" height="15" fill="rgb(246,151,17)" fg:x="3400" fg:w="5"/><text x="14.7378%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="14.5091%" y="1557" width="0.0128%" height="15" fill="rgb(252,17,51)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5091%" y="1541" width="0.0128%" height="15" fill="rgb(250,207,23)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5091%" y="1525" width="0.0128%" height="15" fill="rgb(205,27,5)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.5091%" y="1509" width="0.0128%" height="15" fill="rgb(224,32,19)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.5091%" y="1493" width="0.0128%" height="15" fill="rgb(247,214,40)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1503.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.5091%" y="1477" width="0.0128%" height="15" fill="rgb(239,199,17)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.5091%" y="1461" width="0.0128%" height="15" fill="rgb(251,159,9)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1471.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.5091%" y="1445" width="0.0128%" height="15" fill="rgb(225,78,32)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1455.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.5091%" y="1429" width="0.0128%" height="15" fill="rgb(206,97,47)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1439.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.5091%" y="1413" width="0.0128%" height="15" fill="rgb(227,107,4)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.5091%" y="1397" width="0.0128%" height="15" fill="rgb(241,146,50)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5091%" y="1381" width="0.0128%" height="15" fill="rgb(232,92,30)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.5091%" y="1365" width="0.0128%" height="15" fill="rgb(222,0,40)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1375.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.5091%" y="1349" width="0.0128%" height="15" fill="rgb(219,54,33)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1359.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5091%" y="1333" width="0.0128%" height="15" fill="rgb(226,209,28)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1343.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.5091%" y="1317" width="0.0128%" height="15" fill="rgb(254,205,35)" fg:x="3405" fg:w="3"/><text x="14.7591%" y="1327.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="14.4878%" y="1845" width="0.0469%" height="15" fill="rgb(230,159,3)" fg:x="3400" fg:w="11"/><text x="14.7378%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="14.4878%" y="1829" width="0.0469%" height="15" fill="rgb(232,190,24)" fg:x="3400" fg:w="11"/><text x="14.7378%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="14.4878%" y="1813" width="0.0469%" height="15" fill="rgb(217,227,44)" fg:x="3400" fg:w="11"/><text x="14.7378%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="14.4878%" y="1797" width="0.0469%" height="15" fill="rgb(236,211,1)" fg:x="3400" fg:w="11"/><text x="14.7378%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="14.4878%" y="1781" width="0.0469%" height="15" fill="rgb(250,127,46)" fg:x="3400" fg:w="11"/><text x="14.7378%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="14.4878%" y="1765" width="0.0469%" height="15" fill="rgb(229,213,6)" fg:x="3400" fg:w="11"/><text x="14.7378%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="14.4878%" y="1749" width="0.0469%" height="15" fill="rgb(237,15,36)" fg:x="3400" fg:w="11"/><text x="14.7378%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="14.5091%" y="1733" width="0.0256%" height="15" fill="rgb(213,131,41)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="14.5091%" y="1717" width="0.0256%" height="15" fill="rgb(225,82,44)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1727.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="14.5091%" y="1701" width="0.0256%" height="15" fill="rgb(249,42,11)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="14.5091%" y="1685" width="0.0256%" height="15" fill="rgb(253,11,29)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="14.5091%" y="1669" width="0.0256%" height="15" fill="rgb(206,8,54)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="14.5091%" y="1653" width="0.0256%" height="15" fill="rgb(222,186,2)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="14.5091%" y="1637" width="0.0256%" height="15" fill="rgb(221,206,53)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="14.5091%" y="1621" width="0.0256%" height="15" fill="rgb(230,150,21)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="14.5091%" y="1605" width="0.0256%" height="15" fill="rgb(253,202,10)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="14.5091%" y="1589" width="0.0256%" height="15" fill="rgb(238,109,40)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="14.5091%" y="1573" width="0.0256%" height="15" fill="rgb(247,120,22)" fg:x="3405" fg:w="6"/><text x="14.7591%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.5219%" y="1557" width="0.0128%" height="15" fill="rgb(207,43,30)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.5219%" y="1541" width="0.0128%" height="15" fill="rgb(213,211,24)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1551.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.5219%" y="1525" width="0.0128%" height="15" fill="rgb(239,73,39)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.5219%" y="1509" width="0.0128%" height="15" fill="rgb(245,182,19)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.5219%" y="1493" width="0.0128%" height="15" fill="rgb(247,143,26)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5219%" y="1477" width="0.0128%" height="15" fill="rgb(228,191,23)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5219%" y="1461" width="0.0128%" height="15" fill="rgb(253,165,31)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.5219%" y="1445" width="0.0128%" height="15" fill="rgb(234,138,20)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.5219%" y="1429" width="0.0128%" height="15" fill="rgb(218,191,29)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1439.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.5219%" y="1413" width="0.0128%" height="15" fill="rgb(221,157,19)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.5219%" y="1397" width="0.0128%" height="15" fill="rgb(237,26,42)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1407.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.5219%" y="1381" width="0.0128%" height="15" fill="rgb(220,163,24)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1391.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.5219%" y="1365" width="0.0128%" height="15" fill="rgb(242,115,20)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1375.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.5219%" y="1349" width="0.0128%" height="15" fill="rgb(210,206,9)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.5219%" y="1333" width="0.0128%" height="15" fill="rgb(208,71,17)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5219%" y="1317" width="0.0128%" height="15" fill="rgb(233,7,5)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.5219%" y="1301" width="0.0128%" height="15" fill="rgb(207,92,33)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.5219%" y="1285" width="0.0128%" height="15" fill="rgb(218,87,9)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1295.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5219%" y="1269" width="0.0128%" height="15" fill="rgb(219,47,37)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1279.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.5219%" y="1253" width="0.0128%" height="15" fill="rgb(221,152,34)" fg:x="3408" fg:w="3"/><text x="14.7719%" y="1263.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="14.5347%" y="1669" width="0.0213%" height="15" fill="rgb(235,176,21)" fg:x="3411" fg:w="5"/><text x="14.7847%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="14.5347%" y="1653" width="0.0213%" height="15" fill="rgb(232,212,21)" fg:x="3411" fg:w="5"/><text x="14.7847%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="14.5347%" y="1637" width="0.0213%" height="15" fill="rgb(245,82,39)" fg:x="3411" fg:w="5"/><text x="14.7847%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="14.5347%" y="1621" width="0.0213%" height="15" fill="rgb(241,52,51)" fg:x="3411" fg:w="5"/><text x="14.7847%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="14.5347%" y="1605" width="0.0213%" height="15" fill="rgb(219,91,24)" fg:x="3411" fg:w="5"/><text x="14.7847%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="14.5347%" y="1589" width="0.0213%" height="15" fill="rgb(241,142,12)" fg:x="3411" fg:w="5"/><text x="14.7847%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="14.5347%" y="1573" width="0.0213%" height="15" fill="rgb(230,27,9)" fg:x="3411" fg:w="5"/><text x="14.7847%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.5432%" y="1557" width="0.0128%" height="15" fill="rgb(249,181,32)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.5432%" y="1541" width="0.0128%" height="15" fill="rgb(230,107,3)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1551.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.5432%" y="1525" width="0.0128%" height="15" fill="rgb(246,204,14)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.5432%" y="1509" width="0.0128%" height="15" fill="rgb(213,192,47)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.5432%" y="1493" width="0.0128%" height="15" fill="rgb(240,44,36)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5432%" y="1477" width="0.0128%" height="15" fill="rgb(244,209,38)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5432%" y="1461" width="0.0128%" height="15" fill="rgb(219,34,37)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.5432%" y="1445" width="0.0128%" height="15" fill="rgb(210,28,6)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.5432%" y="1429" width="0.0128%" height="15" fill="rgb(244,110,52)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1439.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.5432%" y="1413" width="0.0128%" height="15" fill="rgb(254,124,47)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.5432%" y="1397" width="0.0128%" height="15" fill="rgb(254,110,13)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1407.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.5432%" y="1381" width="0.0128%" height="15" fill="rgb(252,57,21)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1391.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.5432%" y="1365" width="0.0128%" height="15" fill="rgb(242,60,45)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1375.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.5432%" y="1349" width="0.0128%" height="15" fill="rgb(234,49,30)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.5432%" y="1333" width="0.0128%" height="15" fill="rgb(218,98,6)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5432%" y="1317" width="0.0128%" height="15" fill="rgb(220,174,29)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.5432%" y="1301" width="0.0128%" height="15" fill="rgb(236,163,23)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.5432%" y="1285" width="0.0128%" height="15" fill="rgb(242,114,45)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1295.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5432%" y="1269" width="0.0128%" height="15" fill="rgb(232,10,53)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1279.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.5432%" y="1253" width="0.0128%" height="15" fill="rgb(245,108,29)" fg:x="3413" fg:w="3"/><text x="14.7932%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (26 samples, 0.11%)</title><rect x="14.4665%" y="2309" width="0.1108%" height="15" fill="rgb(240,89,53)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.11%)</title><rect x="14.4665%" y="2293" width="0.1108%" height="15" fill="rgb(226,60,45)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (26 samples, 0.11%)</title><rect x="14.4665%" y="2277" width="0.1108%" height="15" fill="rgb(230,41,44)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (26 samples, 0.11%)</title><rect x="14.4665%" y="2261" width="0.1108%" height="15" fill="rgb(230,26,20)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (26 samples, 0.11%)</title><rect x="14.4665%" y="2245" width="0.1108%" height="15" fill="rgb(237,170,32)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (26 samples, 0.11%)</title><rect x="14.4665%" y="2229" width="0.1108%" height="15" fill="rgb(212,35,42)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="14.4665%" y="2213" width="0.1108%" height="15" fill="rgb(227,31,34)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="14.4665%" y="2197" width="0.1108%" height="15" fill="rgb(216,19,18)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2207.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="14.4665%" y="2181" width="0.1108%" height="15" fill="rgb(211,133,42)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="14.4665%" y="2165" width="0.1108%" height="15" fill="rgb(244,66,13)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="14.4665%" y="2149" width="0.1108%" height="15" fill="rgb(218,185,50)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (26 samples, 0.11%)</title><rect x="14.4665%" y="2133" width="0.1108%" height="15" fill="rgb(219,149,13)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="14.4665%" y="2117" width="0.1108%" height="15" fill="rgb(221,125,0)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="14.4665%" y="2101" width="0.1108%" height="15" fill="rgb(247,126,27)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="14.4665%" y="2085" width="0.1108%" height="15" fill="rgb(250,138,30)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="14.4665%" y="2069" width="0.1108%" height="15" fill="rgb(230,151,9)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="14.4665%" y="2053" width="0.1108%" height="15" fill="rgb(233,80,38)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="14.4665%" y="2037" width="0.1108%" height="15" fill="rgb(232,68,43)" fg:x="3395" fg:w="26"/><text x="14.7165%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="14.4878%" y="2021" width="0.0895%" height="15" fill="rgb(254,5,50)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="14.4878%" y="2005" width="0.0895%" height="15" fill="rgb(225,45,5)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="2015.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="14.4878%" y="1989" width="0.0895%" height="15" fill="rgb(239,22,3)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="14.4878%" y="1973" width="0.0895%" height="15" fill="rgb(243,129,0)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="14.4878%" y="1957" width="0.0895%" height="15" fill="rgb(223,164,0)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="14.4878%" y="1941" width="0.0895%" height="15" fill="rgb(221,46,29)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="14.4878%" y="1925" width="0.0895%" height="15" fill="rgb(205,97,47)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="14.4878%" y="1909" width="0.0895%" height="15" fill="rgb(249,14,8)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="14.4878%" y="1893" width="0.0895%" height="15" fill="rgb(216,77,3)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="14.4878%" y="1877" width="0.0895%" height="15" fill="rgb(206,168,54)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="14.4878%" y="1861" width="0.0895%" height="15" fill="rgb(236,3,41)" fg:x="3400" fg:w="21"/><text x="14.7378%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="14.5347%" y="1845" width="0.0426%" height="15" fill="rgb(231,132,24)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="14.5347%" y="1829" width="0.0426%" height="15" fill="rgb(227,221,40)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1839.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="14.5347%" y="1813" width="0.0426%" height="15" fill="rgb(233,151,11)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="14.5347%" y="1797" width="0.0426%" height="15" fill="rgb(247,81,35)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="14.5347%" y="1781" width="0.0426%" height="15" fill="rgb(243,128,48)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="14.5347%" y="1765" width="0.0426%" height="15" fill="rgb(253,16,10)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="14.5347%" y="1749" width="0.0426%" height="15" fill="rgb(228,67,27)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="14.5347%" y="1733" width="0.0426%" height="15" fill="rgb(231,105,25)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="14.5347%" y="1717" width="0.0426%" height="15" fill="rgb(213,166,47)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="14.5347%" y="1701" width="0.0426%" height="15" fill="rgb(209,27,10)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="14.5347%" y="1685" width="0.0426%" height="15" fill="rgb(241,44,30)" fg:x="3411" fg:w="10"/><text x="14.7847%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="14.5560%" y="1669" width="0.0213%" height="15" fill="rgb(223,216,15)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="14.5560%" y="1653" width="0.0213%" height="15" fill="rgb(227,14,7)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1663.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="14.5560%" y="1637" width="0.0213%" height="15" fill="rgb(237,14,5)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="14.5560%" y="1621" width="0.0213%" height="15" fill="rgb(232,14,36)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="14.5560%" y="1605" width="0.0213%" height="15" fill="rgb(234,0,38)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="14.5560%" y="1589" width="0.0213%" height="15" fill="rgb(207,170,14)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="14.5560%" y="1573" width="0.0213%" height="15" fill="rgb(252,45,13)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="14.5560%" y="1557" width="0.0213%" height="15" fill="rgb(213,142,7)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="14.5560%" y="1541" width="0.0213%" height="15" fill="rgb(216,157,23)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="14.5560%" y="1525" width="0.0213%" height="15" fill="rgb(212,145,33)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="14.5560%" y="1509" width="0.0213%" height="15" fill="rgb(233,26,13)" fg:x="3416" fg:w="5"/><text x="14.8060%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.5645%" y="1493" width="0.0128%" height="15" fill="rgb(219,196,19)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.5645%" y="1477" width="0.0128%" height="15" fill="rgb(246,56,21)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.5645%" y="1461" width="0.0128%" height="15" fill="rgb(222,28,53)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.5645%" y="1445" width="0.0128%" height="15" fill="rgb(224,5,27)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.5645%" y="1429" width="0.0128%" height="15" fill="rgb(220,153,33)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5645%" y="1413" width="0.0128%" height="15" fill="rgb(226,58,19)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5645%" y="1397" width="0.0128%" height="15" fill="rgb(239,112,23)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.5645%" y="1381" width="0.0128%" height="15" fill="rgb(251,213,20)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.5645%" y="1365" width="0.0128%" height="15" fill="rgb(215,181,21)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1375.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.5645%" y="1349" width="0.0128%" height="15" fill="rgb(240,8,35)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.5645%" y="1333" width="0.0128%" height="15" fill="rgb(232,203,3)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1343.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.5645%" y="1317" width="0.0128%" height="15" fill="rgb(214,202,43)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1327.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.5645%" y="1301" width="0.0128%" height="15" fill="rgb(254,35,11)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1311.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.5645%" y="1285" width="0.0128%" height="15" fill="rgb(239,173,13)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.5645%" y="1269" width="0.0128%" height="15" fill="rgb(220,141,0)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5645%" y="1253" width="0.0128%" height="15" fill="rgb(210,98,12)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1263.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.5645%" y="1237" width="0.0128%" height="15" fill="rgb(254,153,22)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1247.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.5645%" y="1221" width="0.0128%" height="15" fill="rgb(247,223,17)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1231.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.5645%" y="1205" width="0.0128%" height="15" fill="rgb(246,56,7)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1215.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.5645%" y="1189" width="0.0128%" height="15" fill="rgb(240,226,12)" fg:x="3418" fg:w="3"/><text x="14.8145%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (29 samples, 0.12%)</title><rect x="14.4580%" y="2597" width="0.1236%" height="15" fill="rgb(205,87,46)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (29 samples, 0.12%)</title><rect x="14.4580%" y="2581" width="0.1236%" height="15" fill="rgb(245,214,51)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (29 samples, 0.12%)</title><rect x="14.4580%" y="2565" width="0.1236%" height="15" fill="rgb(223,172,33)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2575.50"></text></g><g><title>rayon_core::job::JobRef::execute (29 samples, 0.12%)</title><rect x="14.4580%" y="2549" width="0.1236%" height="15" fill="rgb(227,203,34)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2559.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (29 samples, 0.12%)</title><rect x="14.4580%" y="2533" width="0.1236%" height="15" fill="rgb(248,143,44)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2543.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (29 samples, 0.12%)</title><rect x="14.4580%" y="2517" width="0.1236%" height="15" fill="rgb(226,162,5)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29 samples, 0.12%)</title><rect x="14.4580%" y="2501" width="0.1236%" height="15" fill="rgb(211,143,1)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2511.50"></text></g><g><title>std::panic::catch_unwind (29 samples, 0.12%)</title><rect x="14.4580%" y="2485" width="0.1236%" height="15" fill="rgb(224,96,15)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2495.50"></text></g><g><title>std::panicking::try (29 samples, 0.12%)</title><rect x="14.4580%" y="2469" width="0.1236%" height="15" fill="rgb(222,4,38)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2479.50"></text></g><g><title>std::panicking::try::do_call (29 samples, 0.12%)</title><rect x="14.4580%" y="2453" width="0.1236%" height="15" fill="rgb(253,228,15)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (29 samples, 0.12%)</title><rect x="14.4580%" y="2437" width="0.1236%" height="15" fill="rgb(242,194,12)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (29 samples, 0.12%)</title><rect x="14.4580%" y="2421" width="0.1236%" height="15" fill="rgb(214,177,31)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (29 samples, 0.12%)</title><rect x="14.4580%" y="2405" width="0.1236%" height="15" fill="rgb(226,58,51)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="14.4580%" y="2389" width="0.1236%" height="15" fill="rgb(250,119,16)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="14.4580%" y="2373" width="0.1236%" height="15" fill="rgb(223,128,53)" fg:x="3393" fg:w="29"/><text x="14.7080%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="14.4665%" y="2357" width="0.1151%" height="15" fill="rgb(251,199,15)" fg:x="3395" fg:w="27"/><text x="14.7165%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="14.4665%" y="2341" width="0.1151%" height="15" fill="rgb(235,168,42)" fg:x="3395" fg:w="27"/><text x="14.7165%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="14.4665%" y="2325" width="0.1151%" height="15" fill="rgb(250,210,17)" fg:x="3395" fg:w="27"/><text x="14.7165%" y="2335.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (8 samples, 0.03%)</title><rect x="14.5816%" y="2277" width="0.0341%" height="15" fill="rgb(226,36,41)" fg:x="3422" fg:w="8"/><text x="14.8316%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (8 samples, 0.03%)</title><rect x="14.5816%" y="2261" width="0.0341%" height="15" fill="rgb(225,87,10)" fg:x="3422" fg:w="8"/><text x="14.8316%" y="2271.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="14.5816%" y="2245" width="0.0341%" height="15" fill="rgb(228,83,9)" fg:x="3422" fg:w="8"/><text x="14.8316%" y="2255.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="14.5858%" y="2229" width="0.0298%" height="15" fill="rgb(225,16,36)" fg:x="3423" fg:w="7"/><text x="14.8358%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (6 samples, 0.03%)</title><rect x="14.6156%" y="2277" width="0.0256%" height="15" fill="rgb(242,198,13)" fg:x="3430" fg:w="6"/><text x="14.8656%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (6 samples, 0.03%)</title><rect x="14.6156%" y="2261" width="0.0256%" height="15" fill="rgb(239,25,51)" fg:x="3430" fg:w="6"/><text x="14.8656%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (17 samples, 0.07%)</title><rect x="14.5816%" y="2293" width="0.0724%" height="15" fill="rgb(239,28,37)" fg:x="3422" fg:w="17"/><text x="14.8316%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="14.6412%" y="2277" width="0.0128%" height="15" fill="rgb(234,70,17)" fg:x="3436" fg:w="3"/><text x="14.8912%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="14.6412%" y="2261" width="0.0128%" height="15" fill="rgb(231,215,53)" fg:x="3436" fg:w="3"/><text x="14.8912%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (18 samples, 0.08%)</title><rect x="14.5816%" y="2469" width="0.0767%" height="15" fill="rgb(218,140,42)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (18 samples, 0.08%)</title><rect x="14.5816%" y="2453" width="0.0767%" height="15" fill="rgb(233,227,45)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (18 samples, 0.08%)</title><rect x="14.5816%" y="2437" width="0.0767%" height="15" fill="rgb(225,189,21)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (18 samples, 0.08%)</title><rect x="14.5816%" y="2421" width="0.0767%" height="15" fill="rgb(237,176,54)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (18 samples, 0.08%)</title><rect x="14.5816%" y="2405" width="0.0767%" height="15" fill="rgb(215,131,46)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (18 samples, 0.08%)</title><rect x="14.5816%" y="2389" width="0.0767%" height="15" fill="rgb(218,95,20)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (18 samples, 0.08%)</title><rect x="14.5816%" y="2373" width="0.0767%" height="15" fill="rgb(208,198,12)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (18 samples, 0.08%)</title><rect x="14.5816%" y="2357" width="0.0767%" height="15" fill="rgb(239,107,50)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (18 samples, 0.08%)</title><rect x="14.5816%" y="2341" width="0.0767%" height="15" fill="rgb(240,217,37)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (18 samples, 0.08%)</title><rect x="14.5816%" y="2325" width="0.0767%" height="15" fill="rgb(242,197,49)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (18 samples, 0.08%)</title><rect x="14.5816%" y="2309" width="0.0767%" height="15" fill="rgb(219,171,17)" fg:x="3422" fg:w="18"/><text x="14.8316%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="14.6583%" y="2421" width="0.0128%" height="15" fill="rgb(209,81,40)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.6583%" y="2405" width="0.0128%" height="15" fill="rgb(237,156,30)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.6583%" y="2389" width="0.0128%" height="15" fill="rgb(212,127,16)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.6583%" y="2373" width="0.0128%" height="15" fill="rgb(226,66,32)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.6583%" y="2357" width="0.0128%" height="15" fill="rgb(245,22,46)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.6583%" y="2341" width="0.0128%" height="15" fill="rgb(210,112,21)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.6583%" y="2325" width="0.0128%" height="15" fill="rgb(207,118,39)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.6583%" y="2309" width="0.0128%" height="15" fill="rgb(205,206,35)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.6583%" y="2293" width="0.0128%" height="15" fill="rgb(222,120,2)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.6583%" y="2277" width="0.0128%" height="15" fill="rgb(205,38,18)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.6583%" y="2261" width="0.0128%" height="15" fill="rgb(226,61,2)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.6583%" y="2245" width="0.0128%" height="15" fill="rgb(242,161,23)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.6583%" y="2229" width="0.0128%" height="15" fill="rgb(213,13,52)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.6583%" y="2213" width="0.0128%" height="15" fill="rgb(246,209,47)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.6583%" y="2197" width="0.0128%" height="15" fill="rgb(214,41,3)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.6583%" y="2181" width="0.0128%" height="15" fill="rgb(236,119,38)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="14.6583%" y="2165" width="0.0128%" height="15" fill="rgb(218,50,11)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2175.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="14.6583%" y="2149" width="0.0128%" height="15" fill="rgb(228,38,11)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2159.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="14.6583%" y="2133" width="0.0128%" height="15" fill="rgb(212,13,9)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2143.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="14.6583%" y="2117" width="0.0128%" height="15" fill="rgb(208,211,9)" fg:x="3440" fg:w="3"/><text x="14.9083%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="14.6710%" y="2293" width="0.0170%" height="15" fill="rgb(239,39,32)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="14.6710%" y="2277" width="0.0170%" height="15" fill="rgb(254,179,26)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="14.6710%" y="2261" width="0.0170%" height="15" fill="rgb(249,165,28)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="14.6710%" y="2245" width="0.0170%" height="15" fill="rgb(225,59,50)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="14.6710%" y="2229" width="0.0170%" height="15" fill="rgb(209,122,5)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="14.6710%" y="2213" width="0.0170%" height="15" fill="rgb(214,65,34)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="14.6710%" y="2197" width="0.0170%" height="15" fill="rgb(249,183,32)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="14.6710%" y="2181" width="0.0170%" height="15" fill="rgb(218,122,24)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="14.6710%" y="2165" width="0.0170%" height="15" fill="rgb(224,109,18)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="14.6710%" y="2149" width="0.0170%" height="15" fill="rgb(210,68,50)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="14.6710%" y="2133" width="0.0170%" height="15" fill="rgb(212,184,34)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="14.6710%" y="2117" width="0.0170%" height="15" fill="rgb(238,105,48)" fg:x="3443" fg:w="4"/><text x="14.9210%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (135 samples, 0.58%)</title><rect x="14.1214%" y="2709" width="0.5753%" height="15" fill="rgb(222,134,54)" fg:x="3314" fg:w="135"/><text x="14.3714%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (135 samples, 0.58%)</title><rect x="14.1214%" y="2693" width="0.5753%" height="15" fill="rgb(246,24,43)" fg:x="3314" fg:w="135"/><text x="14.3714%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (135 samples, 0.58%)</title><rect x="14.1214%" y="2677" width="0.5753%" height="15" fill="rgb(227,169,22)" fg:x="3314" fg:w="135"/><text x="14.3714%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (135 samples, 0.58%)</title><rect x="14.1214%" y="2661" width="0.5753%" height="15" fill="rgb(253,152,4)" fg:x="3314" fg:w="135"/><text x="14.3714%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (109 samples, 0.46%)</title><rect x="14.2321%" y="2645" width="0.4645%" height="15" fill="rgb(219,158,36)" fg:x="3340" fg:w="109"/><text x="14.4821%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (109 samples, 0.46%)</title><rect x="14.2321%" y="2629" width="0.4645%" height="15" fill="rgb(251,128,40)" fg:x="3340" fg:w="109"/><text x="14.4821%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (109 samples, 0.46%)</title><rect x="14.2321%" y="2613" width="0.4645%" height="15" fill="rgb(254,101,39)" fg:x="3340" fg:w="109"/><text x="14.4821%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (27 samples, 0.12%)</title><rect x="14.5816%" y="2597" width="0.1151%" height="15" fill="rgb(221,168,40)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (27 samples, 0.12%)</title><rect x="14.5816%" y="2581" width="0.1151%" height="15" fill="rgb(221,14,27)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2591.50"></text></g><g><title>std::panicking::try (27 samples, 0.12%)</title><rect x="14.5816%" y="2565" width="0.1151%" height="15" fill="rgb(207,36,43)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (27 samples, 0.12%)</title><rect x="14.5816%" y="2549" width="0.1151%" height="15" fill="rgb(240,172,53)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (27 samples, 0.12%)</title><rect x="14.5816%" y="2533" width="0.1151%" height="15" fill="rgb(241,138,43)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (27 samples, 0.12%)</title><rect x="14.5816%" y="2517" width="0.1151%" height="15" fill="rgb(227,78,19)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="14.5816%" y="2501" width="0.1151%" height="15" fill="rgb(215,127,44)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="14.5816%" y="2485" width="0.1151%" height="15" fill="rgb(227,13,10)" fg:x="3422" fg:w="27"/><text x="14.8316%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="14.6583%" y="2469" width="0.0384%" height="15" fill="rgb(249,177,6)" fg:x="3440" fg:w="9"/><text x="14.9083%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="14.6583%" y="2453" width="0.0384%" height="15" fill="rgb(215,154,26)" fg:x="3440" fg:w="9"/><text x="14.9083%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="14.6583%" y="2437" width="0.0384%" height="15" fill="rgb(250,168,20)" fg:x="3440" fg:w="9"/><text x="14.9083%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="14.6710%" y="2421" width="0.0256%" height="15" fill="rgb(222,53,38)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="14.6710%" y="2405" width="0.0256%" height="15" fill="rgb(245,154,5)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2415.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="14.6710%" y="2389" width="0.0256%" height="15" fill="rgb(214,89,50)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="14.6710%" y="2373" width="0.0256%" height="15" fill="rgb(232,73,14)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="14.6710%" y="2357" width="0.0256%" height="15" fill="rgb(230,101,20)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="14.6710%" y="2341" width="0.0256%" height="15" fill="rgb(208,56,28)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="14.6710%" y="2325" width="0.0256%" height="15" fill="rgb(247,205,22)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="14.6710%" y="2309" width="0.0256%" height="15" fill="rgb(252,109,51)" fg:x="3443" fg:w="6"/><text x="14.9210%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="14.7051%" y="2421" width="0.0170%" height="15" fill="rgb(220,40,24)" fg:x="3451" fg:w="4"/><text x="14.9551%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="14.7051%" y="2405" width="0.0170%" height="15" fill="rgb(251,108,7)" fg:x="3451" fg:w="4"/><text x="14.9551%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="14.7051%" y="2389" width="0.0170%" height="15" fill="rgb(238,102,51)" fg:x="3451" fg:w="4"/><text x="14.9551%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.7051%" y="2373" width="0.0170%" height="15" fill="rgb(219,149,34)" fg:x="3451" fg:w="4"/><text x="14.9551%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="14.7051%" y="2357" width="0.0170%" height="15" fill="rgb(239,70,0)" fg:x="3451" fg:w="4"/><text x="14.9551%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.7051%" y="2341" width="0.0170%" height="15" fill="rgb(246,214,23)" fg:x="3451" fg:w="4"/><text x="14.9551%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="14.7051%" y="2325" width="0.0170%" height="15" fill="rgb(239,221,51)" fg:x="3451" fg:w="4"/><text x="14.9551%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="14.7222%" y="2133" width="0.0128%" height="15" fill="rgb(254,62,14)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7222%" y="2117" width="0.0128%" height="15" fill="rgb(253,57,33)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7222%" y="2101" width="0.0128%" height="15" fill="rgb(229,34,6)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.7222%" y="2085" width="0.0128%" height="15" fill="rgb(235,191,23)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.7222%" y="2069" width="0.0128%" height="15" fill="rgb(217,207,27)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.7222%" y="2053" width="0.0128%" height="15" fill="rgb(232,41,44)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.7222%" y="2037" width="0.0128%" height="15" fill="rgb(221,188,19)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.7222%" y="2021" width="0.0128%" height="15" fill="rgb(245,180,45)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.7222%" y="2005" width="0.0128%" height="15" fill="rgb(250,220,42)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.7222%" y="1989" width="0.0128%" height="15" fill="rgb(234,16,34)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.7222%" y="1973" width="0.0128%" height="15" fill="rgb(233,217,23)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7222%" y="1957" width="0.0128%" height="15" fill="rgb(209,22,46)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.7222%" y="1941" width="0.0128%" height="15" fill="rgb(213,101,18)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.7222%" y="1925" width="0.0128%" height="15" fill="rgb(215,179,52)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7222%" y="1909" width="0.0128%" height="15" fill="rgb(223,50,25)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.7222%" y="1893" width="0.0128%" height="15" fill="rgb(224,51,44)" fg:x="3455" fg:w="3"/><text x="14.9722%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="14.7350%" y="2133" width="0.0128%" height="15" fill="rgb(224,13,54)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="14.7350%" y="2117" width="0.0128%" height="15" fill="rgb(219,58,47)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="14.7350%" y="2101" width="0.0128%" height="15" fill="rgb(246,124,34)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="14.7350%" y="2085" width="0.0128%" height="15" fill="rgb(245,109,25)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="14.7350%" y="2069" width="0.0128%" height="15" fill="rgb(235,48,23)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="14.7350%" y="2053" width="0.0128%" height="15" fill="rgb(229,203,36)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.7350%" y="2037" width="0.0128%" height="15" fill="rgb(234,180,9)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.7350%" y="2021" width="0.0128%" height="15" fill="rgb(228,98,45)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2031.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.7350%" y="2005" width="0.0128%" height="15" fill="rgb(240,24,36)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.7350%" y="1989" width="0.0128%" height="15" fill="rgb(227,154,19)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.7350%" y="1973" width="0.0128%" height="15" fill="rgb(231,2,48)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7350%" y="1957" width="0.0128%" height="15" fill="rgb(219,216,0)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7350%" y="1941" width="0.0128%" height="15" fill="rgb(251,88,0)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7350%" y="1925" width="0.0128%" height="15" fill="rgb(242,45,45)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.7350%" y="1909" width="0.0128%" height="15" fill="rgb(218,149,45)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.7350%" y="1893" width="0.0128%" height="15" fill="rgb(247,194,10)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.7350%" y="1877" width="0.0128%" height="15" fill="rgb(234,33,37)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.7350%" y="1861" width="0.0128%" height="15" fill="rgb(218,61,13)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.7350%" y="1845" width="0.0128%" height="15" fill="rgb(210,80,52)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.7350%" y="1829" width="0.0128%" height="15" fill="rgb(218,203,27)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.7350%" y="1813" width="0.0128%" height="15" fill="rgb(209,126,33)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.7350%" y="1797" width="0.0128%" height="15" fill="rgb(234,173,41)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7350%" y="1781" width="0.0128%" height="15" fill="rgb(228,166,9)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.7350%" y="1765" width="0.0128%" height="15" fill="rgb(208,124,43)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.7350%" y="1749" width="0.0128%" height="15" fill="rgb(212,154,38)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7350%" y="1733" width="0.0128%" height="15" fill="rgb(246,179,35)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.7350%" y="1717" width="0.0128%" height="15" fill="rgb(251,3,50)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1727.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="14.7350%" y="1701" width="0.0128%" height="15" fill="rgb(219,96,8)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1711.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="14.7350%" y="1685" width="0.0128%" height="15" fill="rgb(251,216,33)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1695.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="14.7350%" y="1669" width="0.0128%" height="15" fill="rgb(243,145,29)" fg:x="3458" fg:w="3"/><text x="14.9850%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.7477%" y="2005" width="0.0128%" height="15" fill="rgb(210,75,20)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.7477%" y="1989" width="0.0128%" height="15" fill="rgb(235,56,8)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.7477%" y="1973" width="0.0128%" height="15" fill="rgb(226,175,49)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.7477%" y="1957" width="0.0128%" height="15" fill="rgb(242,204,23)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.7477%" y="1941" width="0.0128%" height="15" fill="rgb(225,104,24)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.7477%" y="1925" width="0.0128%" height="15" fill="rgb(253,34,1)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.7477%" y="1909" width="0.0128%" height="15" fill="rgb(233,199,23)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7477%" y="1893" width="0.0128%" height="15" fill="rgb(247,7,51)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.7477%" y="1877" width="0.0128%" height="15" fill="rgb(214,146,12)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.7477%" y="1861" width="0.0128%" height="15" fill="rgb(234,181,43)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7477%" y="1845" width="0.0128%" height="15" fill="rgb(239,148,6)" fg:x="3461" fg:w="3"/><text x="14.9977%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="14.7690%" y="1845" width="0.0128%" height="15" fill="rgb(206,151,17)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="14.7690%" y="1829" width="0.0128%" height="15" fill="rgb(213,215,10)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="14.7690%" y="1813" width="0.0128%" height="15" fill="rgb(215,220,44)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="14.7690%" y="1797" width="0.0128%" height="15" fill="rgb(245,205,37)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="14.7690%" y="1781" width="0.0128%" height="15" fill="rgb(245,130,43)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="14.7690%" y="1765" width="0.0128%" height="15" fill="rgb(231,227,38)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.7690%" y="1749" width="0.0128%" height="15" fill="rgb(233,185,4)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.7690%" y="1733" width="0.0128%" height="15" fill="rgb(224,154,43)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1743.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.7690%" y="1717" width="0.0128%" height="15" fill="rgb(235,156,15)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.7690%" y="1701" width="0.0128%" height="15" fill="rgb(211,55,43)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.7690%" y="1685" width="0.0128%" height="15" fill="rgb(247,149,40)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7690%" y="1669" width="0.0128%" height="15" fill="rgb(232,171,16)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7690%" y="1653" width="0.0128%" height="15" fill="rgb(215,117,49)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7690%" y="1637" width="0.0128%" height="15" fill="rgb(246,194,11)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.7690%" y="1621" width="0.0128%" height="15" fill="rgb(242,101,44)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.7690%" y="1605" width="0.0128%" height="15" fill="rgb(226,174,6)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1615.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.7690%" y="1589" width="0.0128%" height="15" fill="rgb(213,150,20)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.7690%" y="1573" width="0.0128%" height="15" fill="rgb(222,124,42)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1583.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.7690%" y="1557" width="0.0128%" height="15" fill="rgb(250,19,47)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1567.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.7690%" y="1541" width="0.0128%" height="15" fill="rgb(241,217,19)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1551.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.7690%" y="1525" width="0.0128%" height="15" fill="rgb(207,210,34)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.7690%" y="1509" width="0.0128%" height="15" fill="rgb(244,45,4)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7690%" y="1493" width="0.0128%" height="15" fill="rgb(252,134,50)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.7690%" y="1477" width="0.0128%" height="15" fill="rgb(238,74,2)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1487.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.7690%" y="1461" width="0.0128%" height="15" fill="rgb(226,58,46)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7690%" y="1445" width="0.0128%" height="15" fill="rgb(232,83,35)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1455.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.7690%" y="1429" width="0.0128%" height="15" fill="rgb(212,148,47)" fg:x="3466" fg:w="3"/><text x="15.0190%" y="1439.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="14.7605%" y="1957" width="0.0341%" height="15" fill="rgb(235,29,1)" fg:x="3464" fg:w="8"/><text x="15.0105%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="14.7605%" y="1941" width="0.0341%" height="15" fill="rgb(247,55,37)" fg:x="3464" fg:w="8"/><text x="15.0105%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="14.7605%" y="1925" width="0.0341%" height="15" fill="rgb(222,48,3)" fg:x="3464" fg:w="8"/><text x="15.0105%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="14.7605%" y="1909" width="0.0341%" height="15" fill="rgb(234,21,33)" fg:x="3464" fg:w="8"/><text x="15.0105%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="14.7690%" y="1893" width="0.0256%" height="15" fill="rgb(247,178,53)" fg:x="3466" fg:w="6"/><text x="15.0190%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="14.7690%" y="1877" width="0.0256%" height="15" fill="rgb(225,75,7)" fg:x="3466" fg:w="6"/><text x="15.0190%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="14.7690%" y="1861" width="0.0256%" height="15" fill="rgb(219,199,7)" fg:x="3466" fg:w="6"/><text x="15.0190%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.7818%" y="1845" width="0.0128%" height="15" fill="rgb(209,93,42)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.7818%" y="1829" width="0.0128%" height="15" fill="rgb(240,175,17)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1839.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.7818%" y="1813" width="0.0128%" height="15" fill="rgb(232,106,7)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.7818%" y="1797" width="0.0128%" height="15" fill="rgb(242,106,43)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.7818%" y="1781" width="0.0128%" height="15" fill="rgb(242,61,37)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7818%" y="1765" width="0.0128%" height="15" fill="rgb(205,72,10)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7818%" y="1749" width="0.0128%" height="15" fill="rgb(214,184,36)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.7818%" y="1733" width="0.0128%" height="15" fill="rgb(206,107,18)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.7818%" y="1717" width="0.0128%" height="15" fill="rgb(210,75,5)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.7818%" y="1701" width="0.0128%" height="15" fill="rgb(205,3,19)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.7818%" y="1685" width="0.0128%" height="15" fill="rgb(207,181,42)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.7818%" y="1669" width="0.0128%" height="15" fill="rgb(229,179,43)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.7818%" y="1653" width="0.0128%" height="15" fill="rgb(246,95,30)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.7818%" y="1637" width="0.0128%" height="15" fill="rgb(234,144,45)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.7818%" y="1621" width="0.0128%" height="15" fill="rgb(250,54,25)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7818%" y="1605" width="0.0128%" height="15" fill="rgb(215,195,40)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.7818%" y="1589" width="0.0128%" height="15" fill="rgb(233,188,42)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.7818%" y="1573" width="0.0128%" height="15" fill="rgb(247,227,35)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7818%" y="1557" width="0.0128%" height="15" fill="rgb(249,124,27)" fg:x="3469" fg:w="3"/><text x="15.0318%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.7946%" y="1829" width="0.0128%" height="15" fill="rgb(219,207,25)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.7946%" y="1813" width="0.0128%" height="15" fill="rgb(241,216,47)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.7946%" y="1797" width="0.0128%" height="15" fill="rgb(233,82,50)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.7946%" y="1781" width="0.0128%" height="15" fill="rgb(232,63,2)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.7946%" y="1765" width="0.0128%" height="15" fill="rgb(236,184,28)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.7946%" y="1749" width="0.0128%" height="15" fill="rgb(254,63,27)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.7946%" y="1733" width="0.0128%" height="15" fill="rgb(253,106,28)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7946%" y="1717" width="0.0128%" height="15" fill="rgb(225,141,39)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.7946%" y="1701" width="0.0128%" height="15" fill="rgb(222,157,20)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.7946%" y="1685" width="0.0128%" height="15" fill="rgb(210,190,9)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.7946%" y="1669" width="0.0128%" height="15" fill="rgb(242,167,7)" fg:x="3472" fg:w="3"/><text x="15.0446%" y="1679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="14.8074%" y="1781" width="0.0128%" height="15" fill="rgb(227,82,41)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8074%" y="1765" width="0.0128%" height="15" fill="rgb(222,131,13)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8074%" y="1749" width="0.0128%" height="15" fill="rgb(221,98,26)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.8074%" y="1733" width="0.0128%" height="15" fill="rgb(251,63,52)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.8074%" y="1717" width="0.0128%" height="15" fill="rgb(246,25,43)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.8074%" y="1701" width="0.0128%" height="15" fill="rgb(247,167,15)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.8074%" y="1685" width="0.0128%" height="15" fill="rgb(240,104,42)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.8074%" y="1669" width="0.0128%" height="15" fill="rgb(224,54,6)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.8074%" y="1653" width="0.0128%" height="15" fill="rgb(244,108,35)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.8074%" y="1637" width="0.0128%" height="15" fill="rgb(216,154,2)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.8074%" y="1621" width="0.0128%" height="15" fill="rgb(222,8,47)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8074%" y="1605" width="0.0128%" height="15" fill="rgb(252,93,1)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.8074%" y="1589" width="0.0128%" height="15" fill="rgb(223,226,51)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.8074%" y="1573" width="0.0128%" height="15" fill="rgb(206,147,9)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8074%" y="1557" width="0.0128%" height="15" fill="rgb(248,180,41)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.8074%" y="1541" width="0.0128%" height="15" fill="rgb(209,47,50)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1551.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="14.8074%" y="1525" width="0.0128%" height="15" fill="rgb(243,65,31)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1535.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="14.8074%" y="1509" width="0.0128%" height="15" fill="rgb(228,128,1)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1519.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="14.8074%" y="1493" width="0.0128%" height="15" fill="rgb(231,192,16)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1503.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="14.8074%" y="1477" width="0.0128%" height="15" fill="rgb(224,26,40)" fg:x="3475" fg:w="3"/><text x="15.0574%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (25 samples, 0.11%)</title><rect x="14.7222%" y="2421" width="0.1065%" height="15" fill="rgb(214,192,17)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (25 samples, 0.11%)</title><rect x="14.7222%" y="2405" width="0.1065%" height="15" fill="rgb(225,147,18)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (25 samples, 0.11%)</title><rect x="14.7222%" y="2389" width="0.1065%" height="15" fill="rgb(205,35,11)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (25 samples, 0.11%)</title><rect x="14.7222%" y="2373" width="0.1065%" height="15" fill="rgb(242,40,42)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (25 samples, 0.11%)</title><rect x="14.7222%" y="2357" width="0.1065%" height="15" fill="rgb(250,170,13)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (25 samples, 0.11%)</title><rect x="14.7222%" y="2341" width="0.1065%" height="15" fill="rgb(240,161,28)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (25 samples, 0.11%)</title><rect x="14.7222%" y="2325" width="0.1065%" height="15" fill="rgb(245,179,12)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (25 samples, 0.11%)</title><rect x="14.7222%" y="2309" width="0.1065%" height="15" fill="rgb(250,92,32)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2319.50"></text></g><g><title>std::panicking::try (25 samples, 0.11%)</title><rect x="14.7222%" y="2293" width="0.1065%" height="15" fill="rgb(233,10,40)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (25 samples, 0.11%)</title><rect x="14.7222%" y="2277" width="0.1065%" height="15" fill="rgb(217,98,1)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (25 samples, 0.11%)</title><rect x="14.7222%" y="2261" width="0.1065%" height="15" fill="rgb(238,202,7)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (25 samples, 0.11%)</title><rect x="14.7222%" y="2245" width="0.1065%" height="15" fill="rgb(222,91,3)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="14.7222%" y="2229" width="0.1065%" height="15" fill="rgb(211,170,49)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="14.7222%" y="2213" width="0.1065%" height="15" fill="rgb(253,139,18)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="14.7222%" y="2197" width="0.1065%" height="15" fill="rgb(222,4,43)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="14.7222%" y="2181" width="0.1065%" height="15" fill="rgb(207,205,12)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="14.7222%" y="2165" width="0.1065%" height="15" fill="rgb(216,159,46)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="14.7222%" y="2149" width="0.1065%" height="15" fill="rgb(236,115,1)" fg:x="3455" fg:w="25"/><text x="14.9722%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="14.7477%" y="2133" width="0.0810%" height="15" fill="rgb(251,35,33)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="14.7477%" y="2117" width="0.0810%" height="15" fill="rgb(248,62,51)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2127.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="14.7477%" y="2101" width="0.0810%" height="15" fill="rgb(254,180,19)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="14.7477%" y="2085" width="0.0810%" height="15" fill="rgb(217,100,32)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="14.7477%" y="2069" width="0.0810%" height="15" fill="rgb(224,71,22)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="14.7477%" y="2053" width="0.0810%" height="15" fill="rgb(251,185,33)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="14.7477%" y="2037" width="0.0810%" height="15" fill="rgb(209,75,48)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="14.7477%" y="2021" width="0.0810%" height="15" fill="rgb(253,190,16)" fg:x="3461" fg:w="19"/><text x="14.9977%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="14.7605%" y="2005" width="0.0682%" height="15" fill="rgb(226,140,1)" fg:x="3464" fg:w="16"/><text x="15.0105%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="14.7605%" y="1989" width="0.0682%" height="15" fill="rgb(206,75,30)" fg:x="3464" fg:w="16"/><text x="15.0105%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="14.7605%" y="1973" width="0.0682%" height="15" fill="rgb(231,208,37)" fg:x="3464" fg:w="16"/><text x="15.0105%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="14.7946%" y="1957" width="0.0341%" height="15" fill="rgb(238,136,40)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="14.7946%" y="1941" width="0.0341%" height="15" fill="rgb(247,137,17)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1951.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="14.7946%" y="1925" width="0.0341%" height="15" fill="rgb(240,60,40)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="14.7946%" y="1909" width="0.0341%" height="15" fill="rgb(236,68,50)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="14.7946%" y="1893" width="0.0341%" height="15" fill="rgb(230,42,12)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="14.7946%" y="1877" width="0.0341%" height="15" fill="rgb(219,16,16)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="14.7946%" y="1861" width="0.0341%" height="15" fill="rgb(220,38,35)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="14.7946%" y="1845" width="0.0341%" height="15" fill="rgb(228,33,1)" fg:x="3472" fg:w="8"/><text x="15.0446%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="14.8074%" y="1829" width="0.0213%" height="15" fill="rgb(241,46,31)" fg:x="3475" fg:w="5"/><text x="15.0574%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="14.8074%" y="1813" width="0.0213%" height="15" fill="rgb(232,58,20)" fg:x="3475" fg:w="5"/><text x="15.0574%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="14.8074%" y="1797" width="0.0213%" height="15" fill="rgb(206,228,53)" fg:x="3475" fg:w="5"/><text x="15.0574%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.8287%" y="2293" width="0.0128%" height="15" fill="rgb(206,88,33)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.8287%" y="2277" width="0.0128%" height="15" fill="rgb(238,69,7)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2287.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.8287%" y="2261" width="0.0128%" height="15" fill="rgb(250,21,46)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.8287%" y="2245" width="0.0128%" height="15" fill="rgb(215,212,21)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2255.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="14.8287%" y="2229" width="0.0128%" height="15" fill="rgb(211,35,12)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2239.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8287%" y="2213" width="0.0128%" height="15" fill="rgb(231,184,16)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2223.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8287%" y="2197" width="0.0128%" height="15" fill="rgb(242,140,15)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2207.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="14.8287%" y="2181" width="0.0128%" height="15" fill="rgb(220,37,14)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2191.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8287%" y="2165" width="0.0128%" height="15" fill="rgb(223,146,22)" fg:x="3480" fg:w="3"/><text x="15.0787%" y="2175.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="14.8415%" y="2133" width="0.0128%" height="15" fill="rgb(216,132,15)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8415%" y="2117" width="0.0128%" height="15" fill="rgb(248,83,5)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8415%" y="2101" width="0.0128%" height="15" fill="rgb(231,206,48)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.8415%" y="2085" width="0.0128%" height="15" fill="rgb(253,185,37)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.8415%" y="2069" width="0.0128%" height="15" fill="rgb(208,21,44)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.8415%" y="2053" width="0.0128%" height="15" fill="rgb(236,125,4)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.8415%" y="2037" width="0.0128%" height="15" fill="rgb(226,134,25)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.8415%" y="2021" width="0.0128%" height="15" fill="rgb(250,201,12)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.8415%" y="2005" width="0.0128%" height="15" fill="rgb(225,92,18)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.8415%" y="1989" width="0.0128%" height="15" fill="rgb(227,35,22)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.8415%" y="1973" width="0.0128%" height="15" fill="rgb(214,180,52)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8415%" y="1957" width="0.0128%" height="15" fill="rgb(233,55,38)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.8415%" y="1941" width="0.0128%" height="15" fill="rgb(249,171,43)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.8415%" y="1925" width="0.0128%" height="15" fill="rgb(239,87,2)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8415%" y="1909" width="0.0128%" height="15" fill="rgb(248,141,5)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.8415%" y="1893" width="0.0128%" height="15" fill="rgb(238,33,42)" fg:x="3483" fg:w="3"/><text x="15.0915%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="14.8415%" y="2245" width="0.0341%" height="15" fill="rgb(231,57,19)" fg:x="3483" fg:w="8"/><text x="15.0915%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="14.8415%" y="2229" width="0.0341%" height="15" fill="rgb(214,78,53)" fg:x="3483" fg:w="8"/><text x="15.0915%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="14.8415%" y="2213" width="0.0341%" height="15" fill="rgb(206,132,29)" fg:x="3483" fg:w="8"/><text x="15.0915%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="14.8415%" y="2197" width="0.0341%" height="15" fill="rgb(248,174,31)" fg:x="3483" fg:w="8"/><text x="15.0915%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="14.8415%" y="2181" width="0.0341%" height="15" fill="rgb(221,87,13)" fg:x="3483" fg:w="8"/><text x="15.0915%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="14.8415%" y="2165" width="0.0341%" height="15" fill="rgb(223,197,17)" fg:x="3483" fg:w="8"/><text x="15.0915%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="14.8415%" y="2149" width="0.0341%" height="15" fill="rgb(220,144,50)" fg:x="3483" fg:w="8"/><text x="15.0915%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="14.8628%" y="2133" width="0.0128%" height="15" fill="rgb(244,201,11)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="14.8628%" y="2117" width="0.0128%" height="15" fill="rgb(249,81,34)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2127.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="14.8628%" y="2101" width="0.0128%" height="15" fill="rgb(205,161,12)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="14.8628%" y="2085" width="0.0128%" height="15" fill="rgb(252,139,50)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="14.8628%" y="2069" width="0.0128%" height="15" fill="rgb(205,169,14)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8628%" y="2053" width="0.0128%" height="15" fill="rgb(248,198,33)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8628%" y="2037" width="0.0128%" height="15" fill="rgb(236,23,21)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="14.8628%" y="2021" width="0.0128%" height="15" fill="rgb(231,13,38)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.8628%" y="2005" width="0.0128%" height="15" fill="rgb(239,139,21)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="14.8628%" y="1989" width="0.0128%" height="15" fill="rgb(222,164,45)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="14.8628%" y="1973" width="0.0128%" height="15" fill="rgb(230,52,27)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="14.8628%" y="1957" width="0.0128%" height="15" fill="rgb(227,143,42)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="14.8628%" y="1941" width="0.0128%" height="15" fill="rgb(249,127,1)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="14.8628%" y="1925" width="0.0128%" height="15" fill="rgb(243,107,26)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="14.8628%" y="1909" width="0.0128%" height="15" fill="rgb(225,7,45)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8628%" y="1893" width="0.0128%" height="15" fill="rgb(241,88,38)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="14.8628%" y="1877" width="0.0128%" height="15" fill="rgb(226,121,9)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="14.8628%" y="1861" width="0.0128%" height="15" fill="rgb(253,60,29)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="14.8628%" y="1845" width="0.0128%" height="15" fill="rgb(244,181,39)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="14.8628%" y="1829" width="0.0128%" height="15" fill="rgb(252,203,31)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1839.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="14.8628%" y="1813" width="0.0128%" height="15" fill="rgb(224,120,8)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="14.8628%" y="1797" width="0.0128%" height="15" fill="rgb(205,171,54)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1807.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="14.8628%" y="1781" width="0.0128%" height="15" fill="rgb(235,89,11)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1791.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="14.8628%" y="1765" width="0.0128%" height="15" fill="rgb(212,180,28)" fg:x="3488" fg:w="3"/><text x="15.1128%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="14.8756%" y="2069" width="0.0213%" height="15" fill="rgb(247,84,49)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="14.8756%" y="2053" width="0.0213%" height="15" fill="rgb(236,187,52)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="14.8756%" y="2037" width="0.0213%" height="15" fill="rgb(227,24,15)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="14.8756%" y="2021" width="0.0213%" height="15" fill="rgb(227,211,13)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="14.8756%" y="2005" width="0.0213%" height="15" fill="rgb(245,52,14)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="14.8756%" y="1989" width="0.0213%" height="15" fill="rgb(225,185,13)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="14.8756%" y="1973" width="0.0213%" height="15" fill="rgb(217,160,29)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="14.8756%" y="1957" width="0.0213%" height="15" fill="rgb(216,115,53)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="14.8756%" y="1941" width="0.0213%" height="15" fill="rgb(236,99,5)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="14.8756%" y="1925" width="0.0213%" height="15" fill="rgb(222,60,38)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="14.8756%" y="1909" width="0.0213%" height="15" fill="rgb(212,82,22)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="14.8756%" y="1893" width="0.0213%" height="15" fill="rgb(214,48,28)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="14.8756%" y="1877" width="0.0213%" height="15" fill="rgb(245,196,50)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="14.8756%" y="1861" width="0.0213%" height="15" fill="rgb(225,159,46)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="14.8756%" y="1845" width="0.0213%" height="15" fill="rgb(207,195,48)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="14.8756%" y="1829" width="0.0213%" height="15" fill="rgb(240,73,3)" fg:x="3491" fg:w="5"/><text x="15.1256%" y="1839.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="14.8841%" y="1813" width="0.0128%" height="15" fill="rgb(245,57,23)" fg:x="3493" fg:w="3"/><text x="15.1341%" y="1823.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="14.8841%" y="1797" width="0.0128%" height="15" fill="rgb(240,75,18)" fg:x="3493" fg:w="3"/><text x="15.1341%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (51 samples, 0.22%)</title><rect x="14.6966%" y="2709" width="0.2173%" height="15" fill="rgb(238,168,12)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (51 samples, 0.22%)</title><rect x="14.6966%" y="2693" width="0.2173%" height="15" fill="rgb(226,20,40)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (51 samples, 0.22%)</title><rect x="14.6966%" y="2677" width="0.2173%" height="15" fill="rgb(224,130,35)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (51 samples, 0.22%)</title><rect x="14.6966%" y="2661" width="0.2173%" height="15" fill="rgb(225,63,41)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (51 samples, 0.22%)</title><rect x="14.6966%" y="2645" width="0.2173%" height="15" fill="rgb(219,3,3)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (51 samples, 0.22%)</title><rect x="14.6966%" y="2629" width="0.2173%" height="15" fill="rgb(218,157,4)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (51 samples, 0.22%)</title><rect x="14.6966%" y="2613" width="0.2173%" height="15" fill="rgb(232,76,36)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (51 samples, 0.22%)</title><rect x="14.6966%" y="2597" width="0.2173%" height="15" fill="rgb(247,36,0)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2607.50"></text></g><g><title>std::panicking::try (51 samples, 0.22%)</title><rect x="14.6966%" y="2581" width="0.2173%" height="15" fill="rgb(205,2,34)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (51 samples, 0.22%)</title><rect x="14.6966%" y="2565" width="0.2173%" height="15" fill="rgb(239,136,13)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (51 samples, 0.22%)</title><rect x="14.6966%" y="2549" width="0.2173%" height="15" fill="rgb(253,122,12)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (51 samples, 0.22%)</title><rect x="14.6966%" y="2533" width="0.2173%" height="15" fill="rgb(222,174,7)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (51 samples, 0.22%)</title><rect x="14.6966%" y="2517" width="0.2173%" height="15" fill="rgb(208,191,42)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (51 samples, 0.22%)</title><rect x="14.6966%" y="2501" width="0.2173%" height="15" fill="rgb(237,212,15)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.22%)</title><rect x="14.6966%" y="2485" width="0.2173%" height="15" fill="rgb(215,65,20)" fg:x="3449" fg:w="51"/><text x="14.9466%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (49 samples, 0.21%)</title><rect x="14.7051%" y="2469" width="0.2088%" height="15" fill="rgb(232,103,11)" fg:x="3451" fg:w="49"/><text x="14.9551%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.21%)</title><rect x="14.7051%" y="2453" width="0.2088%" height="15" fill="rgb(235,148,18)" fg:x="3451" fg:w="49"/><text x="14.9551%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (49 samples, 0.21%)</title><rect x="14.7051%" y="2437" width="0.2088%" height="15" fill="rgb(240,173,7)" fg:x="3451" fg:w="49"/><text x="14.9551%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="14.8287%" y="2421" width="0.0852%" height="15" fill="rgb(228,182,25)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="14.8287%" y="2405" width="0.0852%" height="15" fill="rgb(247,3,52)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2415.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="14.8287%" y="2389" width="0.0852%" height="15" fill="rgb(226,155,8)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="14.8287%" y="2373" width="0.0852%" height="15" fill="rgb(243,195,38)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="14.8287%" y="2357" width="0.0852%" height="15" fill="rgb(254,181,33)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="14.8287%" y="2341" width="0.0852%" height="15" fill="rgb(232,98,23)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="14.8287%" y="2325" width="0.0852%" height="15" fill="rgb(205,23,10)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="14.8287%" y="2309" width="0.0852%" height="15" fill="rgb(212,124,38)" fg:x="3480" fg:w="20"/><text x="15.0787%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="14.8415%" y="2293" width="0.0724%" height="15" fill="rgb(228,207,2)" fg:x="3483" fg:w="17"/><text x="15.0915%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="14.8415%" y="2277" width="0.0724%" height="15" fill="rgb(215,120,22)" fg:x="3483" fg:w="17"/><text x="15.0915%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="14.8415%" y="2261" width="0.0724%" height="15" fill="rgb(251,172,33)" fg:x="3483" fg:w="17"/><text x="15.0915%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="14.8756%" y="2245" width="0.0384%" height="15" fill="rgb(250,83,2)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="14.8756%" y="2229" width="0.0384%" height="15" fill="rgb(210,132,53)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2239.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="14.8756%" y="2213" width="0.0384%" height="15" fill="rgb(221,208,36)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="14.8756%" y="2197" width="0.0384%" height="15" fill="rgb(205,192,46)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="14.8756%" y="2181" width="0.0384%" height="15" fill="rgb(223,163,14)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="14.8756%" y="2165" width="0.0384%" height="15" fill="rgb(218,41,28)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="14.8756%" y="2149" width="0.0384%" height="15" fill="rgb(235,104,10)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="14.8756%" y="2133" width="0.0384%" height="15" fill="rgb(246,17,4)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="14.8756%" y="2117" width="0.0384%" height="15" fill="rgb(240,7,16)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="14.8756%" y="2101" width="0.0384%" height="15" fill="rgb(213,160,23)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="14.8756%" y="2085" width="0.0384%" height="15" fill="rgb(251,179,49)" fg:x="3491" fg:w="9"/><text x="15.1256%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="14.8969%" y="2069" width="0.0170%" height="15" fill="rgb(247,198,10)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="14.8969%" y="2053" width="0.0170%" height="15" fill="rgb(220,65,29)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="14.8969%" y="2037" width="0.0170%" height="15" fill="rgb(237,171,28)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="14.8969%" y="2021" width="0.0170%" height="15" fill="rgb(228,44,26)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="14.8969%" y="2005" width="0.0170%" height="15" fill="rgb(216,210,27)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="14.8969%" y="1989" width="0.0170%" height="15" fill="rgb(252,10,17)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="14.8969%" y="1973" width="0.0170%" height="15" fill="rgb(214,172,30)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.8969%" y="1957" width="0.0170%" height="15" fill="rgb(253,130,48)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="14.8969%" y="1941" width="0.0170%" height="15" fill="rgb(226,99,43)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="14.8969%" y="1925" width="0.0170%" height="15" fill="rgb(239,111,26)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="14.8969%" y="1909" width="0.0170%" height="15" fill="rgb(240,27,53)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="14.8969%" y="1893" width="0.0170%" height="15" fill="rgb(254,163,12)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="14.8969%" y="1877" width="0.0170%" height="15" fill="rgb(225,51,48)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="14.8969%" y="1861" width="0.0170%" height="15" fill="rgb(205,19,32)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="14.8969%" y="1845" width="0.0170%" height="15" fill="rgb(218,119,26)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="14.8969%" y="1829" width="0.0170%" height="15" fill="rgb(231,173,33)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="14.8969%" y="1813" width="0.0170%" height="15" fill="rgb(241,100,29)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="14.8969%" y="1797" width="0.0170%" height="15" fill="rgb(250,194,34)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="14.8969%" y="1781" width="0.0170%" height="15" fill="rgb(215,23,50)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="14.8969%" y="1765" width="0.0170%" height="15" fill="rgb(206,49,37)" fg:x="3496" fg:w="4"/><text x="15.1469%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="14.9011%" y="1749" width="0.0128%" height="15" fill="rgb(247,39,21)" fg:x="3497" fg:w="3"/><text x="15.1511%" y="1759.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="14.9011%" y="1733" width="0.0128%" height="15" fill="rgb(209,220,15)" fg:x="3497" fg:w="3"/><text x="15.1511%" y="1743.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (10 samples, 0.04%)</title><rect x="14.9139%" y="2389" width="0.0426%" height="15" fill="rgb(206,41,33)" fg:x="3500" fg:w="10"/><text x="15.1639%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (10 samples, 0.04%)</title><rect x="14.9139%" y="2373" width="0.0426%" height="15" fill="rgb(221,225,45)" fg:x="3500" fg:w="10"/><text x="15.1639%" y="2383.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="14.9182%" y="2357" width="0.0384%" height="15" fill="rgb(216,27,18)" fg:x="3501" fg:w="9"/><text x="15.1682%" y="2367.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="14.9352%" y="2341" width="0.0213%" height="15" fill="rgb(250,193,34)" fg:x="3505" fg:w="5"/><text x="15.1852%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="14.9565%" y="2389" width="0.0213%" height="15" fill="rgb(227,215,20)" fg:x="3510" fg:w="5"/><text x="15.2065%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="14.9565%" y="2373" width="0.0213%" height="15" fill="rgb(242,211,27)" fg:x="3510" fg:w="5"/><text x="15.2065%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (23 samples, 0.10%)</title><rect x="14.9139%" y="2565" width="0.0980%" height="15" fill="rgb(229,190,30)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (23 samples, 0.10%)</title><rect x="14.9139%" y="2549" width="0.0980%" height="15" fill="rgb(253,31,29)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (23 samples, 0.10%)</title><rect x="14.9139%" y="2533" width="0.0980%" height="15" fill="rgb(229,177,52)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (23 samples, 0.10%)</title><rect x="14.9139%" y="2517" width="0.0980%" height="15" fill="rgb(226,88,8)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (23 samples, 0.10%)</title><rect x="14.9139%" y="2501" width="0.0980%" height="15" fill="rgb(214,55,27)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (23 samples, 0.10%)</title><rect x="14.9139%" y="2485" width="0.0980%" height="15" fill="rgb(233,202,5)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (23 samples, 0.10%)</title><rect x="14.9139%" y="2469" width="0.0980%" height="15" fill="rgb(251,49,30)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (23 samples, 0.10%)</title><rect x="14.9139%" y="2453" width="0.0980%" height="15" fill="rgb(235,18,52)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (23 samples, 0.10%)</title><rect x="14.9139%" y="2437" width="0.0980%" height="15" fill="rgb(250,111,51)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (23 samples, 0.10%)</title><rect x="14.9139%" y="2421" width="0.0980%" height="15" fill="rgb(218,13,25)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (23 samples, 0.10%)</title><rect x="14.9139%" y="2405" width="0.0980%" height="15" fill="rgb(248,96,7)" fg:x="3500" fg:w="23"/><text x="15.1639%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (8 samples, 0.03%)</title><rect x="14.9778%" y="2389" width="0.0341%" height="15" fill="rgb(217,31,15)" fg:x="3515" fg:w="8"/><text x="15.2278%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (8 samples, 0.03%)</title><rect x="14.9778%" y="2373" width="0.0341%" height="15" fill="rgb(228,59,49)" fg:x="3515" fg:w="8"/><text x="15.2278%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (25 samples, 0.11%)</title><rect x="14.9139%" y="2581" width="0.1065%" height="15" fill="rgb(210,152,38)" fg:x="3500" fg:w="25"/><text x="15.1639%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="15.0247%" y="2277" width="0.0213%" height="15" fill="rgb(206,71,11)" fg:x="3526" fg:w="5"/><text x="15.2747%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="15.0247%" y="2261" width="0.0213%" height="15" fill="rgb(244,199,5)" fg:x="3526" fg:w="5"/><text x="15.2747%" y="2271.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="15.0247%" y="2245" width="0.0213%" height="15" fill="rgb(253,49,1)" fg:x="3526" fg:w="5"/><text x="15.2747%" y="2255.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="15.0247%" y="2229" width="0.0213%" height="15" fill="rgb(225,206,40)" fg:x="3526" fg:w="5"/><text x="15.2747%" y="2239.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (13 samples, 0.06%)</title><rect x="15.0247%" y="2293" width="0.0554%" height="15" fill="rgb(243,116,47)" fg:x="3526" fg:w="13"/><text x="15.2747%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="15.0588%" y="2277" width="0.0213%" height="15" fill="rgb(219,225,16)" fg:x="3534" fg:w="5"/><text x="15.3088%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="15.0588%" y="2261" width="0.0213%" height="15" fill="rgb(233,29,47)" fg:x="3534" fg:w="5"/><text x="15.3088%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="15.0205%" y="2469" width="0.0639%" height="15" fill="rgb(250,179,18)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="15.0205%" y="2453" width="0.0639%" height="15" fill="rgb(215,176,6)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (15 samples, 0.06%)</title><rect x="15.0205%" y="2437" width="0.0639%" height="15" fill="rgb(214,117,39)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (15 samples, 0.06%)</title><rect x="15.0205%" y="2421" width="0.0639%" height="15" fill="rgb(247,183,36)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (15 samples, 0.06%)</title><rect x="15.0205%" y="2405" width="0.0639%" height="15" fill="rgb(237,200,3)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (15 samples, 0.06%)</title><rect x="15.0205%" y="2389" width="0.0639%" height="15" fill="rgb(212,220,24)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (15 samples, 0.06%)</title><rect x="15.0205%" y="2373" width="0.0639%" height="15" fill="rgb(245,216,20)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (15 samples, 0.06%)</title><rect x="15.0205%" y="2357" width="0.0639%" height="15" fill="rgb(219,124,7)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (15 samples, 0.06%)</title><rect x="15.0205%" y="2341" width="0.0639%" height="15" fill="rgb(227,167,8)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (15 samples, 0.06%)</title><rect x="15.0205%" y="2325" width="0.0639%" height="15" fill="rgb(241,37,2)" fg:x="3525" fg:w="15"/><text x="15.2705%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (14 samples, 0.06%)</title><rect x="15.0247%" y="2309" width="0.0597%" height="15" fill="rgb(238,134,33)" fg:x="3526" fg:w="14"/><text x="15.2747%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="15.0844%" y="2357" width="0.0128%" height="15" fill="rgb(248,48,27)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="15.0844%" y="2341" width="0.0128%" height="15" fill="rgb(212,14,16)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="15.0844%" y="2325" width="0.0128%" height="15" fill="rgb(217,205,37)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="15.0844%" y="2309" width="0.0128%" height="15" fill="rgb(233,185,47)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="15.0844%" y="2293" width="0.0128%" height="15" fill="rgb(244,88,8)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="15.0844%" y="2277" width="0.0128%" height="15" fill="rgb(213,0,20)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="15.0844%" y="2261" width="0.0128%" height="15" fill="rgb(238,159,36)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="15.0844%" y="2245" width="0.0128%" height="15" fill="rgb(253,173,17)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="15.0844%" y="2229" width="0.0128%" height="15" fill="rgb(221,23,28)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="15.0844%" y="2213" width="0.0128%" height="15" fill="rgb(218,113,15)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="15.0844%" y="2197" width="0.0128%" height="15" fill="rgb(233,58,3)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="15.0844%" y="2181" width="0.0128%" height="15" fill="rgb(250,46,35)" fg:x="3540" fg:w="3"/><text x="15.3344%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="15.0844%" y="2421" width="0.0170%" height="15" fill="rgb(210,169,11)" fg:x="3540" fg:w="4"/><text x="15.3344%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="15.0844%" y="2405" width="0.0170%" height="15" fill="rgb(246,88,19)" fg:x="3540" fg:w="4"/><text x="15.3344%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.0844%" y="2389" width="0.0170%" height="15" fill="rgb(206,81,49)" fg:x="3540" fg:w="4"/><text x="15.3344%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.0844%" y="2373" width="0.0170%" height="15" fill="rgb(232,144,18)" fg:x="3540" fg:w="4"/><text x="15.3344%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="15.1014%" y="2421" width="0.0256%" height="15" fill="rgb(235,2,27)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="15.1014%" y="2405" width="0.0256%" height="15" fill="rgb(239,157,39)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="15.1014%" y="2389" width="0.0256%" height="15" fill="rgb(220,11,17)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="15.1014%" y="2373" width="0.0256%" height="15" fill="rgb(243,94,50)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="15.1014%" y="2357" width="0.0256%" height="15" fill="rgb(218,22,0)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="15.1014%" y="2341" width="0.0256%" height="15" fill="rgb(249,70,21)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="15.1014%" y="2325" width="0.0256%" height="15" fill="rgb(245,111,46)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="15.1014%" y="2309" width="0.0256%" height="15" fill="rgb(244,183,12)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2319.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="15.1014%" y="2293" width="0.0256%" height="15" fill="rgb(207,117,0)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="15.1014%" y="2277" width="0.0256%" height="15" fill="rgb(206,20,43)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="15.1014%" y="2261" width="0.0256%" height="15" fill="rgb(221,104,11)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="15.1014%" y="2245" width="0.0256%" height="15" fill="rgb(254,36,50)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="15.1014%" y="2229" width="0.0256%" height="15" fill="rgb(252,17,15)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="15.1014%" y="2213" width="0.0256%" height="15" fill="rgb(219,129,43)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="15.1014%" y="2197" width="0.0256%" height="15" fill="rgb(205,34,45)" fg:x="3544" fg:w="6"/><text x="15.3514%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.1099%" y="2181" width="0.0170%" height="15" fill="rgb(251,201,32)" fg:x="3546" fg:w="4"/><text x="15.3599%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.1099%" y="2165" width="0.0170%" height="15" fill="rgb(205,56,0)" fg:x="3546" fg:w="4"/><text x="15.3599%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.1099%" y="2149" width="0.0170%" height="15" fill="rgb(211,193,27)" fg:x="3546" fg:w="4"/><text x="15.3599%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="15.1270%" y="2293" width="0.0128%" height="15" fill="rgb(231,100,42)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="15.1270%" y="2277" width="0.0128%" height="15" fill="rgb(245,85,27)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="15.1270%" y="2261" width="0.0128%" height="15" fill="rgb(241,76,24)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="15.1270%" y="2245" width="0.0128%" height="15" fill="rgb(249,157,15)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="15.1270%" y="2229" width="0.0128%" height="15" fill="rgb(222,218,25)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="15.1270%" y="2213" width="0.0128%" height="15" fill="rgb(252,156,52)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="15.1270%" y="2197" width="0.0128%" height="15" fill="rgb(211,185,7)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="15.1270%" y="2181" width="0.0128%" height="15" fill="rgb(234,108,24)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="15.1270%" y="2165" width="0.0128%" height="15" fill="rgb(227,218,2)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="15.1270%" y="2149" width="0.0128%" height="15" fill="rgb(224,0,36)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="15.1270%" y="2133" width="0.0128%" height="15" fill="rgb(233,201,10)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="15.1270%" y="2117" width="0.0128%" height="15" fill="rgb(252,209,14)" fg:x="3550" fg:w="3"/><text x="15.3770%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (31 samples, 0.13%)</title><rect x="15.0205%" y="2533" width="0.1321%" height="15" fill="rgb(205,93,49)" fg:x="3525" fg:w="31"/><text x="15.2705%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (31 samples, 0.13%)</title><rect x="15.0205%" y="2517" width="0.1321%" height="15" fill="rgb(234,116,45)" fg:x="3525" fg:w="31"/><text x="15.2705%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (31 samples, 0.13%)</title><rect x="15.0205%" y="2501" width="0.1321%" height="15" fill="rgb(248,89,35)" fg:x="3525" fg:w="31"/><text x="15.2705%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.13%)</title><rect x="15.0205%" y="2485" width="0.1321%" height="15" fill="rgb(233,167,45)" fg:x="3525" fg:w="31"/><text x="15.2705%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="15.0844%" y="2469" width="0.0682%" height="15" fill="rgb(248,228,14)" fg:x="3540" fg:w="16"/><text x="15.3344%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="15.0844%" y="2453" width="0.0682%" height="15" fill="rgb(246,91,14)" fg:x="3540" fg:w="16"/><text x="15.3344%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="15.0844%" y="2437" width="0.0682%" height="15" fill="rgb(227,142,5)" fg:x="3540" fg:w="16"/><text x="15.3344%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="15.1270%" y="2421" width="0.0256%" height="15" fill="rgb(221,63,33)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="15.1270%" y="2405" width="0.0256%" height="15" fill="rgb(233,49,0)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2415.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="15.1270%" y="2389" width="0.0256%" height="15" fill="rgb(251,115,38)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="15.1270%" y="2373" width="0.0256%" height="15" fill="rgb(231,214,32)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="15.1270%" y="2357" width="0.0256%" height="15" fill="rgb(248,73,46)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="15.1270%" y="2341" width="0.0256%" height="15" fill="rgb(237,156,4)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="15.1270%" y="2325" width="0.0256%" height="15" fill="rgb(227,132,2)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="15.1270%" y="2309" width="0.0256%" height="15" fill="rgb(248,161,9)" fg:x="3550" fg:w="6"/><text x="15.3770%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="15.1398%" y="2293" width="0.0128%" height="15" fill="rgb(238,77,38)" fg:x="3553" fg:w="3"/><text x="15.3898%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="15.1398%" y="2277" width="0.0128%" height="15" fill="rgb(222,166,40)" fg:x="3553" fg:w="3"/><text x="15.3898%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="15.1398%" y="2261" width="0.0128%" height="15" fill="rgb(214,168,45)" fg:x="3553" fg:w="3"/><text x="15.3898%" y="2271.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="15.1568%" y="2213" width="0.0256%" height="15" fill="rgb(226,64,37)" fg:x="3557" fg:w="6"/><text x="15.4068%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="15.1568%" y="2197" width="0.0256%" height="15" fill="rgb(232,210,43)" fg:x="3557" fg:w="6"/><text x="15.4068%" y="2207.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="15.1568%" y="2181" width="0.0256%" height="15" fill="rgb(214,76,33)" fg:x="3557" fg:w="6"/><text x="15.4068%" y="2191.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="15.1653%" y="2165" width="0.0170%" height="15" fill="rgb(210,78,5)" fg:x="3559" fg:w="4"/><text x="15.4153%" y="2175.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (12 samples, 0.05%)</title><rect x="15.1525%" y="2229" width="0.0511%" height="15" fill="rgb(211,107,37)" fg:x="3556" fg:w="12"/><text x="15.4025%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="15.1824%" y="2213" width="0.0213%" height="15" fill="rgb(249,67,16)" fg:x="3563" fg:w="5"/><text x="15.4324%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="15.1824%" y="2197" width="0.0213%" height="15" fill="rgb(222,114,31)" fg:x="3563" fg:w="5"/><text x="15.4324%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.06%)</title><rect x="15.1525%" y="2405" width="0.0554%" height="15" fill="rgb(242,118,19)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="15.1525%" y="2389" width="0.0554%" height="15" fill="rgb(223,115,1)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (13 samples, 0.06%)</title><rect x="15.1525%" y="2373" width="0.0554%" height="15" fill="rgb(241,182,54)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (13 samples, 0.06%)</title><rect x="15.1525%" y="2357" width="0.0554%" height="15" fill="rgb(244,166,36)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (13 samples, 0.06%)</title><rect x="15.1525%" y="2341" width="0.0554%" height="15" fill="rgb(241,52,43)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (13 samples, 0.06%)</title><rect x="15.1525%" y="2325" width="0.0554%" height="15" fill="rgb(236,82,9)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (13 samples, 0.06%)</title><rect x="15.1525%" y="2309" width="0.0554%" height="15" fill="rgb(241,119,0)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (13 samples, 0.06%)</title><rect x="15.1525%" y="2293" width="0.0554%" height="15" fill="rgb(221,19,22)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (13 samples, 0.06%)</title><rect x="15.1525%" y="2277" width="0.0554%" height="15" fill="rgb(254,144,35)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="15.1525%" y="2261" width="0.0554%" height="15" fill="rgb(246,132,30)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (13 samples, 0.06%)</title><rect x="15.1525%" y="2245" width="0.0554%" height="15" fill="rgb(234,69,28)" fg:x="3556" fg:w="13"/><text x="15.4025%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="15.2079%" y="2293" width="0.0128%" height="15" fill="rgb(219,106,47)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="15.2079%" y="2277" width="0.0128%" height="15" fill="rgb(218,79,24)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="15.2079%" y="2261" width="0.0128%" height="15" fill="rgb(225,26,21)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="15.2079%" y="2245" width="0.0128%" height="15" fill="rgb(217,68,49)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="15.2079%" y="2229" width="0.0128%" height="15" fill="rgb(220,204,28)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="15.2079%" y="2213" width="0.0128%" height="15" fill="rgb(237,208,43)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="15.2079%" y="2197" width="0.0128%" height="15" fill="rgb(213,97,42)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="15.2079%" y="2181" width="0.0128%" height="15" fill="rgb(238,96,52)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="15.2079%" y="2165" width="0.0128%" height="15" fill="rgb(228,14,13)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="15.2079%" y="2149" width="0.0128%" height="15" fill="rgb(219,123,13)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="15.2079%" y="2133" width="0.0128%" height="15" fill="rgb(216,144,17)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="15.2079%" y="2117" width="0.0128%" height="15" fill="rgb(230,228,29)" fg:x="3569" fg:w="3"/><text x="15.4579%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="15.2079%" y="2357" width="0.0298%" height="15" fill="rgb(233,18,5)" fg:x="3569" fg:w="7"/><text x="15.4579%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="15.2079%" y="2341" width="0.0298%" height="15" fill="rgb(233,197,12)" fg:x="3569" fg:w="7"/><text x="15.4579%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="15.2079%" y="2325" width="0.0298%" height="15" fill="rgb(234,140,29)" fg:x="3569" fg:w="7"/><text x="15.4579%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="15.2079%" y="2309" width="0.0298%" height="15" fill="rgb(233,113,19)" fg:x="3569" fg:w="7"/><text x="15.4579%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.2207%" y="2293" width="0.0170%" height="15" fill="rgb(246,209,13)" fg:x="3572" fg:w="4"/><text x="15.4707%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.2207%" y="2277" width="0.0170%" height="15" fill="rgb(242,79,54)" fg:x="3572" fg:w="4"/><text x="15.4707%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.2207%" y="2261" width="0.0170%" height="15" fill="rgb(219,73,16)" fg:x="3572" fg:w="4"/><text x="15.4707%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="15.2378%" y="2229" width="0.0170%" height="15" fill="rgb(224,52,10)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="15.2378%" y="2213" width="0.0170%" height="15" fill="rgb(237,179,5)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="15.2378%" y="2197" width="0.0170%" height="15" fill="rgb(231,20,6)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="15.2378%" y="2181" width="0.0170%" height="15" fill="rgb(253,171,45)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="15.2378%" y="2165" width="0.0170%" height="15" fill="rgb(230,75,49)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="15.2378%" y="2149" width="0.0170%" height="15" fill="rgb(216,83,46)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="15.2378%" y="2133" width="0.0170%" height="15" fill="rgb(236,56,9)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="15.2378%" y="2117" width="0.0170%" height="15" fill="rgb(215,28,34)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="15.2378%" y="2101" width="0.0170%" height="15" fill="rgb(230,222,20)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="15.2378%" y="2085" width="0.0170%" height="15" fill="rgb(235,209,51)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="15.2378%" y="2069" width="0.0170%" height="15" fill="rgb(235,167,1)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="15.2378%" y="2053" width="0.0170%" height="15" fill="rgb(248,220,0)" fg:x="3576" fg:w="4"/><text x="15.4878%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="15.2548%" y="2181" width="0.0128%" height="15" fill="rgb(239,0,18)" fg:x="3580" fg:w="3"/><text x="15.5048%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="15.2548%" y="2165" width="0.0128%" height="15" fill="rgb(229,179,11)" fg:x="3580" fg:w="3"/><text x="15.5048%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="15.2548%" y="2149" width="0.0128%" height="15" fill="rgb(226,116,53)" fg:x="3580" fg:w="3"/><text x="15.5048%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="15.2548%" y="2133" width="0.0128%" height="15" fill="rgb(218,1,49)" fg:x="3580" fg:w="3"/><text x="15.5048%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="15.2548%" y="2117" width="0.0128%" height="15" fill="rgb(208,184,47)" fg:x="3580" fg:w="3"/><text x="15.5048%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (296 samples, 1.26%)</title><rect x="14.0148%" y="2821" width="1.2613%" height="15" fill="rgb(238,174,3)" fg:x="3289" fg:w="296"/><text x="14.2648%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (296 samples, 1.26%)</title><rect x="14.0148%" y="2805" width="1.2613%" height="15" fill="rgb(247,188,6)" fg:x="3289" fg:w="296"/><text x="14.2648%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (296 samples, 1.26%)</title><rect x="14.0148%" y="2789" width="1.2613%" height="15" fill="rgb(211,165,46)" fg:x="3289" fg:w="296"/><text x="14.2648%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (296 samples, 1.26%)</title><rect x="14.0148%" y="2773" width="1.2613%" height="15" fill="rgb(222,190,10)" fg:x="3289" fg:w="296"/><text x="14.2648%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (271 samples, 1.15%)</title><rect x="14.1214%" y="2757" width="1.1548%" height="15" fill="rgb(206,185,3)" fg:x="3314" fg:w="271"/><text x="14.3714%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (271 samples, 1.15%)</title><rect x="14.1214%" y="2741" width="1.1548%" height="15" fill="rgb(244,125,37)" fg:x="3314" fg:w="271"/><text x="14.3714%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (271 samples, 1.15%)</title><rect x="14.1214%" y="2725" width="1.1548%" height="15" fill="rgb(211,43,7)" fg:x="3314" fg:w="271"/><text x="14.3714%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (85 samples, 0.36%)</title><rect x="14.9139%" y="2709" width="0.3622%" height="15" fill="rgb(250,41,42)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (85 samples, 0.36%)</title><rect x="14.9139%" y="2693" width="0.3622%" height="15" fill="rgb(254,54,42)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2703.50"></text></g><g><title>std::panicking::try (85 samples, 0.36%)</title><rect x="14.9139%" y="2677" width="0.3622%" height="15" fill="rgb(213,71,43)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (85 samples, 0.36%)</title><rect x="14.9139%" y="2661" width="0.3622%" height="15" fill="rgb(249,3,44)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (85 samples, 0.36%)</title><rect x="14.9139%" y="2645" width="0.3622%" height="15" fill="rgb(229,80,41)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (85 samples, 0.36%)</title><rect x="14.9139%" y="2629" width="0.3622%" height="15" fill="rgb(231,25,28)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (85 samples, 0.36%)</title><rect x="14.9139%" y="2613" width="0.3622%" height="15" fill="rgb(208,79,48)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85 samples, 0.36%)</title><rect x="14.9139%" y="2597" width="0.3622%" height="15" fill="rgb(207,196,38)" fg:x="3500" fg:w="85"/><text x="15.1639%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (60 samples, 0.26%)</title><rect x="15.0205%" y="2581" width="0.2557%" height="15" fill="rgb(228,105,49)" fg:x="3525" fg:w="60"/><text x="15.2705%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (60 samples, 0.26%)</title><rect x="15.0205%" y="2565" width="0.2557%" height="15" fill="rgb(237,99,15)" fg:x="3525" fg:w="60"/><text x="15.2705%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (60 samples, 0.26%)</title><rect x="15.0205%" y="2549" width="0.2557%" height="15" fill="rgb(224,207,46)" fg:x="3525" fg:w="60"/><text x="15.2705%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29 samples, 0.12%)</title><rect x="15.1525%" y="2533" width="0.1236%" height="15" fill="rgb(249,117,50)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (29 samples, 0.12%)</title><rect x="15.1525%" y="2517" width="0.1236%" height="15" fill="rgb(248,17,13)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2527.50"></text></g><g><title>std::panicking::try (29 samples, 0.12%)</title><rect x="15.1525%" y="2501" width="0.1236%" height="15" fill="rgb(228,187,36)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (29 samples, 0.12%)</title><rect x="15.1525%" y="2485" width="0.1236%" height="15" fill="rgb(234,132,20)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (29 samples, 0.12%)</title><rect x="15.1525%" y="2469" width="0.1236%" height="15" fill="rgb(209,170,46)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (29 samples, 0.12%)</title><rect x="15.1525%" y="2453" width="0.1236%" height="15" fill="rgb(237,23,19)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="15.1525%" y="2437" width="0.1236%" height="15" fill="rgb(227,21,26)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="15.1525%" y="2421" width="0.1236%" height="15" fill="rgb(222,220,48)" fg:x="3556" fg:w="29"/><text x="15.4025%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="15.2079%" y="2405" width="0.0682%" height="15" fill="rgb(214,9,16)" fg:x="3569" fg:w="16"/><text x="15.4579%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="15.2079%" y="2389" width="0.0682%" height="15" fill="rgb(209,73,30)" fg:x="3569" fg:w="16"/><text x="15.4579%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="15.2079%" y="2373" width="0.0682%" height="15" fill="rgb(207,20,33)" fg:x="3569" fg:w="16"/><text x="15.4579%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="15.2378%" y="2357" width="0.0384%" height="15" fill="rgb(219,153,12)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="15.2378%" y="2341" width="0.0384%" height="15" fill="rgb(235,97,25)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2351.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="15.2378%" y="2325" width="0.0384%" height="15" fill="rgb(244,30,34)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="15.2378%" y="2309" width="0.0384%" height="15" fill="rgb(214,106,45)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="15.2378%" y="2293" width="0.0384%" height="15" fill="rgb(226,41,9)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="15.2378%" y="2277" width="0.0384%" height="15" fill="rgb(253,139,29)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="15.2378%" y="2261" width="0.0384%" height="15" fill="rgb(213,205,39)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="15.2378%" y="2245" width="0.0384%" height="15" fill="rgb(209,27,10)" fg:x="3576" fg:w="9"/><text x="15.4878%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="15.2548%" y="2229" width="0.0213%" height="15" fill="rgb(249,142,16)" fg:x="3580" fg:w="5"/><text x="15.5048%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="15.2548%" y="2213" width="0.0213%" height="15" fill="rgb(242,65,12)" fg:x="3580" fg:w="5"/><text x="15.5048%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="15.2548%" y="2197" width="0.0213%" height="15" fill="rgb(232,48,10)" fg:x="3580" fg:w="5"/><text x="15.5048%" y="2207.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (7 samples, 0.03%)</title><rect x="15.2804%" y="2389" width="0.0298%" height="15" fill="rgb(253,67,19)" fg:x="3586" fg:w="7"/><text x="15.5304%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (7 samples, 0.03%)</title><rect x="15.2804%" y="2373" width="0.0298%" height="15" fill="rgb(227,93,29)" fg:x="3586" fg:w="7"/><text x="15.5304%" y="2383.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="15.2804%" y="2357" width="0.0298%" height="15" fill="rgb(226,189,53)" fg:x="3586" fg:w="7"/><text x="15.5304%" y="2367.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="15.2804%" y="2341" width="0.0298%" height="15" fill="rgb(223,224,1)" fg:x="3586" fg:w="7"/><text x="15.5304%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="15.3102%" y="2389" width="0.0213%" height="15" fill="rgb(221,84,32)" fg:x="3593" fg:w="5"/><text x="15.5602%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="15.3102%" y="2373" width="0.0213%" height="15" fill="rgb(214,189,28)" fg:x="3593" fg:w="5"/><text x="15.5602%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="15.2804%" y="2581" width="0.0639%" height="15" fill="rgb(234,7,52)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="15.2804%" y="2565" width="0.0639%" height="15" fill="rgb(249,73,31)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (15 samples, 0.06%)</title><rect x="15.2804%" y="2549" width="0.0639%" height="15" fill="rgb(253,153,41)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (15 samples, 0.06%)</title><rect x="15.2804%" y="2533" width="0.0639%" height="15" fill="rgb(249,52,34)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (15 samples, 0.06%)</title><rect x="15.2804%" y="2517" width="0.0639%" height="15" fill="rgb(236,177,47)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (15 samples, 0.06%)</title><rect x="15.2804%" y="2501" width="0.0639%" height="15" fill="rgb(252,185,45)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (15 samples, 0.06%)</title><rect x="15.2804%" y="2485" width="0.0639%" height="15" fill="rgb(251,15,30)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (15 samples, 0.06%)</title><rect x="15.2804%" y="2469" width="0.0639%" height="15" fill="rgb(233,31,4)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (15 samples, 0.06%)</title><rect x="15.2804%" y="2453" width="0.0639%" height="15" fill="rgb(254,44,24)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (15 samples, 0.06%)</title><rect x="15.2804%" y="2437" width="0.0639%" height="15" fill="rgb(218,54,1)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (15 samples, 0.06%)</title><rect x="15.2804%" y="2421" width="0.0639%" height="15" fill="rgb(243,209,39)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (15 samples, 0.06%)</title><rect x="15.2804%" y="2405" width="0.0639%" height="15" fill="rgb(206,75,33)" fg:x="3586" fg:w="15"/><text x="15.5304%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="15.3315%" y="2389" width="0.0128%" height="15" fill="rgb(223,108,18)" fg:x="3598" fg:w="3"/><text x="15.5815%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="15.3315%" y="2373" width="0.0128%" height="15" fill="rgb(244,89,31)" fg:x="3598" fg:w="3"/><text x="15.5815%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="15.3443%" y="2421" width="0.0170%" height="15" fill="rgb(222,167,27)" fg:x="3601" fg:w="4"/><text x="15.5943%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3443%" y="2405" width="0.0170%" height="15" fill="rgb(247,41,16)" fg:x="3601" fg:w="4"/><text x="15.5943%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3443%" y="2389" width="0.0170%" height="15" fill="rgb(233,168,40)" fg:x="3601" fg:w="4"/><text x="15.5943%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.3443%" y="2373" width="0.0170%" height="15" fill="rgb(205,211,8)" fg:x="3601" fg:w="4"/><text x="15.5943%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.3443%" y="2357" width="0.0170%" height="15" fill="rgb(238,105,11)" fg:x="3601" fg:w="4"/><text x="15.5943%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.3443%" y="2341" width="0.0170%" height="15" fill="rgb(223,142,52)" fg:x="3601" fg:w="4"/><text x="15.5943%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3443%" y="2325" width="0.0170%" height="15" fill="rgb(238,51,33)" fg:x="3601" fg:w="4"/><text x="15.5943%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="15.3443%" y="2533" width="0.0384%" height="15" fill="rgb(231,188,43)" fg:x="3601" fg:w="9"/><text x="15.5943%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="15.3443%" y="2517" width="0.0384%" height="15" fill="rgb(216,92,17)" fg:x="3601" fg:w="9"/><text x="15.5943%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="15.3443%" y="2501" width="0.0384%" height="15" fill="rgb(228,2,40)" fg:x="3601" fg:w="9"/><text x="15.5943%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="15.3443%" y="2485" width="0.0384%" height="15" fill="rgb(226,73,15)" fg:x="3601" fg:w="9"/><text x="15.5943%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="15.3443%" y="2469" width="0.0384%" height="15" fill="rgb(227,66,46)" fg:x="3601" fg:w="9"/><text x="15.5943%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="15.3443%" y="2453" width="0.0384%" height="15" fill="rgb(209,71,6)" fg:x="3601" fg:w="9"/><text x="15.5943%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="15.3443%" y="2437" width="0.0384%" height="15" fill="rgb(246,100,25)" fg:x="3601" fg:w="9"/><text x="15.5943%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="15.3613%" y="2421" width="0.0213%" height="15" fill="rgb(248,185,27)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="15.3613%" y="2405" width="0.0213%" height="15" fill="rgb(225,118,47)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2415.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="15.3613%" y="2389" width="0.0213%" height="15" fill="rgb(220,185,44)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="15.3613%" y="2373" width="0.0213%" height="15" fill="rgb(227,95,24)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="15.3613%" y="2357" width="0.0213%" height="15" fill="rgb(252,84,24)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="15.3613%" y="2341" width="0.0213%" height="15" fill="rgb(240,34,44)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="15.3613%" y="2325" width="0.0213%" height="15" fill="rgb(209,72,54)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="15.3613%" y="2309" width="0.0213%" height="15" fill="rgb(226,19,45)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="15.3613%" y="2293" width="0.0213%" height="15" fill="rgb(246,7,45)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="15.3613%" y="2277" width="0.0213%" height="15" fill="rgb(225,45,2)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="15.3613%" y="2261" width="0.0213%" height="15" fill="rgb(221,80,29)" fg:x="3605" fg:w="5"/><text x="15.6113%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="15.3699%" y="2245" width="0.0128%" height="15" fill="rgb(228,11,19)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="15.3699%" y="2229" width="0.0128%" height="15" fill="rgb(243,17,21)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2239.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="15.3699%" y="2213" width="0.0128%" height="15" fill="rgb(243,88,8)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="15.3699%" y="2197" width="0.0128%" height="15" fill="rgb(214,17,9)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="15.3699%" y="2181" width="0.0128%" height="15" fill="rgb(232,169,15)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="15.3699%" y="2165" width="0.0128%" height="15" fill="rgb(232,86,53)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="15.3699%" y="2149" width="0.0128%" height="15" fill="rgb(222,100,4)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="15.3699%" y="2133" width="0.0128%" height="15" fill="rgb(253,151,38)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="15.3699%" y="2117" width="0.0128%" height="15" fill="rgb(238,215,29)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="15.3699%" y="2101" width="0.0128%" height="15" fill="rgb(205,128,53)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="15.3699%" y="2085" width="0.0128%" height="15" fill="rgb(248,183,14)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="15.3699%" y="2069" width="0.0128%" height="15" fill="rgb(244,172,35)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="15.3699%" y="2053" width="0.0128%" height="15" fill="rgb(234,93,19)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="15.3699%" y="2037" width="0.0128%" height="15" fill="rgb(227,109,7)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="15.3699%" y="2021" width="0.0128%" height="15" fill="rgb(233,136,54)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="15.3699%" y="2005" width="0.0128%" height="15" fill="rgb(233,19,40)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="15.3699%" y="1989" width="0.0128%" height="15" fill="rgb(247,41,18)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="15.3699%" y="1973" width="0.0128%" height="15" fill="rgb(220,34,34)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="15.3699%" y="1957" width="0.0128%" height="15" fill="rgb(222,135,32)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="15.3699%" y="1941" width="0.0128%" height="15" fill="rgb(214,80,19)" fg:x="3607" fg:w="3"/><text x="15.6199%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="15.3826%" y="1781" width="0.0170%" height="15" fill="rgb(234,54,46)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3826%" y="1765" width="0.0170%" height="15" fill="rgb(251,48,23)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3826%" y="1749" width="0.0170%" height="15" fill="rgb(254,109,52)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.3826%" y="1733" width="0.0170%" height="15" fill="rgb(240,186,19)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.3826%" y="1717" width="0.0170%" height="15" fill="rgb(246,187,17)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.3826%" y="1701" width="0.0170%" height="15" fill="rgb(212,21,5)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3826%" y="1685" width="0.0170%" height="15" fill="rgb(225,185,18)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="15.3826%" y="1669" width="0.0170%" height="15" fill="rgb(245,114,17)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="15.3826%" y="1653" width="0.0170%" height="15" fill="rgb(223,164,24)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1663.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="15.3826%" y="1637" width="0.0170%" height="15" fill="rgb(211,228,3)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="15.3826%" y="1621" width="0.0170%" height="15" fill="rgb(223,16,38)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="15.3826%" y="1605" width="0.0170%" height="15" fill="rgb(207,31,54)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3826%" y="1589" width="0.0170%" height="15" fill="rgb(220,39,11)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3826%" y="1573" width="0.0170%" height="15" fill="rgb(235,185,0)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.3826%" y="1557" width="0.0170%" height="15" fill="rgb(249,39,18)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.3826%" y="1541" width="0.0170%" height="15" fill="rgb(240,110,33)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.3826%" y="1525" width="0.0170%" height="15" fill="rgb(210,92,42)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.3826%" y="1509" width="0.0170%" height="15" fill="rgb(218,215,28)" fg:x="3610" fg:w="4"/><text x="15.6326%" y="1519.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="15.3997%" y="1605" width="0.0128%" height="15" fill="rgb(238,215,36)" fg:x="3614" fg:w="3"/><text x="15.6497%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="15.3997%" y="1589" width="0.0128%" height="15" fill="rgb(220,31,10)" fg:x="3614" fg:w="3"/><text x="15.6497%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="15.3997%" y="1573" width="0.0128%" height="15" fill="rgb(212,93,14)" fg:x="3614" fg:w="3"/><text x="15.6497%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="15.3997%" y="1557" width="0.0128%" height="15" fill="rgb(254,207,2)" fg:x="3614" fg:w="3"/><text x="15.6497%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="15.3997%" y="1541" width="0.0128%" height="15" fill="rgb(205,57,44)" fg:x="3614" fg:w="3"/><text x="15.6497%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="15.3997%" y="1525" width="0.0128%" height="15" fill="rgb(226,151,19)" fg:x="3614" fg:w="3"/><text x="15.6497%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="15.3997%" y="1509" width="0.0128%" height="15" fill="rgb(230,72,30)" fg:x="3614" fg:w="3"/><text x="15.6497%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="15.3826%" y="2245" width="0.0469%" height="15" fill="rgb(244,0,8)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="15.3826%" y="2229" width="0.0469%" height="15" fill="rgb(230,192,6)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="15.3826%" y="2213" width="0.0469%" height="15" fill="rgb(233,207,13)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="15.3826%" y="2197" width="0.0469%" height="15" fill="rgb(206,227,7)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="15.3826%" y="2181" width="0.0469%" height="15" fill="rgb(213,217,25)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="15.3826%" y="2165" width="0.0469%" height="15" fill="rgb(249,75,4)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="15.3826%" y="2149" width="0.0469%" height="15" fill="rgb(225,114,18)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="15.3826%" y="2133" width="0.0469%" height="15" fill="rgb(211,162,40)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2143.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="15.3826%" y="2117" width="0.0469%" height="15" fill="rgb(206,49,29)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="15.3826%" y="2101" width="0.0469%" height="15" fill="rgb(244,8,6)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="15.3826%" y="2085" width="0.0469%" height="15" fill="rgb(231,194,28)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="15.3826%" y="2069" width="0.0469%" height="15" fill="rgb(210,69,5)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="15.3826%" y="2053" width="0.0469%" height="15" fill="rgb(216,186,12)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="15.3826%" y="2037" width="0.0469%" height="15" fill="rgb(238,61,15)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="15.3826%" y="2021" width="0.0469%" height="15" fill="rgb(226,104,1)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="15.3826%" y="2005" width="0.0469%" height="15" fill="rgb(229,128,15)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="15.3826%" y="1989" width="0.0469%" height="15" fill="rgb(247,110,15)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="15.3826%" y="1973" width="0.0469%" height="15" fill="rgb(210,74,48)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="15.3826%" y="1957" width="0.0469%" height="15" fill="rgb(246,121,10)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="15.3826%" y="1941" width="0.0469%" height="15" fill="rgb(214,156,37)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1951.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="15.3826%" y="1925" width="0.0469%" height="15" fill="rgb(214,210,34)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="15.3826%" y="1909" width="0.0469%" height="15" fill="rgb(237,93,35)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="15.3826%" y="1893" width="0.0469%" height="15" fill="rgb(206,36,8)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="15.3826%" y="1877" width="0.0469%" height="15" fill="rgb(208,151,12)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="15.3826%" y="1861" width="0.0469%" height="15" fill="rgb(225,133,52)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="15.3826%" y="1845" width="0.0469%" height="15" fill="rgb(231,71,53)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="15.3826%" y="1829" width="0.0469%" height="15" fill="rgb(243,76,21)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="15.3826%" y="1813" width="0.0469%" height="15" fill="rgb(252,144,3)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="15.3826%" y="1797" width="0.0469%" height="15" fill="rgb(231,199,10)" fg:x="3610" fg:w="11"/><text x="15.6326%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="15.3997%" y="1781" width="0.0298%" height="15" fill="rgb(215,18,11)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="15.3997%" y="1765" width="0.0298%" height="15" fill="rgb(241,65,24)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1775.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="15.3997%" y="1749" width="0.0298%" height="15" fill="rgb(251,192,38)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="15.3997%" y="1733" width="0.0298%" height="15" fill="rgb(205,9,35)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="15.3997%" y="1717" width="0.0298%" height="15" fill="rgb(229,225,49)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="15.3997%" y="1701" width="0.0298%" height="15" fill="rgb(207,125,39)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="15.3997%" y="1685" width="0.0298%" height="15" fill="rgb(222,78,19)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="15.3997%" y="1669" width="0.0298%" height="15" fill="rgb(248,207,20)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="15.3997%" y="1653" width="0.0298%" height="15" fill="rgb(205,103,49)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="15.3997%" y="1637" width="0.0298%" height="15" fill="rgb(216,42,28)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="15.3997%" y="1621" width="0.0298%" height="15" fill="rgb(213,205,53)" fg:x="3614" fg:w="7"/><text x="15.6497%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="15.4125%" y="1605" width="0.0170%" height="15" fill="rgb(239,140,53)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="15.4125%" y="1589" width="0.0170%" height="15" fill="rgb(248,95,9)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1599.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="15.4125%" y="1573" width="0.0170%" height="15" fill="rgb(254,58,47)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="15.4125%" y="1557" width="0.0170%" height="15" fill="rgb(234,227,14)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="15.4125%" y="1541" width="0.0170%" height="15" fill="rgb(205,192,45)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4125%" y="1525" width="0.0170%" height="15" fill="rgb(253,187,31)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4125%" y="1509" width="0.0170%" height="15" fill="rgb(222,6,32)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.4125%" y="1493" width="0.0170%" height="15" fill="rgb(249,190,19)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.4125%" y="1477" width="0.0170%" height="15" fill="rgb(251,28,20)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.4125%" y="1461" width="0.0170%" height="15" fill="rgb(210,223,40)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4125%" y="1445" width="0.0170%" height="15" fill="rgb(216,137,22)" fg:x="3617" fg:w="4"/><text x="15.6625%" y="1455.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (13 samples, 0.06%)</title><rect x="15.3826%" y="2501" width="0.0554%" height="15" fill="rgb(247,39,34)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (13 samples, 0.06%)</title><rect x="15.3826%" y="2485" width="0.0554%" height="15" fill="rgb(239,43,50)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (13 samples, 0.06%)</title><rect x="15.3826%" y="2469" width="0.0554%" height="15" fill="rgb(241,212,9)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (13 samples, 0.06%)</title><rect x="15.3826%" y="2453" width="0.0554%" height="15" fill="rgb(205,8,2)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="15.3826%" y="2437" width="0.0554%" height="15" fill="rgb(217,173,54)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="15.3826%" y="2421" width="0.0554%" height="15" fill="rgb(208,149,52)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2431.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="15.3826%" y="2405" width="0.0554%" height="15" fill="rgb(239,99,40)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="15.3826%" y="2389" width="0.0554%" height="15" fill="rgb(233,214,26)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="15.3826%" y="2373" width="0.0554%" height="15" fill="rgb(231,225,37)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (13 samples, 0.06%)</title><rect x="15.3826%" y="2357" width="0.0554%" height="15" fill="rgb(252,55,35)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="15.3826%" y="2341" width="0.0554%" height="15" fill="rgb(239,43,18)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="15.3826%" y="2325" width="0.0554%" height="15" fill="rgb(251,125,49)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="15.3826%" y="2309" width="0.0554%" height="15" fill="rgb(212,83,54)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="15.3826%" y="2293" width="0.0554%" height="15" fill="rgb(250,75,6)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="15.3826%" y="2277" width="0.0554%" height="15" fill="rgb(252,36,40)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="15.3826%" y="2261" width="0.0554%" height="15" fill="rgb(230,91,51)" fg:x="3610" fg:w="13"/><text x="15.6326%" y="2271.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (18 samples, 0.08%)</title><rect x="15.3826%" y="2533" width="0.0767%" height="15" fill="rgb(212,92,28)" fg:x="3610" fg:w="18"/><text x="15.6326%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.08%)</title><rect x="15.3826%" y="2517" width="0.0767%" height="15" fill="rgb(227,13,22)" fg:x="3610" fg:w="18"/><text x="15.6326%" y="2527.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="15.4380%" y="2501" width="0.0213%" height="15" fill="rgb(239,204,32)" fg:x="3623" fg:w="5"/><text x="15.6880%" y="2511.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="15.4380%" y="2485" width="0.0213%" height="15" fill="rgb(228,49,41)" fg:x="3623" fg:w="5"/><text x="15.6880%" y="2495.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="15.4380%" y="2469" width="0.0213%" height="15" fill="rgb(206,95,6)" fg:x="3623" fg:w="5"/><text x="15.6880%" y="2479.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="15.4380%" y="2453" width="0.0213%" height="15" fill="rgb(251,20,14)" fg:x="3623" fg:w="5"/><text x="15.6880%" y="2463.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="15.4380%" y="2437" width="0.0213%" height="15" fill="rgb(214,99,28)" fg:x="3623" fg:w="5"/><text x="15.6880%" y="2447.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="15.4380%" y="2421" width="0.0213%" height="15" fill="rgb(239,122,54)" fg:x="3623" fg:w="5"/><text x="15.6880%" y="2431.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="15.4423%" y="2405" width="0.0170%" height="15" fill="rgb(218,217,46)" fg:x="3624" fg:w="4"/><text x="15.6923%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="15.4593%" y="2405" width="0.0170%" height="15" fill="rgb(249,106,28)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="15.4593%" y="2389" width="0.0170%" height="15" fill="rgb(250,158,18)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="15.4593%" y="2373" width="0.0170%" height="15" fill="rgb(226,137,29)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="15.4593%" y="2357" width="0.0170%" height="15" fill="rgb(210,188,1)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="15.4593%" y="2341" width="0.0170%" height="15" fill="rgb(227,84,42)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="15.4593%" y="2325" width="0.0170%" height="15" fill="rgb(222,147,48)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="15.4593%" y="2309" width="0.0170%" height="15" fill="rgb(241,150,43)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4593%" y="2293" width="0.0170%" height="15" fill="rgb(206,139,52)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="15.4593%" y="2277" width="0.0170%" height="15" fill="rgb(230,63,14)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="15.4593%" y="2261" width="0.0170%" height="15" fill="rgb(247,8,20)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4593%" y="2245" width="0.0170%" height="15" fill="rgb(213,115,4)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="15.4593%" y="2229" width="0.0170%" height="15" fill="rgb(241,79,49)" fg:x="3628" fg:w="4"/><text x="15.7093%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="15.4764%" y="2357" width="0.0170%" height="15" fill="rgb(222,42,35)" fg:x="3632" fg:w="4"/><text x="15.7264%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4764%" y="2341" width="0.0170%" height="15" fill="rgb(247,59,23)" fg:x="3632" fg:w="4"/><text x="15.7264%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4764%" y="2325" width="0.0170%" height="15" fill="rgb(247,93,18)" fg:x="3632" fg:w="4"/><text x="15.7264%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.4764%" y="2309" width="0.0170%" height="15" fill="rgb(249,107,47)" fg:x="3632" fg:w="4"/><text x="15.7264%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.4764%" y="2293" width="0.0170%" height="15" fill="rgb(219,27,1)" fg:x="3632" fg:w="4"/><text x="15.7264%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.4764%" y="2277" width="0.0170%" height="15" fill="rgb(217,82,32)" fg:x="3632" fg:w="4"/><text x="15.7264%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.4764%" y="2261" width="0.0170%" height="15" fill="rgb(250,129,47)" fg:x="3632" fg:w="4"/><text x="15.7264%" y="2271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="15.5020%" y="2069" width="0.0170%" height="15" fill="rgb(253,88,35)" fg:x="3638" fg:w="4"/><text x="15.7520%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5020%" y="2053" width="0.0170%" height="15" fill="rgb(245,221,14)" fg:x="3638" fg:w="4"/><text x="15.7520%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5020%" y="2037" width="0.0170%" height="15" fill="rgb(217,119,54)" fg:x="3638" fg:w="4"/><text x="15.7520%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.5020%" y="2021" width="0.0170%" height="15" fill="rgb(247,128,31)" fg:x="3638" fg:w="4"/><text x="15.7520%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.5020%" y="2005" width="0.0170%" height="15" fill="rgb(211,99,22)" fg:x="3638" fg:w="4"/><text x="15.7520%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.5020%" y="1989" width="0.0170%" height="15" fill="rgb(212,20,17)" fg:x="3638" fg:w="4"/><text x="15.7520%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5020%" y="1973" width="0.0170%" height="15" fill="rgb(209,159,29)" fg:x="3638" fg:w="4"/><text x="15.7520%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10 samples, 0.04%)</title><rect x="15.4934%" y="2357" width="0.0426%" height="15" fill="rgb(222,177,53)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="15.4934%" y="2341" width="0.0426%" height="15" fill="rgb(234,46,43)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (10 samples, 0.04%)</title><rect x="15.4934%" y="2325" width="0.0426%" height="15" fill="rgb(208,108,14)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (10 samples, 0.04%)</title><rect x="15.4934%" y="2309" width="0.0426%" height="15" fill="rgb(226,78,53)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (10 samples, 0.04%)</title><rect x="15.4934%" y="2293" width="0.0426%" height="15" fill="rgb(230,20,41)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (10 samples, 0.04%)</title><rect x="15.4934%" y="2277" width="0.0426%" height="15" fill="rgb(213,195,35)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="15.4934%" y="2261" width="0.0426%" height="15" fill="rgb(242,62,36)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="15.4934%" y="2245" width="0.0426%" height="15" fill="rgb(222,210,37)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2255.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="15.4934%" y="2229" width="0.0426%" height="15" fill="rgb(232,107,19)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="15.4934%" y="2213" width="0.0426%" height="15" fill="rgb(235,85,17)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="15.4934%" y="2197" width="0.0426%" height="15" fill="rgb(219,195,31)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (10 samples, 0.04%)</title><rect x="15.4934%" y="2181" width="0.0426%" height="15" fill="rgb(231,183,30)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="15.4934%" y="2165" width="0.0426%" height="15" fill="rgb(212,0,11)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="15.4934%" y="2149" width="0.0426%" height="15" fill="rgb(249,53,54)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="15.4934%" y="2133" width="0.0426%" height="15" fill="rgb(211,118,13)" fg:x="3636" fg:w="10"/><text x="15.7434%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="15.5020%" y="2117" width="0.0341%" height="15" fill="rgb(237,42,9)" fg:x="3638" fg:w="8"/><text x="15.7520%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="15.5020%" y="2101" width="0.0341%" height="15" fill="rgb(227,68,32)" fg:x="3638" fg:w="8"/><text x="15.7520%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="15.5020%" y="2085" width="0.0341%" height="15" fill="rgb(238,10,7)" fg:x="3638" fg:w="8"/><text x="15.7520%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="15.5190%" y="2069" width="0.0170%" height="15" fill="rgb(224,42,12)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="15.5190%" y="2053" width="0.0170%" height="15" fill="rgb(252,190,5)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="15.5190%" y="2037" width="0.0170%" height="15" fill="rgb(220,214,39)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="15.5190%" y="2021" width="0.0170%" height="15" fill="rgb(247,98,4)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="15.5190%" y="2005" width="0.0170%" height="15" fill="rgb(211,60,12)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5190%" y="1989" width="0.0170%" height="15" fill="rgb(224,42,10)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5190%" y="1973" width="0.0170%" height="15" fill="rgb(217,167,4)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="15.5190%" y="1957" width="0.0170%" height="15" fill="rgb(253,18,17)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.5190%" y="1941" width="0.0170%" height="15" fill="rgb(249,186,44)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.5190%" y="1925" width="0.0170%" height="15" fill="rgb(254,124,54)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5190%" y="1909" width="0.0170%" height="15" fill="rgb(220,124,39)" fg:x="3642" fg:w="4"/><text x="15.7690%" y="1919.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="15.5446%" y="2181" width="0.0256%" height="15" fill="rgb(225,96,46)" fg:x="3648" fg:w="6"/><text x="15.7946%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="15.5446%" y="2165" width="0.0256%" height="15" fill="rgb(221,106,12)" fg:x="3648" fg:w="6"/><text x="15.7946%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="15.5446%" y="2149" width="0.0256%" height="15" fill="rgb(227,133,23)" fg:x="3648" fg:w="6"/><text x="15.7946%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="15.5446%" y="2133" width="0.0256%" height="15" fill="rgb(216,44,52)" fg:x="3648" fg:w="6"/><text x="15.7946%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.5531%" y="2117" width="0.0170%" height="15" fill="rgb(239,149,7)" fg:x="3650" fg:w="4"/><text x="15.8031%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.5531%" y="2101" width="0.0170%" height="15" fill="rgb(211,157,31)" fg:x="3650" fg:w="4"/><text x="15.8031%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5531%" y="2085" width="0.0170%" height="15" fill="rgb(206,215,22)" fg:x="3650" fg:w="4"/><text x="15.8031%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (74 samples, 0.32%)</title><rect x="15.2804%" y="2789" width="0.3153%" height="15" fill="rgb(208,113,15)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2799.50"></text></g><g><title>rayon_core::job::JobRef::execute (74 samples, 0.32%)</title><rect x="15.2804%" y="2773" width="0.3153%" height="15" fill="rgb(207,189,15)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2783.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (74 samples, 0.32%)</title><rect x="15.2804%" y="2757" width="0.3153%" height="15" fill="rgb(231,115,4)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (74 samples, 0.32%)</title><rect x="15.2804%" y="2741" width="0.3153%" height="15" fill="rgb(253,117,2)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (74 samples, 0.32%)</title><rect x="15.2804%" y="2725" width="0.3153%" height="15" fill="rgb(248,48,24)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (74 samples, 0.32%)</title><rect x="15.2804%" y="2709" width="0.3153%" height="15" fill="rgb(241,28,46)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2719.50"></text></g><g><title>std::panicking::try (74 samples, 0.32%)</title><rect x="15.2804%" y="2693" width="0.3153%" height="15" fill="rgb(216,165,52)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (74 samples, 0.32%)</title><rect x="15.2804%" y="2677" width="0.3153%" height="15" fill="rgb(220,222,34)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (74 samples, 0.32%)</title><rect x="15.2804%" y="2661" width="0.3153%" height="15" fill="rgb(247,222,49)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2671.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (74 samples, 0.32%)</title><rect x="15.2804%" y="2645" width="0.3153%" height="15" fill="rgb(240,10,31)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (74 samples, 0.32%)</title><rect x="15.2804%" y="2629" width="0.3153%" height="15" fill="rgb(221,199,35)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (74 samples, 0.32%)</title><rect x="15.2804%" y="2613" width="0.3153%" height="15" fill="rgb(230,223,11)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.32%)</title><rect x="15.2804%" y="2597" width="0.3153%" height="15" fill="rgb(218,82,45)" fg:x="3586" fg:w="74"/><text x="15.5304%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (59 samples, 0.25%)</title><rect x="15.3443%" y="2581" width="0.2514%" height="15" fill="rgb(233,213,33)" fg:x="3601" fg:w="59"/><text x="15.5943%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (59 samples, 0.25%)</title><rect x="15.3443%" y="2565" width="0.2514%" height="15" fill="rgb(210,143,52)" fg:x="3601" fg:w="59"/><text x="15.5943%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (59 samples, 0.25%)</title><rect x="15.3443%" y="2549" width="0.2514%" height="15" fill="rgb(206,95,4)" fg:x="3601" fg:w="59"/><text x="15.5943%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="15.4593%" y="2533" width="0.1364%" height="15" fill="rgb(246,164,46)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="15.4593%" y="2517" width="0.1364%" height="15" fill="rgb(213,210,47)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2527.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="15.4593%" y="2501" width="0.1364%" height="15" fill="rgb(210,12,38)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="15.4593%" y="2485" width="0.1364%" height="15" fill="rgb(252,192,54)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="15.4593%" y="2469" width="0.1364%" height="15" fill="rgb(242,92,6)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (32 samples, 0.14%)</title><rect x="15.4593%" y="2453" width="0.1364%" height="15" fill="rgb(253,154,15)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="15.4593%" y="2437" width="0.1364%" height="15" fill="rgb(209,20,43)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="15.4593%" y="2421" width="0.1364%" height="15" fill="rgb(232,28,49)" fg:x="3628" fg:w="32"/><text x="15.7093%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (28 samples, 0.12%)</title><rect x="15.4764%" y="2405" width="0.1193%" height="15" fill="rgb(248,131,53)" fg:x="3632" fg:w="28"/><text x="15.7264%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.12%)</title><rect x="15.4764%" y="2389" width="0.1193%" height="15" fill="rgb(214,16,30)" fg:x="3632" fg:w="28"/><text x="15.7264%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (28 samples, 0.12%)</title><rect x="15.4764%" y="2373" width="0.1193%" height="15" fill="rgb(245,16,0)" fg:x="3632" fg:w="28"/><text x="15.7264%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="15.5360%" y="2357" width="0.0597%" height="15" fill="rgb(245,17,35)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="15.5360%" y="2341" width="0.0597%" height="15" fill="rgb(249,27,53)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2351.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="15.5360%" y="2325" width="0.0597%" height="15" fill="rgb(214,73,24)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="15.5360%" y="2309" width="0.0597%" height="15" fill="rgb(223,84,37)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="15.5360%" y="2293" width="0.0597%" height="15" fill="rgb(210,109,28)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="15.5360%" y="2277" width="0.0597%" height="15" fill="rgb(208,186,6)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="15.5360%" y="2261" width="0.0597%" height="15" fill="rgb(235,201,30)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="15.5360%" y="2245" width="0.0597%" height="15" fill="rgb(216,198,48)" fg:x="3646" fg:w="14"/><text x="15.7860%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="15.5446%" y="2229" width="0.0511%" height="15" fill="rgb(254,186,25)" fg:x="3648" fg:w="12"/><text x="15.7946%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="15.5446%" y="2213" width="0.0511%" height="15" fill="rgb(227,87,5)" fg:x="3648" fg:w="12"/><text x="15.7946%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="15.5446%" y="2197" width="0.0511%" height="15" fill="rgb(236,205,25)" fg:x="3648" fg:w="12"/><text x="15.7946%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="15.5701%" y="2181" width="0.0256%" height="15" fill="rgb(229,99,32)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="15.5701%" y="2165" width="0.0256%" height="15" fill="rgb(231,177,31)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2175.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="15.5701%" y="2149" width="0.0256%" height="15" fill="rgb(246,15,2)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="15.5701%" y="2133" width="0.0256%" height="15" fill="rgb(207,39,15)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="15.5701%" y="2117" width="0.0256%" height="15" fill="rgb(207,44,9)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="15.5701%" y="2101" width="0.0256%" height="15" fill="rgb(225,224,33)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="15.5701%" y="2085" width="0.0256%" height="15" fill="rgb(252,151,3)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="15.5701%" y="2069" width="0.0256%" height="15" fill="rgb(211,140,13)" fg:x="3654" fg:w="6"/><text x="15.8201%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="15.5787%" y="2053" width="0.0170%" height="15" fill="rgb(239,225,17)" fg:x="3656" fg:w="4"/><text x="15.8287%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="15.5787%" y="2037" width="0.0170%" height="15" fill="rgb(223,170,52)" fg:x="3656" fg:w="4"/><text x="15.8287%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="15.5787%" y="2021" width="0.0170%" height="15" fill="rgb(212,64,21)" fg:x="3656" fg:w="4"/><text x="15.8287%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (76 samples, 0.32%)</title><rect x="15.2761%" y="2821" width="0.3238%" height="15" fill="rgb(236,126,48)" fg:x="3585" fg:w="76"/><text x="15.5261%" y="2831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (76 samples, 0.32%)</title><rect x="15.2761%" y="2805" width="0.3238%" height="15" fill="rgb(209,135,11)" fg:x="3585" fg:w="76"/><text x="15.5261%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (14 samples, 0.06%)</title><rect x="15.6000%" y="2501" width="0.0597%" height="15" fill="rgb(228,126,40)" fg:x="3661" fg:w="14"/><text x="15.8500%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::exp (14 samples, 0.06%)</title><rect x="15.6000%" y="2485" width="0.0597%" height="15" fill="rgb(205,196,36)" fg:x="3661" fg:w="14"/><text x="15.8500%" y="2495.50"></text></g><g><title>exp (13 samples, 0.06%)</title><rect x="15.6042%" y="2469" width="0.0554%" height="15" fill="rgb(243,160,33)" fg:x="3662" fg:w="13"/><text x="15.8542%" y="2479.50"></text></g><g><title>[libm.so.6] (11 samples, 0.05%)</title><rect x="15.6127%" y="2453" width="0.0469%" height="15" fill="rgb(210,84,20)" fg:x="3664" fg:w="11"/><text x="15.8627%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="15.6639%" y="2501" width="0.0128%" height="15" fill="rgb(228,213,30)" fg:x="3676" fg:w="3"/><text x="15.9139%" y="2511.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="15.6639%" y="2485" width="0.0128%" height="15" fill="rgb(252,33,45)" fg:x="3676" fg:w="3"/><text x="15.9139%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (26 samples, 0.11%)</title><rect x="15.6000%" y="2517" width="0.1108%" height="15" fill="rgb(254,227,20)" fg:x="3661" fg:w="26"/><text x="15.8500%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (8 samples, 0.03%)</title><rect x="15.6767%" y="2501" width="0.0341%" height="15" fill="rgb(228,192,2)" fg:x="3679" fg:w="8"/><text x="15.9267%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::sqrt (8 samples, 0.03%)</title><rect x="15.6767%" y="2485" width="0.0341%" height="15" fill="rgb(233,32,8)" fg:x="3679" fg:w="8"/><text x="15.9267%" y="2495.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (28 samples, 0.12%)</title><rect x="15.6000%" y="2677" width="0.1193%" height="15" fill="rgb(220,146,47)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (28 samples, 0.12%)</title><rect x="15.6000%" y="2661" width="0.1193%" height="15" fill="rgb(246,194,1)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (28 samples, 0.12%)</title><rect x="15.6000%" y="2645" width="0.1193%" height="15" fill="rgb(218,203,9)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2655.50"></text></g><g><title>core::option::Option<T>::map (28 samples, 0.12%)</title><rect x="15.6000%" y="2629" width="0.1193%" height="15" fill="rgb(237,97,14)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (28 samples, 0.12%)</title><rect x="15.6000%" y="2613" width="0.1193%" height="15" fill="rgb(239,76,15)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (28 samples, 0.12%)</title><rect x="15.6000%" y="2597" width="0.1193%" height="15" fill="rgb(222,53,45)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (28 samples, 0.12%)</title><rect x="15.6000%" y="2581" width="0.1193%" height="15" fill="rgb(237,88,5)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2591.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (28 samples, 0.12%)</title><rect x="15.6000%" y="2565" width="0.1193%" height="15" fill="rgb(218,223,35)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2575.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (28 samples, 0.12%)</title><rect x="15.6000%" y="2549" width="0.1193%" height="15" fill="rgb(243,229,38)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (28 samples, 0.12%)</title><rect x="15.6000%" y="2533" width="0.1193%" height="15" fill="rgb(240,75,41)" fg:x="3661" fg:w="28"/><text x="15.8500%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="15.7235%" y="2453" width="0.0128%" height="15" fill="rgb(209,110,37)" fg:x="3690" fg:w="3"/><text x="15.9735%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="15.7235%" y="2437" width="0.0128%" height="15" fill="rgb(221,130,46)" fg:x="3690" fg:w="3"/><text x="15.9735%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (33 samples, 0.14%)</title><rect x="15.6000%" y="2693" width="0.1406%" height="15" fill="rgb(237,160,20)" fg:x="3661" fg:w="33"/><text x="15.8500%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="15.7193%" y="2677" width="0.0213%" height="15" fill="rgb(234,126,24)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2687.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="15.7193%" y="2661" width="0.0213%" height="15" fill="rgb(207,177,9)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="15.7193%" y="2645" width="0.0213%" height="15" fill="rgb(231,191,33)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (5 samples, 0.02%)</title><rect x="15.7193%" y="2629" width="0.0213%" height="15" fill="rgb(207,42,1)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2639.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="15.7193%" y="2613" width="0.0213%" height="15" fill="rgb(218,34,50)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="15.7193%" y="2597" width="0.0213%" height="15" fill="rgb(254,126,39)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2607.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="15.7193%" y="2581" width="0.0213%" height="15" fill="rgb(251,17,26)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2591.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="15.7193%" y="2565" width="0.0213%" height="15" fill="rgb(252,215,34)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2575.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="15.7193%" y="2549" width="0.0213%" height="15" fill="rgb(217,120,44)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="15.7193%" y="2533" width="0.0213%" height="15" fill="rgb(211,31,11)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="15.7193%" y="2517" width="0.0213%" height="15" fill="rgb(222,69,51)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2527.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="15.7193%" y="2501" width="0.0213%" height="15" fill="rgb(215,229,42)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="15.7193%" y="2485" width="0.0213%" height="15" fill="rgb(212,102,15)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="15.7193%" y="2469" width="0.0213%" height="15" fill="rgb(205,179,41)" fg:x="3689" fg:w="5"/><text x="15.9693%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (17 samples, 0.07%)</title><rect x="15.7406%" y="2389" width="0.0724%" height="15" fill="rgb(219,148,46)" fg:x="3694" fg:w="17"/><text x="15.9906%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (17 samples, 0.07%)</title><rect x="15.7406%" y="2373" width="0.0724%" height="15" fill="rgb(243,40,19)" fg:x="3694" fg:w="17"/><text x="15.9906%" y="2383.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="15.7406%" y="2357" width="0.0724%" height="15" fill="rgb(208,206,34)" fg:x="3694" fg:w="17"/><text x="15.9906%" y="2367.50"></text></g><g><title>[libm.so.6] (13 samples, 0.06%)</title><rect x="15.7576%" y="2341" width="0.0554%" height="15" fill="rgb(244,184,38)" fg:x="3698" fg:w="13"/><text x="16.0076%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="15.8130%" y="2389" width="0.0426%" height="15" fill="rgb(244,151,47)" fg:x="3711" fg:w="10"/><text x="16.0630%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="15.8130%" y="2373" width="0.0426%" height="15" fill="rgb(236,134,42)" fg:x="3711" fg:w="10"/><text x="16.0630%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (34 samples, 0.14%)</title><rect x="15.7406%" y="2405" width="0.1449%" height="15" fill="rgb(233,93,22)" fg:x="3694" fg:w="34"/><text x="15.9906%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (7 samples, 0.03%)</title><rect x="15.8556%" y="2389" width="0.0298%" height="15" fill="rgb(211,202,10)" fg:x="3721" fg:w="7"/><text x="16.1056%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (7 samples, 0.03%)</title><rect x="15.8556%" y="2373" width="0.0298%" height="15" fill="rgb(240,63,8)" fg:x="3721" fg:w="7"/><text x="16.1056%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (35 samples, 0.15%)</title><rect x="15.7406%" y="2565" width="0.1491%" height="15" fill="rgb(214,9,4)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (35 samples, 0.15%)</title><rect x="15.7406%" y="2549" width="0.1491%" height="15" fill="rgb(243,66,45)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (35 samples, 0.15%)</title><rect x="15.7406%" y="2533" width="0.1491%" height="15" fill="rgb(220,50,42)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (35 samples, 0.15%)</title><rect x="15.7406%" y="2517" width="0.1491%" height="15" fill="rgb(220,134,27)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (35 samples, 0.15%)</title><rect x="15.7406%" y="2501" width="0.1491%" height="15" fill="rgb(246,151,50)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (35 samples, 0.15%)</title><rect x="15.7406%" y="2485" width="0.1491%" height="15" fill="rgb(238,216,27)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (35 samples, 0.15%)</title><rect x="15.7406%" y="2469" width="0.1491%" height="15" fill="rgb(250,92,11)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (35 samples, 0.15%)</title><rect x="15.7406%" y="2453" width="0.1491%" height="15" fill="rgb(248,183,6)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (35 samples, 0.15%)</title><rect x="15.7406%" y="2437" width="0.1491%" height="15" fill="rgb(211,204,50)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (35 samples, 0.15%)</title><rect x="15.7406%" y="2421" width="0.1491%" height="15" fill="rgb(252,55,47)" fg:x="3694" fg:w="35"/><text x="15.9906%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (37 samples, 0.16%)</title><rect x="15.7406%" y="2581" width="0.1577%" height="15" fill="rgb(240,198,32)" fg:x="3694" fg:w="37"/><text x="15.9906%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (10 samples, 0.04%)</title><rect x="15.8982%" y="2277" width="0.0426%" height="15" fill="rgb(224,203,19)" fg:x="3731" fg:w="10"/><text x="16.1482%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (10 samples, 0.04%)</title><rect x="15.8982%" y="2261" width="0.0426%" height="15" fill="rgb(205,27,16)" fg:x="3731" fg:w="10"/><text x="16.1482%" y="2271.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="15.9025%" y="2245" width="0.0384%" height="15" fill="rgb(224,226,17)" fg:x="3732" fg:w="9"/><text x="16.1525%" y="2255.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="15.9068%" y="2229" width="0.0341%" height="15" fill="rgb(205,216,54)" fg:x="3733" fg:w="8"/><text x="16.1568%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="15.9409%" y="2277" width="0.0170%" height="15" fill="rgb(248,168,46)" fg:x="3741" fg:w="4"/><text x="16.1909%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="15.9409%" y="2261" width="0.0170%" height="15" fill="rgb(226,111,45)" fg:x="3741" fg:w="4"/><text x="16.1909%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (16 samples, 0.07%)</title><rect x="15.8982%" y="2293" width="0.0682%" height="15" fill="rgb(231,15,9)" fg:x="3731" fg:w="16"/><text x="16.1482%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (18 samples, 0.08%)</title><rect x="15.8982%" y="2469" width="0.0767%" height="15" fill="rgb(243,168,3)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (18 samples, 0.08%)</title><rect x="15.8982%" y="2453" width="0.0767%" height="15" fill="rgb(221,220,54)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (18 samples, 0.08%)</title><rect x="15.8982%" y="2437" width="0.0767%" height="15" fill="rgb(232,174,38)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (18 samples, 0.08%)</title><rect x="15.8982%" y="2421" width="0.0767%" height="15" fill="rgb(205,14,38)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (18 samples, 0.08%)</title><rect x="15.8982%" y="2405" width="0.0767%" height="15" fill="rgb(234,89,19)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (18 samples, 0.08%)</title><rect x="15.8982%" y="2389" width="0.0767%" height="15" fill="rgb(216,68,51)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (18 samples, 0.08%)</title><rect x="15.8982%" y="2373" width="0.0767%" height="15" fill="rgb(213,49,2)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (18 samples, 0.08%)</title><rect x="15.8982%" y="2357" width="0.0767%" height="15" fill="rgb(242,146,30)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (18 samples, 0.08%)</title><rect x="15.8982%" y="2341" width="0.0767%" height="15" fill="rgb(224,188,11)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (18 samples, 0.08%)</title><rect x="15.8982%" y="2325" width="0.0767%" height="15" fill="rgb(213,159,11)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (18 samples, 0.08%)</title><rect x="15.8982%" y="2309" width="0.0767%" height="15" fill="rgb(229,13,31)" fg:x="3731" fg:w="18"/><text x="16.1482%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="15.9749%" y="2357" width="0.0170%" height="15" fill="rgb(209,103,11)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="15.9749%" y="2341" width="0.0170%" height="15" fill="rgb(206,3,4)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="15.9749%" y="2325" width="0.0170%" height="15" fill="rgb(252,10,49)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="15.9749%" y="2309" width="0.0170%" height="15" fill="rgb(217,160,32)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="15.9749%" y="2293" width="0.0170%" height="15" fill="rgb(249,196,0)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="15.9749%" y="2277" width="0.0170%" height="15" fill="rgb(213,17,48)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="15.9749%" y="2261" width="0.0170%" height="15" fill="rgb(206,42,46)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="15.9749%" y="2245" width="0.0170%" height="15" fill="rgb(212,105,24)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="15.9749%" y="2229" width="0.0170%" height="15" fill="rgb(243,216,30)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="15.9749%" y="2213" width="0.0170%" height="15" fill="rgb(207,121,3)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="15.9749%" y="2197" width="0.0170%" height="15" fill="rgb(249,78,0)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="15.9749%" y="2181" width="0.0170%" height="15" fill="rgb(244,151,32)" fg:x="3749" fg:w="4"/><text x="16.2249%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="15.9749%" y="2421" width="0.0298%" height="15" fill="rgb(228,63,25)" fg:x="3749" fg:w="7"/><text x="16.2249%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="15.9749%" y="2405" width="0.0298%" height="15" fill="rgb(231,158,23)" fg:x="3749" fg:w="7"/><text x="16.2249%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="15.9749%" y="2389" width="0.0298%" height="15" fill="rgb(248,107,23)" fg:x="3749" fg:w="7"/><text x="16.2249%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="15.9749%" y="2373" width="0.0298%" height="15" fill="rgb(215,168,21)" fg:x="3749" fg:w="7"/><text x="16.2249%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="15.9920%" y="2357" width="0.0128%" height="15" fill="rgb(227,83,22)" fg:x="3753" fg:w="3"/><text x="16.2420%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="15.9920%" y="2341" width="0.0128%" height="15" fill="rgb(217,118,43)" fg:x="3753" fg:w="3"/><text x="16.2420%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="15.9920%" y="2325" width="0.0128%" height="15" fill="rgb(229,220,41)" fg:x="3753" fg:w="3"/><text x="16.2420%" y="2335.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="16.0048%" y="2421" width="0.0170%" height="15" fill="rgb(254,146,46)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="16.0048%" y="2405" width="0.0170%" height="15" fill="rgb(233,208,31)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="16.0048%" y="2389" width="0.0170%" height="15" fill="rgb(222,162,7)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="16.0048%" y="2373" width="0.0170%" height="15" fill="rgb(230,117,45)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="16.0048%" y="2357" width="0.0170%" height="15" fill="rgb(239,163,6)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="16.0048%" y="2341" width="0.0170%" height="15" fill="rgb(246,130,17)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="16.0048%" y="2325" width="0.0170%" height="15" fill="rgb(216,84,5)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="16.0048%" y="2309" width="0.0170%" height="15" fill="rgb(230,200,21)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2319.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="16.0048%" y="2293" width="0.0170%" height="15" fill="rgb(224,2,8)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="16.0048%" y="2277" width="0.0170%" height="15" fill="rgb(238,178,10)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="16.0048%" y="2261" width="0.0170%" height="15" fill="rgb(242,153,24)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="16.0048%" y="2245" width="0.0170%" height="15" fill="rgb(242,32,48)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="16.0048%" y="2229" width="0.0170%" height="15" fill="rgb(227,36,0)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="16.0048%" y="2213" width="0.0170%" height="15" fill="rgb(251,33,35)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.0048%" y="2197" width="0.0170%" height="15" fill="rgb(232,168,51)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="16.0048%" y="2181" width="0.0170%" height="15" fill="rgb(228,56,10)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.0048%" y="2165" width="0.0170%" height="15" fill="rgb(231,10,26)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="16.0048%" y="2149" width="0.0170%" height="15" fill="rgb(226,202,12)" fg:x="3756" fg:w="4"/><text x="16.2548%" y="2159.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="16.0261%" y="2101" width="0.0128%" height="15" fill="rgb(251,49,21)" fg:x="3761" fg:w="3"/><text x="16.2761%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="16.0261%" y="2085" width="0.0128%" height="15" fill="rgb(206,228,28)" fg:x="3761" fg:w="3"/><text x="16.2761%" y="2095.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="16.0261%" y="2069" width="0.0128%" height="15" fill="rgb(205,198,31)" fg:x="3761" fg:w="3"/><text x="16.2761%" y="2079.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="16.0261%" y="2053" width="0.0128%" height="15" fill="rgb(213,69,1)" fg:x="3761" fg:w="3"/><text x="16.2761%" y="2063.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="16.0261%" y="2117" width="0.0213%" height="15" fill="rgb(209,177,9)" fg:x="3761" fg:w="5"/><text x="16.2761%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="16.0218%" y="2293" width="0.0341%" height="15" fill="rgb(227,119,30)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="16.0218%" y="2277" width="0.0341%" height="15" fill="rgb(234,106,41)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="16.0218%" y="2261" width="0.0341%" height="15" fill="rgb(244,103,47)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="16.0218%" y="2245" width="0.0341%" height="15" fill="rgb(212,211,25)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="16.0218%" y="2229" width="0.0341%" height="15" fill="rgb(208,63,53)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="16.0218%" y="2213" width="0.0341%" height="15" fill="rgb(213,176,21)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="16.0218%" y="2197" width="0.0341%" height="15" fill="rgb(243,124,12)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="16.0218%" y="2181" width="0.0341%" height="15" fill="rgb(239,2,35)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="16.0218%" y="2165" width="0.0341%" height="15" fill="rgb(253,169,22)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="16.0218%" y="2149" width="0.0341%" height="15" fill="rgb(254,51,12)" fg:x="3760" fg:w="8"/><text x="16.2718%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="16.0261%" y="2133" width="0.0298%" height="15" fill="rgb(244,17,47)" fg:x="3761" fg:w="7"/><text x="16.2761%" y="2143.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (41 samples, 0.17%)</title><rect x="15.8982%" y="2533" width="0.1747%" height="15" fill="rgb(251,45,46)" fg:x="3731" fg:w="41"/><text x="16.1482%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (41 samples, 0.17%)</title><rect x="15.8982%" y="2517" width="0.1747%" height="15" fill="rgb(223,87,43)" fg:x="3731" fg:w="41"/><text x="16.1482%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (41 samples, 0.17%)</title><rect x="15.8982%" y="2501" width="0.1747%" height="15" fill="rgb(230,132,31)" fg:x="3731" fg:w="41"/><text x="16.1482%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.17%)</title><rect x="15.8982%" y="2485" width="0.1747%" height="15" fill="rgb(206,99,1)" fg:x="3731" fg:w="41"/><text x="16.1482%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="15.9749%" y="2469" width="0.0980%" height="15" fill="rgb(227,110,25)" fg:x="3749" fg:w="23"/><text x="16.2249%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="15.9749%" y="2453" width="0.0980%" height="15" fill="rgb(217,182,7)" fg:x="3749" fg:w="23"/><text x="16.2249%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="15.9749%" y="2437" width="0.0980%" height="15" fill="rgb(250,176,4)" fg:x="3749" fg:w="23"/><text x="16.2249%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="16.0218%" y="2421" width="0.0511%" height="15" fill="rgb(244,98,30)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="16.0218%" y="2405" width="0.0511%" height="15" fill="rgb(228,150,42)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2415.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="16.0218%" y="2389" width="0.0511%" height="15" fill="rgb(231,91,46)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="16.0218%" y="2373" width="0.0511%" height="15" fill="rgb(252,161,32)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="16.0218%" y="2357" width="0.0511%" height="15" fill="rgb(236,69,41)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="16.0218%" y="2341" width="0.0511%" height="15" fill="rgb(212,160,3)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="16.0218%" y="2325" width="0.0511%" height="15" fill="rgb(216,5,50)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="16.0218%" y="2309" width="0.0511%" height="15" fill="rgb(241,138,25)" fg:x="3760" fg:w="12"/><text x="16.2718%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="16.0559%" y="2293" width="0.0170%" height="15" fill="rgb(239,42,18)" fg:x="3768" fg:w="4"/><text x="16.3059%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.0559%" y="2277" width="0.0170%" height="15" fill="rgb(239,40,7)" fg:x="3768" fg:w="4"/><text x="16.3059%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="16.0559%" y="2261" width="0.0170%" height="15" fill="rgb(239,11,31)" fg:x="3768" fg:w="4"/><text x="16.3059%" y="2271.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (9 samples, 0.04%)</title><rect x="16.0772%" y="2213" width="0.0384%" height="15" fill="rgb(224,77,40)" fg:x="3773" fg:w="9"/><text x="16.3272%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (9 samples, 0.04%)</title><rect x="16.0772%" y="2197" width="0.0384%" height="15" fill="rgb(226,15,5)" fg:x="3773" fg:w="9"/><text x="16.3272%" y="2207.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="16.0815%" y="2181" width="0.0341%" height="15" fill="rgb(254,188,5)" fg:x="3774" fg:w="8"/><text x="16.3315%" y="2191.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="16.0900%" y="2165" width="0.0256%" height="15" fill="rgb(241,148,52)" fg:x="3776" fg:w="6"/><text x="16.3400%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="16.1156%" y="2213" width="0.0170%" height="15" fill="rgb(251,48,36)" fg:x="3782" fg:w="4"/><text x="16.3656%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="16.1156%" y="2197" width="0.0170%" height="15" fill="rgb(243,83,13)" fg:x="3782" fg:w="4"/><text x="16.3656%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (16 samples, 0.07%)</title><rect x="16.0772%" y="2229" width="0.0682%" height="15" fill="rgb(210,105,0)" fg:x="3773" fg:w="16"/><text x="16.3272%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="16.1326%" y="2213" width="0.0128%" height="15" fill="rgb(239,60,36)" fg:x="3786" fg:w="3"/><text x="16.3826%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="16.1326%" y="2197" width="0.0128%" height="15" fill="rgb(210,20,0)" fg:x="3786" fg:w="3"/><text x="16.3826%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (19 samples, 0.08%)</title><rect x="16.0730%" y="2405" width="0.0810%" height="15" fill="rgb(244,26,53)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (19 samples, 0.08%)</title><rect x="16.0730%" y="2389" width="0.0810%" height="15" fill="rgb(240,100,49)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (19 samples, 0.08%)</title><rect x="16.0730%" y="2373" width="0.0810%" height="15" fill="rgb(250,46,45)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (19 samples, 0.08%)</title><rect x="16.0730%" y="2357" width="0.0810%" height="15" fill="rgb(220,181,29)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (19 samples, 0.08%)</title><rect x="16.0730%" y="2341" width="0.0810%" height="15" fill="rgb(213,137,33)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (19 samples, 0.08%)</title><rect x="16.0730%" y="2325" width="0.0810%" height="15" fill="rgb(213,27,48)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (19 samples, 0.08%)</title><rect x="16.0730%" y="2309" width="0.0810%" height="15" fill="rgb(245,180,39)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (19 samples, 0.08%)</title><rect x="16.0730%" y="2293" width="0.0810%" height="15" fill="rgb(212,158,42)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (19 samples, 0.08%)</title><rect x="16.0730%" y="2277" width="0.0810%" height="15" fill="rgb(228,193,18)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (19 samples, 0.08%)</title><rect x="16.0730%" y="2261" width="0.0810%" height="15" fill="rgb(245,172,29)" fg:x="3772" fg:w="19"/><text x="16.3230%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (18 samples, 0.08%)</title><rect x="16.0772%" y="2245" width="0.0767%" height="15" fill="rgb(207,98,24)" fg:x="3773" fg:w="18"/><text x="16.3272%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="16.1539%" y="2117" width="0.0128%" height="15" fill="rgb(249,92,26)" fg:x="3791" fg:w="3"/><text x="16.4039%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="16.1539%" y="2293" width="0.0170%" height="15" fill="rgb(217,176,26)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="16.1539%" y="2277" width="0.0170%" height="15" fill="rgb(221,8,39)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="16.1539%" y="2261" width="0.0170%" height="15" fill="rgb(208,90,18)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="16.1539%" y="2245" width="0.0170%" height="15" fill="rgb(207,202,30)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="16.1539%" y="2229" width="0.0170%" height="15" fill="rgb(231,124,22)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="16.1539%" y="2213" width="0.0170%" height="15" fill="rgb(206,15,5)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="16.1539%" y="2197" width="0.0170%" height="15" fill="rgb(239,16,52)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="16.1539%" y="2181" width="0.0170%" height="15" fill="rgb(245,213,29)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="16.1539%" y="2165" width="0.0170%" height="15" fill="rgb(213,203,36)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="16.1539%" y="2149" width="0.0170%" height="15" fill="rgb(209,55,18)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="16.1539%" y="2133" width="0.0170%" height="15" fill="rgb(207,133,49)" fg:x="3791" fg:w="4"/><text x="16.4039%" y="2143.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="16.1710%" y="2245" width="0.0128%" height="15" fill="rgb(240,33,46)" fg:x="3795" fg:w="3"/><text x="16.4210%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="16.1710%" y="2229" width="0.0128%" height="15" fill="rgb(212,35,2)" fg:x="3795" fg:w="3"/><text x="16.4210%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="16.1710%" y="2213" width="0.0128%" height="15" fill="rgb(231,119,28)" fg:x="3795" fg:w="3"/><text x="16.4210%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.1710%" y="2197" width="0.0128%" height="15" fill="rgb(252,178,7)" fg:x="3795" fg:w="3"/><text x="16.4210%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="16.1710%" y="2181" width="0.0128%" height="15" fill="rgb(251,91,4)" fg:x="3795" fg:w="3"/><text x="16.4210%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="16.1539%" y="2357" width="0.0341%" height="15" fill="rgb(233,122,19)" fg:x="3791" fg:w="8"/><text x="16.4039%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="16.1539%" y="2341" width="0.0341%" height="15" fill="rgb(231,208,46)" fg:x="3791" fg:w="8"/><text x="16.4039%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="16.1539%" y="2325" width="0.0341%" height="15" fill="rgb(243,15,41)" fg:x="3791" fg:w="8"/><text x="16.4039%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="16.1539%" y="2309" width="0.0341%" height="15" fill="rgb(210,32,43)" fg:x="3791" fg:w="8"/><text x="16.4039%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="16.1710%" y="2293" width="0.0170%" height="15" fill="rgb(222,177,15)" fg:x="3795" fg:w="4"/><text x="16.4210%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.1710%" y="2277" width="0.0170%" height="15" fill="rgb(244,121,34)" fg:x="3795" fg:w="4"/><text x="16.4210%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="16.1710%" y="2261" width="0.0170%" height="15" fill="rgb(234,138,4)" fg:x="3795" fg:w="4"/><text x="16.4210%" y="2271.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="16.1880%" y="2037" width="0.0170%" height="15" fill="rgb(240,97,48)" fg:x="3799" fg:w="4"/><text x="16.4380%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="16.1880%" y="2021" width="0.0170%" height="15" fill="rgb(237,65,54)" fg:x="3799" fg:w="4"/><text x="16.4380%" y="2031.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="16.1923%" y="2005" width="0.0128%" height="15" fill="rgb(214,25,24)" fg:x="3800" fg:w="3"/><text x="16.4423%" y="2015.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="16.1923%" y="1989" width="0.0128%" height="15" fill="rgb(213,5,3)" fg:x="3800" fg:w="3"/><text x="16.4423%" y="1999.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="16.1880%" y="2053" width="0.0256%" height="15" fill="rgb(219,81,29)" fg:x="3799" fg:w="6"/><text x="16.4380%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="16.1880%" y="2229" width="0.0298%" height="15" fill="rgb(220,43,48)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="16.1880%" y="2213" width="0.0298%" height="15" fill="rgb(239,157,2)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="16.1880%" y="2197" width="0.0298%" height="15" fill="rgb(213,104,43)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="16.1880%" y="2181" width="0.0298%" height="15" fill="rgb(237,84,9)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="16.1880%" y="2165" width="0.0298%" height="15" fill="rgb(252,6,33)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="16.1880%" y="2149" width="0.0298%" height="15" fill="rgb(251,172,22)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="16.1880%" y="2133" width="0.0298%" height="15" fill="rgb(244,91,53)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="16.1880%" y="2117" width="0.0298%" height="15" fill="rgb(219,29,30)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="16.1880%" y="2101" width="0.0298%" height="15" fill="rgb(213,3,15)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="16.1880%" y="2085" width="0.0298%" height="15" fill="rgb(208,25,28)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="16.1880%" y="2069" width="0.0298%" height="15" fill="rgb(252,144,25)" fg:x="3799" fg:w="7"/><text x="16.4380%" y="2079.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="16.2178%" y="2181" width="0.0128%" height="15" fill="rgb(226,220,25)" fg:x="3806" fg:w="3"/><text x="16.4678%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2178%" y="2165" width="0.0128%" height="15" fill="rgb(212,131,28)" fg:x="3806" fg:w="3"/><text x="16.4678%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2178%" y="2149" width="0.0128%" height="15" fill="rgb(219,143,52)" fg:x="3806" fg:w="3"/><text x="16.4678%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.2178%" y="2133" width="0.0128%" height="15" fill="rgb(215,56,7)" fg:x="3806" fg:w="3"/><text x="16.4678%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="16.2178%" y="2117" width="0.0128%" height="15" fill="rgb(239,59,51)" fg:x="3806" fg:w="3"/><text x="16.4678%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (117 samples, 0.50%)</title><rect x="15.7406%" y="2645" width="0.4986%" height="15" fill="rgb(209,215,4)" fg:x="3694" fg:w="117"/><text x="15.9906%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (117 samples, 0.50%)</title><rect x="15.7406%" y="2629" width="0.4986%" height="15" fill="rgb(221,118,39)" fg:x="3694" fg:w="117"/><text x="15.9906%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (117 samples, 0.50%)</title><rect x="15.7406%" y="2613" width="0.4986%" height="15" fill="rgb(236,6,44)" fg:x="3694" fg:w="117"/><text x="15.9906%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (117 samples, 0.50%)</title><rect x="15.7406%" y="2597" width="0.4986%" height="15" fill="rgb(216,122,9)" fg:x="3694" fg:w="117"/><text x="15.9906%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (80 samples, 0.34%)</title><rect x="15.8982%" y="2581" width="0.3409%" height="15" fill="rgb(244,134,42)" fg:x="3731" fg:w="80"/><text x="16.1482%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (80 samples, 0.34%)</title><rect x="15.8982%" y="2565" width="0.3409%" height="15" fill="rgb(209,189,35)" fg:x="3731" fg:w="80"/><text x="16.1482%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (80 samples, 0.34%)</title><rect x="15.8982%" y="2549" width="0.3409%" height="15" fill="rgb(250,47,36)" fg:x="3731" fg:w="80"/><text x="16.1482%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (39 samples, 0.17%)</title><rect x="16.0730%" y="2533" width="0.1662%" height="15" fill="rgb(252,112,4)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (39 samples, 0.17%)</title><rect x="16.0730%" y="2517" width="0.1662%" height="15" fill="rgb(221,79,51)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2527.50"></text></g><g><title>std::panicking::try (39 samples, 0.17%)</title><rect x="16.0730%" y="2501" width="0.1662%" height="15" fill="rgb(232,65,53)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (39 samples, 0.17%)</title><rect x="16.0730%" y="2485" width="0.1662%" height="15" fill="rgb(211,37,7)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (39 samples, 0.17%)</title><rect x="16.0730%" y="2469" width="0.1662%" height="15" fill="rgb(234,221,18)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (39 samples, 0.17%)</title><rect x="16.0730%" y="2453" width="0.1662%" height="15" fill="rgb(220,158,26)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (39 samples, 0.17%)</title><rect x="16.0730%" y="2437" width="0.1662%" height="15" fill="rgb(220,70,6)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.17%)</title><rect x="16.0730%" y="2421" width="0.1662%" height="15" fill="rgb(250,39,48)" fg:x="3772" fg:w="39"/><text x="16.3230%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="16.1539%" y="2405" width="0.0852%" height="15" fill="rgb(206,40,27)" fg:x="3791" fg:w="20"/><text x="16.4039%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="16.1539%" y="2389" width="0.0852%" height="15" fill="rgb(247,80,36)" fg:x="3791" fg:w="20"/><text x="16.4039%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="16.1539%" y="2373" width="0.0852%" height="15" fill="rgb(222,9,20)" fg:x="3791" fg:w="20"/><text x="16.4039%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="16.1880%" y="2357" width="0.0511%" height="15" fill="rgb(217,26,45)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="16.1880%" y="2341" width="0.0511%" height="15" fill="rgb(221,67,14)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2351.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="16.1880%" y="2325" width="0.0511%" height="15" fill="rgb(248,100,24)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="16.1880%" y="2309" width="0.0511%" height="15" fill="rgb(230,187,16)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="16.1880%" y="2293" width="0.0511%" height="15" fill="rgb(205,108,13)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="16.1880%" y="2277" width="0.0511%" height="15" fill="rgb(235,71,51)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="16.1880%" y="2261" width="0.0511%" height="15" fill="rgb(251,172,48)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="16.1880%" y="2245" width="0.0511%" height="15" fill="rgb(240,96,49)" fg:x="3799" fg:w="12"/><text x="16.4380%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="16.2178%" y="2229" width="0.0213%" height="15" fill="rgb(235,46,36)" fg:x="3806" fg:w="5"/><text x="16.4678%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="16.2178%" y="2213" width="0.0213%" height="15" fill="rgb(244,3,49)" fg:x="3806" fg:w="5"/><text x="16.4678%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="16.2178%" y="2197" width="0.0213%" height="15" fill="rgb(206,78,54)" fg:x="3806" fg:w="5"/><text x="16.4678%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="16.2391%" y="2357" width="0.0298%" height="15" fill="rgb(208,85,42)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="16.2391%" y="2341" width="0.0298%" height="15" fill="rgb(219,196,21)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="16.2391%" y="2325" width="0.0298%" height="15" fill="rgb(238,19,9)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="16.2391%" y="2309" width="0.0298%" height="15" fill="rgb(206,86,13)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="16.2391%" y="2293" width="0.0298%" height="15" fill="rgb(214,123,40)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="16.2391%" y="2277" width="0.0298%" height="15" fill="rgb(243,53,5)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="16.2391%" y="2261" width="0.0298%" height="15" fill="rgb(254,186,31)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="16.2391%" y="2245" width="0.0298%" height="15" fill="rgb(221,216,25)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2255.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="16.2391%" y="2229" width="0.0298%" height="15" fill="rgb(248,107,42)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="16.2391%" y="2213" width="0.0298%" height="15" fill="rgb(221,85,43)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="16.2391%" y="2197" width="0.0298%" height="15" fill="rgb(225,34,24)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="16.2391%" y="2181" width="0.0298%" height="15" fill="rgb(211,119,1)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="16.2391%" y="2165" width="0.0298%" height="15" fill="rgb(254,216,46)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="16.2391%" y="2149" width="0.0298%" height="15" fill="rgb(238,11,38)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.2391%" y="2133" width="0.0298%" height="15" fill="rgb(233,50,15)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="16.2391%" y="2117" width="0.0298%" height="15" fill="rgb(217,181,29)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="16.2391%" y="2101" width="0.0298%" height="15" fill="rgb(214,56,3)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="16.2391%" y="2085" width="0.0298%" height="15" fill="rgb(230,69,45)" fg:x="3811" fg:w="7"/><text x="16.4891%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="16.2477%" y="2069" width="0.0213%" height="15" fill="rgb(224,201,50)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="16.2477%" y="2053" width="0.0213%" height="15" fill="rgb(217,228,18)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="2063.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="16.2477%" y="2037" width="0.0213%" height="15" fill="rgb(239,33,44)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="16.2477%" y="2021" width="0.0213%" height="15" fill="rgb(248,210,23)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="16.2477%" y="2005" width="0.0213%" height="15" fill="rgb(253,135,8)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="16.2477%" y="1989" width="0.0213%" height="15" fill="rgb(217,98,21)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="16.2477%" y="1973" width="0.0213%" height="15" fill="rgb(253,130,21)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="16.2477%" y="1957" width="0.0213%" height="15" fill="rgb(207,81,54)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="16.2477%" y="1941" width="0.0213%" height="15" fill="rgb(232,48,33)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="16.2477%" y="1925" width="0.0213%" height="15" fill="rgb(211,9,35)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="16.2477%" y="1909" width="0.0213%" height="15" fill="rgb(205,152,21)" fg:x="3813" fg:w="5"/><text x="16.4977%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="16.2562%" y="1893" width="0.0128%" height="15" fill="rgb(249,21,27)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="16.2562%" y="1877" width="0.0128%" height="15" fill="rgb(252,29,24)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="16.2562%" y="1861" width="0.0128%" height="15" fill="rgb(230,130,50)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="16.2562%" y="1845" width="0.0128%" height="15" fill="rgb(239,144,14)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="16.2562%" y="1829" width="0.0128%" height="15" fill="rgb(227,111,50)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2562%" y="1813" width="0.0128%" height="15" fill="rgb(254,84,20)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2562%" y="1797" width="0.0128%" height="15" fill="rgb(232,90,48)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.2562%" y="1781" width="0.0128%" height="15" fill="rgb(253,63,47)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="16.2562%" y="1765" width="0.0128%" height="15" fill="rgb(251,146,35)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="16.2562%" y="1749" width="0.0128%" height="15" fill="rgb(229,192,35)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="16.2562%" y="1733" width="0.0128%" height="15" fill="rgb(225,68,9)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="16.2562%" y="1717" width="0.0128%" height="15" fill="rgb(214,97,34)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="16.2562%" y="1701" width="0.0128%" height="15" fill="rgb(253,31,26)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="16.2562%" y="1685" width="0.0128%" height="15" fill="rgb(225,151,47)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="16.2562%" y="1669" width="0.0128%" height="15" fill="rgb(206,185,9)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2562%" y="1653" width="0.0128%" height="15" fill="rgb(249,65,17)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="16.2562%" y="1637" width="0.0128%" height="15" fill="rgb(220,110,10)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="16.2562%" y="1621" width="0.0128%" height="15" fill="rgb(222,198,49)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2562%" y="1605" width="0.0128%" height="15" fill="rgb(239,81,13)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="16.2562%" y="1589" width="0.0128%" height="15" fill="rgb(216,128,11)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="16.2562%" y="1573" width="0.0128%" height="15" fill="rgb(247,156,8)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1583.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="16.2562%" y="1557" width="0.0128%" height="15" fill="rgb(219,173,1)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1567.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="16.2562%" y="1541" width="0.0128%" height="15" fill="rgb(227,42,24)" fg:x="3815" fg:w="3"/><text x="16.5062%" y="1551.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="16.2690%" y="2181" width="0.0128%" height="15" fill="rgb(253,219,50)" fg:x="3818" fg:w="3"/><text x="16.5190%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2690%" y="2165" width="0.0128%" height="15" fill="rgb(215,191,54)" fg:x="3818" fg:w="3"/><text x="16.5190%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2690%" y="2149" width="0.0128%" height="15" fill="rgb(238,83,12)" fg:x="3818" fg:w="3"/><text x="16.5190%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.2690%" y="2133" width="0.0128%" height="15" fill="rgb(205,124,9)" fg:x="3818" fg:w="3"/><text x="16.5190%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="16.2690%" y="2117" width="0.0128%" height="15" fill="rgb(253,174,7)" fg:x="3818" fg:w="3"/><text x="16.5190%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="16.2690%" y="2101" width="0.0128%" height="15" fill="rgb(206,134,49)" fg:x="3818" fg:w="3"/><text x="16.5190%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2690%" y="2085" width="0.0128%" height="15" fill="rgb(221,89,20)" fg:x="3818" fg:w="3"/><text x="16.5190%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (13 samples, 0.06%)</title><rect x="16.2391%" y="2645" width="0.0554%" height="15" fill="rgb(240,205,13)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="16.2391%" y="2629" width="0.0554%" height="15" fill="rgb(237,174,32)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (13 samples, 0.06%)</title><rect x="16.2391%" y="2613" width="0.0554%" height="15" fill="rgb(226,12,15)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (13 samples, 0.06%)</title><rect x="16.2391%" y="2597" width="0.0554%" height="15" fill="rgb(245,160,52)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (13 samples, 0.06%)</title><rect x="16.2391%" y="2581" width="0.0554%" height="15" fill="rgb(253,80,21)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (13 samples, 0.06%)</title><rect x="16.2391%" y="2565" width="0.0554%" height="15" fill="rgb(231,225,22)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="16.2391%" y="2549" width="0.0554%" height="15" fill="rgb(253,185,12)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="16.2391%" y="2533" width="0.0554%" height="15" fill="rgb(234,197,21)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2543.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="16.2391%" y="2517" width="0.0554%" height="15" fill="rgb(210,47,30)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="16.2391%" y="2501" width="0.0554%" height="15" fill="rgb(246,139,27)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="16.2391%" y="2485" width="0.0554%" height="15" fill="rgb(226,130,16)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (13 samples, 0.06%)</title><rect x="16.2391%" y="2469" width="0.0554%" height="15" fill="rgb(237,208,20)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="16.2391%" y="2453" width="0.0554%" height="15" fill="rgb(245,186,28)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="16.2391%" y="2437" width="0.0554%" height="15" fill="rgb(238,105,39)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="16.2391%" y="2421" width="0.0554%" height="15" fill="rgb(253,228,11)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="16.2391%" y="2405" width="0.0554%" height="15" fill="rgb(224,136,38)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="16.2391%" y="2389" width="0.0554%" height="15" fill="rgb(211,3,25)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="16.2391%" y="2373" width="0.0554%" height="15" fill="rgb(238,66,34)" fg:x="3811" fg:w="13"/><text x="16.4891%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="16.2690%" y="2357" width="0.0256%" height="15" fill="rgb(223,188,11)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="16.2690%" y="2341" width="0.0256%" height="15" fill="rgb(221,10,35)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2351.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="16.2690%" y="2325" width="0.0256%" height="15" fill="rgb(223,18,44)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="16.2690%" y="2309" width="0.0256%" height="15" fill="rgb(220,97,41)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="16.2690%" y="2293" width="0.0256%" height="15" fill="rgb(206,95,45)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="16.2690%" y="2277" width="0.0256%" height="15" fill="rgb(209,96,13)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="16.2690%" y="2261" width="0.0256%" height="15" fill="rgb(237,39,34)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="16.2690%" y="2245" width="0.0256%" height="15" fill="rgb(213,49,47)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="16.2690%" y="2229" width="0.0256%" height="15" fill="rgb(205,107,27)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="16.2690%" y="2213" width="0.0256%" height="15" fill="rgb(212,142,9)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="16.2690%" y="2197" width="0.0256%" height="15" fill="rgb(226,182,0)" fg:x="3818" fg:w="6"/><text x="16.5190%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="16.2817%" y="2181" width="0.0128%" height="15" fill="rgb(231,3,53)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="16.2817%" y="2165" width="0.0128%" height="15" fill="rgb(246,111,28)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2175.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="16.2817%" y="2149" width="0.0128%" height="15" fill="rgb(254,183,7)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="16.2817%" y="2133" width="0.0128%" height="15" fill="rgb(247,177,28)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="16.2817%" y="2117" width="0.0128%" height="15" fill="rgb(244,43,1)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2817%" y="2101" width="0.0128%" height="15" fill="rgb(207,2,35)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2817%" y="2085" width="0.0128%" height="15" fill="rgb(213,83,22)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.2817%" y="2069" width="0.0128%" height="15" fill="rgb(246,212,13)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="16.2817%" y="2053" width="0.0128%" height="15" fill="rgb(213,127,46)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="16.2817%" y="2037" width="0.0128%" height="15" fill="rgb(219,215,39)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="16.2817%" y="2021" width="0.0128%" height="15" fill="rgb(227,99,17)" fg:x="3821" fg:w="3"/><text x="16.5317%" y="2031.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (15 samples, 0.06%)</title><rect x="16.2945%" y="2325" width="0.0639%" height="15" fill="rgb(208,155,18)" fg:x="3824" fg:w="15"/><text x="16.5445%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::exp (15 samples, 0.06%)</title><rect x="16.2945%" y="2309" width="0.0639%" height="15" fill="rgb(223,204,38)" fg:x="3824" fg:w="15"/><text x="16.5445%" y="2319.50"></text></g><g><title>exp (15 samples, 0.06%)</title><rect x="16.2945%" y="2293" width="0.0639%" height="15" fill="rgb(212,114,21)" fg:x="3824" fg:w="15"/><text x="16.5445%" y="2303.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="16.3073%" y="2277" width="0.0511%" height="15" fill="rgb(250,74,13)" fg:x="3827" fg:w="12"/><text x="16.5573%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (9 samples, 0.04%)</title><rect x="16.3584%" y="2325" width="0.0384%" height="15" fill="rgb(234,7,1)" fg:x="3839" fg:w="9"/><text x="16.6084%" y="2335.50"></text></g><g><title>core::f64::<impl f64>::recip (9 samples, 0.04%)</title><rect x="16.3584%" y="2309" width="0.0384%" height="15" fill="rgb(207,138,31)" fg:x="3839" fg:w="9"/><text x="16.6084%" y="2319.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (36 samples, 0.15%)</title><rect x="16.2945%" y="2501" width="0.1534%" height="15" fill="rgb(215,186,42)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (36 samples, 0.15%)</title><rect x="16.2945%" y="2485" width="0.1534%" height="15" fill="rgb(229,205,49)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (36 samples, 0.15%)</title><rect x="16.2945%" y="2469" width="0.1534%" height="15" fill="rgb(216,156,32)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (36 samples, 0.15%)</title><rect x="16.2945%" y="2453" width="0.1534%" height="15" fill="rgb(238,7,21)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (36 samples, 0.15%)</title><rect x="16.2945%" y="2437" width="0.1534%" height="15" fill="rgb(249,190,22)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (36 samples, 0.15%)</title><rect x="16.2945%" y="2421" width="0.1534%" height="15" fill="rgb(253,51,31)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (36 samples, 0.15%)</title><rect x="16.2945%" y="2405" width="0.1534%" height="15" fill="rgb(237,90,54)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (36 samples, 0.15%)</title><rect x="16.2945%" y="2389" width="0.1534%" height="15" fill="rgb(250,214,33)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (36 samples, 0.15%)</title><rect x="16.2945%" y="2373" width="0.1534%" height="15" fill="rgb(237,10,49)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (36 samples, 0.15%)</title><rect x="16.2945%" y="2357" width="0.1534%" height="15" fill="rgb(241,56,36)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2367.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (36 samples, 0.15%)</title><rect x="16.2945%" y="2341" width="0.1534%" height="15" fill="rgb(227,164,12)" fg:x="3824" fg:w="36"/><text x="16.5445%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (12 samples, 0.05%)</title><rect x="16.3968%" y="2325" width="0.0511%" height="15" fill="rgb(249,149,35)" fg:x="3848" fg:w="12"/><text x="16.6468%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::sqrt (12 samples, 0.05%)</title><rect x="16.3968%" y="2309" width="0.0511%" height="15" fill="rgb(238,227,50)" fg:x="3848" fg:w="12"/><text x="16.6468%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (39 samples, 0.17%)</title><rect x="16.2945%" y="2517" width="0.1662%" height="15" fill="rgb(235,102,45)" fg:x="3824" fg:w="39"/><text x="16.5445%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="16.4479%" y="2501" width="0.0128%" height="15" fill="rgb(211,10,38)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2511.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="16.4479%" y="2485" width="0.0128%" height="15" fill="rgb(219,77,48)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="16.4479%" y="2469" width="0.0128%" height="15" fill="rgb(246,6,15)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="16.4479%" y="2453" width="0.0128%" height="15" fill="rgb(207,220,2)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2463.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="16.4479%" y="2437" width="0.0128%" height="15" fill="rgb(242,48,14)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2447.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="16.4479%" y="2421" width="0.0128%" height="15" fill="rgb(218,19,27)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="16.4479%" y="2405" width="0.0128%" height="15" fill="rgb(228,0,35)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2415.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="16.4479%" y="2389" width="0.0128%" height="15" fill="rgb(244,142,54)" fg:x="3860" fg:w="3"/><text x="16.6979%" y="2399.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="16.4650%" y="2213" width="0.0469%" height="15" fill="rgb(243,217,40)" fg:x="3864" fg:w="11"/><text x="16.7150%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="16.4650%" y="2197" width="0.0469%" height="15" fill="rgb(207,114,16)" fg:x="3864" fg:w="11"/><text x="16.7150%" y="2207.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="16.4692%" y="2181" width="0.0426%" height="15" fill="rgb(224,33,25)" fg:x="3865" fg:w="10"/><text x="16.7192%" y="2191.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="16.4820%" y="2165" width="0.0298%" height="15" fill="rgb(230,93,54)" fg:x="3868" fg:w="7"/><text x="16.7320%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="16.5118%" y="2213" width="0.0128%" height="15" fill="rgb(224,56,24)" fg:x="3875" fg:w="3"/><text x="16.7618%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="16.5118%" y="2197" width="0.0128%" height="15" fill="rgb(235,189,50)" fg:x="3875" fg:w="3"/><text x="16.7618%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (22 samples, 0.09%)</title><rect x="16.4607%" y="2229" width="0.0937%" height="15" fill="rgb(242,173,8)" fg:x="3863" fg:w="22"/><text x="16.7107%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (7 samples, 0.03%)</title><rect x="16.5246%" y="2213" width="0.0298%" height="15" fill="rgb(209,206,10)" fg:x="3878" fg:w="7"/><text x="16.7746%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (7 samples, 0.03%)</title><rect x="16.5246%" y="2197" width="0.0298%" height="15" fill="rgb(213,182,44)" fg:x="3878" fg:w="7"/><text x="16.7746%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (23 samples, 0.10%)</title><rect x="16.4607%" y="2405" width="0.0980%" height="15" fill="rgb(243,51,15)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (23 samples, 0.10%)</title><rect x="16.4607%" y="2389" width="0.0980%" height="15" fill="rgb(241,13,14)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (23 samples, 0.10%)</title><rect x="16.4607%" y="2373" width="0.0980%" height="15" fill="rgb(239,147,24)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (23 samples, 0.10%)</title><rect x="16.4607%" y="2357" width="0.0980%" height="15" fill="rgb(223,129,16)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (23 samples, 0.10%)</title><rect x="16.4607%" y="2341" width="0.0980%" height="15" fill="rgb(209,169,13)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (23 samples, 0.10%)</title><rect x="16.4607%" y="2325" width="0.0980%" height="15" fill="rgb(235,159,41)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (23 samples, 0.10%)</title><rect x="16.4607%" y="2309" width="0.0980%" height="15" fill="rgb(223,219,48)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (23 samples, 0.10%)</title><rect x="16.4607%" y="2293" width="0.0980%" height="15" fill="rgb(236,80,13)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (23 samples, 0.10%)</title><rect x="16.4607%" y="2277" width="0.0980%" height="15" fill="rgb(213,5,6)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (23 samples, 0.10%)</title><rect x="16.4607%" y="2261" width="0.0980%" height="15" fill="rgb(205,59,21)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (23 samples, 0.10%)</title><rect x="16.4607%" y="2245" width="0.0980%" height="15" fill="rgb(247,137,35)" fg:x="3863" fg:w="23"/><text x="16.7107%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="16.5630%" y="2101" width="0.0170%" height="15" fill="rgb(242,208,28)" fg:x="3887" fg:w="4"/><text x="16.8130%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="16.5630%" y="2085" width="0.0170%" height="15" fill="rgb(245,62,25)" fg:x="3887" fg:w="4"/><text x="16.8130%" y="2095.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="16.5630%" y="2069" width="0.0170%" height="15" fill="rgb(233,99,54)" fg:x="3887" fg:w="4"/><text x="16.8130%" y="2079.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="16.5672%" y="2053" width="0.0128%" height="15" fill="rgb(213,10,37)" fg:x="3888" fg:w="3"/><text x="16.8172%" y="2063.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="16.5630%" y="2117" width="0.0213%" height="15" fill="rgb(235,143,30)" fg:x="3887" fg:w="5"/><text x="16.8130%" y="2127.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="16.5843%" y="2117" width="0.0128%" height="15" fill="rgb(250,146,33)" fg:x="3892" fg:w="3"/><text x="16.8343%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="16.5630%" y="2293" width="0.0384%" height="15" fill="rgb(226,198,42)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="16.5630%" y="2277" width="0.0384%" height="15" fill="rgb(222,55,6)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="16.5630%" y="2261" width="0.0384%" height="15" fill="rgb(213,224,31)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="16.5630%" y="2245" width="0.0384%" height="15" fill="rgb(226,103,35)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="16.5630%" y="2229" width="0.0384%" height="15" fill="rgb(205,66,45)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="16.5630%" y="2213" width="0.0384%" height="15" fill="rgb(226,51,42)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="16.5630%" y="2197" width="0.0384%" height="15" fill="rgb(206,69,1)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="16.5630%" y="2181" width="0.0384%" height="15" fill="rgb(213,228,47)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="16.5630%" y="2165" width="0.0384%" height="15" fill="rgb(224,204,18)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="16.5630%" y="2149" width="0.0384%" height="15" fill="rgb(253,187,47)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="16.5630%" y="2133" width="0.0384%" height="15" fill="rgb(232,61,2)" fg:x="3887" fg:w="9"/><text x="16.8130%" y="2143.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="16.5587%" y="2357" width="0.0554%" height="15" fill="rgb(213,132,35)" fg:x="3886" fg:w="13"/><text x="16.8087%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="16.5587%" y="2341" width="0.0554%" height="15" fill="rgb(247,33,21)" fg:x="3886" fg:w="13"/><text x="16.8087%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="16.5587%" y="2325" width="0.0554%" height="15" fill="rgb(233,71,46)" fg:x="3886" fg:w="13"/><text x="16.8087%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="16.5587%" y="2309" width="0.0554%" height="15" fill="rgb(222,173,43)" fg:x="3886" fg:w="13"/><text x="16.8087%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="16.6013%" y="2293" width="0.0128%" height="15" fill="rgb(249,218,47)" fg:x="3896" fg:w="3"/><text x="16.8513%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="16.6013%" y="2277" width="0.0128%" height="15" fill="rgb(254,185,48)" fg:x="3896" fg:w="3"/><text x="16.8513%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="16.6013%" y="2261" width="0.0128%" height="15" fill="rgb(252,165,50)" fg:x="3896" fg:w="3"/><text x="16.8513%" y="2271.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="16.6141%" y="2037" width="0.0170%" height="15" fill="rgb(206,219,6)" fg:x="3899" fg:w="4"/><text x="16.8641%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="16.6141%" y="2021" width="0.0170%" height="15" fill="rgb(212,212,45)" fg:x="3899" fg:w="4"/><text x="16.8641%" y="2031.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="16.6184%" y="2005" width="0.0128%" height="15" fill="rgb(221,31,9)" fg:x="3900" fg:w="3"/><text x="16.8684%" y="2015.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="16.6184%" y="1989" width="0.0128%" height="15" fill="rgb(234,198,39)" fg:x="3900" fg:w="3"/><text x="16.8684%" y="1999.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="16.6312%" y="2037" width="0.0128%" height="15" fill="rgb(252,145,46)" fg:x="3903" fg:w="3"/><text x="16.8812%" y="2047.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="16.6312%" y="2021" width="0.0128%" height="15" fill="rgb(237,149,0)" fg:x="3903" fg:w="3"/><text x="16.8812%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="16.6141%" y="2053" width="0.0384%" height="15" fill="rgb(229,65,5)" fg:x="3899" fg:w="9"/><text x="16.8641%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="16.6141%" y="2229" width="0.0426%" height="15" fill="rgb(235,60,36)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="16.6141%" y="2213" width="0.0426%" height="15" fill="rgb(222,47,18)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="16.6141%" y="2197" width="0.0426%" height="15" fill="rgb(235,114,22)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="16.6141%" y="2181" width="0.0426%" height="15" fill="rgb(209,167,11)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="16.6141%" y="2165" width="0.0426%" height="15" fill="rgb(251,73,18)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="16.6141%" y="2149" width="0.0426%" height="15" fill="rgb(217,60,17)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="16.6141%" y="2133" width="0.0426%" height="15" fill="rgb(224,36,37)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="16.6141%" y="2117" width="0.0426%" height="15" fill="rgb(211,21,32)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="16.6141%" y="2101" width="0.0426%" height="15" fill="rgb(231,55,48)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="16.6141%" y="2085" width="0.0426%" height="15" fill="rgb(227,42,18)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="16.6141%" y="2069" width="0.0426%" height="15" fill="rgb(217,2,27)" fg:x="3899" fg:w="10"/><text x="16.8641%" y="2079.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (49 samples, 0.21%)</title><rect x="16.4607%" y="2469" width="0.2088%" height="15" fill="rgb(251,138,23)" fg:x="3863" fg:w="49"/><text x="16.7107%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (49 samples, 0.21%)</title><rect x="16.4607%" y="2453" width="0.2088%" height="15" fill="rgb(226,184,11)" fg:x="3863" fg:w="49"/><text x="16.7107%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (49 samples, 0.21%)</title><rect x="16.4607%" y="2437" width="0.2088%" height="15" fill="rgb(242,142,12)" fg:x="3863" fg:w="49"/><text x="16.7107%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.21%)</title><rect x="16.4607%" y="2421" width="0.2088%" height="15" fill="rgb(234,187,18)" fg:x="3863" fg:w="49"/><text x="16.7107%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="16.5587%" y="2405" width="0.1108%" height="15" fill="rgb(237,44,42)" fg:x="3886" fg:w="26"/><text x="16.8087%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="16.5587%" y="2389" width="0.1108%" height="15" fill="rgb(211,90,23)" fg:x="3886" fg:w="26"/><text x="16.8087%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="16.5587%" y="2373" width="0.1108%" height="15" fill="rgb(207,81,18)" fg:x="3886" fg:w="26"/><text x="16.8087%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="16.6141%" y="2357" width="0.0554%" height="15" fill="rgb(222,107,28)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="16.6141%" y="2341" width="0.0554%" height="15" fill="rgb(237,83,52)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2351.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="16.6141%" y="2325" width="0.0554%" height="15" fill="rgb(208,67,11)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="16.6141%" y="2309" width="0.0554%" height="15" fill="rgb(249,157,49)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="16.6141%" y="2293" width="0.0554%" height="15" fill="rgb(243,200,1)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="16.6141%" y="2277" width="0.0554%" height="15" fill="rgb(225,162,37)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="16.6141%" y="2261" width="0.0554%" height="15" fill="rgb(242,92,13)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="16.6141%" y="2245" width="0.0554%" height="15" fill="rgb(220,43,36)" fg:x="3899" fg:w="13"/><text x="16.8641%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="16.6567%" y="2229" width="0.0128%" height="15" fill="rgb(213,165,48)" fg:x="3909" fg:w="3"/><text x="16.9067%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="16.6567%" y="2213" width="0.0128%" height="15" fill="rgb(227,200,9)" fg:x="3909" fg:w="3"/><text x="16.9067%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="16.6567%" y="2197" width="0.0128%" height="15" fill="rgb(221,222,28)" fg:x="3909" fg:w="3"/><text x="16.9067%" y="2207.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="16.6738%" y="2149" width="0.0469%" height="15" fill="rgb(223,142,26)" fg:x="3913" fg:w="11"/><text x="16.9238%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="16.6738%" y="2133" width="0.0469%" height="15" fill="rgb(243,46,9)" fg:x="3913" fg:w="11"/><text x="16.9238%" y="2143.50"></text></g><g><title>exp (11 samples, 0.05%)</title><rect x="16.6738%" y="2117" width="0.0469%" height="15" fill="rgb(250,56,11)" fg:x="3913" fg:w="11"/><text x="16.9238%" y="2127.50"></text></g><g><title>[libm.so.6] (10 samples, 0.04%)</title><rect x="16.6780%" y="2101" width="0.0426%" height="15" fill="rgb(229,113,5)" fg:x="3914" fg:w="10"/><text x="16.9280%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="16.7206%" y="2149" width="0.0170%" height="15" fill="rgb(244,108,28)" fg:x="3924" fg:w="4"/><text x="16.9706%" y="2159.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="16.7206%" y="2133" width="0.0170%" height="15" fill="rgb(242,119,50)" fg:x="3924" fg:w="4"/><text x="16.9706%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (19 samples, 0.08%)</title><rect x="16.6695%" y="2165" width="0.0810%" height="15" fill="rgb(224,164,23)" fg:x="3912" fg:w="19"/><text x="16.9195%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="16.7377%" y="2149" width="0.0128%" height="15" fill="rgb(214,227,44)" fg:x="3928" fg:w="3"/><text x="16.9877%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="16.7377%" y="2133" width="0.0128%" height="15" fill="rgb(238,202,4)" fg:x="3928" fg:w="3"/><text x="16.9877%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (21 samples, 0.09%)</title><rect x="16.6695%" y="2341" width="0.0895%" height="15" fill="rgb(213,190,30)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2351.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (21 samples, 0.09%)</title><rect x="16.6695%" y="2325" width="0.0895%" height="15" fill="rgb(239,15,2)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (21 samples, 0.09%)</title><rect x="16.6695%" y="2309" width="0.0895%" height="15" fill="rgb(249,229,4)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (21 samples, 0.09%)</title><rect x="16.6695%" y="2293" width="0.0895%" height="15" fill="rgb(239,75,44)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (21 samples, 0.09%)</title><rect x="16.6695%" y="2277" width="0.0895%" height="15" fill="rgb(251,206,23)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (21 samples, 0.09%)</title><rect x="16.6695%" y="2261" width="0.0895%" height="15" fill="rgb(215,208,0)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (21 samples, 0.09%)</title><rect x="16.6695%" y="2245" width="0.0895%" height="15" fill="rgb(230,75,50)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (21 samples, 0.09%)</title><rect x="16.6695%" y="2229" width="0.0895%" height="15" fill="rgb(246,180,39)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (21 samples, 0.09%)</title><rect x="16.6695%" y="2213" width="0.0895%" height="15" fill="rgb(249,175,24)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (21 samples, 0.09%)</title><rect x="16.6695%" y="2197" width="0.0895%" height="15" fill="rgb(247,176,22)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (21 samples, 0.09%)</title><rect x="16.6695%" y="2181" width="0.0895%" height="15" fill="rgb(241,100,24)" fg:x="3912" fg:w="21"/><text x="16.9195%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="16.7590%" y="2037" width="0.0128%" height="15" fill="rgb(233,4,35)" fg:x="3933" fg:w="3"/><text x="17.0090%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="16.7590%" y="2021" width="0.0128%" height="15" fill="rgb(211,164,46)" fg:x="3933" fg:w="3"/><text x="17.0090%" y="2031.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="16.7590%" y="2005" width="0.0128%" height="15" fill="rgb(242,99,53)" fg:x="3933" fg:w="3"/><text x="17.0090%" y="2015.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="16.7590%" y="1989" width="0.0128%" height="15" fill="rgb(243,45,33)" fg:x="3933" fg:w="3"/><text x="17.0090%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="16.7590%" y="2229" width="0.0256%" height="15" fill="rgb(217,55,21)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="16.7590%" y="2213" width="0.0256%" height="15" fill="rgb(245,145,46)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="16.7590%" y="2197" width="0.0256%" height="15" fill="rgb(215,112,45)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="16.7590%" y="2181" width="0.0256%" height="15" fill="rgb(228,104,16)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="16.7590%" y="2165" width="0.0256%" height="15" fill="rgb(239,186,38)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="16.7590%" y="2149" width="0.0256%" height="15" fill="rgb(228,38,35)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="16.7590%" y="2133" width="0.0256%" height="15" fill="rgb(251,42,40)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="16.7590%" y="2117" width="0.0256%" height="15" fill="rgb(210,51,19)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="16.7590%" y="2101" width="0.0256%" height="15" fill="rgb(236,94,42)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="16.7590%" y="2085" width="0.0256%" height="15" fill="rgb(239,167,16)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="16.7590%" y="2069" width="0.0256%" height="15" fill="rgb(252,175,31)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="16.7590%" y="2053" width="0.0256%" height="15" fill="rgb(206,166,30)" fg:x="3933" fg:w="6"/><text x="17.0090%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="16.7718%" y="2037" width="0.0128%" height="15" fill="rgb(206,209,37)" fg:x="3936" fg:w="3"/><text x="17.0218%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="16.7718%" y="2021" width="0.0128%" height="15" fill="rgb(226,91,4)" fg:x="3936" fg:w="3"/><text x="17.0218%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="16.7590%" y="2293" width="0.0384%" height="15" fill="rgb(222,167,0)" fg:x="3933" fg:w="9"/><text x="17.0090%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="16.7590%" y="2277" width="0.0384%" height="15" fill="rgb(211,70,14)" fg:x="3933" fg:w="9"/><text x="17.0090%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="16.7590%" y="2261" width="0.0384%" height="15" fill="rgb(214,84,42)" fg:x="3933" fg:w="9"/><text x="17.0090%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="16.7590%" y="2245" width="0.0384%" height="15" fill="rgb(235,157,37)" fg:x="3933" fg:w="9"/><text x="17.0090%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="16.7846%" y="2229" width="0.0128%" height="15" fill="rgb(225,13,6)" fg:x="3939" fg:w="3"/><text x="17.0346%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="16.7846%" y="2213" width="0.0128%" height="15" fill="rgb(205,202,1)" fg:x="3939" fg:w="3"/><text x="17.0346%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="16.7846%" y="2197" width="0.0128%" height="15" fill="rgb(232,195,26)" fg:x="3939" fg:w="3"/><text x="17.0346%" y="2207.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="16.7973%" y="1973" width="0.0170%" height="15" fill="rgb(208,102,26)" fg:x="3942" fg:w="4"/><text x="17.0473%" y="1983.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="16.7973%" y="1957" width="0.0170%" height="15" fill="rgb(215,41,39)" fg:x="3942" fg:w="4"/><text x="17.0473%" y="1967.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="16.7973%" y="1941" width="0.0170%" height="15" fill="rgb(247,139,11)" fg:x="3942" fg:w="4"/><text x="17.0473%" y="1951.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="16.8016%" y="1925" width="0.0128%" height="15" fill="rgb(243,99,6)" fg:x="3943" fg:w="3"/><text x="17.0516%" y="1935.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="16.7973%" y="1989" width="0.0298%" height="15" fill="rgb(230,168,48)" fg:x="3942" fg:w="7"/><text x="17.0473%" y="1999.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="16.8144%" y="1973" width="0.0128%" height="15" fill="rgb(238,227,13)" fg:x="3946" fg:w="3"/><text x="17.0644%" y="1983.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="16.8144%" y="1957" width="0.0128%" height="15" fill="rgb(209,109,13)" fg:x="3946" fg:w="3"/><text x="17.0644%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3253" width="5.2881%" height="15" fill="rgb(228,195,1)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3263.50">rayon_..</text></g><g><title>rayon_core::job::JobRef::execute (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3237" width="5.2881%" height="15" fill="rgb(230,218,0)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3247.50">rayon_..</text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3221" width="5.2881%" height="15" fill="rgb(206,1,45)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3231.50"><rayon..</text></g><g><title>rayon_core::job::JobResult<T>::call (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3205" width="5.2881%" height="15" fill="rgb(209,124,26)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3215.50">rayon_..</text></g><g><title>rayon_core::unwind::halt_unwinding (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3189" width="5.2881%" height="15" fill="rgb(220,59,8)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3199.50">rayon_..</text></g><g><title>std::panic::catch_unwind (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3173" width="5.2881%" height="15" fill="rgb(251,41,37)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3183.50">std::p..</text></g><g><title>std::panicking::try (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3157" width="5.2881%" height="15" fill="rgb(239,152,21)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3167.50">std::p..</text></g><g><title>std::panicking::try::do_call (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3141" width="5.2881%" height="15" fill="rgb(226,32,1)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3151.50">std::p..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3125" width="5.2881%" height="15" fill="rgb(230,154,36)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3135.50"><core:..</text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3109" width="5.2881%" height="15" fill="rgb(208,228,43)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3119.50">rayon_..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3093" width="5.2881%" height="15" fill="rgb(214,203,3)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3103.50">rayon_..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3077" width="5.2881%" height="15" fill="rgb(207,149,29)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3087.50">rayon:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,241 samples, 5.29%)</title><rect x="11.5434%" y="3061" width="5.2881%" height="15" fill="rgb(250,105,7)" fg:x="2709" fg:w="1241"/><text x="11.7934%" y="3071.50">rayon:..</text></g><g><title>rayon_core::join::join_context (1,197 samples, 5.10%)</title><rect x="11.7309%" y="3045" width="5.1006%" height="15" fill="rgb(232,222,16)" fg:x="2753" fg:w="1197"/><text x="11.9809%" y="3055.50">rayon_..</text></g><g><title>rayon_core::registry::in_worker (1,197 samples, 5.10%)</title><rect x="11.7309%" y="3029" width="5.1006%" height="15" fill="rgb(209,32,24)" fg:x="2753" fg:w="1197"/><text x="11.9809%" y="3039.50">rayon_..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,197 samples, 5.10%)</title><rect x="11.7309%" y="3013" width="5.1006%" height="15" fill="rgb(225,13,6)" fg:x="2753" fg:w="1197"/><text x="11.9809%" y="3023.50">rayon_..</text></g><g><title>rayon_core::unwind::halt_unwinding (701 samples, 2.99%)</title><rect x="13.8444%" y="2997" width="2.9870%" height="15" fill="rgb(245,226,26)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="3007.50">ray..</text></g><g><title>std::panic::catch_unwind (701 samples, 2.99%)</title><rect x="13.8444%" y="2981" width="2.9870%" height="15" fill="rgb(229,178,27)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="2991.50">std..</text></g><g><title>std::panicking::try (701 samples, 2.99%)</title><rect x="13.8444%" y="2965" width="2.9870%" height="15" fill="rgb(205,227,28)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="2975.50">std..</text></g><g><title>std::panicking::try::do_call (701 samples, 2.99%)</title><rect x="13.8444%" y="2949" width="2.9870%" height="15" fill="rgb(210,191,45)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="2959.50">std..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (701 samples, 2.99%)</title><rect x="13.8444%" y="2933" width="2.9870%" height="15" fill="rgb(206,124,16)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="2943.50"><co..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (701 samples, 2.99%)</title><rect x="13.8444%" y="2917" width="2.9870%" height="15" fill="rgb(210,162,0)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="2927.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (701 samples, 2.99%)</title><rect x="13.8444%" y="2901" width="2.9870%" height="15" fill="rgb(211,54,38)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="2911.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (701 samples, 2.99%)</title><rect x="13.8444%" y="2885" width="2.9870%" height="15" fill="rgb(248,192,3)" fg:x="3249" fg:w="701"/><text x="14.0944%" y="2895.50">ray..</text></g><g><title>rayon_core::join::join_context (661 samples, 2.82%)</title><rect x="14.0148%" y="2869" width="2.8166%" height="15" fill="rgb(233,187,18)" fg:x="3289" fg:w="661"/><text x="14.2648%" y="2879.50">ra..</text></g><g><title>rayon_core::registry::in_worker (661 samples, 2.82%)</title><rect x="14.0148%" y="2853" width="2.8166%" height="15" fill="rgb(237,208,14)" fg:x="3289" fg:w="661"/><text x="14.2648%" y="2863.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (661 samples, 2.82%)</title><rect x="14.0148%" y="2837" width="2.8166%" height="15" fill="rgb(212,77,1)" fg:x="3289" fg:w="661"/><text x="14.2648%" y="2847.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (289 samples, 1.23%)</title><rect x="15.6000%" y="2821" width="1.2315%" height="15" fill="rgb(210,163,22)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (289 samples, 1.23%)</title><rect x="15.6000%" y="2805" width="1.2315%" height="15" fill="rgb(250,58,28)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2815.50"></text></g><g><title>std::panicking::try (289 samples, 1.23%)</title><rect x="15.6000%" y="2789" width="1.2315%" height="15" fill="rgb(254,28,41)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (289 samples, 1.23%)</title><rect x="15.6000%" y="2773" width="1.2315%" height="15" fill="rgb(237,162,36)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (289 samples, 1.23%)</title><rect x="15.6000%" y="2757" width="1.2315%" height="15" fill="rgb(232,56,6)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (289 samples, 1.23%)</title><rect x="15.6000%" y="2741" width="1.2315%" height="15" fill="rgb(216,127,42)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (289 samples, 1.23%)</title><rect x="15.6000%" y="2725" width="1.2315%" height="15" fill="rgb(241,69,15)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (289 samples, 1.23%)</title><rect x="15.6000%" y="2709" width="1.2315%" height="15" fill="rgb(227,180,19)" fg:x="3661" fg:w="289"/><text x="15.8500%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (256 samples, 1.09%)</title><rect x="15.7406%" y="2693" width="1.0908%" height="15" fill="rgb(231,188,29)" fg:x="3694" fg:w="256"/><text x="15.9906%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (256 samples, 1.09%)</title><rect x="15.7406%" y="2677" width="1.0908%" height="15" fill="rgb(224,176,27)" fg:x="3694" fg:w="256"/><text x="15.9906%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (256 samples, 1.09%)</title><rect x="15.7406%" y="2661" width="1.0908%" height="15" fill="rgb(249,214,19)" fg:x="3694" fg:w="256"/><text x="15.9906%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (126 samples, 0.54%)</title><rect x="16.2945%" y="2645" width="0.5369%" height="15" fill="rgb(240,0,4)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (126 samples, 0.54%)</title><rect x="16.2945%" y="2629" width="0.5369%" height="15" fill="rgb(233,28,41)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2639.50"></text></g><g><title>std::panicking::try (126 samples, 0.54%)</title><rect x="16.2945%" y="2613" width="0.5369%" height="15" fill="rgb(220,90,51)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (126 samples, 0.54%)</title><rect x="16.2945%" y="2597" width="0.5369%" height="15" fill="rgb(250,52,22)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (126 samples, 0.54%)</title><rect x="16.2945%" y="2581" width="0.5369%" height="15" fill="rgb(231,152,36)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (126 samples, 0.54%)</title><rect x="16.2945%" y="2565" width="0.5369%" height="15" fill="rgb(250,218,4)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (126 samples, 0.54%)</title><rect x="16.2945%" y="2549" width="0.5369%" height="15" fill="rgb(210,38,21)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (126 samples, 0.54%)</title><rect x="16.2945%" y="2533" width="0.5369%" height="15" fill="rgb(230,75,13)" fg:x="3824" fg:w="126"/><text x="16.5445%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (87 samples, 0.37%)</title><rect x="16.4607%" y="2517" width="0.3707%" height="15" fill="rgb(250,68,53)" fg:x="3863" fg:w="87"/><text x="16.7107%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (87 samples, 0.37%)</title><rect x="16.4607%" y="2501" width="0.3707%" height="15" fill="rgb(250,210,16)" fg:x="3863" fg:w="87"/><text x="16.7107%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (87 samples, 0.37%)</title><rect x="16.4607%" y="2485" width="0.3707%" height="15" fill="rgb(240,132,5)" fg:x="3863" fg:w="87"/><text x="16.7107%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (38 samples, 0.16%)</title><rect x="16.6695%" y="2469" width="0.1619%" height="15" fill="rgb(222,148,48)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (38 samples, 0.16%)</title><rect x="16.6695%" y="2453" width="0.1619%" height="15" fill="rgb(247,181,24)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2463.50"></text></g><g><title>std::panicking::try (38 samples, 0.16%)</title><rect x="16.6695%" y="2437" width="0.1619%" height="15" fill="rgb(239,5,31)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (38 samples, 0.16%)</title><rect x="16.6695%" y="2421" width="0.1619%" height="15" fill="rgb(241,152,38)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (38 samples, 0.16%)</title><rect x="16.6695%" y="2405" width="0.1619%" height="15" fill="rgb(246,200,37)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (38 samples, 0.16%)</title><rect x="16.6695%" y="2389" width="0.1619%" height="15" fill="rgb(243,210,26)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (38 samples, 0.16%)</title><rect x="16.6695%" y="2373" width="0.1619%" height="15" fill="rgb(222,22,22)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.16%)</title><rect x="16.6695%" y="2357" width="0.1619%" height="15" fill="rgb(208,129,28)" fg:x="3912" fg:w="38"/><text x="16.9195%" y="2367.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="16.7590%" y="2341" width="0.0724%" height="15" fill="rgb(254,169,28)" fg:x="3933" fg:w="17"/><text x="17.0090%" y="2351.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="16.7590%" y="2325" width="0.0724%" height="15" fill="rgb(225,45,17)" fg:x="3933" fg:w="17"/><text x="17.0090%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="16.7590%" y="2309" width="0.0724%" height="15" fill="rgb(232,199,2)" fg:x="3933" fg:w="17"/><text x="17.0090%" y="2319.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="16.7973%" y="2293" width="0.0341%" height="15" fill="rgb(235,33,40)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2303.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="16.7973%" y="2277" width="0.0341%" height="15" fill="rgb(237,89,50)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2287.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="16.7973%" y="2261" width="0.0341%" height="15" fill="rgb(238,126,5)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2271.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="16.7973%" y="2245" width="0.0341%" height="15" fill="rgb(247,214,42)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2255.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="16.7973%" y="2229" width="0.0341%" height="15" fill="rgb(238,60,45)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="16.7973%" y="2213" width="0.0341%" height="15" fill="rgb(225,69,44)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="16.7973%" y="2197" width="0.0341%" height="15" fill="rgb(241,13,44)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="16.7973%" y="2181" width="0.0341%" height="15" fill="rgb(227,121,22)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="16.7973%" y="2165" width="0.0341%" height="15" fill="rgb(231,160,23)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2175.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="16.7973%" y="2149" width="0.0341%" height="15" fill="rgb(250,179,43)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="16.7973%" y="2133" width="0.0341%" height="15" fill="rgb(233,54,46)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2143.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="16.7973%" y="2117" width="0.0341%" height="15" fill="rgb(247,120,42)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2127.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="16.7973%" y="2101" width="0.0341%" height="15" fill="rgb(221,219,12)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="16.7973%" y="2085" width="0.0341%" height="15" fill="rgb(211,126,8)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2095.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="16.7973%" y="2069" width="0.0341%" height="15" fill="rgb(218,154,33)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="16.7973%" y="2053" width="0.0341%" height="15" fill="rgb(212,199,16)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2063.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="16.7973%" y="2037" width="0.0341%" height="15" fill="rgb(236,215,46)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2047.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="16.7973%" y="2021" width="0.0341%" height="15" fill="rgb(232,32,22)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="16.7973%" y="2005" width="0.0341%" height="15" fill="rgb(234,79,15)" fg:x="3942" fg:w="8"/><text x="17.0473%" y="2015.50"></text></g><g><title>core::option::Option<T>::or_else (8 samples, 0.03%)</title><rect x="16.8314%" y="3237" width="0.0341%" height="15" fill="rgb(235,187,47)" fg:x="3950" fg:w="8"/><text x="17.0814%" y="3247.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work::_{{closure}} (8 samples, 0.03%)</title><rect x="16.8314%" y="3221" width="0.0341%" height="15" fill="rgb(244,69,37)" fg:x="3950" fg:w="8"/><text x="17.0814%" y="3231.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal (7 samples, 0.03%)</title><rect x="16.8357%" y="3205" width="0.0298%" height="15" fill="rgb(249,140,25)" fg:x="3951" fg:w="7"/><text x="17.0857%" y="3215.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map (7 samples, 0.03%)</title><rect x="16.8357%" y="3189" width="0.0298%" height="15" fill="rgb(213,69,8)" fg:x="3951" fg:w="7"/><text x="17.0857%" y="3199.50"></text></g><g><title><core::iter::adapters::filter::Filter<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="16.8357%" y="3173" width="0.0298%" height="15" fill="rgb(220,136,2)" fg:x="3951" fg:w="7"/><text x="17.0857%" y="3183.50"></text></g><g><title><core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="16.8357%" y="3157" width="0.0298%" height="15" fill="rgb(237,50,36)" fg:x="3951" fg:w="7"/><text x="17.0857%" y="3167.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="16.8357%" y="3141" width="0.0298%" height="15" fill="rgb(226,18,11)" fg:x="3951" fg:w="7"/><text x="17.0857%" y="3151.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut (4 samples, 0.02%)</title><rect x="16.8485%" y="3125" width="0.0170%" height="15" fill="rgb(243,156,2)" fg:x="3954" fg:w="4"/><text x="17.0985%" y="3135.50"></text></g><g><title>core::iter::adapters::filter::filter_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="16.8485%" y="3109" width="0.0170%" height="15" fill="rgb(218,8,34)" fg:x="3954" fg:w="4"/><text x="17.0985%" y="3119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map::check::_{{closure}} (4 samples, 0.02%)</title><rect x="16.8485%" y="3093" width="0.0170%" height="15" fill="rgb(250,94,35)" fg:x="3954" fg:w="4"/><text x="17.0985%" y="3103.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal::_{{closure}} (4 samples, 0.02%)</title><rect x="16.8485%" y="3077" width="0.0170%" height="15" fill="rgb(229,127,21)" fg:x="3954" fg:w="4"/><text x="17.0985%" y="3087.50"></text></g><g><title>crossbeam_deque::deque::Stealer<T>::steal (4 samples, 0.02%)</title><rect x="16.8485%" y="3061" width="0.0170%" height="15" fill="rgb(234,49,5)" fg:x="3954" fg:w="4"/><text x="17.0985%" y="3071.50"></text></g><g><title>crossbeam_epoch::default::pin (3 samples, 0.01%)</title><rect x="16.8527%" y="3045" width="0.0128%" height="15" fill="rgb(248,12,16)" fg:x="3955" fg:w="3"/><text x="17.1027%" y="3055.50"></text></g><g><title>crossbeam_epoch::default::with_handle (3 samples, 0.01%)</title><rect x="16.8527%" y="3029" width="0.0128%" height="15" fill="rgb(208,220,31)" fg:x="3955" fg:w="3"/><text x="17.1027%" y="3039.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (3 samples, 0.01%)</title><rect x="16.8527%" y="3013" width="0.0128%" height="15" fill="rgb(243,184,0)" fg:x="3955" fg:w="3"/><text x="17.1027%" y="3023.50"></text></g><g><title>crossbeam_epoch::default::with_handle::_{{closure}} (3 samples, 0.01%)</title><rect x="16.8527%" y="2997" width="0.0128%" height="15" fill="rgb(217,38,21)" fg:x="3955" fg:w="3"/><text x="17.1027%" y="3007.50"></text></g><g><title>crossbeam_epoch::default::pin::_{{closure}} (3 samples, 0.01%)</title><rect x="16.8527%" y="2981" width="0.0128%" height="15" fill="rgb(239,120,45)" fg:x="3955" fg:w="3"/><text x="17.1027%" y="2991.50"></text></g><g><title>crossbeam_epoch::collector::LocalHandle::pin (3 samples, 0.01%)</title><rect x="16.8527%" y="2965" width="0.0128%" height="15" fill="rgb(235,33,2)" fg:x="3955" fg:w="3"/><text x="17.1027%" y="2975.50"></text></g><g><title>crossbeam_epoch::internal::Local::pin (3 samples, 0.01%)</title><rect x="16.8527%" y="2949" width="0.0128%" height="15" fill="rgb(249,161,5)" fg:x="3955" fg:w="3"/><text x="17.1027%" y="2959.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work (10 samples, 0.04%)</title><rect x="16.8314%" y="3253" width="0.0426%" height="15" fill="rgb(250,165,48)" fg:x="3950" fg:w="10"/><text x="17.0814%" y="3263.50"></text></g><g><title>core::bool::<impl bool>::then (4 samples, 0.02%)</title><rect x="16.8783%" y="3157" width="0.0170%" height="15" fill="rgb(221,23,45)" fg:x="3961" fg:w="4"/><text x="17.1283%" y="3167.50"></text></g><g><title>std::sys::unix::futex::futex_wait (42 samples, 0.18%)</title><rect x="16.8783%" y="3173" width="0.1790%" height="15" fill="rgb(217,108,46)" fg:x="3961" fg:w="42"/><text x="17.1283%" y="3183.50"></text></g><g><title>syscall (38 samples, 0.16%)</title><rect x="16.8953%" y="3157" width="0.1619%" height="15" fill="rgb(254,26,35)" fg:x="3965" fg:w="38"/><text x="17.1453%" y="3167.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (45 samples, 0.19%)</title><rect x="16.8740%" y="3253" width="0.1918%" height="15" fill="rgb(218,223,28)" fg:x="3960" fg:w="45"/><text x="17.1240%" y="3263.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (45 samples, 0.19%)</title><rect x="16.8740%" y="3237" width="0.1918%" height="15" fill="rgb(242,27,47)" fg:x="3960" fg:w="45"/><text x="17.1240%" y="3247.50"></text></g><g><title>std::sync::condvar::Condvar::wait (45 samples, 0.19%)</title><rect x="16.8740%" y="3221" width="0.1918%" height="15" fill="rgb(218,39,35)" fg:x="3960" fg:w="45"/><text x="17.1240%" y="3231.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (45 samples, 0.19%)</title><rect x="16.8740%" y="3205" width="0.1918%" height="15" fill="rgb(232,127,16)" fg:x="3960" fg:w="45"/><text x="17.1240%" y="3215.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (45 samples, 0.19%)</title><rect x="16.8740%" y="3189" width="0.1918%" height="15" fill="rgb(231,219,51)" fg:x="3960" fg:w="45"/><text x="17.1240%" y="3199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (1,297 samples, 5.53%)</title><rect x="11.5434%" y="3285" width="5.5267%" height="15" fill="rgb(217,220,46)" fg:x="2709" fg:w="1297"/><text x="11.7934%" y="3295.50">rayon_c..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (1,297 samples, 5.53%)</title><rect x="11.5434%" y="3269" width="5.5267%" height="15" fill="rgb(230,75,1)" fg:x="2709" fg:w="1297"/><text x="11.7934%" y="3279.50">rayon_c..</text></g><g><title><f64 as num_traits::float::Float>::exp (20 samples, 0.09%)</title><rect x="17.0743%" y="2965" width="0.0852%" height="15" fill="rgb(218,2,8)" fg:x="4007" fg:w="20"/><text x="17.3243%" y="2975.50"></text></g><g><title>std::f64::<impl f64>::exp (20 samples, 0.09%)</title><rect x="17.0743%" y="2949" width="0.0852%" height="15" fill="rgb(206,111,30)" fg:x="4007" fg:w="20"/><text x="17.3243%" y="2959.50"></text></g><g><title>exp (18 samples, 0.08%)</title><rect x="17.0828%" y="2933" width="0.0767%" height="15" fill="rgb(209,135,6)" fg:x="4009" fg:w="18"/><text x="17.3328%" y="2943.50"></text></g><g><title>[libm.so.6] (17 samples, 0.07%)</title><rect x="17.0871%" y="2917" width="0.0724%" height="15" fill="rgb(205,169,10)" fg:x="4010" fg:w="17"/><text x="17.3371%" y="2927.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (12 samples, 0.05%)</title><rect x="17.1595%" y="2965" width="0.0511%" height="15" fill="rgb(212,204,38)" fg:x="4027" fg:w="12"/><text x="17.4095%" y="2975.50"></text></g><g><title>core::f64::<impl f64>::recip (12 samples, 0.05%)</title><rect x="17.1595%" y="2949" width="0.0511%" height="15" fill="rgb(205,199,14)" fg:x="4027" fg:w="12"/><text x="17.4095%" y="2959.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (41 samples, 0.17%)</title><rect x="17.0743%" y="2981" width="0.1747%" height="15" fill="rgb(212,4,6)" fg:x="4007" fg:w="41"/><text x="17.3243%" y="2991.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (9 samples, 0.04%)</title><rect x="17.2107%" y="2965" width="0.0384%" height="15" fill="rgb(250,15,10)" fg:x="4039" fg:w="9"/><text x="17.4607%" y="2975.50"></text></g><g><title>std::f64::<impl f64>::sqrt (9 samples, 0.04%)</title><rect x="17.2107%" y="2949" width="0.0384%" height="15" fill="rgb(212,49,51)" fg:x="4039" fg:w="9"/><text x="17.4607%" y="2959.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (46 samples, 0.20%)</title><rect x="17.0743%" y="3141" width="0.1960%" height="15" fill="rgb(235,21,9)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (46 samples, 0.20%)</title><rect x="17.0743%" y="3125" width="0.1960%" height="15" fill="rgb(251,31,32)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3135.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (46 samples, 0.20%)</title><rect x="17.0743%" y="3109" width="0.1960%" height="15" fill="rgb(246,23,9)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3119.50"></text></g><g><title>core::option::Option<T>::map (46 samples, 0.20%)</title><rect x="17.0743%" y="3093" width="0.1960%" height="15" fill="rgb(225,216,14)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3103.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (46 samples, 0.20%)</title><rect x="17.0743%" y="3077" width="0.1960%" height="15" fill="rgb(215,200,26)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3087.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (46 samples, 0.20%)</title><rect x="17.0743%" y="3061" width="0.1960%" height="15" fill="rgb(237,130,47)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3071.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (46 samples, 0.20%)</title><rect x="17.0743%" y="3045" width="0.1960%" height="15" fill="rgb(247,74,14)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (46 samples, 0.20%)</title><rect x="17.0743%" y="3029" width="0.1960%" height="15" fill="rgb(254,97,46)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3039.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (46 samples, 0.20%)</title><rect x="17.0743%" y="3013" width="0.1960%" height="15" fill="rgb(234,191,1)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3023.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (46 samples, 0.20%)</title><rect x="17.0743%" y="2997" width="0.1960%" height="15" fill="rgb(215,165,14)" fg:x="4007" fg:w="46"/><text x="17.3243%" y="3007.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (5 samples, 0.02%)</title><rect x="17.2490%" y="2981" width="0.0213%" height="15" fill="rgb(230,182,6)" fg:x="4048" fg:w="5"/><text x="17.4990%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (52 samples, 0.22%)</title><rect x="17.0743%" y="3157" width="0.2216%" height="15" fill="rgb(210,127,39)" fg:x="4007" fg:w="52"/><text x="17.3243%" y="3167.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="17.2703%" y="3141" width="0.0256%" height="15" fill="rgb(223,212,51)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3151.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="17.2703%" y="3125" width="0.0256%" height="15" fill="rgb(226,176,43)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3135.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="17.2703%" y="3109" width="0.0256%" height="15" fill="rgb(222,155,4)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3119.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (6 samples, 0.03%)</title><rect x="17.2703%" y="3093" width="0.0256%" height="15" fill="rgb(215,149,7)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3103.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="17.2703%" y="3077" width="0.0256%" height="15" fill="rgb(252,199,23)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3087.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="17.2703%" y="3061" width="0.0256%" height="15" fill="rgb(245,52,29)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3071.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="17.2703%" y="3045" width="0.0256%" height="15" fill="rgb(221,228,19)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3055.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="17.2703%" y="3029" width="0.0256%" height="15" fill="rgb(253,101,6)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3039.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="17.2703%" y="3013" width="0.0256%" height="15" fill="rgb(211,130,8)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3023.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="17.2703%" y="2997" width="0.0256%" height="15" fill="rgb(238,37,53)" fg:x="4053" fg:w="6"/><text x="17.5203%" y="3007.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="17.2746%" y="2981" width="0.0213%" height="15" fill="rgb(235,145,5)" fg:x="4054" fg:w="5"/><text x="17.5246%" y="2991.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="17.2831%" y="2965" width="0.0128%" height="15" fill="rgb(244,12,43)" fg:x="4056" fg:w="3"/><text x="17.5331%" y="2975.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="17.2831%" y="2949" width="0.0128%" height="15" fill="rgb(246,195,24)" fg:x="4056" fg:w="3"/><text x="17.5331%" y="2959.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="17.2831%" y="2933" width="0.0128%" height="15" fill="rgb(235,163,6)" fg:x="4056" fg:w="3"/><text x="17.5331%" y="2943.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (34 samples, 0.14%)</title><rect x="17.2959%" y="2853" width="0.1449%" height="15" fill="rgb(236,218,17)" fg:x="4059" fg:w="34"/><text x="17.5459%" y="2863.50"></text></g><g><title>std::f64::<impl f64>::exp (34 samples, 0.14%)</title><rect x="17.2959%" y="2837" width="0.1449%" height="15" fill="rgb(235,12,38)" fg:x="4059" fg:w="34"/><text x="17.5459%" y="2847.50"></text></g><g><title>exp (33 samples, 0.14%)</title><rect x="17.3002%" y="2821" width="0.1406%" height="15" fill="rgb(225,195,33)" fg:x="4060" fg:w="33"/><text x="17.5502%" y="2831.50"></text></g><g><title>[libm.so.6] (25 samples, 0.11%)</title><rect x="17.3342%" y="2805" width="0.1065%" height="15" fill="rgb(238,54,35)" fg:x="4068" fg:w="25"/><text x="17.5842%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (9 samples, 0.04%)</title><rect x="17.4493%" y="2853" width="0.0384%" height="15" fill="rgb(238,33,7)" fg:x="4095" fg:w="9"/><text x="17.6993%" y="2863.50"></text></g><g><title>core::f64::<impl f64>::recip (9 samples, 0.04%)</title><rect x="17.4493%" y="2837" width="0.0384%" height="15" fill="rgb(245,5,14)" fg:x="4095" fg:w="9"/><text x="17.6993%" y="2847.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (53 samples, 0.23%)</title><rect x="17.2959%" y="2869" width="0.2258%" height="15" fill="rgb(251,95,31)" fg:x="4059" fg:w="53"/><text x="17.5459%" y="2879.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (8 samples, 0.03%)</title><rect x="17.4876%" y="2853" width="0.0341%" height="15" fill="rgb(222,15,46)" fg:x="4104" fg:w="8"/><text x="17.7376%" y="2863.50"></text></g><g><title>std::f64::<impl f64>::sqrt (8 samples, 0.03%)</title><rect x="17.4876%" y="2837" width="0.0341%" height="15" fill="rgb(226,182,24)" fg:x="4104" fg:w="8"/><text x="17.7376%" y="2847.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (60 samples, 0.26%)</title><rect x="17.2959%" y="3029" width="0.2557%" height="15" fill="rgb(229,105,41)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (60 samples, 0.26%)</title><rect x="17.2959%" y="3013" width="0.2557%" height="15" fill="rgb(216,99,53)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="3023.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (60 samples, 0.26%)</title><rect x="17.2959%" y="2997" width="0.2557%" height="15" fill="rgb(253,26,20)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="3007.50"></text></g><g><title>core::option::Option<T>::map (60 samples, 0.26%)</title><rect x="17.2959%" y="2981" width="0.2557%" height="15" fill="rgb(249,155,28)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="2991.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (60 samples, 0.26%)</title><rect x="17.2959%" y="2965" width="0.2557%" height="15" fill="rgb(241,221,2)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="2975.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (60 samples, 0.26%)</title><rect x="17.2959%" y="2949" width="0.2557%" height="15" fill="rgb(219,124,6)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="2959.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (60 samples, 0.26%)</title><rect x="17.2959%" y="2933" width="0.2557%" height="15" fill="rgb(233,37,6)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="2943.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (60 samples, 0.26%)</title><rect x="17.2959%" y="2917" width="0.2557%" height="15" fill="rgb(238,20,14)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="2927.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (60 samples, 0.26%)</title><rect x="17.2959%" y="2901" width="0.2557%" height="15" fill="rgb(232,106,27)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="2911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (60 samples, 0.26%)</title><rect x="17.2959%" y="2885" width="0.2557%" height="15" fill="rgb(246,157,24)" fg:x="4059" fg:w="60"/><text x="17.5459%" y="2895.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="17.5217%" y="2869" width="0.0298%" height="15" fill="rgb(214,153,10)" fg:x="4112" fg:w="7"/><text x="17.7717%" y="2879.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="17.5516%" y="2901" width="0.0341%" height="15" fill="rgb(212,94,6)" fg:x="4119" fg:w="8"/><text x="17.8016%" y="2911.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="17.5516%" y="2885" width="0.0341%" height="15" fill="rgb(254,25,27)" fg:x="4119" fg:w="8"/><text x="17.8016%" y="2895.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="17.5558%" y="2869" width="0.0298%" height="15" fill="rgb(250,43,52)" fg:x="4120" fg:w="7"/><text x="17.8058%" y="2879.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="17.5558%" y="2853" width="0.0298%" height="15" fill="rgb(221,226,40)" fg:x="4120" fg:w="7"/><text x="17.8058%" y="2863.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="17.5558%" y="2837" width="0.0298%" height="15" fill="rgb(235,162,34)" fg:x="4120" fg:w="7"/><text x="17.8058%" y="2847.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="17.5558%" y="2821" width="0.0298%" height="15" fill="rgb(239,24,26)" fg:x="4120" fg:w="7"/><text x="17.8058%" y="2831.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="17.5729%" y="2805" width="0.0128%" height="15" fill="rgb(244,226,11)" fg:x="4124" fg:w="3"/><text x="17.8229%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (69 samples, 0.29%)</title><rect x="17.2959%" y="3045" width="0.2940%" height="15" fill="rgb(225,23,10)" fg:x="4059" fg:w="69"/><text x="17.5459%" y="3055.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="17.5516%" y="3029" width="0.0384%" height="15" fill="rgb(249,125,6)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="3039.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="17.5516%" y="3013" width="0.0384%" height="15" fill="rgb(246,212,12)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="3023.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="17.5516%" y="2997" width="0.0384%" height="15" fill="rgb(230,43,32)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="3007.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (9 samples, 0.04%)</title><rect x="17.5516%" y="2981" width="0.0384%" height="15" fill="rgb(210,95,23)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="2991.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="17.5516%" y="2965" width="0.0384%" height="15" fill="rgb(229,103,33)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="2975.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="17.5516%" y="2949" width="0.0384%" height="15" fill="rgb(222,104,27)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="2959.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="17.5516%" y="2933" width="0.0384%" height="15" fill="rgb(239,221,23)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="2943.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="17.5516%" y="2917" width="0.0384%" height="15" fill="rgb(222,98,21)" fg:x="4119" fg:w="9"/><text x="17.8016%" y="2927.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (28 samples, 0.12%)</title><rect x="17.5942%" y="2741" width="0.1193%" height="15" fill="rgb(231,101,20)" fg:x="4129" fg:w="28"/><text x="17.8442%" y="2751.50"></text></g><g><title>std::f64::<impl f64>::exp (28 samples, 0.12%)</title><rect x="17.5942%" y="2725" width="0.1193%" height="15" fill="rgb(215,150,22)" fg:x="4129" fg:w="28"/><text x="17.8442%" y="2735.50"></text></g><g><title>exp (28 samples, 0.12%)</title><rect x="17.5942%" y="2709" width="0.1193%" height="15" fill="rgb(248,3,34)" fg:x="4129" fg:w="28"/><text x="17.8442%" y="2719.50"></text></g><g><title>[libm.so.6] (21 samples, 0.09%)</title><rect x="17.6240%" y="2693" width="0.0895%" height="15" fill="rgb(220,141,21)" fg:x="4136" fg:w="21"/><text x="17.8740%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (19 samples, 0.08%)</title><rect x="17.7177%" y="2741" width="0.0810%" height="15" fill="rgb(223,41,48)" fg:x="4158" fg:w="19"/><text x="17.9677%" y="2751.50"></text></g><g><title>core::f64::<impl f64>::recip (19 samples, 0.08%)</title><rect x="17.7177%" y="2725" width="0.0810%" height="15" fill="rgb(247,12,5)" fg:x="4158" fg:w="19"/><text x="17.9677%" y="2735.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (67 samples, 0.29%)</title><rect x="17.5942%" y="2757" width="0.2855%" height="15" fill="rgb(206,173,10)" fg:x="4129" fg:w="67"/><text x="17.8442%" y="2767.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (19 samples, 0.08%)</title><rect x="17.7987%" y="2741" width="0.0810%" height="15" fill="rgb(233,214,37)" fg:x="4177" fg:w="19"/><text x="18.0487%" y="2751.50"></text></g><g><title>std::f64::<impl f64>::sqrt (19 samples, 0.08%)</title><rect x="17.7987%" y="2725" width="0.0810%" height="15" fill="rgb(238,86,43)" fg:x="4177" fg:w="19"/><text x="18.0487%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (75 samples, 0.32%)</title><rect x="17.5899%" y="2933" width="0.3196%" height="15" fill="rgb(212,182,8)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2943.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (75 samples, 0.32%)</title><rect x="17.5899%" y="2917" width="0.3196%" height="15" fill="rgb(240,91,47)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (75 samples, 0.32%)</title><rect x="17.5899%" y="2901" width="0.3196%" height="15" fill="rgb(209,138,26)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2911.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (75 samples, 0.32%)</title><rect x="17.5899%" y="2885" width="0.3196%" height="15" fill="rgb(231,163,20)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2895.50"></text></g><g><title>core::option::Option<T>::map (75 samples, 0.32%)</title><rect x="17.5899%" y="2869" width="0.3196%" height="15" fill="rgb(214,91,54)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2879.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (75 samples, 0.32%)</title><rect x="17.5899%" y="2853" width="0.3196%" height="15" fill="rgb(230,32,17)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2863.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (75 samples, 0.32%)</title><rect x="17.5899%" y="2837" width="0.3196%" height="15" fill="rgb(231,34,34)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2847.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (75 samples, 0.32%)</title><rect x="17.5899%" y="2821" width="0.3196%" height="15" fill="rgb(224,228,27)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2831.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (75 samples, 0.32%)</title><rect x="17.5899%" y="2805" width="0.3196%" height="15" fill="rgb(219,35,40)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2815.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (75 samples, 0.32%)</title><rect x="17.5899%" y="2789" width="0.3196%" height="15" fill="rgb(234,42,8)" fg:x="4128" fg:w="75"/><text x="17.8399%" y="2799.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (74 samples, 0.32%)</title><rect x="17.5942%" y="2773" width="0.3153%" height="15" fill="rgb(226,75,22)" fg:x="4129" fg:w="74"/><text x="17.8442%" y="2783.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="17.8797%" y="2757" width="0.0298%" height="15" fill="rgb(242,203,28)" fg:x="4196" fg:w="7"/><text x="18.1297%" y="2767.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (22 samples, 0.09%)</title><rect x="17.9095%" y="2629" width="0.0937%" height="15" fill="rgb(221,3,9)" fg:x="4203" fg:w="22"/><text x="18.1595%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::exp (22 samples, 0.09%)</title><rect x="17.9095%" y="2613" width="0.0937%" height="15" fill="rgb(214,34,31)" fg:x="4203" fg:w="22"/><text x="18.1595%" y="2623.50"></text></g><g><title>exp (20 samples, 0.09%)</title><rect x="17.9180%" y="2597" width="0.0852%" height="15" fill="rgb(252,119,15)" fg:x="4205" fg:w="20"/><text x="18.1680%" y="2607.50"></text></g><g><title>[libm.so.6] (18 samples, 0.08%)</title><rect x="17.9265%" y="2581" width="0.0767%" height="15" fill="rgb(244,224,31)" fg:x="4207" fg:w="18"/><text x="18.1765%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (13 samples, 0.06%)</title><rect x="18.0032%" y="2629" width="0.0554%" height="15" fill="rgb(215,8,51)" fg:x="4225" fg:w="13"/><text x="18.2532%" y="2639.50"></text></g><g><title>core::f64::<impl f64>::recip (13 samples, 0.06%)</title><rect x="18.0032%" y="2613" width="0.0554%" height="15" fill="rgb(207,24,1)" fg:x="4225" fg:w="13"/><text x="18.2532%" y="2623.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (50 samples, 0.21%)</title><rect x="17.9095%" y="2645" width="0.2131%" height="15" fill="rgb(245,90,0)" fg:x="4203" fg:w="50"/><text x="18.1595%" y="2655.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (15 samples, 0.06%)</title><rect x="18.0586%" y="2629" width="0.0639%" height="15" fill="rgb(246,43,48)" fg:x="4238" fg:w="15"/><text x="18.3086%" y="2639.50"></text></g><g><title>std::f64::<impl f64>::sqrt (15 samples, 0.06%)</title><rect x="18.0586%" y="2613" width="0.0639%" height="15" fill="rgb(252,218,10)" fg:x="4238" fg:w="15"/><text x="18.3086%" y="2623.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (56 samples, 0.24%)</title><rect x="17.9095%" y="2805" width="0.2386%" height="15" fill="rgb(231,24,35)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (56 samples, 0.24%)</title><rect x="17.9095%" y="2789" width="0.2386%" height="15" fill="rgb(225,66,19)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (56 samples, 0.24%)</title><rect x="17.9095%" y="2773" width="0.2386%" height="15" fill="rgb(214,96,51)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2783.50"></text></g><g><title>core::option::Option<T>::map (56 samples, 0.24%)</title><rect x="17.9095%" y="2757" width="0.2386%" height="15" fill="rgb(251,151,47)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2767.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (56 samples, 0.24%)</title><rect x="17.9095%" y="2741" width="0.2386%" height="15" fill="rgb(236,79,14)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (56 samples, 0.24%)</title><rect x="17.9095%" y="2725" width="0.2386%" height="15" fill="rgb(210,205,11)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (56 samples, 0.24%)</title><rect x="17.9095%" y="2709" width="0.2386%" height="15" fill="rgb(233,142,53)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (56 samples, 0.24%)</title><rect x="17.9095%" y="2693" width="0.2386%" height="15" fill="rgb(212,116,48)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2703.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (56 samples, 0.24%)</title><rect x="17.9095%" y="2677" width="0.2386%" height="15" fill="rgb(234,55,33)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (56 samples, 0.24%)</title><rect x="17.9095%" y="2661" width="0.2386%" height="15" fill="rgb(253,92,27)" fg:x="4203" fg:w="56"/><text x="18.1595%" y="2671.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="18.1225%" y="2645" width="0.0256%" height="15" fill="rgb(220,7,35)" fg:x="4253" fg:w="6"/><text x="18.3725%" y="2655.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="18.1481%" y="2677" width="0.0256%" height="15" fill="rgb(246,124,6)" fg:x="4259" fg:w="6"/><text x="18.3981%" y="2687.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="18.1481%" y="2661" width="0.0256%" height="15" fill="rgb(212,111,51)" fg:x="4259" fg:w="6"/><text x="18.3981%" y="2671.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="18.1481%" y="2645" width="0.0256%" height="15" fill="rgb(253,116,7)" fg:x="4259" fg:w="6"/><text x="18.3981%" y="2655.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="18.1481%" y="2629" width="0.0256%" height="15" fill="rgb(213,145,18)" fg:x="4259" fg:w="6"/><text x="18.3981%" y="2639.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="18.1481%" y="2613" width="0.0256%" height="15" fill="rgb(219,149,7)" fg:x="4259" fg:w="6"/><text x="18.3981%" y="2623.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="18.1481%" y="2597" width="0.0256%" height="15" fill="rgb(225,156,20)" fg:x="4259" fg:w="6"/><text x="18.3981%" y="2607.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="18.1566%" y="2581" width="0.0170%" height="15" fill="rgb(211,98,19)" fg:x="4261" fg:w="4"/><text x="18.4066%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (65 samples, 0.28%)</title><rect x="17.9095%" y="2821" width="0.2770%" height="15" fill="rgb(231,192,31)" fg:x="4203" fg:w="65"/><text x="18.1595%" y="2831.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="18.1481%" y="2805" width="0.0384%" height="15" fill="rgb(249,95,19)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2815.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="18.1481%" y="2789" width="0.0384%" height="15" fill="rgb(247,101,36)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2799.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="18.1481%" y="2773" width="0.0384%" height="15" fill="rgb(221,45,43)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2783.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (9 samples, 0.04%)</title><rect x="18.1481%" y="2757" width="0.0384%" height="15" fill="rgb(220,42,1)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2767.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="18.1481%" y="2741" width="0.0384%" height="15" fill="rgb(236,19,24)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2751.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="18.1481%" y="2725" width="0.0384%" height="15" fill="rgb(225,192,6)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2735.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="18.1481%" y="2709" width="0.0384%" height="15" fill="rgb(242,30,19)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2719.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="18.1481%" y="2693" width="0.0384%" height="15" fill="rgb(240,36,6)" fg:x="4259" fg:w="9"/><text x="18.3981%" y="2703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="18.1737%" y="2677" width="0.0128%" height="15" fill="rgb(246,40,28)" fg:x="4265" fg:w="3"/><text x="18.4237%" y="2687.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (15 samples, 0.06%)</title><rect x="18.1865%" y="2517" width="0.0639%" height="15" fill="rgb(225,155,33)" fg:x="4268" fg:w="15"/><text x="18.4365%" y="2527.50"></text></g><g><title>std::f64::<impl f64>::exp (15 samples, 0.06%)</title><rect x="18.1865%" y="2501" width="0.0639%" height="15" fill="rgb(240,65,18)" fg:x="4268" fg:w="15"/><text x="18.4365%" y="2511.50"></text></g><g><title>exp (14 samples, 0.06%)</title><rect x="18.1907%" y="2485" width="0.0597%" height="15" fill="rgb(217,0,48)" fg:x="4269" fg:w="14"/><text x="18.4407%" y="2495.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="18.1993%" y="2469" width="0.0511%" height="15" fill="rgb(217,80,15)" fg:x="4271" fg:w="12"/><text x="18.4493%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (9 samples, 0.04%)</title><rect x="18.2546%" y="2517" width="0.0384%" height="15" fill="rgb(253,43,51)" fg:x="4284" fg:w="9"/><text x="18.5046%" y="2527.50"></text></g><g><title>core::f64::<impl f64>::recip (9 samples, 0.04%)</title><rect x="18.2546%" y="2501" width="0.0384%" height="15" fill="rgb(246,60,4)" fg:x="4284" fg:w="9"/><text x="18.5046%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (38 samples, 0.16%)</title><rect x="18.1865%" y="2709" width="0.1619%" height="15" fill="rgb(230,40,54)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2719.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (38 samples, 0.16%)</title><rect x="18.1865%" y="2693" width="0.1619%" height="15" fill="rgb(208,20,44)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (38 samples, 0.16%)</title><rect x="18.1865%" y="2677" width="0.1619%" height="15" fill="rgb(230,22,22)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2687.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (38 samples, 0.16%)</title><rect x="18.1865%" y="2661" width="0.1619%" height="15" fill="rgb(207,57,4)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2671.50"></text></g><g><title>core::option::Option<T>::map (38 samples, 0.16%)</title><rect x="18.1865%" y="2645" width="0.1619%" height="15" fill="rgb(242,130,33)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (38 samples, 0.16%)</title><rect x="18.1865%" y="2629" width="0.1619%" height="15" fill="rgb(218,66,43)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (38 samples, 0.16%)</title><rect x="18.1865%" y="2613" width="0.1619%" height="15" fill="rgb(236,105,16)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (38 samples, 0.16%)</title><rect x="18.1865%" y="2597" width="0.1619%" height="15" fill="rgb(230,46,15)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (38 samples, 0.16%)</title><rect x="18.1865%" y="2581" width="0.1619%" height="15" fill="rgb(251,172,40)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2591.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (38 samples, 0.16%)</title><rect x="18.1865%" y="2565" width="0.1619%" height="15" fill="rgb(225,217,32)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2575.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (38 samples, 0.16%)</title><rect x="18.1865%" y="2549" width="0.1619%" height="15" fill="rgb(243,10,29)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (38 samples, 0.16%)</title><rect x="18.1865%" y="2533" width="0.1619%" height="15" fill="rgb(207,102,10)" fg:x="4268" fg:w="38"/><text x="18.4365%" y="2543.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (13 samples, 0.06%)</title><rect x="18.2930%" y="2517" width="0.0554%" height="15" fill="rgb(241,125,5)" fg:x="4293" fg:w="13"/><text x="18.5430%" y="2527.50"></text></g><g><title>std::f64::<impl f64>::sqrt (13 samples, 0.06%)</title><rect x="18.2930%" y="2501" width="0.0554%" height="15" fill="rgb(230,125,29)" fg:x="4293" fg:w="13"/><text x="18.5430%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="18.3484%" y="2661" width="0.0298%" height="15" fill="rgb(223,65,44)" fg:x="4306" fg:w="7"/><text x="18.5984%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="18.3484%" y="2645" width="0.0298%" height="15" fill="rgb(224,188,28)" fg:x="4306" fg:w="7"/><text x="18.5984%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="18.3484%" y="2629" width="0.0298%" height="15" fill="rgb(254,197,27)" fg:x="4306" fg:w="7"/><text x="18.5984%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="18.3484%" y="2613" width="0.0298%" height="15" fill="rgb(220,200,25)" fg:x="4306" fg:w="7"/><text x="18.5984%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="18.3484%" y="2597" width="0.0298%" height="15" fill="rgb(239,225,54)" fg:x="4306" fg:w="7"/><text x="18.5984%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="18.3569%" y="2581" width="0.0213%" height="15" fill="rgb(211,59,40)" fg:x="4308" fg:w="5"/><text x="18.6069%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="18.3569%" y="2565" width="0.0213%" height="15" fill="rgb(213,176,46)" fg:x="4308" fg:w="5"/><text x="18.6069%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="18.3569%" y="2549" width="0.0213%" height="15" fill="rgb(226,99,4)" fg:x="4308" fg:w="5"/><text x="18.6069%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="18.3569%" y="2533" width="0.0213%" height="15" fill="rgb(239,203,43)" fg:x="4308" fg:w="5"/><text x="18.6069%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="18.3569%" y="2517" width="0.0213%" height="15" fill="rgb(246,1,45)" fg:x="4308" fg:w="5"/><text x="18.6069%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="18.3569%" y="2501" width="0.0213%" height="15" fill="rgb(231,42,52)" fg:x="4308" fg:w="5"/><text x="18.6069%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="18.3569%" y="2485" width="0.0213%" height="15" fill="rgb(240,13,50)" fg:x="4308" fg:w="5"/><text x="18.6069%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="18.3612%" y="2469" width="0.0170%" height="15" fill="rgb(225,81,14)" fg:x="4309" fg:w="4"/><text x="18.6112%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="18.3612%" y="2453" width="0.0170%" height="15" fill="rgb(216,182,23)" fg:x="4309" fg:w="4"/><text x="18.6112%" y="2463.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (50 samples, 0.21%)</title><rect x="18.1865%" y="2773" width="0.2131%" height="15" fill="rgb(233,137,19)" fg:x="4268" fg:w="50"/><text x="18.4365%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (50 samples, 0.21%)</title><rect x="18.1865%" y="2757" width="0.2131%" height="15" fill="rgb(242,61,46)" fg:x="4268" fg:w="50"/><text x="18.4365%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (50 samples, 0.21%)</title><rect x="18.1865%" y="2741" width="0.2131%" height="15" fill="rgb(221,168,51)" fg:x="4268" fg:w="50"/><text x="18.4365%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.21%)</title><rect x="18.1865%" y="2725" width="0.2131%" height="15" fill="rgb(238,48,15)" fg:x="4268" fg:w="50"/><text x="18.4365%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="18.3484%" y="2709" width="0.0511%" height="15" fill="rgb(216,13,16)" fg:x="4306" fg:w="12"/><text x="18.5984%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="18.3484%" y="2693" width="0.0511%" height="15" fill="rgb(223,185,34)" fg:x="4306" fg:w="12"/><text x="18.5984%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="18.3484%" y="2677" width="0.0511%" height="15" fill="rgb(228,94,42)" fg:x="4306" fg:w="12"/><text x="18.5984%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="18.3782%" y="2661" width="0.0213%" height="15" fill="rgb(218,166,43)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="18.3782%" y="2645" width="0.0213%" height="15" fill="rgb(232,30,50)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2655.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="18.3782%" y="2629" width="0.0213%" height="15" fill="rgb(245,206,45)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="18.3782%" y="2613" width="0.0213%" height="15" fill="rgb(220,56,22)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="18.3782%" y="2597" width="0.0213%" height="15" fill="rgb(239,129,38)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="18.3782%" y="2581" width="0.0213%" height="15" fill="rgb(207,68,41)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="18.3782%" y="2565" width="0.0213%" height="15" fill="rgb(221,21,7)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="18.3782%" y="2549" width="0.0213%" height="15" fill="rgb(240,33,25)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="18.3782%" y="2533" width="0.0213%" height="15" fill="rgb(242,119,10)" fg:x="4313" fg:w="5"/><text x="18.6282%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="18.3867%" y="2517" width="0.0128%" height="15" fill="rgb(214,149,40)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="18.3867%" y="2501" width="0.0128%" height="15" fill="rgb(228,25,36)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="18.3867%" y="2485" width="0.0128%" height="15" fill="rgb(222,59,15)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="18.3867%" y="2469" width="0.0128%" height="15" fill="rgb(218,170,0)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="18.3867%" y="2453" width="0.0128%" height="15" fill="rgb(232,173,23)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="18.3867%" y="2437" width="0.0128%" height="15" fill="rgb(218,116,1)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="18.3867%" y="2421" width="0.0128%" height="15" fill="rgb(207,34,4)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="18.3867%" y="2405" width="0.0128%" height="15" fill="rgb(229,54,52)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="18.3867%" y="2389" width="0.0128%" height="15" fill="rgb(211,86,23)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2399.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="18.3867%" y="2373" width="0.0128%" height="15" fill="rgb(254,153,34)" fg:x="4315" fg:w="3"/><text x="18.6367%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="18.3995%" y="2373" width="0.0128%" height="15" fill="rgb(219,220,14)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="18.3995%" y="2357" width="0.0128%" height="15" fill="rgb(247,8,26)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="18.3995%" y="2341" width="0.0128%" height="15" fill="rgb(213,129,42)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2351.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="18.3995%" y="2325" width="0.0128%" height="15" fill="rgb(225,95,41)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2335.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="18.3995%" y="2309" width="0.0128%" height="15" fill="rgb(215,134,24)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2319.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="18.3995%" y="2293" width="0.0128%" height="15" fill="rgb(235,23,54)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2303.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="18.3995%" y="2277" width="0.0128%" height="15" fill="rgb(229,96,31)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2287.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="18.3995%" y="2261" width="0.0128%" height="15" fill="rgb(206,111,12)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2271.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="18.3995%" y="2245" width="0.0128%" height="15" fill="rgb(222,177,8)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2255.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="18.3995%" y="2229" width="0.0128%" height="15" fill="rgb(251,36,52)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2239.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="18.3995%" y="2213" width="0.0128%" height="15" fill="rgb(216,182,29)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2223.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="18.3995%" y="2197" width="0.0128%" height="15" fill="rgb(241,145,50)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="18.3995%" y="2181" width="0.0128%" height="15" fill="rgb(231,71,35)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.3995%" y="2165" width="0.0128%" height="15" fill="rgb(218,22,17)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.3995%" y="2149" width="0.0128%" height="15" fill="rgb(225,227,6)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2159.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="18.3995%" y="2133" width="0.0128%" height="15" fill="rgb(224,204,17)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2143.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.3995%" y="2117" width="0.0128%" height="15" fill="rgb(227,61,28)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="18.3995%" y="2101" width="0.0128%" height="15" fill="rgb(242,148,23)" fg:x="4318" fg:w="3"/><text x="18.6495%" y="2111.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="18.3995%" y="2485" width="0.0213%" height="15" fill="rgb(237,105,33)" fg:x="4318" fg:w="5"/><text x="18.6495%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="18.3995%" y="2469" width="0.0213%" height="15" fill="rgb(238,218,40)" fg:x="4318" fg:w="5"/><text x="18.6495%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="18.3995%" y="2453" width="0.0213%" height="15" fill="rgb(209,126,11)" fg:x="4318" fg:w="5"/><text x="18.6495%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="18.3995%" y="2437" width="0.0213%" height="15" fill="rgb(245,90,11)" fg:x="4318" fg:w="5"/><text x="18.6495%" y="2447.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="18.3995%" y="2421" width="0.0213%" height="15" fill="rgb(211,195,10)" fg:x="4318" fg:w="5"/><text x="18.6495%" y="2431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="18.3995%" y="2405" width="0.0213%" height="15" fill="rgb(231,45,45)" fg:x="4318" fg:w="5"/><text x="18.6495%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="18.3995%" y="2389" width="0.0213%" height="15" fill="rgb(246,100,43)" fg:x="4318" fg:w="5"/><text x="18.6495%" y="2399.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="18.3995%" y="2773" width="0.0384%" height="15" fill="rgb(241,193,8)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="18.3995%" y="2757" width="0.0384%" height="15" fill="rgb(208,76,19)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2767.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="18.3995%" y="2741" width="0.0384%" height="15" fill="rgb(223,69,40)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2751.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="18.3995%" y="2725" width="0.0384%" height="15" fill="rgb(207,120,39)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2735.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="18.3995%" y="2709" width="0.0384%" height="15" fill="rgb(212,209,28)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="18.3995%" y="2693" width="0.0384%" height="15" fill="rgb(246,82,29)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="18.3995%" y="2677" width="0.0384%" height="15" fill="rgb(239,6,40)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="18.3995%" y="2661" width="0.0384%" height="15" fill="rgb(228,181,35)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2671.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="18.3995%" y="2645" width="0.0384%" height="15" fill="rgb(238,151,2)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="18.3995%" y="2629" width="0.0384%" height="15" fill="rgb(236,94,18)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="18.3995%" y="2613" width="0.0384%" height="15" fill="rgb(208,38,14)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2623.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="18.3995%" y="2597" width="0.0384%" height="15" fill="rgb(234,215,27)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="18.3995%" y="2581" width="0.0384%" height="15" fill="rgb(254,211,53)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="18.3995%" y="2565" width="0.0384%" height="15" fill="rgb(216,175,11)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="18.3995%" y="2549" width="0.0384%" height="15" fill="rgb(246,179,26)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="18.3995%" y="2533" width="0.0384%" height="15" fill="rgb(249,19,52)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="18.3995%" y="2517" width="0.0384%" height="15" fill="rgb(230,42,52)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="18.3995%" y="2501" width="0.0384%" height="15" fill="rgb(221,171,0)" fg:x="4318" fg:w="9"/><text x="18.6495%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="18.4208%" y="2485" width="0.0170%" height="15" fill="rgb(222,177,40)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="18.4208%" y="2469" width="0.0170%" height="15" fill="rgb(247,34,16)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2479.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="18.4208%" y="2453" width="0.0170%" height="15" fill="rgb(213,217,37)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="18.4208%" y="2437" width="0.0170%" height="15" fill="rgb(231,189,24)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="18.4208%" y="2421" width="0.0170%" height="15" fill="rgb(214,22,9)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="18.4208%" y="2405" width="0.0170%" height="15" fill="rgb(212,70,22)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.4208%" y="2389" width="0.0170%" height="15" fill="rgb(249,64,51)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.4208%" y="2373" width="0.0170%" height="15" fill="rgb(249,148,20)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="18.4208%" y="2357" width="0.0170%" height="15" fill="rgb(246,46,48)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.4208%" y="2341" width="0.0170%" height="15" fill="rgb(217,34,48)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="18.4208%" y="2325" width="0.0170%" height="15" fill="rgb(222,45,26)" fg:x="4323" fg:w="4"/><text x="18.6708%" y="2335.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (16 samples, 0.07%)</title><rect x="18.4379%" y="2453" width="0.0682%" height="15" fill="rgb(230,201,36)" fg:x="4327" fg:w="16"/><text x="18.6879%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (16 samples, 0.07%)</title><rect x="18.4379%" y="2437" width="0.0682%" height="15" fill="rgb(217,30,43)" fg:x="4327" fg:w="16"/><text x="18.6879%" y="2447.50"></text></g><g><title>exp (16 samples, 0.07%)</title><rect x="18.4379%" y="2421" width="0.0682%" height="15" fill="rgb(230,197,40)" fg:x="4327" fg:w="16"/><text x="18.6879%" y="2431.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="18.4549%" y="2405" width="0.0511%" height="15" fill="rgb(239,181,18)" fg:x="4331" fg:w="12"/><text x="18.7049%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (7 samples, 0.03%)</title><rect x="18.5061%" y="2453" width="0.0298%" height="15" fill="rgb(222,60,39)" fg:x="4343" fg:w="7"/><text x="18.7561%" y="2463.50"></text></g><g><title>core::f64::<impl f64>::recip (7 samples, 0.03%)</title><rect x="18.5061%" y="2437" width="0.0298%" height="15" fill="rgb(210,60,22)" fg:x="4343" fg:w="7"/><text x="18.7561%" y="2447.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (29 samples, 0.12%)</title><rect x="18.4379%" y="2469" width="0.1236%" height="15" fill="rgb(239,213,48)" fg:x="4327" fg:w="29"/><text x="18.6879%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (6 samples, 0.03%)</title><rect x="18.5359%" y="2453" width="0.0256%" height="15" fill="rgb(253,214,23)" fg:x="4350" fg:w="6"/><text x="18.7859%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::sqrt (6 samples, 0.03%)</title><rect x="18.5359%" y="2437" width="0.0256%" height="15" fill="rgb(211,98,45)" fg:x="4350" fg:w="6"/><text x="18.7859%" y="2447.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (35 samples, 0.15%)</title><rect x="18.4379%" y="2629" width="0.1491%" height="15" fill="rgb(239,130,44)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (35 samples, 0.15%)</title><rect x="18.4379%" y="2613" width="0.1491%" height="15" fill="rgb(222,181,35)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (35 samples, 0.15%)</title><rect x="18.4379%" y="2597" width="0.1491%" height="15" fill="rgb(219,219,49)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (35 samples, 0.15%)</title><rect x="18.4379%" y="2581" width="0.1491%" height="15" fill="rgb(227,161,51)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (35 samples, 0.15%)</title><rect x="18.4379%" y="2565" width="0.1491%" height="15" fill="rgb(239,112,27)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (35 samples, 0.15%)</title><rect x="18.4379%" y="2549" width="0.1491%" height="15" fill="rgb(248,122,18)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (35 samples, 0.15%)</title><rect x="18.4379%" y="2533" width="0.1491%" height="15" fill="rgb(245,130,23)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (35 samples, 0.15%)</title><rect x="18.4379%" y="2517" width="0.1491%" height="15" fill="rgb(211,225,28)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (35 samples, 0.15%)</title><rect x="18.4379%" y="2501" width="0.1491%" height="15" fill="rgb(242,105,44)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (35 samples, 0.15%)</title><rect x="18.4379%" y="2485" width="0.1491%" height="15" fill="rgb(216,183,46)" fg:x="4327" fg:w="35"/><text x="18.6879%" y="2495.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="18.5614%" y="2469" width="0.0256%" height="15" fill="rgb(227,112,9)" fg:x="4356" fg:w="6"/><text x="18.8114%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (37 samples, 0.16%)</title><rect x="18.4379%" y="2645" width="0.1577%" height="15" fill="rgb(244,21,0)" fg:x="4327" fg:w="37"/><text x="18.6879%" y="2655.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="18.5955%" y="2597" width="0.0128%" height="15" fill="rgb(236,185,14)" fg:x="4364" fg:w="3"/><text x="18.8455%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="18.5955%" y="2581" width="0.0128%" height="15" fill="rgb(236,170,30)" fg:x="4364" fg:w="3"/><text x="18.8455%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.5955%" y="2565" width="0.0128%" height="15" fill="rgb(209,198,51)" fg:x="4364" fg:w="3"/><text x="18.8455%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.5955%" y="2549" width="0.0128%" height="15" fill="rgb(205,171,26)" fg:x="4364" fg:w="3"/><text x="18.8455%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="18.5955%" y="2533" width="0.0128%" height="15" fill="rgb(246,41,49)" fg:x="4364" fg:w="3"/><text x="18.8455%" y="2543.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (166 samples, 0.71%)</title><rect x="17.9095%" y="2885" width="0.7073%" height="15" fill="rgb(240,229,12)" fg:x="4203" fg:w="166"/><text x="18.1595%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (166 samples, 0.71%)</title><rect x="17.9095%" y="2869" width="0.7073%" height="15" fill="rgb(212,8,54)" fg:x="4203" fg:w="166"/><text x="18.1595%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (166 samples, 0.71%)</title><rect x="17.9095%" y="2853" width="0.7073%" height="15" fill="rgb(230,114,13)" fg:x="4203" fg:w="166"/><text x="18.1595%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (166 samples, 0.71%)</title><rect x="17.9095%" y="2837" width="0.7073%" height="15" fill="rgb(229,130,28)" fg:x="4203" fg:w="166"/><text x="18.1595%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (101 samples, 0.43%)</title><rect x="18.1865%" y="2821" width="0.4304%" height="15" fill="rgb(206,139,15)" fg:x="4268" fg:w="101"/><text x="18.4365%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (101 samples, 0.43%)</title><rect x="18.1865%" y="2805" width="0.4304%" height="15" fill="rgb(241,188,35)" fg:x="4268" fg:w="101"/><text x="18.4365%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (101 samples, 0.43%)</title><rect x="18.1865%" y="2789" width="0.4304%" height="15" fill="rgb(208,224,26)" fg:x="4268" fg:w="101"/><text x="18.4365%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (42 samples, 0.18%)</title><rect x="18.4379%" y="2773" width="0.1790%" height="15" fill="rgb(251,131,28)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (42 samples, 0.18%)</title><rect x="18.4379%" y="2757" width="0.1790%" height="15" fill="rgb(208,153,1)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2767.50"></text></g><g><title>std::panicking::try (42 samples, 0.18%)</title><rect x="18.4379%" y="2741" width="0.1790%" height="15" fill="rgb(234,33,36)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (42 samples, 0.18%)</title><rect x="18.4379%" y="2725" width="0.1790%" height="15" fill="rgb(246,42,29)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (42 samples, 0.18%)</title><rect x="18.4379%" y="2709" width="0.1790%" height="15" fill="rgb(251,114,16)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (42 samples, 0.18%)</title><rect x="18.4379%" y="2693" width="0.1790%" height="15" fill="rgb(233,13,38)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42 samples, 0.18%)</title><rect x="18.4379%" y="2677" width="0.1790%" height="15" fill="rgb(247,120,19)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.18%)</title><rect x="18.4379%" y="2661" width="0.1790%" height="15" fill="rgb(205,11,16)" fg:x="4327" fg:w="42"/><text x="18.6879%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="18.5955%" y="2645" width="0.0213%" height="15" fill="rgb(228,185,19)" fg:x="4364" fg:w="5"/><text x="18.8455%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="18.5955%" y="2629" width="0.0213%" height="15" fill="rgb(239,88,52)" fg:x="4364" fg:w="5"/><text x="18.8455%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="18.5955%" y="2613" width="0.0213%" height="15" fill="rgb(219,23,1)" fg:x="4364" fg:w="5"/><text x="18.8455%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="18.6211%" y="2197" width="0.0128%" height="15" fill="rgb(253,177,16)" fg:x="4370" fg:w="3"/><text x="18.8711%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6211%" y="2181" width="0.0128%" height="15" fill="rgb(225,150,40)" fg:x="4370" fg:w="3"/><text x="18.8711%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6211%" y="2165" width="0.0128%" height="15" fill="rgb(208,108,30)" fg:x="4370" fg:w="3"/><text x="18.8711%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.6211%" y="2149" width="0.0128%" height="15" fill="rgb(214,122,4)" fg:x="4370" fg:w="3"/><text x="18.8711%" y="2159.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="18.6211%" y="2133" width="0.0128%" height="15" fill="rgb(229,74,37)" fg:x="4370" fg:w="3"/><text x="18.8711%" y="2143.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.6211%" y="2117" width="0.0128%" height="15" fill="rgb(233,61,41)" fg:x="4370" fg:w="3"/><text x="18.8711%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6211%" y="2101" width="0.0128%" height="15" fill="rgb(238,191,5)" fg:x="4370" fg:w="3"/><text x="18.8711%" y="2111.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="18.6211%" y="2485" width="0.0256%" height="15" fill="rgb(233,78,24)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="18.6211%" y="2469" width="0.0256%" height="15" fill="rgb(211,142,8)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="18.6211%" y="2453" width="0.0256%" height="15" fill="rgb(253,38,53)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2463.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="18.6211%" y="2437" width="0.0256%" height="15" fill="rgb(234,63,51)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="18.6211%" y="2421" width="0.0256%" height="15" fill="rgb(205,23,31)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="18.6211%" y="2405" width="0.0256%" height="15" fill="rgb(210,184,50)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="18.6211%" y="2389" width="0.0256%" height="15" fill="rgb(222,112,26)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2399.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="18.6211%" y="2373" width="0.0256%" height="15" fill="rgb(250,98,18)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2383.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="18.6211%" y="2357" width="0.0256%" height="15" fill="rgb(250,34,12)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2367.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="18.6211%" y="2341" width="0.0256%" height="15" fill="rgb(236,141,30)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="18.6211%" y="2325" width="0.0256%" height="15" fill="rgb(246,134,38)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="18.6211%" y="2309" width="0.0256%" height="15" fill="rgb(240,114,4)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="18.6211%" y="2293" width="0.0256%" height="15" fill="rgb(243,113,39)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="18.6211%" y="2277" width="0.0256%" height="15" fill="rgb(239,215,4)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="18.6211%" y="2261" width="0.0256%" height="15" fill="rgb(236,229,45)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="18.6211%" y="2245" width="0.0256%" height="15" fill="rgb(242,2,6)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="18.6211%" y="2229" width="0.0256%" height="15" fill="rgb(239,108,21)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="18.6211%" y="2213" width="0.0256%" height="15" fill="rgb(215,168,34)" fg:x="4370" fg:w="6"/><text x="18.8711%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="18.6339%" y="2197" width="0.0128%" height="15" fill="rgb(238,31,17)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="18.6339%" y="2181" width="0.0128%" height="15" fill="rgb(220,133,11)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2191.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="18.6339%" y="2165" width="0.0128%" height="15" fill="rgb(212,158,23)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="18.6339%" y="2149" width="0.0128%" height="15" fill="rgb(223,172,7)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="18.6339%" y="2133" width="0.0128%" height="15" fill="rgb(244,3,52)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6339%" y="2117" width="0.0128%" height="15" fill="rgb(207,69,27)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6339%" y="2101" width="0.0128%" height="15" fill="rgb(213,136,45)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.6339%" y="2085" width="0.0128%" height="15" fill="rgb(218,79,17)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="18.6339%" y="2069" width="0.0128%" height="15" fill="rgb(216,106,36)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.6339%" y="2053" width="0.0128%" height="15" fill="rgb(251,27,45)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6339%" y="2037" width="0.0128%" height="15" fill="rgb(232,21,34)" fg:x="4373" fg:w="3"/><text x="18.8839%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="18.6211%" y="2597" width="0.0341%" height="15" fill="rgb(249,191,16)" fg:x="4370" fg:w="8"/><text x="18.8711%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="18.6211%" y="2581" width="0.0341%" height="15" fill="rgb(224,88,20)" fg:x="4370" fg:w="8"/><text x="18.8711%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="18.6211%" y="2565" width="0.0341%" height="15" fill="rgb(237,93,27)" fg:x="4370" fg:w="8"/><text x="18.8711%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="18.6211%" y="2549" width="0.0341%" height="15" fill="rgb(226,198,48)" fg:x="4370" fg:w="8"/><text x="18.8711%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="18.6211%" y="2533" width="0.0341%" height="15" fill="rgb(207,162,53)" fg:x="4370" fg:w="8"/><text x="18.8711%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="18.6211%" y="2517" width="0.0341%" height="15" fill="rgb(207,169,9)" fg:x="4370" fg:w="8"/><text x="18.8711%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="18.6211%" y="2501" width="0.0341%" height="15" fill="rgb(224,166,46)" fg:x="4370" fg:w="8"/><text x="18.8711%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="18.6552%" y="2197" width="0.0128%" height="15" fill="rgb(233,26,6)" fg:x="4378" fg:w="3"/><text x="18.9052%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6552%" y="2181" width="0.0128%" height="15" fill="rgb(218,106,45)" fg:x="4378" fg:w="3"/><text x="18.9052%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6552%" y="2165" width="0.0128%" height="15" fill="rgb(240,217,4)" fg:x="4378" fg:w="3"/><text x="18.9052%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.6552%" y="2149" width="0.0128%" height="15" fill="rgb(246,171,10)" fg:x="4378" fg:w="3"/><text x="18.9052%" y="2159.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="18.6552%" y="2133" width="0.0128%" height="15" fill="rgb(223,197,30)" fg:x="4378" fg:w="3"/><text x="18.9052%" y="2143.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.6552%" y="2117" width="0.0128%" height="15" fill="rgb(207,92,16)" fg:x="4378" fg:w="3"/><text x="18.9052%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6552%" y="2101" width="0.0128%" height="15" fill="rgb(211,6,44)" fg:x="4378" fg:w="3"/><text x="18.9052%" y="2111.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="18.6552%" y="2309" width="0.0298%" height="15" fill="rgb(219,139,2)" fg:x="4378" fg:w="7"/><text x="18.9052%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="18.6552%" y="2293" width="0.0298%" height="15" fill="rgb(224,103,21)" fg:x="4378" fg:w="7"/><text x="18.9052%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="18.6552%" y="2277" width="0.0298%" height="15" fill="rgb(254,110,48)" fg:x="4378" fg:w="7"/><text x="18.9052%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="18.6552%" y="2261" width="0.0298%" height="15" fill="rgb(212,88,19)" fg:x="4378" fg:w="7"/><text x="18.9052%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="18.6552%" y="2245" width="0.0298%" height="15" fill="rgb(248,103,6)" fg:x="4378" fg:w="7"/><text x="18.9052%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="18.6552%" y="2229" width="0.0298%" height="15" fill="rgb(214,53,46)" fg:x="4378" fg:w="7"/><text x="18.9052%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="18.6552%" y="2213" width="0.0298%" height="15" fill="rgb(236,190,24)" fg:x="4378" fg:w="7"/><text x="18.9052%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="18.6680%" y="2197" width="0.0170%" height="15" fill="rgb(254,58,28)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="18.6680%" y="2181" width="0.0170%" height="15" fill="rgb(243,63,27)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2191.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="18.6680%" y="2165" width="0.0170%" height="15" fill="rgb(206,81,20)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="18.6680%" y="2149" width="0.0170%" height="15" fill="rgb(252,69,51)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="18.6680%" y="2133" width="0.0170%" height="15" fill="rgb(222,213,4)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="18.6680%" y="2117" width="0.0170%" height="15" fill="rgb(226,198,12)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.6680%" y="2101" width="0.0170%" height="15" fill="rgb(248,115,11)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.6680%" y="2085" width="0.0170%" height="15" fill="rgb(221,148,54)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="18.6680%" y="2069" width="0.0170%" height="15" fill="rgb(214,209,51)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.6680%" y="2053" width="0.0170%" height="15" fill="rgb(249,116,53)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="18.6680%" y="2037" width="0.0170%" height="15" fill="rgb(248,170,1)" fg:x="4381" fg:w="4"/><text x="18.9180%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="18.6850%" y="1893" width="0.0128%" height="15" fill="rgb(244,105,10)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="18.6850%" y="1877" width="0.0128%" height="15" fill="rgb(229,100,5)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="18.6850%" y="1861" width="0.0128%" height="15" fill="rgb(233,221,39)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="18.6850%" y="1845" width="0.0128%" height="15" fill="rgb(233,88,21)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="18.6850%" y="1829" width="0.0128%" height="15" fill="rgb(206,13,0)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="18.6850%" y="1813" width="0.0128%" height="15" fill="rgb(242,15,35)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="18.6850%" y="1797" width="0.0128%" height="15" fill="rgb(247,142,41)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6850%" y="1781" width="0.0128%" height="15" fill="rgb(245,51,29)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="18.6850%" y="1765" width="0.0128%" height="15" fill="rgb(228,209,43)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="18.6850%" y="1749" width="0.0128%" height="15" fill="rgb(233,185,9)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="18.6850%" y="1733" width="0.0128%" height="15" fill="rgb(226,93,0)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="18.6850%" y="1717" width="0.0128%" height="15" fill="rgb(245,194,43)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1727.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="18.6850%" y="1701" width="0.0128%" height="15" fill="rgb(211,145,34)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1711.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="18.6850%" y="1685" width="0.0128%" height="15" fill="rgb(231,228,28)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1695.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="18.6850%" y="1669" width="0.0128%" height="15" fill="rgb(236,149,4)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1679.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="18.6850%" y="1653" width="0.0128%" height="15" fill="rgb(234,114,38)" fg:x="4385" fg:w="3"/><text x="18.9350%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="18.6978%" y="1413" width="0.0170%" height="15" fill="rgb(246,132,51)" fg:x="4388" fg:w="4"/><text x="18.9478%" y="1423.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="18.6978%" y="1397" width="0.0170%" height="15" fill="rgb(251,137,22)" fg:x="4388" fg:w="4"/><text x="18.9478%" y="1407.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="18.6978%" y="1381" width="0.0170%" height="15" fill="rgb(243,59,52)" fg:x="4388" fg:w="4"/><text x="18.9478%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="18.6978%" y="1605" width="0.0426%" height="15" fill="rgb(239,56,28)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1615.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="18.6978%" y="1589" width="0.0426%" height="15" fill="rgb(218,168,27)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="18.6978%" y="1573" width="0.0426%" height="15" fill="rgb(232,165,11)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1583.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="18.6978%" y="1557" width="0.0426%" height="15" fill="rgb(253,55,41)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1567.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="18.6978%" y="1541" width="0.0426%" height="15" fill="rgb(233,206,24)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1551.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="18.6978%" y="1525" width="0.0426%" height="15" fill="rgb(220,199,8)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="18.6978%" y="1509" width="0.0426%" height="15" fill="rgb(254,65,26)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="18.6978%" y="1493" width="0.0426%" height="15" fill="rgb(253,102,23)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="18.6978%" y="1477" width="0.0426%" height="15" fill="rgb(231,103,35)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1487.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="18.6978%" y="1461" width="0.0426%" height="15" fill="rgb(238,26,10)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="18.6978%" y="1445" width="0.0426%" height="15" fill="rgb(234,191,34)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1455.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="18.6978%" y="1429" width="0.0426%" height="15" fill="rgb(206,210,9)" fg:x="4388" fg:w="10"/><text x="18.9478%" y="1439.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="18.7234%" y="1413" width="0.0170%" height="15" fill="rgb(219,155,3)" fg:x="4394" fg:w="4"/><text x="18.9734%" y="1423.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="18.7234%" y="1397" width="0.0170%" height="15" fill="rgb(221,62,52)" fg:x="4394" fg:w="4"/><text x="18.9734%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (14 samples, 0.06%)</title><rect x="18.6978%" y="1845" width="0.0597%" height="15" fill="rgb(215,197,36)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="18.6978%" y="1829" width="0.0597%" height="15" fill="rgb(226,222,6)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (14 samples, 0.06%)</title><rect x="18.6978%" y="1813" width="0.0597%" height="15" fill="rgb(215,58,28)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (14 samples, 0.06%)</title><rect x="18.6978%" y="1797" width="0.0597%" height="15" fill="rgb(212,148,2)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (14 samples, 0.06%)</title><rect x="18.6978%" y="1781" width="0.0597%" height="15" fill="rgb(208,21,42)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (14 samples, 0.06%)</title><rect x="18.6978%" y="1765" width="0.0597%" height="15" fill="rgb(209,107,26)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="18.6978%" y="1749" width="0.0597%" height="15" fill="rgb(254,60,47)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="18.6978%" y="1733" width="0.0597%" height="15" fill="rgb(207,226,45)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1743.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="18.6978%" y="1717" width="0.0597%" height="15" fill="rgb(223,124,22)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="18.6978%" y="1701" width="0.0597%" height="15" fill="rgb(240,162,13)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="18.6978%" y="1685" width="0.0597%" height="15" fill="rgb(244,199,31)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (14 samples, 0.06%)</title><rect x="18.6978%" y="1669" width="0.0597%" height="15" fill="rgb(207,92,16)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="18.6978%" y="1653" width="0.0597%" height="15" fill="rgb(215,31,19)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="18.6978%" y="1637" width="0.0597%" height="15" fill="rgb(245,118,14)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="18.6978%" y="1621" width="0.0597%" height="15" fill="rgb(248,12,46)" fg:x="4388" fg:w="14"/><text x="18.9478%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="18.7404%" y="1605" width="0.0170%" height="15" fill="rgb(209,119,0)" fg:x="4398" fg:w="4"/><text x="18.9904%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.7404%" y="1589" width="0.0170%" height="15" fill="rgb(254,51,44)" fg:x="4398" fg:w="4"/><text x="18.9904%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="18.7404%" y="1573" width="0.0170%" height="15" fill="rgb(253,182,35)" fg:x="4398" fg:w="4"/><text x="18.9904%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="18.7617%" y="1557" width="0.0128%" height="15" fill="rgb(205,198,39)" fg:x="4403" fg:w="3"/><text x="19.0117%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="18.7617%" y="1541" width="0.0128%" height="15" fill="rgb(251,175,48)" fg:x="4403" fg:w="3"/><text x="19.0117%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.7617%" y="1525" width="0.0128%" height="15" fill="rgb(239,38,17)" fg:x="4403" fg:w="3"/><text x="19.0117%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.7617%" y="1509" width="0.0128%" height="15" fill="rgb(212,101,8)" fg:x="4403" fg:w="3"/><text x="19.0117%" y="1519.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="18.7617%" y="1493" width="0.0128%" height="15" fill="rgb(228,35,17)" fg:x="4403" fg:w="3"/><text x="19.0117%" y="1503.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.7617%" y="1477" width="0.0128%" height="15" fill="rgb(214,95,8)" fg:x="4403" fg:w="3"/><text x="19.0117%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="18.7617%" y="1461" width="0.0128%" height="15" fill="rgb(210,176,35)" fg:x="4403" fg:w="3"/><text x="19.0117%" y="1471.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="18.7617%" y="1669" width="0.0298%" height="15" fill="rgb(226,4,3)" fg:x="4403" fg:w="7"/><text x="19.0117%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="18.7617%" y="1653" width="0.0298%" height="15" fill="rgb(232,133,14)" fg:x="4403" fg:w="7"/><text x="19.0117%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="18.7617%" y="1637" width="0.0298%" height="15" fill="rgb(250,191,8)" fg:x="4403" fg:w="7"/><text x="19.0117%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="18.7617%" y="1621" width="0.0298%" height="15" fill="rgb(213,12,45)" fg:x="4403" fg:w="7"/><text x="19.0117%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="18.7617%" y="1605" width="0.0298%" height="15" fill="rgb(233,78,26)" fg:x="4403" fg:w="7"/><text x="19.0117%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="18.7617%" y="1589" width="0.0298%" height="15" fill="rgb(245,222,11)" fg:x="4403" fg:w="7"/><text x="19.0117%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="18.7617%" y="1573" width="0.0298%" height="15" fill="rgb(216,174,12)" fg:x="4403" fg:w="7"/><text x="19.0117%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="18.7745%" y="1557" width="0.0170%" height="15" fill="rgb(213,15,9)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="18.7745%" y="1541" width="0.0170%" height="15" fill="rgb(238,103,32)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1551.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="18.7745%" y="1525" width="0.0170%" height="15" fill="rgb(245,85,15)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="18.7745%" y="1509" width="0.0170%" height="15" fill="rgb(254,204,5)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="18.7745%" y="1493" width="0.0170%" height="15" fill="rgb(231,178,15)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="18.7745%" y="1477" width="0.0170%" height="15" fill="rgb(248,151,3)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.7745%" y="1461" width="0.0170%" height="15" fill="rgb(250,139,13)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.7745%" y="1445" width="0.0170%" height="15" fill="rgb(243,107,53)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="18.7745%" y="1429" width="0.0170%" height="15" fill="rgb(232,81,15)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.7745%" y="1413" width="0.0170%" height="15" fill="rgb(225,187,48)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="18.7745%" y="1397" width="0.0170%" height="15" fill="rgb(205,116,12)" fg:x="4406" fg:w="4"/><text x="19.0245%" y="1407.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="18.7915%" y="1493" width="0.0128%" height="15" fill="rgb(220,222,31)" fg:x="4410" fg:w="3"/><text x="19.0415%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="18.7915%" y="1477" width="0.0128%" height="15" fill="rgb(233,187,49)" fg:x="4410" fg:w="3"/><text x="19.0415%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.7915%" y="1461" width="0.0128%" height="15" fill="rgb(211,168,53)" fg:x="4410" fg:w="3"/><text x="19.0415%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.7915%" y="1445" width="0.0128%" height="15" fill="rgb(206,160,16)" fg:x="4410" fg:w="3"/><text x="19.0415%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="18.7915%" y="1429" width="0.0128%" height="15" fill="rgb(254,164,13)" fg:x="4410" fg:w="3"/><text x="19.0415%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.7915%" y="1413" width="0.0128%" height="15" fill="rgb(229,45,30)" fg:x="4410" fg:w="3"/><text x="19.0415%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="18.7915%" y="1397" width="0.0128%" height="15" fill="rgb(237,32,10)" fg:x="4410" fg:w="3"/><text x="19.0415%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (32 samples, 0.14%)</title><rect x="18.6850%" y="2309" width="0.1364%" height="15" fill="rgb(251,20,47)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32 samples, 0.14%)</title><rect x="18.6850%" y="2293" width="0.1364%" height="15" fill="rgb(251,116,12)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (32 samples, 0.14%)</title><rect x="18.6850%" y="2277" width="0.1364%" height="15" fill="rgb(214,227,27)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (32 samples, 0.14%)</title><rect x="18.6850%" y="2261" width="0.1364%" height="15" fill="rgb(248,10,53)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (32 samples, 0.14%)</title><rect x="18.6850%" y="2245" width="0.1364%" height="15" fill="rgb(221,176,25)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (32 samples, 0.14%)</title><rect x="18.6850%" y="2229" width="0.1364%" height="15" fill="rgb(205,70,46)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="18.6850%" y="2213" width="0.1364%" height="15" fill="rgb(217,45,38)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="18.6850%" y="2197" width="0.1364%" height="15" fill="rgb(243,6,54)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2207.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="18.6850%" y="2181" width="0.1364%" height="15" fill="rgb(242,76,23)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="18.6850%" y="2165" width="0.1364%" height="15" fill="rgb(239,166,0)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="18.6850%" y="2149" width="0.1364%" height="15" fill="rgb(238,174,32)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (32 samples, 0.14%)</title><rect x="18.6850%" y="2133" width="0.1364%" height="15" fill="rgb(238,124,44)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="18.6850%" y="2117" width="0.1364%" height="15" fill="rgb(206,185,9)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="18.6850%" y="2101" width="0.1364%" height="15" fill="rgb(215,157,17)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="18.6850%" y="2085" width="0.1364%" height="15" fill="rgb(251,17,29)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="18.6850%" y="2069" width="0.1364%" height="15" fill="rgb(227,113,27)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="18.6850%" y="2053" width="0.1364%" height="15" fill="rgb(217,226,24)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="18.6850%" y="2037" width="0.1364%" height="15" fill="rgb(251,99,38)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="18.6850%" y="2021" width="0.1364%" height="15" fill="rgb(231,147,19)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="18.6850%" y="2005" width="0.1364%" height="15" fill="rgb(230,86,8)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="2015.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="18.6850%" y="1989" width="0.1364%" height="15" fill="rgb(237,159,39)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="18.6850%" y="1973" width="0.1364%" height="15" fill="rgb(247,179,47)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="18.6850%" y="1957" width="0.1364%" height="15" fill="rgb(253,152,26)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (32 samples, 0.14%)</title><rect x="18.6850%" y="1941" width="0.1364%" height="15" fill="rgb(222,211,15)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="18.6850%" y="1925" width="0.1364%" height="15" fill="rgb(236,193,6)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="18.6850%" y="1909" width="0.1364%" height="15" fill="rgb(226,206,10)" fg:x="4385" fg:w="32"/><text x="18.9350%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (29 samples, 0.12%)</title><rect x="18.6978%" y="1893" width="0.1236%" height="15" fill="rgb(213,125,22)" fg:x="4388" fg:w="29"/><text x="18.9478%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.12%)</title><rect x="18.6978%" y="1877" width="0.1236%" height="15" fill="rgb(221,66,28)" fg:x="4388" fg:w="29"/><text x="18.9478%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (29 samples, 0.12%)</title><rect x="18.6978%" y="1861" width="0.1236%" height="15" fill="rgb(222,84,53)" fg:x="4388" fg:w="29"/><text x="18.9478%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="18.7575%" y="1845" width="0.0639%" height="15" fill="rgb(243,50,15)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="18.7575%" y="1829" width="0.0639%" height="15" fill="rgb(208,184,23)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1839.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="18.7575%" y="1813" width="0.0639%" height="15" fill="rgb(221,83,2)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="18.7575%" y="1797" width="0.0639%" height="15" fill="rgb(236,53,24)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="18.7575%" y="1781" width="0.0639%" height="15" fill="rgb(244,171,29)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="18.7575%" y="1765" width="0.0639%" height="15" fill="rgb(205,19,11)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="18.7575%" y="1749" width="0.0639%" height="15" fill="rgb(207,108,29)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="18.7575%" y="1733" width="0.0639%" height="15" fill="rgb(236,215,43)" fg:x="4402" fg:w="15"/><text x="19.0075%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="18.7617%" y="1717" width="0.0597%" height="15" fill="rgb(213,58,35)" fg:x="4403" fg:w="14"/><text x="19.0117%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="18.7617%" y="1701" width="0.0597%" height="15" fill="rgb(220,211,46)" fg:x="4403" fg:w="14"/><text x="19.0117%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="18.7617%" y="1685" width="0.0597%" height="15" fill="rgb(212,134,16)" fg:x="4403" fg:w="14"/><text x="19.0117%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="18.7915%" y="1669" width="0.0298%" height="15" fill="rgb(232,90,44)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="18.7915%" y="1653" width="0.0298%" height="15" fill="rgb(212,18,36)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1663.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="18.7915%" y="1637" width="0.0298%" height="15" fill="rgb(206,112,24)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="18.7915%" y="1621" width="0.0298%" height="15" fill="rgb(238,223,40)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="18.7915%" y="1605" width="0.0298%" height="15" fill="rgb(226,169,20)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="18.7915%" y="1589" width="0.0298%" height="15" fill="rgb(241,64,52)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="18.7915%" y="1573" width="0.0298%" height="15" fill="rgb(228,120,25)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="18.7915%" y="1557" width="0.0298%" height="15" fill="rgb(234,108,19)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="18.7915%" y="1541" width="0.0298%" height="15" fill="rgb(236,133,29)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="18.7915%" y="1525" width="0.0298%" height="15" fill="rgb(246,174,53)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="18.7915%" y="1509" width="0.0298%" height="15" fill="rgb(210,105,35)" fg:x="4410" fg:w="7"/><text x="19.0415%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="18.8043%" y="1493" width="0.0170%" height="15" fill="rgb(225,27,26)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="18.8043%" y="1477" width="0.0170%" height="15" fill="rgb(233,2,39)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1487.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="18.8043%" y="1461" width="0.0170%" height="15" fill="rgb(219,164,26)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="18.8043%" y="1445" width="0.0170%" height="15" fill="rgb(236,211,5)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="18.8043%" y="1429" width="0.0170%" height="15" fill="rgb(244,227,23)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8043%" y="1413" width="0.0170%" height="15" fill="rgb(230,184,8)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8043%" y="1397" width="0.0170%" height="15" fill="rgb(217,125,48)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.8043%" y="1381" width="0.0170%" height="15" fill="rgb(223,192,47)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="18.8043%" y="1365" width="0.0170%" height="15" fill="rgb(226,119,10)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.8043%" y="1349" width="0.0170%" height="15" fill="rgb(221,49,29)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8043%" y="1333" width="0.0170%" height="15" fill="rgb(217,205,19)" fg:x="4413" fg:w="4"/><text x="19.0543%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="18.8214%" y="2181" width="0.0256%" height="15" fill="rgb(242,104,7)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="18.8214%" y="2165" width="0.0256%" height="15" fill="rgb(209,154,48)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="18.8214%" y="2149" width="0.0256%" height="15" fill="rgb(219,213,46)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="18.8214%" y="2133" width="0.0256%" height="15" fill="rgb(229,105,38)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="18.8214%" y="2117" width="0.0256%" height="15" fill="rgb(205,151,5)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="18.8214%" y="2101" width="0.0256%" height="15" fill="rgb(248,115,40)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="18.8214%" y="2085" width="0.0256%" height="15" fill="rgb(206,179,2)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="18.8214%" y="2069" width="0.0256%" height="15" fill="rgb(230,103,24)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="18.8214%" y="2053" width="0.0256%" height="15" fill="rgb(218,152,4)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="18.8214%" y="2037" width="0.0256%" height="15" fill="rgb(236,161,54)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="18.8214%" y="2021" width="0.0256%" height="15" fill="rgb(226,65,17)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="18.8214%" y="2005" width="0.0256%" height="15" fill="rgb(221,134,44)" fg:x="4417" fg:w="6"/><text x="19.0714%" y="2015.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="18.8469%" y="1781" width="0.0128%" height="15" fill="rgb(251,129,4)" fg:x="4423" fg:w="3"/><text x="19.0969%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="18.8469%" y="2021" width="0.0170%" height="15" fill="rgb(244,32,34)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8469%" y="2005" width="0.0170%" height="15" fill="rgb(251,224,37)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8469%" y="1989" width="0.0170%" height="15" fill="rgb(248,117,31)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.8469%" y="1973" width="0.0170%" height="15" fill="rgb(222,208,37)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="18.8469%" y="1957" width="0.0170%" height="15" fill="rgb(234,211,25)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1967.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="18.8469%" y="1941" width="0.0170%" height="15" fill="rgb(211,72,6)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="18.8469%" y="1925" width="0.0170%" height="15" fill="rgb(249,198,38)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1935.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="18.8469%" y="1909" width="0.0170%" height="15" fill="rgb(221,86,51)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1919.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="18.8469%" y="1893" width="0.0170%" height="15" fill="rgb(226,178,43)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1903.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="18.8469%" y="1877" width="0.0170%" height="15" fill="rgb(215,145,7)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="18.8469%" y="1861" width="0.0170%" height="15" fill="rgb(250,202,36)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8469%" y="1845" width="0.0170%" height="15" fill="rgb(215,86,13)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="18.8469%" y="1829" width="0.0170%" height="15" fill="rgb(221,134,12)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1839.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="18.8469%" y="1813" width="0.0170%" height="15" fill="rgb(213,82,10)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1823.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8469%" y="1797" width="0.0170%" height="15" fill="rgb(214,142,0)" fg:x="4423" fg:w="4"/><text x="19.0969%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="18.8469%" y="2133" width="0.0341%" height="15" fill="rgb(205,145,9)" fg:x="4423" fg:w="8"/><text x="19.0969%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="18.8469%" y="2117" width="0.0341%" height="15" fill="rgb(244,214,8)" fg:x="4423" fg:w="8"/><text x="19.0969%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="18.8469%" y="2101" width="0.0341%" height="15" fill="rgb(224,72,51)" fg:x="4423" fg:w="8"/><text x="19.0969%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="18.8469%" y="2085" width="0.0341%" height="15" fill="rgb(233,137,37)" fg:x="4423" fg:w="8"/><text x="19.0969%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="18.8469%" y="2069" width="0.0341%" height="15" fill="rgb(208,71,28)" fg:x="4423" fg:w="8"/><text x="19.0969%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="18.8469%" y="2053" width="0.0341%" height="15" fill="rgb(226,31,7)" fg:x="4423" fg:w="8"/><text x="19.0969%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="18.8469%" y="2037" width="0.0341%" height="15" fill="rgb(229,62,18)" fg:x="4423" fg:w="8"/><text x="19.0969%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="18.8640%" y="2021" width="0.0170%" height="15" fill="rgb(226,74,28)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="18.8640%" y="2005" width="0.0170%" height="15" fill="rgb(214,170,18)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="2015.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="18.8640%" y="1989" width="0.0170%" height="15" fill="rgb(227,229,35)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="18.8640%" y="1973" width="0.0170%" height="15" fill="rgb(225,181,39)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="18.8640%" y="1957" width="0.0170%" height="15" fill="rgb(253,124,44)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8640%" y="1941" width="0.0170%" height="15" fill="rgb(220,75,18)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8640%" y="1925" width="0.0170%" height="15" fill="rgb(239,175,43)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.8640%" y="1909" width="0.0170%" height="15" fill="rgb(228,112,50)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="18.8640%" y="1893" width="0.0170%" height="15" fill="rgb(232,105,36)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="18.8640%" y="1877" width="0.0170%" height="15" fill="rgb(227,137,47)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="18.8640%" y="1861" width="0.0170%" height="15" fill="rgb(217,51,9)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="18.8640%" y="1845" width="0.0170%" height="15" fill="rgb(245,117,0)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="18.8640%" y="1829" width="0.0170%" height="15" fill="rgb(252,52,30)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="18.8640%" y="1813" width="0.0170%" height="15" fill="rgb(227,85,33)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="18.8640%" y="1797" width="0.0170%" height="15" fill="rgb(220,157,20)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8640%" y="1781" width="0.0170%" height="15" fill="rgb(254,14,34)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="18.8640%" y="1765" width="0.0170%" height="15" fill="rgb(216,103,41)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="18.8640%" y="1749" width="0.0170%" height="15" fill="rgb(245,221,9)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8640%" y="1733" width="0.0170%" height="15" fill="rgb(254,136,47)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="18.8640%" y="1717" width="0.0170%" height="15" fill="rgb(235,71,46)" fg:x="4427" fg:w="4"/><text x="19.1140%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="18.8896%" y="1957" width="0.0170%" height="15" fill="rgb(242,154,29)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8896%" y="1941" width="0.0170%" height="15" fill="rgb(210,65,31)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8896%" y="1925" width="0.0170%" height="15" fill="rgb(244,9,50)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.8896%" y="1909" width="0.0170%" height="15" fill="rgb(215,141,38)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="18.8896%" y="1893" width="0.0170%" height="15" fill="rgb(241,129,6)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="18.8896%" y="1877" width="0.0170%" height="15" fill="rgb(253,169,4)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="18.8896%" y="1861" width="0.0170%" height="15" fill="rgb(237,82,36)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="18.8896%" y="1845" width="0.0170%" height="15" fill="rgb(209,171,11)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="18.8896%" y="1829" width="0.0170%" height="15" fill="rgb(242,19,22)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="18.8896%" y="1813" width="0.0170%" height="15" fill="rgb(251,122,24)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="18.8896%" y="1797" width="0.0170%" height="15" fill="rgb(226,166,42)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8896%" y="1781" width="0.0170%" height="15" fill="rgb(244,101,48)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="18.8896%" y="1765" width="0.0170%" height="15" fill="rgb(227,125,1)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="18.8896%" y="1749" width="0.0170%" height="15" fill="rgb(206,79,43)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="18.8896%" y="1733" width="0.0170%" height="15" fill="rgb(241,109,41)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="18.8896%" y="1717" width="0.0170%" height="15" fill="rgb(219,73,4)" fg:x="4433" fg:w="4"/><text x="19.1396%" y="1727.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="18.9066%" y="1637" width="0.0128%" height="15" fill="rgb(239,25,41)" fg:x="4437" fg:w="3"/><text x="19.1566%" y="1647.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="18.9066%" y="1621" width="0.0128%" height="15" fill="rgb(208,88,46)" fg:x="4437" fg:w="3"/><text x="19.1566%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (63 samples, 0.27%)</title><rect x="18.6552%" y="2597" width="0.2685%" height="15" fill="rgb(239,184,9)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (63 samples, 0.27%)</title><rect x="18.6552%" y="2581" width="0.2685%" height="15" fill="rgb(223,114,13)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (63 samples, 0.27%)</title><rect x="18.6552%" y="2565" width="0.2685%" height="15" fill="rgb(214,28,42)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2575.50"></text></g><g><title>rayon_core::job::JobRef::execute (63 samples, 0.27%)</title><rect x="18.6552%" y="2549" width="0.2685%" height="15" fill="rgb(252,32,44)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2559.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (63 samples, 0.27%)</title><rect x="18.6552%" y="2533" width="0.2685%" height="15" fill="rgb(231,159,4)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2543.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (63 samples, 0.27%)</title><rect x="18.6552%" y="2517" width="0.2685%" height="15" fill="rgb(210,35,26)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (63 samples, 0.27%)</title><rect x="18.6552%" y="2501" width="0.2685%" height="15" fill="rgb(208,190,37)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2511.50"></text></g><g><title>std::panic::catch_unwind (63 samples, 0.27%)</title><rect x="18.6552%" y="2485" width="0.2685%" height="15" fill="rgb(226,148,22)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2495.50"></text></g><g><title>std::panicking::try (63 samples, 0.27%)</title><rect x="18.6552%" y="2469" width="0.2685%" height="15" fill="rgb(242,153,24)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2479.50"></text></g><g><title>std::panicking::try::do_call (63 samples, 0.27%)</title><rect x="18.6552%" y="2453" width="0.2685%" height="15" fill="rgb(213,133,7)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (63 samples, 0.27%)</title><rect x="18.6552%" y="2437" width="0.2685%" height="15" fill="rgb(248,206,18)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (63 samples, 0.27%)</title><rect x="18.6552%" y="2421" width="0.2685%" height="15" fill="rgb(233,157,4)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (63 samples, 0.27%)</title><rect x="18.6552%" y="2405" width="0.2685%" height="15" fill="rgb(249,179,32)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (63 samples, 0.27%)</title><rect x="18.6552%" y="2389" width="0.2685%" height="15" fill="rgb(248,69,35)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (63 samples, 0.27%)</title><rect x="18.6552%" y="2373" width="0.2685%" height="15" fill="rgb(249,158,38)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (63 samples, 0.27%)</title><rect x="18.6552%" y="2357" width="0.2685%" height="15" fill="rgb(223,18,43)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (63 samples, 0.27%)</title><rect x="18.6552%" y="2341" width="0.2685%" height="15" fill="rgb(238,42,45)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (63 samples, 0.27%)</title><rect x="18.6552%" y="2325" width="0.2685%" height="15" fill="rgb(219,65,47)" fg:x="4378" fg:w="63"/><text x="18.9052%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (24 samples, 0.10%)</title><rect x="18.8214%" y="2309" width="0.1023%" height="15" fill="rgb(248,153,12)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (24 samples, 0.10%)</title><rect x="18.8214%" y="2293" width="0.1023%" height="15" fill="rgb(240,118,4)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2303.50"></text></g><g><title>std::panicking::try (24 samples, 0.10%)</title><rect x="18.8214%" y="2277" width="0.1023%" height="15" fill="rgb(250,96,34)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (24 samples, 0.10%)</title><rect x="18.8214%" y="2261" width="0.1023%" height="15" fill="rgb(221,15,4)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (24 samples, 0.10%)</title><rect x="18.8214%" y="2245" width="0.1023%" height="15" fill="rgb(217,149,33)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (24 samples, 0.10%)</title><rect x="18.8214%" y="2229" width="0.1023%" height="15" fill="rgb(213,58,29)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="18.8214%" y="2213" width="0.1023%" height="15" fill="rgb(236,218,9)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="18.8214%" y="2197" width="0.1023%" height="15" fill="rgb(248,40,19)" fg:x="4417" fg:w="24"/><text x="19.0714%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="18.8469%" y="2181" width="0.0767%" height="15" fill="rgb(212,17,6)" fg:x="4423" fg:w="18"/><text x="19.0969%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="18.8469%" y="2165" width="0.0767%" height="15" fill="rgb(206,212,20)" fg:x="4423" fg:w="18"/><text x="19.0969%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="18.8469%" y="2149" width="0.0767%" height="15" fill="rgb(229,80,37)" fg:x="4423" fg:w="18"/><text x="19.0969%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="18.8810%" y="2133" width="0.0426%" height="15" fill="rgb(253,8,37)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="18.8810%" y="2117" width="0.0426%" height="15" fill="rgb(215,16,43)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2127.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="18.8810%" y="2101" width="0.0426%" height="15" fill="rgb(236,219,16)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="18.8810%" y="2085" width="0.0426%" height="15" fill="rgb(251,0,3)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="18.8810%" y="2069" width="0.0426%" height="15" fill="rgb(207,133,37)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="18.8810%" y="2053" width="0.0426%" height="15" fill="rgb(250,143,20)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="18.8810%" y="2037" width="0.0426%" height="15" fill="rgb(242,19,50)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="18.8810%" y="2021" width="0.0426%" height="15" fill="rgb(206,124,43)" fg:x="4431" fg:w="10"/><text x="19.1310%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="18.8896%" y="2005" width="0.0341%" height="15" fill="rgb(229,4,38)" fg:x="4433" fg:w="8"/><text x="19.1396%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="18.8896%" y="1989" width="0.0341%" height="15" fill="rgb(247,220,45)" fg:x="4433" fg:w="8"/><text x="19.1396%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="18.8896%" y="1973" width="0.0341%" height="15" fill="rgb(247,195,0)" fg:x="4433" fg:w="8"/><text x="19.1396%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="18.9066%" y="1957" width="0.0170%" height="15" fill="rgb(252,12,19)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="18.9066%" y="1941" width="0.0170%" height="15" fill="rgb(222,49,50)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1951.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="18.9066%" y="1925" width="0.0170%" height="15" fill="rgb(209,157,28)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="18.9066%" y="1909" width="0.0170%" height="15" fill="rgb(238,174,24)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="18.9066%" y="1893" width="0.0170%" height="15" fill="rgb(224,17,28)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9066%" y="1877" width="0.0170%" height="15" fill="rgb(249,7,29)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9066%" y="1861" width="0.0170%" height="15" fill="rgb(243,178,4)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.9066%" y="1845" width="0.0170%" height="15" fill="rgb(246,138,35)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="18.9066%" y="1829" width="0.0170%" height="15" fill="rgb(251,85,18)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="18.9066%" y="1813" width="0.0170%" height="15" fill="rgb(254,55,9)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="18.9066%" y="1797" width="0.0170%" height="15" fill="rgb(248,4,50)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="18.9066%" y="1781" width="0.0170%" height="15" fill="rgb(215,208,14)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="18.9066%" y="1765" width="0.0170%" height="15" fill="rgb(218,37,18)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="18.9066%" y="1749" width="0.0170%" height="15" fill="rgb(206,104,13)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="18.9066%" y="1733" width="0.0170%" height="15" fill="rgb(248,94,22)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9066%" y="1717" width="0.0170%" height="15" fill="rgb(235,42,46)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="18.9066%" y="1701" width="0.0170%" height="15" fill="rgb(220,228,48)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="18.9066%" y="1685" width="0.0170%" height="15" fill="rgb(216,58,12)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9066%" y="1669" width="0.0170%" height="15" fill="rgb(223,97,52)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="18.9066%" y="1653" width="0.0170%" height="15" fill="rgb(208,159,17)" fg:x="4437" fg:w="4"/><text x="19.1566%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="18.9236%" y="2469" width="0.0128%" height="15" fill="rgb(215,172,9)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="18.9236%" y="2453" width="0.0128%" height="15" fill="rgb(252,175,30)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="18.9236%" y="2437" width="0.0128%" height="15" fill="rgb(209,159,10)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="18.9236%" y="2421" width="0.0128%" height="15" fill="rgb(229,73,51)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="18.9236%" y="2405" width="0.0128%" height="15" fill="rgb(208,212,43)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="18.9236%" y="2389" width="0.0128%" height="15" fill="rgb(254,123,53)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="18.9236%" y="2373" width="0.0128%" height="15" fill="rgb(254,128,49)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="18.9236%" y="2357" width="0.0128%" height="15" fill="rgb(246,16,16)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="18.9236%" y="2341" width="0.0128%" height="15" fill="rgb(209,200,1)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="18.9236%" y="2325" width="0.0128%" height="15" fill="rgb(235,9,3)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="18.9236%" y="2309" width="0.0128%" height="15" fill="rgb(233,121,54)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="18.9236%" y="2293" width="0.0128%" height="15" fill="rgb(236,80,25)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="18.9236%" y="2277" width="0.0128%" height="15" fill="rgb(220,44,24)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="18.9236%" y="2261" width="0.0128%" height="15" fill="rgb(236,225,16)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2271.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="18.9236%" y="2245" width="0.0128%" height="15" fill="rgb(237,140,0)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2255.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="18.9236%" y="2229" width="0.0128%" height="15" fill="rgb(243,225,53)" fg:x="4441" fg:w="3"/><text x="19.1736%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="18.9364%" y="2357" width="0.0170%" height="15" fill="rgb(240,140,30)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="18.9364%" y="2341" width="0.0170%" height="15" fill="rgb(217,51,16)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="18.9364%" y="2325" width="0.0170%" height="15" fill="rgb(245,75,50)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="18.9364%" y="2309" width="0.0170%" height="15" fill="rgb(208,174,22)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="18.9364%" y="2293" width="0.0170%" height="15" fill="rgb(219,98,50)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="18.9364%" y="2277" width="0.0170%" height="15" fill="rgb(243,138,3)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="18.9364%" y="2261" width="0.0170%" height="15" fill="rgb(243,132,26)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9364%" y="2245" width="0.0170%" height="15" fill="rgb(250,201,8)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="18.9364%" y="2229" width="0.0170%" height="15" fill="rgb(213,91,26)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="18.9364%" y="2213" width="0.0170%" height="15" fill="rgb(229,117,1)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9364%" y="2197" width="0.0170%" height="15" fill="rgb(229,24,6)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="18.9364%" y="2181" width="0.0170%" height="15" fill="rgb(206,69,11)" fg:x="4444" fg:w="4"/><text x="19.1864%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="18.9620%" y="2197" width="0.0170%" height="15" fill="rgb(234,111,34)" fg:x="4450" fg:w="4"/><text x="19.2120%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9620%" y="2181" width="0.0170%" height="15" fill="rgb(213,187,51)" fg:x="4450" fg:w="4"/><text x="19.2120%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9620%" y="2165" width="0.0170%" height="15" fill="rgb(207,45,11)" fg:x="4450" fg:w="4"/><text x="19.2120%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.9620%" y="2149" width="0.0170%" height="15" fill="rgb(225,151,47)" fg:x="4450" fg:w="4"/><text x="19.2120%" y="2159.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="18.9620%" y="2133" width="0.0170%" height="15" fill="rgb(211,226,5)" fg:x="4450" fg:w="4"/><text x="19.2120%" y="2143.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.9620%" y="2117" width="0.0170%" height="15" fill="rgb(214,83,52)" fg:x="4450" fg:w="4"/><text x="19.2120%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="18.9620%" y="2101" width="0.0170%" height="15" fill="rgb(229,49,53)" fg:x="4450" fg:w="4"/><text x="19.2120%" y="2111.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="18.9535%" y="2309" width="0.0341%" height="15" fill="rgb(246,8,28)" fg:x="4448" fg:w="8"/><text x="19.2035%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="18.9535%" y="2293" width="0.0341%" height="15" fill="rgb(207,28,41)" fg:x="4448" fg:w="8"/><text x="19.2035%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="18.9535%" y="2277" width="0.0341%" height="15" fill="rgb(254,22,25)" fg:x="4448" fg:w="8"/><text x="19.2035%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="18.9535%" y="2261" width="0.0341%" height="15" fill="rgb(209,120,42)" fg:x="4448" fg:w="8"/><text x="19.2035%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="18.9620%" y="2245" width="0.0256%" height="15" fill="rgb(216,194,18)" fg:x="4450" fg:w="6"/><text x="19.2120%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="18.9620%" y="2229" width="0.0256%" height="15" fill="rgb(213,70,17)" fg:x="4450" fg:w="6"/><text x="19.2120%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="18.9620%" y="2213" width="0.0256%" height="15" fill="rgb(228,66,19)" fg:x="4450" fg:w="6"/><text x="19.2120%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="18.9876%" y="1509" width="0.0128%" height="15" fill="rgb(236,221,54)" fg:x="4456" fg:w="3"/><text x="19.2376%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="18.9876%" y="1493" width="0.0128%" height="15" fill="rgb(207,175,15)" fg:x="4456" fg:w="3"/><text x="19.2376%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="18.9876%" y="1477" width="0.0128%" height="15" fill="rgb(234,76,8)" fg:x="4456" fg:w="3"/><text x="19.2376%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.9876%" y="1461" width="0.0128%" height="15" fill="rgb(243,106,0)" fg:x="4456" fg:w="3"/><text x="19.2376%" y="1471.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="18.9876%" y="1445" width="0.0128%" height="15" fill="rgb(208,48,19)" fg:x="4456" fg:w="3"/><text x="19.2376%" y="1455.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.9876%" y="1429" width="0.0128%" height="15" fill="rgb(251,50,29)" fg:x="4456" fg:w="3"/><text x="19.2376%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="18.9876%" y="1413" width="0.0128%" height="15" fill="rgb(222,31,49)" fg:x="4456" fg:w="3"/><text x="19.2376%" y="1423.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="18.9876%" y="1621" width="0.0298%" height="15" fill="rgb(232,33,18)" fg:x="4456" fg:w="7"/><text x="19.2376%" y="1631.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="18.9876%" y="1605" width="0.0298%" height="15" fill="rgb(209,1,44)" fg:x="4456" fg:w="7"/><text x="19.2376%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="18.9876%" y="1589" width="0.0298%" height="15" fill="rgb(211,7,1)" fg:x="4456" fg:w="7"/><text x="19.2376%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="18.9876%" y="1573" width="0.0298%" height="15" fill="rgb(224,111,27)" fg:x="4456" fg:w="7"/><text x="19.2376%" y="1583.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="18.9876%" y="1557" width="0.0298%" height="15" fill="rgb(252,195,39)" fg:x="4456" fg:w="7"/><text x="19.2376%" y="1567.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="18.9876%" y="1541" width="0.0298%" height="15" fill="rgb(237,198,5)" fg:x="4456" fg:w="7"/><text x="19.2376%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="18.9876%" y="1525" width="0.0298%" height="15" fill="rgb(232,148,1)" fg:x="4456" fg:w="7"/><text x="19.2376%" y="1535.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="19.0003%" y="1509" width="0.0170%" height="15" fill="rgb(249,41,3)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1519.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="19.0003%" y="1493" width="0.0170%" height="15" fill="rgb(215,14,33)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1503.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="19.0003%" y="1477" width="0.0170%" height="15" fill="rgb(209,146,24)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1487.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="19.0003%" y="1461" width="0.0170%" height="15" fill="rgb(219,51,47)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1471.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="19.0003%" y="1445" width="0.0170%" height="15" fill="rgb(234,217,40)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1455.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0003%" y="1429" width="0.0170%" height="15" fill="rgb(228,34,26)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0003%" y="1413" width="0.0170%" height="15" fill="rgb(224,50,29)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.0003%" y="1397" width="0.0170%" height="15" fill="rgb(205,79,51)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1407.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.0003%" y="1381" width="0.0170%" height="15" fill="rgb(218,136,28)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1391.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.0003%" y="1365" width="0.0170%" height="15" fill="rgb(220,150,10)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0003%" y="1349" width="0.0170%" height="15" fill="rgb(242,158,47)" fg:x="4459" fg:w="4"/><text x="19.2503%" y="1359.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="19.0174%" y="1445" width="0.0170%" height="15" fill="rgb(209,68,0)" fg:x="4463" fg:w="4"/><text x="19.2674%" y="1455.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0174%" y="1429" width="0.0170%" height="15" fill="rgb(208,13,41)" fg:x="4463" fg:w="4"/><text x="19.2674%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0174%" y="1413" width="0.0170%" height="15" fill="rgb(226,201,7)" fg:x="4463" fg:w="4"/><text x="19.2674%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.0174%" y="1397" width="0.0170%" height="15" fill="rgb(236,103,26)" fg:x="4463" fg:w="4"/><text x="19.2674%" y="1407.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.0174%" y="1381" width="0.0170%" height="15" fill="rgb(243,162,8)" fg:x="4463" fg:w="4"/><text x="19.2674%" y="1391.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.0174%" y="1365" width="0.0170%" height="15" fill="rgb(237,225,11)" fg:x="4463" fg:w="4"/><text x="19.2674%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0174%" y="1349" width="0.0170%" height="15" fill="rgb(247,186,32)" fg:x="4463" fg:w="4"/><text x="19.2674%" y="1359.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (15 samples, 0.06%)</title><rect x="18.9876%" y="1909" width="0.0639%" height="15" fill="rgb(215,26,28)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.06%)</title><rect x="18.9876%" y="1893" width="0.0639%" height="15" fill="rgb(208,121,6)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (15 samples, 0.06%)</title><rect x="18.9876%" y="1877" width="0.0639%" height="15" fill="rgb(225,91,3)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1887.50"></text></g><g><title>rayon_core::job::JobRef::execute (15 samples, 0.06%)</title><rect x="18.9876%" y="1861" width="0.0639%" height="15" fill="rgb(246,119,36)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1871.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (15 samples, 0.06%)</title><rect x="18.9876%" y="1845" width="0.0639%" height="15" fill="rgb(254,173,2)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1855.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (15 samples, 0.06%)</title><rect x="18.9876%" y="1829" width="0.0639%" height="15" fill="rgb(209,87,54)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1839.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="18.9876%" y="1813" width="0.0639%" height="15" fill="rgb(223,216,20)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1823.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="18.9876%" y="1797" width="0.0639%" height="15" fill="rgb(220,31,8)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1807.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="18.9876%" y="1781" width="0.0639%" height="15" fill="rgb(220,185,15)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1791.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="18.9876%" y="1765" width="0.0639%" height="15" fill="rgb(247,190,50)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1775.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="18.9876%" y="1749" width="0.0639%" height="15" fill="rgb(239,173,47)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1759.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (15 samples, 0.06%)</title><rect x="18.9876%" y="1733" width="0.0639%" height="15" fill="rgb(218,190,42)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="18.9876%" y="1717" width="0.0639%" height="15" fill="rgb(251,207,16)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="18.9876%" y="1701" width="0.0639%" height="15" fill="rgb(222,199,47)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="18.9876%" y="1685" width="0.0639%" height="15" fill="rgb(245,190,7)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="18.9876%" y="1669" width="0.0639%" height="15" fill="rgb(239,85,38)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="18.9876%" y="1653" width="0.0639%" height="15" fill="rgb(229,69,51)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="18.9876%" y="1637" width="0.0639%" height="15" fill="rgb(231,104,51)" fg:x="4456" fg:w="15"/><text x="19.2376%" y="1647.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="19.0174%" y="1621" width="0.0341%" height="15" fill="rgb(235,49,4)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1631.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="19.0174%" y="1605" width="0.0341%" height="15" fill="rgb(246,166,20)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1615.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="19.0174%" y="1589" width="0.0341%" height="15" fill="rgb(230,119,37)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1599.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="19.0174%" y="1573" width="0.0341%" height="15" fill="rgb(234,77,34)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1583.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="19.0174%" y="1557" width="0.0341%" height="15" fill="rgb(211,222,33)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="19.0174%" y="1541" width="0.0341%" height="15" fill="rgb(226,45,42)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="19.0174%" y="1525" width="0.0341%" height="15" fill="rgb(215,174,28)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="19.0174%" y="1509" width="0.0341%" height="15" fill="rgb(254,173,49)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1519.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="19.0174%" y="1493" width="0.0341%" height="15" fill="rgb(229,191,6)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1503.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="19.0174%" y="1477" width="0.0341%" height="15" fill="rgb(212,145,22)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="19.0174%" y="1461" width="0.0341%" height="15" fill="rgb(226,6,51)" fg:x="4463" fg:w="8"/><text x="19.2674%" y="1471.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="19.0344%" y="1445" width="0.0170%" height="15" fill="rgb(227,128,8)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1455.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="19.0344%" y="1429" width="0.0170%" height="15" fill="rgb(205,24,10)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1439.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="19.0344%" y="1413" width="0.0170%" height="15" fill="rgb(217,147,27)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1423.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="19.0344%" y="1397" width="0.0170%" height="15" fill="rgb(250,82,42)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1407.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="19.0344%" y="1381" width="0.0170%" height="15" fill="rgb(248,93,17)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0344%" y="1365" width="0.0170%" height="15" fill="rgb(254,212,40)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0344%" y="1349" width="0.0170%" height="15" fill="rgb(229,209,2)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.0344%" y="1333" width="0.0170%" height="15" fill="rgb(211,50,43)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1343.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.0344%" y="1317" width="0.0170%" height="15" fill="rgb(245,196,29)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1327.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.0344%" y="1301" width="0.0170%" height="15" fill="rgb(216,132,13)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0344%" y="1285" width="0.0170%" height="15" fill="rgb(251,108,21)" fg:x="4467" fg:w="4"/><text x="19.2844%" y="1295.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (18 samples, 0.08%)</title><rect x="18.9876%" y="2021" width="0.0767%" height="15" fill="rgb(229,174,54)" fg:x="4456" fg:w="18"/><text x="19.2376%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="18.9876%" y="2005" width="0.0767%" height="15" fill="rgb(211,175,47)" fg:x="4456" fg:w="18"/><text x="19.2376%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="18.9876%" y="1989" width="0.0767%" height="15" fill="rgb(234,5,37)" fg:x="4456" fg:w="18"/><text x="19.2376%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="18.9876%" y="1973" width="0.0767%" height="15" fill="rgb(244,150,43)" fg:x="4456" fg:w="18"/><text x="19.2376%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="18.9876%" y="1957" width="0.0767%" height="15" fill="rgb(242,172,38)" fg:x="4456" fg:w="18"/><text x="19.2376%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="18.9876%" y="1941" width="0.0767%" height="15" fill="rgb(205,27,8)" fg:x="4456" fg:w="18"/><text x="19.2376%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="18.9876%" y="1925" width="0.0767%" height="15" fill="rgb(217,57,3)" fg:x="4456" fg:w="18"/><text x="19.2376%" y="1935.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="19.0515%" y="1909" width="0.0128%" height="15" fill="rgb(242,21,38)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1919.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="19.0515%" y="1893" width="0.0128%" height="15" fill="rgb(209,64,43)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1903.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="19.0515%" y="1877" width="0.0128%" height="15" fill="rgb(222,2,46)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1887.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="19.0515%" y="1861" width="0.0128%" height="15" fill="rgb(218,19,44)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1871.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="19.0515%" y="1845" width="0.0128%" height="15" fill="rgb(240,203,42)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="19.0515%" y="1829" width="0.0128%" height="15" fill="rgb(229,23,45)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.0515%" y="1813" width="0.0128%" height="15" fill="rgb(205,228,51)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.0515%" y="1797" width="0.0128%" height="15" fill="rgb(239,36,20)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="19.0515%" y="1781" width="0.0128%" height="15" fill="rgb(248,172,27)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1791.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="19.0515%" y="1765" width="0.0128%" height="15" fill="rgb(244,55,32)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="19.0515%" y="1749" width="0.0128%" height="15" fill="rgb(215,97,16)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="19.0515%" y="1733" width="0.0128%" height="15" fill="rgb(224,80,29)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1743.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="19.0515%" y="1717" width="0.0128%" height="15" fill="rgb(216,93,47)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1727.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="19.0515%" y="1701" width="0.0128%" height="15" fill="rgb(238,159,10)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="19.0515%" y="1685" width="0.0128%" height="15" fill="rgb(223,98,29)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="19.0515%" y="1669" width="0.0128%" height="15" fill="rgb(210,176,23)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="19.0515%" y="1653" width="0.0128%" height="15" fill="rgb(242,162,27)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1663.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="19.0515%" y="1637" width="0.0128%" height="15" fill="rgb(245,109,32)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1647.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="19.0515%" y="1621" width="0.0128%" height="15" fill="rgb(248,87,8)" fg:x="4471" fg:w="3"/><text x="19.3015%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (22 samples, 0.09%)</title><rect x="18.9876%" y="2309" width="0.0937%" height="15" fill="rgb(250,160,50)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.09%)</title><rect x="18.9876%" y="2293" width="0.0937%" height="15" fill="rgb(246,165,25)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (22 samples, 0.09%)</title><rect x="18.9876%" y="2277" width="0.0937%" height="15" fill="rgb(249,219,3)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (22 samples, 0.09%)</title><rect x="18.9876%" y="2261" width="0.0937%" height="15" fill="rgb(226,66,5)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (22 samples, 0.09%)</title><rect x="18.9876%" y="2245" width="0.0937%" height="15" fill="rgb(250,220,43)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (22 samples, 0.09%)</title><rect x="18.9876%" y="2229" width="0.0937%" height="15" fill="rgb(225,111,31)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="18.9876%" y="2213" width="0.0937%" height="15" fill="rgb(248,106,18)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="18.9876%" y="2197" width="0.0937%" height="15" fill="rgb(220,226,45)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2207.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="18.9876%" y="2181" width="0.0937%" height="15" fill="rgb(208,58,53)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="18.9876%" y="2165" width="0.0937%" height="15" fill="rgb(209,133,1)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="18.9876%" y="2149" width="0.0937%" height="15" fill="rgb(228,216,27)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (22 samples, 0.09%)</title><rect x="18.9876%" y="2133" width="0.0937%" height="15" fill="rgb(238,155,2)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="18.9876%" y="2117" width="0.0937%" height="15" fill="rgb(244,99,37)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="18.9876%" y="2101" width="0.0937%" height="15" fill="rgb(254,32,3)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="18.9876%" y="2085" width="0.0937%" height="15" fill="rgb(234,46,50)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="18.9876%" y="2069" width="0.0937%" height="15" fill="rgb(232,118,51)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="18.9876%" y="2053" width="0.0937%" height="15" fill="rgb(207,24,32)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="18.9876%" y="2037" width="0.0937%" height="15" fill="rgb(208,107,43)" fg:x="4456" fg:w="22"/><text x="19.2376%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="19.0643%" y="2021" width="0.0170%" height="15" fill="rgb(231,28,9)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="19.0643%" y="2005" width="0.0170%" height="15" fill="rgb(241,204,15)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="2015.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="19.0643%" y="1989" width="0.0170%" height="15" fill="rgb(214,54,15)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="19.0643%" y="1973" width="0.0170%" height="15" fill="rgb(230,12,28)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="19.0643%" y="1957" width="0.0170%" height="15" fill="rgb(221,171,5)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0643%" y="1941" width="0.0170%" height="15" fill="rgb(207,72,25)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0643%" y="1925" width="0.0170%" height="15" fill="rgb(249,79,37)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.0643%" y="1909" width="0.0170%" height="15" fill="rgb(209,98,49)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.0643%" y="1893" width="0.0170%" height="15" fill="rgb(221,62,13)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.0643%" y="1877" width="0.0170%" height="15" fill="rgb(223,39,6)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0643%" y="1861" width="0.0170%" height="15" fill="rgb(246,163,20)" fg:x="4474" fg:w="4"/><text x="19.3143%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="19.0898%" y="2133" width="0.0256%" height="15" fill="rgb(211,111,29)" fg:x="4480" fg:w="6"/><text x="19.3398%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="19.0898%" y="2117" width="0.0256%" height="15" fill="rgb(243,118,5)" fg:x="4480" fg:w="6"/><text x="19.3398%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="19.0898%" y="2101" width="0.0256%" height="15" fill="rgb(240,144,52)" fg:x="4480" fg:w="6"/><text x="19.3398%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.0898%" y="2085" width="0.0256%" height="15" fill="rgb(244,158,36)" fg:x="4480" fg:w="6"/><text x="19.3398%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.0983%" y="2069" width="0.0170%" height="15" fill="rgb(241,109,37)" fg:x="4482" fg:w="4"/><text x="19.3483%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.0983%" y="2053" width="0.0170%" height="15" fill="rgb(213,95,32)" fg:x="4482" fg:w="4"/><text x="19.3483%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.0983%" y="2037" width="0.0170%" height="15" fill="rgb(252,193,9)" fg:x="4482" fg:w="4"/><text x="19.3483%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (48 samples, 0.20%)</title><rect x="18.9364%" y="2421" width="0.2045%" height="15" fill="rgb(225,213,21)" fg:x="4444" fg:w="48"/><text x="19.1864%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (48 samples, 0.20%)</title><rect x="18.9364%" y="2405" width="0.2045%" height="15" fill="rgb(220,172,46)" fg:x="4444" fg:w="48"/><text x="19.1864%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (48 samples, 0.20%)</title><rect x="18.9364%" y="2389" width="0.2045%" height="15" fill="rgb(235,75,41)" fg:x="4444" fg:w="48"/><text x="19.1864%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.20%)</title><rect x="18.9364%" y="2373" width="0.2045%" height="15" fill="rgb(213,86,9)" fg:x="4444" fg:w="48"/><text x="19.1864%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (44 samples, 0.19%)</title><rect x="18.9535%" y="2357" width="0.1875%" height="15" fill="rgb(238,127,51)" fg:x="4448" fg:w="44"/><text x="19.2035%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (44 samples, 0.19%)</title><rect x="18.9535%" y="2341" width="0.1875%" height="15" fill="rgb(215,2,54)" fg:x="4448" fg:w="44"/><text x="19.2035%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (44 samples, 0.19%)</title><rect x="18.9535%" y="2325" width="0.1875%" height="15" fill="rgb(245,80,6)" fg:x="4448" fg:w="44"/><text x="19.2035%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="19.0813%" y="2309" width="0.0597%" height="15" fill="rgb(233,106,42)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="19.0813%" y="2293" width="0.0597%" height="15" fill="rgb(244,86,38)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2303.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="19.0813%" y="2277" width="0.0597%" height="15" fill="rgb(242,167,7)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="19.0813%" y="2261" width="0.0597%" height="15" fill="rgb(218,216,3)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="19.0813%" y="2245" width="0.0597%" height="15" fill="rgb(206,136,36)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="19.0813%" y="2229" width="0.0597%" height="15" fill="rgb(206,206,15)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="19.0813%" y="2213" width="0.0597%" height="15" fill="rgb(207,163,34)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="19.0813%" y="2197" width="0.0597%" height="15" fill="rgb(240,127,22)" fg:x="4478" fg:w="14"/><text x="19.3313%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="19.0898%" y="2181" width="0.0511%" height="15" fill="rgb(227,49,5)" fg:x="4480" fg:w="12"/><text x="19.3398%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="19.0898%" y="2165" width="0.0511%" height="15" fill="rgb(231,8,6)" fg:x="4480" fg:w="12"/><text x="19.3398%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="19.0898%" y="2149" width="0.0511%" height="15" fill="rgb(223,21,24)" fg:x="4480" fg:w="12"/><text x="19.3398%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="19.1154%" y="2133" width="0.0256%" height="15" fill="rgb(244,44,52)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="19.1154%" y="2117" width="0.0256%" height="15" fill="rgb(207,73,28)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2127.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="19.1154%" y="2101" width="0.0256%" height="15" fill="rgb(234,215,10)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="19.1154%" y="2085" width="0.0256%" height="15" fill="rgb(236,85,3)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="19.1154%" y="2069" width="0.0256%" height="15" fill="rgb(236,102,39)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="19.1154%" y="2053" width="0.0256%" height="15" fill="rgb(243,50,8)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="19.1154%" y="2037" width="0.0256%" height="15" fill="rgb(207,111,4)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.1154%" y="2021" width="0.0256%" height="15" fill="rgb(230,52,42)" fg:x="4486" fg:w="6"/><text x="19.3654%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.1239%" y="2005" width="0.0170%" height="15" fill="rgb(252,178,50)" fg:x="4488" fg:w="4"/><text x="19.3739%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.1239%" y="1989" width="0.0170%" height="15" fill="rgb(234,46,35)" fg:x="4488" fg:w="4"/><text x="19.3739%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.1239%" y="1973" width="0.0170%" height="15" fill="rgb(228,69,37)" fg:x="4488" fg:w="4"/><text x="19.3739%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="19.1410%" y="1445" width="0.0128%" height="15" fill="rgb(221,21,11)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1455.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="19.1410%" y="1429" width="0.0128%" height="15" fill="rgb(223,56,9)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="19.1410%" y="1413" width="0.0128%" height="15" fill="rgb(234,30,19)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1423.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="19.1410%" y="1397" width="0.0128%" height="15" fill="rgb(211,64,54)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1407.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="19.1410%" y="1381" width="0.0128%" height="15" fill="rgb(250,189,5)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1391.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="19.1410%" y="1365" width="0.0128%" height="15" fill="rgb(214,180,13)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1375.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="19.1410%" y="1349" width="0.0128%" height="15" fill="rgb(238,40,40)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1359.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="19.1410%" y="1333" width="0.0128%" height="15" fill="rgb(214,101,38)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1343.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="19.1410%" y="1317" width="0.0128%" height="15" fill="rgb(242,65,53)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1327.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="19.1410%" y="1301" width="0.0128%" height="15" fill="rgb(230,22,45)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1311.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="19.1410%" y="1285" width="0.0128%" height="15" fill="rgb(223,77,1)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1295.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1410%" y="1269" width="0.0128%" height="15" fill="rgb(227,33,37)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1410%" y="1253" width="0.0128%" height="15" fill="rgb(224,148,39)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1410%" y="1237" width="0.0128%" height="15" fill="rgb(232,212,39)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.1410%" y="1221" width="0.0128%" height="15" fill="rgb(251,172,7)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="19.1410%" y="1205" width="0.0128%" height="15" fill="rgb(219,39,9)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1215.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="19.1410%" y="1189" width="0.0128%" height="15" fill="rgb(228,118,14)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="19.1410%" y="1173" width="0.0128%" height="15" fill="rgb(207,140,10)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1183.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="19.1410%" y="1157" width="0.0128%" height="15" fill="rgb(227,111,53)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1167.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="19.1410%" y="1141" width="0.0128%" height="15" fill="rgb(216,165,16)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1151.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="19.1410%" y="1125" width="0.0128%" height="15" fill="rgb(226,111,18)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1135.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="19.1410%" y="1109" width="0.0128%" height="15" fill="rgb(251,27,17)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1119.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1410%" y="1093" width="0.0128%" height="15" fill="rgb(254,69,9)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1103.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="19.1410%" y="1077" width="0.0128%" height="15" fill="rgb(234,140,37)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1087.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="19.1410%" y="1061" width="0.0128%" height="15" fill="rgb(220,93,8)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1071.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1410%" y="1045" width="0.0128%" height="15" fill="rgb(236,113,3)" fg:x="4492" fg:w="3"/><text x="19.3910%" y="1055.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="19.1537%" y="1269" width="0.0128%" height="15" fill="rgb(234,108,23)" fg:x="4495" fg:w="3"/><text x="19.4037%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1537%" y="1253" width="0.0128%" height="15" fill="rgb(205,114,34)" fg:x="4495" fg:w="3"/><text x="19.4037%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1537%" y="1237" width="0.0128%" height="15" fill="rgb(236,200,45)" fg:x="4495" fg:w="3"/><text x="19.4037%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.1537%" y="1221" width="0.0128%" height="15" fill="rgb(227,194,29)" fg:x="4495" fg:w="3"/><text x="19.4037%" y="1231.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.1537%" y="1205" width="0.0128%" height="15" fill="rgb(250,76,42)" fg:x="4495" fg:w="3"/><text x="19.4037%" y="1215.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.1537%" y="1189" width="0.0128%" height="15" fill="rgb(208,128,8)" fg:x="4495" fg:w="3"/><text x="19.4037%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1537%" y="1173" width="0.0128%" height="15" fill="rgb(229,209,35)" fg:x="4495" fg:w="3"/><text x="19.4037%" y="1183.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="19.1410%" y="1557" width="0.0426%" height="15" fill="rgb(215,39,53)" fg:x="4492" fg:w="10"/><text x="19.3910%" y="1567.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="19.1410%" y="1541" width="0.0426%" height="15" fill="rgb(219,123,41)" fg:x="4492" fg:w="10"/><text x="19.3910%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="19.1410%" y="1525" width="0.0426%" height="15" fill="rgb(212,158,18)" fg:x="4492" fg:w="10"/><text x="19.3910%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="19.1410%" y="1509" width="0.0426%" height="15" fill="rgb(234,196,53)" fg:x="4492" fg:w="10"/><text x="19.3910%" y="1519.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="19.1410%" y="1493" width="0.0426%" height="15" fill="rgb(210,139,12)" fg:x="4492" fg:w="10"/><text x="19.3910%" y="1503.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="19.1410%" y="1477" width="0.0426%" height="15" fill="rgb(220,116,54)" fg:x="4492" fg:w="10"/><text x="19.3910%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="19.1410%" y="1461" width="0.0426%" height="15" fill="rgb(247,103,28)" fg:x="4492" fg:w="10"/><text x="19.3910%" y="1471.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="19.1537%" y="1445" width="0.0298%" height="15" fill="rgb(253,156,45)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1455.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="19.1537%" y="1429" width="0.0298%" height="15" fill="rgb(237,157,52)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1439.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="19.1537%" y="1413" width="0.0298%" height="15" fill="rgb(253,112,16)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1423.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="19.1537%" y="1397" width="0.0298%" height="15" fill="rgb(234,70,18)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1407.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="19.1537%" y="1381" width="0.0298%" height="15" fill="rgb(247,138,19)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="19.1537%" y="1365" width="0.0298%" height="15" fill="rgb(207,171,1)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="19.1537%" y="1349" width="0.0298%" height="15" fill="rgb(239,213,3)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="19.1537%" y="1333" width="0.0298%" height="15" fill="rgb(226,112,4)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1343.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="19.1537%" y="1317" width="0.0298%" height="15" fill="rgb(252,170,12)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1327.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="19.1537%" y="1301" width="0.0298%" height="15" fill="rgb(241,106,13)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="19.1537%" y="1285" width="0.0298%" height="15" fill="rgb(225,73,23)" fg:x="4495" fg:w="7"/><text x="19.4037%" y="1295.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="19.1665%" y="1269" width="0.0170%" height="15" fill="rgb(251,227,29)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1279.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="19.1665%" y="1253" width="0.0170%" height="15" fill="rgb(237,144,13)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1263.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="19.1665%" y="1237" width="0.0170%" height="15" fill="rgb(232,106,46)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1247.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="19.1665%" y="1221" width="0.0170%" height="15" fill="rgb(245,154,53)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1231.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="19.1665%" y="1205" width="0.0170%" height="15" fill="rgb(212,119,47)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="19.1665%" y="1189" width="0.0170%" height="15" fill="rgb(253,135,25)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="19.1665%" y="1173" width="0.0170%" height="15" fill="rgb(253,208,39)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.1665%" y="1157" width="0.0170%" height="15" fill="rgb(226,64,12)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.1665%" y="1141" width="0.0170%" height="15" fill="rgb(214,162,37)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.1665%" y="1125" width="0.0170%" height="15" fill="rgb(250,104,5)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.1665%" y="1109" width="0.0170%" height="15" fill="rgb(220,202,50)" fg:x="4498" fg:w="4"/><text x="19.4165%" y="1119.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="19.1836%" y="1269" width="0.0128%" height="15" fill="rgb(248,67,38)" fg:x="4502" fg:w="3"/><text x="19.4336%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1836%" y="1253" width="0.0128%" height="15" fill="rgb(242,94,35)" fg:x="4502" fg:w="3"/><text x="19.4336%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1836%" y="1237" width="0.0128%" height="15" fill="rgb(209,78,37)" fg:x="4502" fg:w="3"/><text x="19.4336%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.1836%" y="1221" width="0.0128%" height="15" fill="rgb(230,126,47)" fg:x="4502" fg:w="3"/><text x="19.4336%" y="1231.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.1836%" y="1205" width="0.0128%" height="15" fill="rgb(222,110,35)" fg:x="4502" fg:w="3"/><text x="19.4336%" y="1215.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.1836%" y="1189" width="0.0128%" height="15" fill="rgb(233,154,20)" fg:x="4502" fg:w="3"/><text x="19.4336%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.1836%" y="1173" width="0.0128%" height="15" fill="rgb(223,53,50)" fg:x="4502" fg:w="3"/><text x="19.4336%" y="1183.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="19.1836%" y="1381" width="0.0298%" height="15" fill="rgb(251,27,26)" fg:x="4502" fg:w="7"/><text x="19.4336%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="19.1836%" y="1365" width="0.0298%" height="15" fill="rgb(223,189,16)" fg:x="4502" fg:w="7"/><text x="19.4336%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="19.1836%" y="1349" width="0.0298%" height="15" fill="rgb(207,5,54)" fg:x="4502" fg:w="7"/><text x="19.4336%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="19.1836%" y="1333" width="0.0298%" height="15" fill="rgb(254,124,50)" fg:x="4502" fg:w="7"/><text x="19.4336%" y="1343.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="19.1836%" y="1317" width="0.0298%" height="15" fill="rgb(253,193,24)" fg:x="4502" fg:w="7"/><text x="19.4336%" y="1327.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="19.1836%" y="1301" width="0.0298%" height="15" fill="rgb(235,170,24)" fg:x="4502" fg:w="7"/><text x="19.4336%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="19.1836%" y="1285" width="0.0298%" height="15" fill="rgb(222,212,52)" fg:x="4502" fg:w="7"/><text x="19.4336%" y="1295.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="19.1964%" y="1269" width="0.0170%" height="15" fill="rgb(223,17,45)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1279.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="19.1964%" y="1253" width="0.0170%" height="15" fill="rgb(227,103,26)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1263.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="19.1964%" y="1237" width="0.0170%" height="15" fill="rgb(251,151,25)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1247.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="19.1964%" y="1221" width="0.0170%" height="15" fill="rgb(248,144,29)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1231.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="19.1964%" y="1205" width="0.0170%" height="15" fill="rgb(245,97,16)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="19.1964%" y="1189" width="0.0170%" height="15" fill="rgb(220,200,29)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="19.1964%" y="1173" width="0.0170%" height="15" fill="rgb(206,38,29)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.1964%" y="1157" width="0.0170%" height="15" fill="rgb(245,19,52)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.1964%" y="1141" width="0.0170%" height="15" fill="rgb(205,67,43)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.1964%" y="1125" width="0.0170%" height="15" fill="rgb(217,128,23)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.1964%" y="1109" width="0.0170%" height="15" fill="rgb(210,109,28)" fg:x="4505" fg:w="4"/><text x="19.4464%" y="1119.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="19.2134%" y="1205" width="0.0128%" height="15" fill="rgb(233,181,7)" fg:x="4509" fg:w="3"/><text x="19.4634%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2134%" y="1189" width="0.0128%" height="15" fill="rgb(244,11,22)" fg:x="4509" fg:w="3"/><text x="19.4634%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2134%" y="1173" width="0.0128%" height="15" fill="rgb(205,124,54)" fg:x="4509" fg:w="3"/><text x="19.4634%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.2134%" y="1157" width="0.0128%" height="15" fill="rgb(218,21,27)" fg:x="4509" fg:w="3"/><text x="19.4634%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.2134%" y="1141" width="0.0128%" height="15" fill="rgb(224,153,33)" fg:x="4509" fg:w="3"/><text x="19.4634%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.2134%" y="1125" width="0.0128%" height="15" fill="rgb(240,219,28)" fg:x="4509" fg:w="3"/><text x="19.4634%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2134%" y="1109" width="0.0128%" height="15" fill="rgb(214,80,29)" fg:x="4509" fg:w="3"/><text x="19.4634%" y="1119.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (23 samples, 0.10%)</title><rect x="19.1410%" y="1845" width="0.0980%" height="15" fill="rgb(247,148,44)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (23 samples, 0.10%)</title><rect x="19.1410%" y="1829" width="0.0980%" height="15" fill="rgb(243,110,30)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (23 samples, 0.10%)</title><rect x="19.1410%" y="1813" width="0.0980%" height="15" fill="rgb(243,173,41)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (23 samples, 0.10%)</title><rect x="19.1410%" y="1797" width="0.0980%" height="15" fill="rgb(225,160,47)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (23 samples, 0.10%)</title><rect x="19.1410%" y="1781" width="0.0980%" height="15" fill="rgb(215,44,21)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (23 samples, 0.10%)</title><rect x="19.1410%" y="1765" width="0.0980%" height="15" fill="rgb(248,90,3)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="19.1410%" y="1749" width="0.0980%" height="15" fill="rgb(220,196,49)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="19.1410%" y="1733" width="0.0980%" height="15" fill="rgb(217,138,14)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1743.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="19.1410%" y="1717" width="0.0980%" height="15" fill="rgb(219,111,20)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="19.1410%" y="1701" width="0.0980%" height="15" fill="rgb(218,114,4)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="19.1410%" y="1685" width="0.0980%" height="15" fill="rgb(238,133,3)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (23 samples, 0.10%)</title><rect x="19.1410%" y="1669" width="0.0980%" height="15" fill="rgb(224,95,0)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (23 samples, 0.10%)</title><rect x="19.1410%" y="1653" width="0.0980%" height="15" fill="rgb(220,169,35)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="19.1410%" y="1637" width="0.0980%" height="15" fill="rgb(242,116,47)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="19.1410%" y="1621" width="0.0980%" height="15" fill="rgb(251,42,20)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="19.1410%" y="1605" width="0.0980%" height="15" fill="rgb(234,7,34)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="19.1410%" y="1589" width="0.0980%" height="15" fill="rgb(243,208,13)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="19.1410%" y="1573" width="0.0980%" height="15" fill="rgb(227,33,28)" fg:x="4492" fg:w="23"/><text x="19.3910%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="19.1836%" y="1557" width="0.0554%" height="15" fill="rgb(250,47,37)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="19.1836%" y="1541" width="0.0554%" height="15" fill="rgb(235,111,52)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1551.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="19.1836%" y="1525" width="0.0554%" height="15" fill="rgb(223,64,28)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="19.1836%" y="1509" width="0.0554%" height="15" fill="rgb(236,67,22)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="19.1836%" y="1493" width="0.0554%" height="15" fill="rgb(243,79,24)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="19.1836%" y="1477" width="0.0554%" height="15" fill="rgb(241,225,22)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="19.1836%" y="1461" width="0.0554%" height="15" fill="rgb(228,214,26)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="19.1836%" y="1445" width="0.0554%" height="15" fill="rgb(219,84,52)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="19.1836%" y="1429" width="0.0554%" height="15" fill="rgb(220,12,22)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="19.1836%" y="1413" width="0.0554%" height="15" fill="rgb(219,9,49)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="19.1836%" y="1397" width="0.0554%" height="15" fill="rgb(237,40,43)" fg:x="4502" fg:w="13"/><text x="19.4336%" y="1407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="19.2134%" y="1381" width="0.0256%" height="15" fill="rgb(212,189,32)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1391.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="19.2134%" y="1365" width="0.0256%" height="15" fill="rgb(247,48,9)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1375.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="19.2134%" y="1349" width="0.0256%" height="15" fill="rgb(247,112,3)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1359.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="19.2134%" y="1333" width="0.0256%" height="15" fill="rgb(243,110,18)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="19.2134%" y="1317" width="0.0256%" height="15" fill="rgb(233,223,44)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2134%" y="1301" width="0.0256%" height="15" fill="rgb(245,160,20)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2134%" y="1285" width="0.0256%" height="15" fill="rgb(225,37,1)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.2134%" y="1269" width="0.0256%" height="15" fill="rgb(253,227,39)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="19.2134%" y="1253" width="0.0256%" height="15" fill="rgb(240,179,26)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="19.2134%" y="1237" width="0.0256%" height="15" fill="rgb(237,212,23)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2134%" y="1221" width="0.0256%" height="15" fill="rgb(221,38,11)" fg:x="4509" fg:w="6"/><text x="19.4634%" y="1231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="19.2262%" y="1205" width="0.0128%" height="15" fill="rgb(215,85,6)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1215.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="19.2262%" y="1189" width="0.0128%" height="15" fill="rgb(239,64,14)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1199.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="19.2262%" y="1173" width="0.0128%" height="15" fill="rgb(215,150,32)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1183.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="19.2262%" y="1157" width="0.0128%" height="15" fill="rgb(238,15,13)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="19.2262%" y="1141" width="0.0128%" height="15" fill="rgb(251,87,8)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2262%" y="1125" width="0.0128%" height="15" fill="rgb(206,86,1)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2262%" y="1109" width="0.0128%" height="15" fill="rgb(208,151,45)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.2262%" y="1093" width="0.0128%" height="15" fill="rgb(231,181,24)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.2262%" y="1077" width="0.0128%" height="15" fill="rgb(240,106,29)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.2262%" y="1061" width="0.0128%" height="15" fill="rgb(227,166,11)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2262%" y="1045" width="0.0128%" height="15" fill="rgb(254,14,34)" fg:x="4512" fg:w="3"/><text x="19.4762%" y="1055.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="19.2390%" y="1669" width="0.0128%" height="15" fill="rgb(223,222,6)" fg:x="4515" fg:w="3"/><text x="19.4890%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2390%" y="1653" width="0.0128%" height="15" fill="rgb(245,69,24)" fg:x="4515" fg:w="3"/><text x="19.4890%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2390%" y="1637" width="0.0128%" height="15" fill="rgb(213,193,7)" fg:x="4515" fg:w="3"/><text x="19.4890%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.2390%" y="1621" width="0.0128%" height="15" fill="rgb(237,92,51)" fg:x="4515" fg:w="3"/><text x="19.4890%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.2390%" y="1605" width="0.0128%" height="15" fill="rgb(225,194,6)" fg:x="4515" fg:w="3"/><text x="19.4890%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.2390%" y="1589" width="0.0128%" height="15" fill="rgb(205,159,49)" fg:x="4515" fg:w="3"/><text x="19.4890%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2390%" y="1573" width="0.0128%" height="15" fill="rgb(219,69,2)" fg:x="4515" fg:w="3"/><text x="19.4890%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (29 samples, 0.12%)</title><rect x="19.1410%" y="1957" width="0.1236%" height="15" fill="rgb(215,107,24)" fg:x="4492" fg:w="29"/><text x="19.3910%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (29 samples, 0.12%)</title><rect x="19.1410%" y="1941" width="0.1236%" height="15" fill="rgb(249,208,29)" fg:x="4492" fg:w="29"/><text x="19.3910%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="19.1410%" y="1925" width="0.1236%" height="15" fill="rgb(213,147,10)" fg:x="4492" fg:w="29"/><text x="19.3910%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="19.1410%" y="1909" width="0.1236%" height="15" fill="rgb(254,140,42)" fg:x="4492" fg:w="29"/><text x="19.3910%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (29 samples, 0.12%)</title><rect x="19.1410%" y="1893" width="0.1236%" height="15" fill="rgb(249,9,15)" fg:x="4492" fg:w="29"/><text x="19.3910%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.12%)</title><rect x="19.1410%" y="1877" width="0.1236%" height="15" fill="rgb(210,19,33)" fg:x="4492" fg:w="29"/><text x="19.3910%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (29 samples, 0.12%)</title><rect x="19.1410%" y="1861" width="0.1236%" height="15" fill="rgb(241,121,22)" fg:x="4492" fg:w="29"/><text x="19.3910%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="19.2390%" y="1845" width="0.0256%" height="15" fill="rgb(244,69,52)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="19.2390%" y="1829" width="0.0256%" height="15" fill="rgb(244,191,54)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1839.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="19.2390%" y="1813" width="0.0256%" height="15" fill="rgb(250,3,53)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="19.2390%" y="1797" width="0.0256%" height="15" fill="rgb(205,77,3)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="19.2390%" y="1781" width="0.0256%" height="15" fill="rgb(207,155,3)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2390%" y="1765" width="0.0256%" height="15" fill="rgb(224,79,2)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2390%" y="1749" width="0.0256%" height="15" fill="rgb(243,172,5)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.2390%" y="1733" width="0.0256%" height="15" fill="rgb(217,23,43)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="19.2390%" y="1717" width="0.0256%" height="15" fill="rgb(223,109,20)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="19.2390%" y="1701" width="0.0256%" height="15" fill="rgb(232,159,21)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2390%" y="1685" width="0.0256%" height="15" fill="rgb(219,58,2)" fg:x="4515" fg:w="6"/><text x="19.4890%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="19.2517%" y="1669" width="0.0128%" height="15" fill="rgb(241,56,8)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="19.2517%" y="1653" width="0.0128%" height="15" fill="rgb(249,10,27)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="19.2517%" y="1637" width="0.0128%" height="15" fill="rgb(248,177,5)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="19.2517%" y="1621" width="0.0128%" height="15" fill="rgb(239,12,30)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="19.2517%" y="1605" width="0.0128%" height="15" fill="rgb(229,164,25)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2517%" y="1589" width="0.0128%" height="15" fill="rgb(231,217,50)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2517%" y="1573" width="0.0128%" height="15" fill="rgb(247,99,32)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.2517%" y="1557" width="0.0128%" height="15" fill="rgb(240,74,50)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.2517%" y="1541" width="0.0128%" height="15" fill="rgb(218,54,8)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.2517%" y="1525" width="0.0128%" height="15" fill="rgb(227,132,20)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2517%" y="1509" width="0.0128%" height="15" fill="rgb(232,134,12)" fg:x="4518" fg:w="3"/><text x="19.5017%" y="1519.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="19.2645%" y="1669" width="0.0128%" height="15" fill="rgb(250,129,18)" fg:x="4521" fg:w="3"/><text x="19.5145%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2645%" y="1653" width="0.0128%" height="15" fill="rgb(232,129,47)" fg:x="4521" fg:w="3"/><text x="19.5145%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2645%" y="1637" width="0.0128%" height="15" fill="rgb(230,31,40)" fg:x="4521" fg:w="3"/><text x="19.5145%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.2645%" y="1621" width="0.0128%" height="15" fill="rgb(232,126,10)" fg:x="4521" fg:w="3"/><text x="19.5145%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.2645%" y="1605" width="0.0128%" height="15" fill="rgb(205,46,31)" fg:x="4521" fg:w="3"/><text x="19.5145%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.2645%" y="1589" width="0.0128%" height="15" fill="rgb(232,37,37)" fg:x="4521" fg:w="3"/><text x="19.5145%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2645%" y="1573" width="0.0128%" height="15" fill="rgb(240,91,16)" fg:x="4521" fg:w="3"/><text x="19.5145%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="19.2645%" y="1781" width="0.0256%" height="15" fill="rgb(224,160,9)" fg:x="4521" fg:w="6"/><text x="19.5145%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2645%" y="1765" width="0.0256%" height="15" fill="rgb(215,116,14)" fg:x="4521" fg:w="6"/><text x="19.5145%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2645%" y="1749" width="0.0256%" height="15" fill="rgb(235,46,36)" fg:x="4521" fg:w="6"/><text x="19.5145%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.2645%" y="1733" width="0.0256%" height="15" fill="rgb(238,39,28)" fg:x="4521" fg:w="6"/><text x="19.5145%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="19.2645%" y="1717" width="0.0256%" height="15" fill="rgb(242,125,29)" fg:x="4521" fg:w="6"/><text x="19.5145%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="19.2645%" y="1701" width="0.0256%" height="15" fill="rgb(238,211,30)" fg:x="4521" fg:w="6"/><text x="19.5145%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2645%" y="1685" width="0.0256%" height="15" fill="rgb(227,201,28)" fg:x="4521" fg:w="6"/><text x="19.5145%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="19.2773%" y="1669" width="0.0128%" height="15" fill="rgb(238,77,29)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="19.2773%" y="1653" width="0.0128%" height="15" fill="rgb(213,221,40)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="19.2773%" y="1637" width="0.0128%" height="15" fill="rgb(226,220,44)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="19.2773%" y="1621" width="0.0128%" height="15" fill="rgb(228,90,23)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="19.2773%" y="1605" width="0.0128%" height="15" fill="rgb(235,72,29)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2773%" y="1589" width="0.0128%" height="15" fill="rgb(248,117,39)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2773%" y="1573" width="0.0128%" height="15" fill="rgb(225,43,28)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.2773%" y="1557" width="0.0128%" height="15" fill="rgb(240,93,4)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="19.2773%" y="1541" width="0.0128%" height="15" fill="rgb(234,178,27)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.2773%" y="1525" width="0.0128%" height="15" fill="rgb(254,88,22)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="19.2773%" y="1509" width="0.0128%" height="15" fill="rgb(240,206,50)" fg:x="4524" fg:w="3"/><text x="19.5273%" y="1519.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="19.2901%" y="1605" width="0.0170%" height="15" fill="rgb(249,103,8)" fg:x="4527" fg:w="4"/><text x="19.5401%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="19.2901%" y="1589" width="0.0170%" height="15" fill="rgb(241,178,36)" fg:x="4527" fg:w="4"/><text x="19.5401%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="19.2901%" y="1573" width="0.0170%" height="15" fill="rgb(246,110,15)" fg:x="4527" fg:w="4"/><text x="19.5401%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.2901%" y="1557" width="0.0170%" height="15" fill="rgb(207,14,43)" fg:x="4527" fg:w="4"/><text x="19.5401%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.2901%" y="1541" width="0.0170%" height="15" fill="rgb(253,219,19)" fg:x="4527" fg:w="4"/><text x="19.5401%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.2901%" y="1525" width="0.0170%" height="15" fill="rgb(216,126,5)" fg:x="4527" fg:w="4"/><text x="19.5401%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.2901%" y="1509" width="0.0170%" height="15" fill="rgb(218,78,42)" fg:x="4527" fg:w="4"/><text x="19.5401%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (41 samples, 0.17%)</title><rect x="19.1410%" y="2421" width="0.1747%" height="15" fill="rgb(215,154,40)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (41 samples, 0.17%)</title><rect x="19.1410%" y="2405" width="0.1747%" height="15" fill="rgb(235,129,32)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (41 samples, 0.17%)</title><rect x="19.1410%" y="2389" width="0.1747%" height="15" fill="rgb(218,51,8)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (41 samples, 0.17%)</title><rect x="19.1410%" y="2373" width="0.1747%" height="15" fill="rgb(245,48,4)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (41 samples, 0.17%)</title><rect x="19.1410%" y="2357" width="0.1747%" height="15" fill="rgb(250,175,12)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (41 samples, 0.17%)</title><rect x="19.1410%" y="2341" width="0.1747%" height="15" fill="rgb(237,95,40)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (41 samples, 0.17%)</title><rect x="19.1410%" y="2325" width="0.1747%" height="15" fill="rgb(244,120,0)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (41 samples, 0.17%)</title><rect x="19.1410%" y="2309" width="0.1747%" height="15" fill="rgb(241,19,42)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2319.50"></text></g><g><title>std::panicking::try (41 samples, 0.17%)</title><rect x="19.1410%" y="2293" width="0.1747%" height="15" fill="rgb(217,174,48)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (41 samples, 0.17%)</title><rect x="19.1410%" y="2277" width="0.1747%" height="15" fill="rgb(239,36,38)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (41 samples, 0.17%)</title><rect x="19.1410%" y="2261" width="0.1747%" height="15" fill="rgb(220,63,49)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (41 samples, 0.17%)</title><rect x="19.1410%" y="2245" width="0.1747%" height="15" fill="rgb(240,101,13)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (41 samples, 0.17%)</title><rect x="19.1410%" y="2229" width="0.1747%" height="15" fill="rgb(209,184,51)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (41 samples, 0.17%)</title><rect x="19.1410%" y="2213" width="0.1747%" height="15" fill="rgb(206,136,39)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.17%)</title><rect x="19.1410%" y="2197" width="0.1747%" height="15" fill="rgb(254,47,45)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (41 samples, 0.17%)</title><rect x="19.1410%" y="2181" width="0.1747%" height="15" fill="rgb(252,103,20)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.17%)</title><rect x="19.1410%" y="2165" width="0.1747%" height="15" fill="rgb(230,69,12)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (41 samples, 0.17%)</title><rect x="19.1410%" y="2149" width="0.1747%" height="15" fill="rgb(219,2,28)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (41 samples, 0.17%)</title><rect x="19.1410%" y="2133" width="0.1747%" height="15" fill="rgb(210,9,12)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (41 samples, 0.17%)</title><rect x="19.1410%" y="2117" width="0.1747%" height="15" fill="rgb(235,99,33)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2127.50"></text></g><g><title>std::panicking::try (41 samples, 0.17%)</title><rect x="19.1410%" y="2101" width="0.1747%" height="15" fill="rgb(230,11,38)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (41 samples, 0.17%)</title><rect x="19.1410%" y="2085" width="0.1747%" height="15" fill="rgb(217,129,0)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (41 samples, 0.17%)</title><rect x="19.1410%" y="2069" width="0.1747%" height="15" fill="rgb(222,198,4)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (41 samples, 0.17%)</title><rect x="19.1410%" y="2053" width="0.1747%" height="15" fill="rgb(246,170,27)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (41 samples, 0.17%)</title><rect x="19.1410%" y="2037" width="0.1747%" height="15" fill="rgb(229,17,28)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.17%)</title><rect x="19.1410%" y="2021" width="0.1747%" height="15" fill="rgb(233,198,48)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (41 samples, 0.17%)</title><rect x="19.1410%" y="2005" width="0.1747%" height="15" fill="rgb(238,103,23)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.17%)</title><rect x="19.1410%" y="1989" width="0.1747%" height="15" fill="rgb(206,91,41)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (41 samples, 0.17%)</title><rect x="19.1410%" y="1973" width="0.1747%" height="15" fill="rgb(227,34,25)" fg:x="4492" fg:w="41"/><text x="19.3910%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="19.2645%" y="1957" width="0.0511%" height="15" fill="rgb(210,110,44)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="19.2645%" y="1941" width="0.0511%" height="15" fill="rgb(216,189,8)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1951.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="19.2645%" y="1925" width="0.0511%" height="15" fill="rgb(234,9,46)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="19.2645%" y="1909" width="0.0511%" height="15" fill="rgb(251,200,5)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="19.2645%" y="1893" width="0.0511%" height="15" fill="rgb(238,165,37)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="19.2645%" y="1877" width="0.0511%" height="15" fill="rgb(232,77,38)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="19.2645%" y="1861" width="0.0511%" height="15" fill="rgb(253,179,33)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="19.2645%" y="1845" width="0.0511%" height="15" fill="rgb(240,13,35)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="19.2645%" y="1829" width="0.0511%" height="15" fill="rgb(242,150,49)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="19.2645%" y="1813" width="0.0511%" height="15" fill="rgb(237,176,28)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="19.2645%" y="1797" width="0.0511%" height="15" fill="rgb(214,176,33)" fg:x="4521" fg:w="12"/><text x="19.5145%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="19.2901%" y="1781" width="0.0256%" height="15" fill="rgb(214,25,12)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="19.2901%" y="1765" width="0.0256%" height="15" fill="rgb(238,190,20)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1775.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="19.2901%" y="1749" width="0.0256%" height="15" fill="rgb(208,11,19)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="19.2901%" y="1733" width="0.0256%" height="15" fill="rgb(239,90,4)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="19.2901%" y="1717" width="0.0256%" height="15" fill="rgb(248,110,3)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2901%" y="1701" width="0.0256%" height="15" fill="rgb(210,41,30)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2901%" y="1685" width="0.0256%" height="15" fill="rgb(239,36,8)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.2901%" y="1669" width="0.0256%" height="15" fill="rgb(237,201,47)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="19.2901%" y="1653" width="0.0256%" height="15" fill="rgb(224,140,29)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="19.2901%" y="1637" width="0.0256%" height="15" fill="rgb(231,209,17)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="19.2901%" y="1621" width="0.0256%" height="15" fill="rgb(249,196,1)" fg:x="4527" fg:w="6"/><text x="19.5401%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="19.3157%" y="2293" width="0.0128%" height="15" fill="rgb(223,207,51)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="19.3157%" y="2277" width="0.0128%" height="15" fill="rgb(210,14,40)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="19.3157%" y="2261" width="0.0128%" height="15" fill="rgb(250,20,52)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="19.3157%" y="2245" width="0.0128%" height="15" fill="rgb(241,46,11)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="19.3157%" y="2229" width="0.0128%" height="15" fill="rgb(219,105,5)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="19.3157%" y="2213" width="0.0128%" height="15" fill="rgb(252,77,35)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="19.3157%" y="2197" width="0.0128%" height="15" fill="rgb(243,119,2)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="19.3157%" y="2181" width="0.0128%" height="15" fill="rgb(206,82,28)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="19.3157%" y="2165" width="0.0128%" height="15" fill="rgb(227,120,12)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="19.3157%" y="2149" width="0.0128%" height="15" fill="rgb(229,134,41)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="19.3157%" y="2133" width="0.0128%" height="15" fill="rgb(239,96,32)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="19.3157%" y="2117" width="0.0128%" height="15" fill="rgb(225,46,27)" fg:x="4533" fg:w="3"/><text x="19.5657%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="19.3370%" y="1877" width="0.0128%" height="15" fill="rgb(215,168,2)" fg:x="4538" fg:w="3"/><text x="19.5870%" y="1887.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="19.3370%" y="1861" width="0.0128%" height="15" fill="rgb(207,170,52)" fg:x="4538" fg:w="3"/><text x="19.5870%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="19.3370%" y="2069" width="0.0170%" height="15" fill="rgb(237,198,36)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="19.3370%" y="2053" width="0.0170%" height="15" fill="rgb(213,27,14)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="19.3370%" y="2037" width="0.0170%" height="15" fill="rgb(218,77,5)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="19.3370%" y="2021" width="0.0170%" height="15" fill="rgb(230,219,39)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="19.3370%" y="2005" width="0.0170%" height="15" fill="rgb(245,177,7)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="19.3370%" y="1989" width="0.0170%" height="15" fill="rgb(246,44,46)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="19.3370%" y="1973" width="0.0170%" height="15" fill="rgb(207,173,15)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="19.3370%" y="1957" width="0.0170%" height="15" fill="rgb(245,170,50)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="19.3370%" y="1941" width="0.0170%" height="15" fill="rgb(233,156,21)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="19.3370%" y="1925" width="0.0170%" height="15" fill="rgb(253,146,27)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="19.3370%" y="1909" width="0.0170%" height="15" fill="rgb(247,66,29)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="19.3370%" y="1893" width="0.0170%" height="15" fill="rgb(218,207,26)" fg:x="4538" fg:w="4"/><text x="19.5870%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="19.3370%" y="2133" width="0.0341%" height="15" fill="rgb(234,93,26)" fg:x="4538" fg:w="8"/><text x="19.5870%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="19.3370%" y="2117" width="0.0341%" height="15" fill="rgb(214,75,48)" fg:x="4538" fg:w="8"/><text x="19.5870%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="19.3370%" y="2101" width="0.0341%" height="15" fill="rgb(229,119,22)" fg:x="4538" fg:w="8"/><text x="19.5870%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="19.3370%" y="2085" width="0.0341%" height="15" fill="rgb(226,153,19)" fg:x="4538" fg:w="8"/><text x="19.5870%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.3540%" y="2069" width="0.0170%" height="15" fill="rgb(220,204,36)" fg:x="4542" fg:w="4"/><text x="19.6040%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.3540%" y="2053" width="0.0170%" height="15" fill="rgb(253,181,43)" fg:x="4542" fg:w="4"/><text x="19.6040%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.3540%" y="2037" width="0.0170%" height="15" fill="rgb(211,41,51)" fg:x="4542" fg:w="4"/><text x="19.6040%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="19.3583%" y="2021" width="0.0128%" height="15" fill="rgb(207,215,0)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="19.3583%" y="2005" width="0.0128%" height="15" fill="rgb(212,153,10)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="2015.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="19.3583%" y="1989" width="0.0128%" height="15" fill="rgb(251,171,36)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="19.3583%" y="1973" width="0.0128%" height="15" fill="rgb(225,219,41)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="19.3583%" y="1957" width="0.0128%" height="15" fill="rgb(208,200,1)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="19.3583%" y="1941" width="0.0128%" height="15" fill="rgb(206,75,47)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.3583%" y="1925" width="0.0128%" height="15" fill="rgb(248,3,16)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.3583%" y="1909" width="0.0128%" height="15" fill="rgb(242,157,36)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="19.3583%" y="1893" width="0.0128%" height="15" fill="rgb(215,175,11)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="19.3583%" y="1877" width="0.0128%" height="15" fill="rgb(252,222,22)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="19.3583%" y="1861" width="0.0128%" height="15" fill="rgb(250,121,35)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="19.3583%" y="1845" width="0.0128%" height="15" fill="rgb(233,120,49)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="19.3583%" y="1829" width="0.0128%" height="15" fill="rgb(205,201,14)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="19.3583%" y="1813" width="0.0128%" height="15" fill="rgb(219,58,45)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="19.3583%" y="1797" width="0.0128%" height="15" fill="rgb(251,65,12)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="19.3583%" y="1781" width="0.0128%" height="15" fill="rgb(224,47,31)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="19.3583%" y="1765" width="0.0128%" height="15" fill="rgb(233,74,26)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="19.3583%" y="1749" width="0.0128%" height="15" fill="rgb(231,211,31)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="19.3583%" y="1733" width="0.0128%" height="15" fill="rgb(239,167,5)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="19.3583%" y="1717" width="0.0128%" height="15" fill="rgb(241,85,0)" fg:x="4543" fg:w="3"/><text x="19.6083%" y="1727.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="19.3711%" y="1813" width="0.0128%" height="15" fill="rgb(229,130,21)" fg:x="4546" fg:w="3"/><text x="19.6211%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="19.3711%" y="1797" width="0.0128%" height="15" fill="rgb(254,84,49)" fg:x="4546" fg:w="3"/><text x="19.6211%" y="1807.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="19.3711%" y="1781" width="0.0128%" height="15" fill="rgb(235,85,21)" fg:x="4546" fg:w="3"/><text x="19.6211%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="19.3711%" y="2005" width="0.0170%" height="15" fill="rgb(246,128,52)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="19.3711%" y="1989" width="0.0170%" height="15" fill="rgb(243,114,49)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="19.3711%" y="1973" width="0.0170%" height="15" fill="rgb(240,224,22)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="19.3711%" y="1957" width="0.0170%" height="15" fill="rgb(247,201,52)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="19.3711%" y="1941" width="0.0170%" height="15" fill="rgb(231,70,45)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="19.3711%" y="1925" width="0.0170%" height="15" fill="rgb(217,215,20)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="19.3711%" y="1909" width="0.0170%" height="15" fill="rgb(226,170,30)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="19.3711%" y="1893" width="0.0170%" height="15" fill="rgb(220,190,43)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="19.3711%" y="1877" width="0.0170%" height="15" fill="rgb(218,20,18)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="19.3711%" y="1861" width="0.0170%" height="15" fill="rgb(245,37,26)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="19.3711%" y="1845" width="0.0170%" height="15" fill="rgb(241,127,29)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="19.3711%" y="1829" width="0.0170%" height="15" fill="rgb(241,33,26)" fg:x="4546" fg:w="4"/><text x="19.6211%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (18 samples, 0.08%)</title><rect x="19.3284%" y="2245" width="0.0767%" height="15" fill="rgb(220,106,21)" fg:x="4536" fg:w="18"/><text x="19.5784%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="19.3284%" y="2229" width="0.0767%" height="15" fill="rgb(225,125,35)" fg:x="4536" fg:w="18"/><text x="19.5784%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="19.3284%" y="2213" width="0.0767%" height="15" fill="rgb(248,80,22)" fg:x="4536" fg:w="18"/><text x="19.5784%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="19.3284%" y="2197" width="0.0767%" height="15" fill="rgb(231,117,39)" fg:x="4536" fg:w="18"/><text x="19.5784%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="19.3370%" y="2181" width="0.0682%" height="15" fill="rgb(239,183,16)" fg:x="4538" fg:w="16"/><text x="19.5870%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="19.3370%" y="2165" width="0.0682%" height="15" fill="rgb(221,61,19)" fg:x="4538" fg:w="16"/><text x="19.5870%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="19.3370%" y="2149" width="0.0682%" height="15" fill="rgb(239,196,44)" fg:x="4538" fg:w="16"/><text x="19.5870%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="19.3711%" y="2133" width="0.0341%" height="15" fill="rgb(206,113,19)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="19.3711%" y="2117" width="0.0341%" height="15" fill="rgb(245,114,12)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2127.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="19.3711%" y="2101" width="0.0341%" height="15" fill="rgb(247,89,39)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="19.3711%" y="2085" width="0.0341%" height="15" fill="rgb(213,85,14)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="19.3711%" y="2069" width="0.0341%" height="15" fill="rgb(249,206,33)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="19.3711%" y="2053" width="0.0341%" height="15" fill="rgb(235,167,47)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="19.3711%" y="2037" width="0.0341%" height="15" fill="rgb(217,177,16)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="19.3711%" y="2021" width="0.0341%" height="15" fill="rgb(250,228,29)" fg:x="4546" fg:w="8"/><text x="19.6211%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.3881%" y="2005" width="0.0170%" height="15" fill="rgb(216,195,42)" fg:x="4550" fg:w="4"/><text x="19.6381%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.3881%" y="1989" width="0.0170%" height="15" fill="rgb(232,192,32)" fg:x="4550" fg:w="4"/><text x="19.6381%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.3881%" y="1973" width="0.0170%" height="15" fill="rgb(211,8,47)" fg:x="4550" fg:w="4"/><text x="19.6381%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="19.4137%" y="2005" width="0.0170%" height="15" fill="rgb(251,201,9)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="19.4137%" y="1989" width="0.0170%" height="15" fill="rgb(206,185,47)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="19.4137%" y="1973" width="0.0170%" height="15" fill="rgb(245,54,32)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="19.4137%" y="1957" width="0.0170%" height="15" fill="rgb(208,1,8)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="19.4137%" y="1941" width="0.0170%" height="15" fill="rgb(228,57,24)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="19.4137%" y="1925" width="0.0170%" height="15" fill="rgb(251,24,8)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="19.4137%" y="1909" width="0.0170%" height="15" fill="rgb(236,196,50)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="19.4137%" y="1893" width="0.0170%" height="15" fill="rgb(246,222,29)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="19.4137%" y="1877" width="0.0170%" height="15" fill="rgb(211,34,40)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="19.4137%" y="1861" width="0.0170%" height="15" fill="rgb(210,66,51)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="19.4137%" y="1845" width="0.0170%" height="15" fill="rgb(250,56,43)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="19.4137%" y="1829" width="0.0170%" height="15" fill="rgb(240,111,50)" fg:x="4556" fg:w="4"/><text x="19.6637%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="19.4137%" y="2069" width="0.0384%" height="15" fill="rgb(209,117,13)" fg:x="4556" fg:w="9"/><text x="19.6637%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="19.4137%" y="2053" width="0.0384%" height="15" fill="rgb(232,164,45)" fg:x="4556" fg:w="9"/><text x="19.6637%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="19.4137%" y="2037" width="0.0384%" height="15" fill="rgb(205,69,32)" fg:x="4556" fg:w="9"/><text x="19.6637%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="19.4137%" y="2021" width="0.0384%" height="15" fill="rgb(240,147,45)" fg:x="4556" fg:w="9"/><text x="19.6637%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="19.4307%" y="2005" width="0.0213%" height="15" fill="rgb(221,94,48)" fg:x="4560" fg:w="5"/><text x="19.6807%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="19.4307%" y="1989" width="0.0213%" height="15" fill="rgb(249,209,17)" fg:x="4560" fg:w="5"/><text x="19.6807%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="19.4307%" y="1973" width="0.0213%" height="15" fill="rgb(228,57,28)" fg:x="4560" fg:w="5"/><text x="19.6807%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="19.4392%" y="1957" width="0.0128%" height="15" fill="rgb(250,133,26)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="19.4392%" y="1941" width="0.0128%" height="15" fill="rgb(254,15,16)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1951.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="19.4392%" y="1925" width="0.0128%" height="15" fill="rgb(209,147,42)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="19.4392%" y="1909" width="0.0128%" height="15" fill="rgb(208,5,29)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="19.4392%" y="1893" width="0.0128%" height="15" fill="rgb(250,73,31)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="19.4392%" y="1877" width="0.0128%" height="15" fill="rgb(238,45,10)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="19.4392%" y="1861" width="0.0128%" height="15" fill="rgb(214,104,5)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.4392%" y="1845" width="0.0128%" height="15" fill="rgb(242,217,19)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="19.4392%" y="1829" width="0.0128%" height="15" fill="rgb(246,113,27)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="19.4392%" y="1813" width="0.0128%" height="15" fill="rgb(221,34,27)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="19.4392%" y="1797" width="0.0128%" height="15" fill="rgb(246,109,6)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="19.4392%" y="1781" width="0.0128%" height="15" fill="rgb(217,12,25)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="19.4392%" y="1765" width="0.0128%" height="15" fill="rgb(250,195,5)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="19.4392%" y="1749" width="0.0128%" height="15" fill="rgb(244,140,45)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="19.4392%" y="1733" width="0.0128%" height="15" fill="rgb(230,64,14)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="19.4392%" y="1717" width="0.0128%" height="15" fill="rgb(206,27,27)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="19.4392%" y="1701" width="0.0128%" height="15" fill="rgb(230,14,50)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="19.4392%" y="1685" width="0.0128%" height="15" fill="rgb(237,172,14)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="19.4392%" y="1669" width="0.0128%" height="15" fill="rgb(209,25,21)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="19.4392%" y="1653" width="0.0128%" height="15" fill="rgb(248,148,22)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="19.4392%" y="1637" width="0.0128%" height="15" fill="rgb(234,100,22)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="19.4392%" y="1621" width="0.0128%" height="15" fill="rgb(210,20,30)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1631.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="19.4392%" y="1605" width="0.0128%" height="15" fill="rgb(232,58,0)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1615.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="19.4392%" y="1589" width="0.0128%" height="15" fill="rgb(221,68,13)" fg:x="4562" fg:w="3"/><text x="19.6892%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (201 samples, 0.86%)</title><rect x="18.6211%" y="2885" width="0.8565%" height="15" fill="rgb(231,194,11)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (201 samples, 0.86%)</title><rect x="18.6211%" y="2869" width="0.8565%" height="15" fill="rgb(235,51,41)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2879.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (201 samples, 0.86%)</title><rect x="18.6211%" y="2853" width="0.8565%" height="15" fill="rgb(240,50,32)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2863.50"></text></g><g><title>rayon_core::job::JobRef::execute (201 samples, 0.86%)</title><rect x="18.6211%" y="2837" width="0.8565%" height="15" fill="rgb(240,185,36)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2847.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (201 samples, 0.86%)</title><rect x="18.6211%" y="2821" width="0.8565%" height="15" fill="rgb(211,168,15)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2831.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (201 samples, 0.86%)</title><rect x="18.6211%" y="2805" width="0.8565%" height="15" fill="rgb(221,70,0)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (201 samples, 0.86%)</title><rect x="18.6211%" y="2789" width="0.8565%" height="15" fill="rgb(205,21,33)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (201 samples, 0.86%)</title><rect x="18.6211%" y="2773" width="0.8565%" height="15" fill="rgb(225,106,10)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2783.50"></text></g><g><title>std::panicking::try (201 samples, 0.86%)</title><rect x="18.6211%" y="2757" width="0.8565%" height="15" fill="rgb(236,200,50)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (201 samples, 0.86%)</title><rect x="18.6211%" y="2741" width="0.8565%" height="15" fill="rgb(249,93,23)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (201 samples, 0.86%)</title><rect x="18.6211%" y="2725" width="0.8565%" height="15" fill="rgb(244,115,35)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2735.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (201 samples, 0.86%)</title><rect x="18.6211%" y="2709" width="0.8565%" height="15" fill="rgb(231,129,47)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (201 samples, 0.86%)</title><rect x="18.6211%" y="2693" width="0.8565%" height="15" fill="rgb(225,160,50)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (201 samples, 0.86%)</title><rect x="18.6211%" y="2677" width="0.8565%" height="15" fill="rgb(218,135,23)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (201 samples, 0.86%)</title><rect x="18.6211%" y="2661" width="0.8565%" height="15" fill="rgb(227,119,14)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (201 samples, 0.86%)</title><rect x="18.6211%" y="2645" width="0.8565%" height="15" fill="rgb(242,138,13)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (201 samples, 0.86%)</title><rect x="18.6211%" y="2629" width="0.8565%" height="15" fill="rgb(215,11,16)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (201 samples, 0.86%)</title><rect x="18.6211%" y="2613" width="0.8565%" height="15" fill="rgb(234,170,50)" fg:x="4370" fg:w="201"/><text x="18.8711%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (130 samples, 0.55%)</title><rect x="18.9236%" y="2597" width="0.5539%" height="15" fill="rgb(233,34,20)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (130 samples, 0.55%)</title><rect x="18.9236%" y="2581" width="0.5539%" height="15" fill="rgb(237,100,45)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2591.50"></text></g><g><title>std::panicking::try (130 samples, 0.55%)</title><rect x="18.9236%" y="2565" width="0.5539%" height="15" fill="rgb(231,184,36)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (130 samples, 0.55%)</title><rect x="18.9236%" y="2549" width="0.5539%" height="15" fill="rgb(252,93,2)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (130 samples, 0.55%)</title><rect x="18.9236%" y="2533" width="0.5539%" height="15" fill="rgb(248,176,47)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (130 samples, 0.55%)</title><rect x="18.9236%" y="2517" width="0.5539%" height="15" fill="rgb(249,125,23)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (130 samples, 0.55%)</title><rect x="18.9236%" y="2501" width="0.5539%" height="15" fill="rgb(239,67,42)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (130 samples, 0.55%)</title><rect x="18.9236%" y="2485" width="0.5539%" height="15" fill="rgb(244,162,4)" fg:x="4441" fg:w="130"/><text x="19.1736%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (127 samples, 0.54%)</title><rect x="18.9364%" y="2469" width="0.5412%" height="15" fill="rgb(214,150,38)" fg:x="4444" fg:w="127"/><text x="19.1864%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (127 samples, 0.54%)</title><rect x="18.9364%" y="2453" width="0.5412%" height="15" fill="rgb(228,211,28)" fg:x="4444" fg:w="127"/><text x="19.1864%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (127 samples, 0.54%)</title><rect x="18.9364%" y="2437" width="0.5412%" height="15" fill="rgb(212,98,48)" fg:x="4444" fg:w="127"/><text x="19.1864%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (38 samples, 0.16%)</title><rect x="19.3157%" y="2421" width="0.1619%" height="15" fill="rgb(213,45,13)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (38 samples, 0.16%)</title><rect x="19.3157%" y="2405" width="0.1619%" height="15" fill="rgb(218,35,29)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2415.50"></text></g><g><title>std::panicking::try (38 samples, 0.16%)</title><rect x="19.3157%" y="2389" width="0.1619%" height="15" fill="rgb(244,13,3)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (38 samples, 0.16%)</title><rect x="19.3157%" y="2373" width="0.1619%" height="15" fill="rgb(235,170,19)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (38 samples, 0.16%)</title><rect x="19.3157%" y="2357" width="0.1619%" height="15" fill="rgb(233,193,43)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (38 samples, 0.16%)</title><rect x="19.3157%" y="2341" width="0.1619%" height="15" fill="rgb(228,223,20)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (38 samples, 0.16%)</title><rect x="19.3157%" y="2325" width="0.1619%" height="15" fill="rgb(208,85,54)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.16%)</title><rect x="19.3157%" y="2309" width="0.1619%" height="15" fill="rgb(254,14,45)" fg:x="4533" fg:w="38"/><text x="19.5657%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (35 samples, 0.15%)</title><rect x="19.3284%" y="2293" width="0.1491%" height="15" fill="rgb(247,99,29)" fg:x="4536" fg:w="35"/><text x="19.5784%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.15%)</title><rect x="19.3284%" y="2277" width="0.1491%" height="15" fill="rgb(225,180,54)" fg:x="4536" fg:w="35"/><text x="19.5784%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (35 samples, 0.15%)</title><rect x="19.3284%" y="2261" width="0.1491%" height="15" fill="rgb(239,88,43)" fg:x="4536" fg:w="35"/><text x="19.5784%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="19.4051%" y="2245" width="0.0724%" height="15" fill="rgb(209,47,11)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="19.4051%" y="2229" width="0.0724%" height="15" fill="rgb(219,179,23)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2239.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="19.4051%" y="2213" width="0.0724%" height="15" fill="rgb(213,183,19)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="19.4051%" y="2197" width="0.0724%" height="15" fill="rgb(210,11,9)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="19.4051%" y="2181" width="0.0724%" height="15" fill="rgb(239,194,16)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="19.4051%" y="2165" width="0.0724%" height="15" fill="rgb(246,23,50)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="19.4051%" y="2149" width="0.0724%" height="15" fill="rgb(245,10,41)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="19.4051%" y="2133" width="0.0724%" height="15" fill="rgb(228,43,24)" fg:x="4554" fg:w="17"/><text x="19.6551%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="19.4137%" y="2117" width="0.0639%" height="15" fill="rgb(220,151,0)" fg:x="4556" fg:w="15"/><text x="19.6637%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="19.4137%" y="2101" width="0.0639%" height="15" fill="rgb(232,219,10)" fg:x="4556" fg:w="15"/><text x="19.6637%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="19.4137%" y="2085" width="0.0639%" height="15" fill="rgb(227,217,48)" fg:x="4556" fg:w="15"/><text x="19.6637%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="19.4520%" y="2069" width="0.0256%" height="15" fill="rgb(210,66,35)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="19.4520%" y="2053" width="0.0256%" height="15" fill="rgb(254,6,7)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="2063.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="19.4520%" y="2037" width="0.0256%" height="15" fill="rgb(235,222,42)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="19.4520%" y="2021" width="0.0256%" height="15" fill="rgb(245,126,5)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="19.4520%" y="2005" width="0.0256%" height="15" fill="rgb(215,73,17)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="19.4520%" y="1989" width="0.0256%" height="15" fill="rgb(219,198,52)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="19.4520%" y="1973" width="0.0256%" height="15" fill="rgb(217,159,18)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.4520%" y="1957" width="0.0256%" height="15" fill="rgb(212,177,18)" fg:x="4565" fg:w="6"/><text x="19.7020%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="19.4605%" y="1941" width="0.0170%" height="15" fill="rgb(241,10,11)" fg:x="4567" fg:w="4"/><text x="19.7105%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="19.4605%" y="1925" width="0.0170%" height="15" fill="rgb(232,114,35)" fg:x="4567" fg:w="4"/><text x="19.7105%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="19.4605%" y="1909" width="0.0170%" height="15" fill="rgb(238,222,8)" fg:x="4567" fg:w="4"/><text x="19.7105%" y="1919.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (30 samples, 0.13%)</title><rect x="19.4776%" y="2565" width="0.1278%" height="15" fill="rgb(251,153,44)" fg:x="4571" fg:w="30"/><text x="19.7276%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (30 samples, 0.13%)</title><rect x="19.4776%" y="2549" width="0.1278%" height="15" fill="rgb(210,140,51)" fg:x="4571" fg:w="30"/><text x="19.7276%" y="2559.50"></text></g><g><title>exp (28 samples, 0.12%)</title><rect x="19.4861%" y="2533" width="0.1193%" height="15" fill="rgb(222,63,0)" fg:x="4573" fg:w="28"/><text x="19.7361%" y="2543.50"></text></g><g><title>[libm.so.6] (27 samples, 0.12%)</title><rect x="19.4904%" y="2517" width="0.1151%" height="15" fill="rgb(240,18,40)" fg:x="4574" fg:w="27"/><text x="19.7404%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (15 samples, 0.06%)</title><rect x="19.6054%" y="2565" width="0.0639%" height="15" fill="rgb(237,88,16)" fg:x="4601" fg:w="15"/><text x="19.8554%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (15 samples, 0.06%)</title><rect x="19.6054%" y="2549" width="0.0639%" height="15" fill="rgb(251,117,13)" fg:x="4601" fg:w="15"/><text x="19.8554%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (63 samples, 0.27%)</title><rect x="19.4776%" y="2581" width="0.2685%" height="15" fill="rgb(251,228,8)" fg:x="4571" fg:w="63"/><text x="19.7276%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (18 samples, 0.08%)</title><rect x="19.6693%" y="2565" width="0.0767%" height="15" fill="rgb(205,107,49)" fg:x="4616" fg:w="18"/><text x="19.9193%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (18 samples, 0.08%)</title><rect x="19.6693%" y="2549" width="0.0767%" height="15" fill="rgb(238,72,41)" fg:x="4616" fg:w="18"/><text x="19.9193%" y="2559.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (66 samples, 0.28%)</title><rect x="19.4776%" y="2741" width="0.2812%" height="15" fill="rgb(248,183,52)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (66 samples, 0.28%)</title><rect x="19.4776%" y="2725" width="0.2812%" height="15" fill="rgb(215,58,20)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (66 samples, 0.28%)</title><rect x="19.4776%" y="2709" width="0.2812%" height="15" fill="rgb(209,49,13)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (66 samples, 0.28%)</title><rect x="19.4776%" y="2693" width="0.2812%" height="15" fill="rgb(208,113,17)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (66 samples, 0.28%)</title><rect x="19.4776%" y="2677" width="0.2812%" height="15" fill="rgb(208,14,22)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (66 samples, 0.28%)</title><rect x="19.4776%" y="2661" width="0.2812%" height="15" fill="rgb(222,95,2)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (66 samples, 0.28%)</title><rect x="19.4776%" y="2645" width="0.2812%" height="15" fill="rgb(253,180,37)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (66 samples, 0.28%)</title><rect x="19.4776%" y="2629" width="0.2812%" height="15" fill="rgb(250,81,33)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (66 samples, 0.28%)</title><rect x="19.4776%" y="2613" width="0.2812%" height="15" fill="rgb(251,151,41)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (66 samples, 0.28%)</title><rect x="19.4776%" y="2597" width="0.2812%" height="15" fill="rgb(210,135,17)" fg:x="4571" fg:w="66"/><text x="19.7276%" y="2607.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="19.7460%" y="2581" width="0.0128%" height="15" fill="rgb(239,21,29)" fg:x="4634" fg:w="3"/><text x="19.9960%" y="2591.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="19.7673%" y="2517" width="0.0170%" height="15" fill="rgb(231,215,16)" fg:x="4639" fg:w="4"/><text x="20.0173%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="19.7716%" y="2501" width="0.0128%" height="15" fill="rgb(239,151,54)" fg:x="4640" fg:w="3"/><text x="20.0216%" y="2511.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="19.7588%" y="2613" width="0.0426%" height="15" fill="rgb(222,122,38)" fg:x="4637" fg:w="10"/><text x="20.0088%" y="2623.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (10 samples, 0.04%)</title><rect x="19.7588%" y="2597" width="0.0426%" height="15" fill="rgb(243,128,1)" fg:x="4637" fg:w="10"/><text x="20.0088%" y="2607.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="19.7673%" y="2581" width="0.0341%" height="15" fill="rgb(225,74,21)" fg:x="4639" fg:w="8"/><text x="20.0173%" y="2591.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="19.7673%" y="2565" width="0.0341%" height="15" fill="rgb(216,210,10)" fg:x="4639" fg:w="8"/><text x="20.0173%" y="2575.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="19.7673%" y="2549" width="0.0341%" height="15" fill="rgb(228,76,19)" fg:x="4639" fg:w="8"/><text x="20.0173%" y="2559.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="19.7673%" y="2533" width="0.0341%" height="15" fill="rgb(236,80,34)" fg:x="4639" fg:w="8"/><text x="20.0173%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="19.7844%" y="2517" width="0.0170%" height="15" fill="rgb(225,173,23)" fg:x="4643" fg:w="4"/><text x="20.0344%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (77 samples, 0.33%)</title><rect x="19.4776%" y="2757" width="0.3281%" height="15" fill="rgb(253,38,1)" fg:x="4571" fg:w="77"/><text x="19.7276%" y="2767.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="19.7588%" y="2741" width="0.0469%" height="15" fill="rgb(206,155,35)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2751.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="19.7588%" y="2725" width="0.0469%" height="15" fill="rgb(254,27,53)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="19.7588%" y="2709" width="0.0469%" height="15" fill="rgb(225,52,41)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (11 samples, 0.05%)</title><rect x="19.7588%" y="2693" width="0.0469%" height="15" fill="rgb(244,53,18)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2703.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (11 samples, 0.05%)</title><rect x="19.7588%" y="2677" width="0.0469%" height="15" fill="rgb(254,206,48)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (11 samples, 0.05%)</title><rect x="19.7588%" y="2661" width="0.0469%" height="15" fill="rgb(236,182,23)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2671.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (11 samples, 0.05%)</title><rect x="19.7588%" y="2645" width="0.0469%" height="15" fill="rgb(236,191,37)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2655.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (11 samples, 0.05%)</title><rect x="19.7588%" y="2629" width="0.0469%" height="15" fill="rgb(245,53,8)" fg:x="4637" fg:w="11"/><text x="20.0088%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (18 samples, 0.08%)</title><rect x="19.8185%" y="2453" width="0.0767%" height="15" fill="rgb(245,147,9)" fg:x="4651" fg:w="18"/><text x="20.0685%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (18 samples, 0.08%)</title><rect x="19.8185%" y="2437" width="0.0767%" height="15" fill="rgb(218,24,48)" fg:x="4651" fg:w="18"/><text x="20.0685%" y="2447.50"></text></g><g><title>exp (18 samples, 0.08%)</title><rect x="19.8185%" y="2421" width="0.0767%" height="15" fill="rgb(254,23,9)" fg:x="4651" fg:w="18"/><text x="20.0685%" y="2431.50"></text></g><g><title>[libm.so.6] (14 samples, 0.06%)</title><rect x="19.8355%" y="2405" width="0.0597%" height="15" fill="rgb(244,105,9)" fg:x="4655" fg:w="14"/><text x="20.0855%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (11 samples, 0.05%)</title><rect x="19.8952%" y="2453" width="0.0469%" height="15" fill="rgb(212,142,22)" fg:x="4669" fg:w="11"/><text x="20.1452%" y="2463.50"></text></g><g><title>core::f64::<impl f64>::recip (11 samples, 0.05%)</title><rect x="19.8952%" y="2437" width="0.0469%" height="15" fill="rgb(221,114,49)" fg:x="4669" fg:w="11"/><text x="20.1452%" y="2447.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (37 samples, 0.16%)</title><rect x="19.8142%" y="2469" width="0.1577%" height="15" fill="rgb(223,210,25)" fg:x="4650" fg:w="37"/><text x="20.0642%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (7 samples, 0.03%)</title><rect x="19.9420%" y="2453" width="0.0298%" height="15" fill="rgb(235,162,44)" fg:x="4680" fg:w="7"/><text x="20.1920%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::sqrt (7 samples, 0.03%)</title><rect x="19.9420%" y="2437" width="0.0298%" height="15" fill="rgb(237,65,45)" fg:x="4680" fg:w="7"/><text x="20.1920%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (42 samples, 0.18%)</title><rect x="19.8057%" y="2645" width="0.1790%" height="15" fill="rgb(208,79,9)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (42 samples, 0.18%)</title><rect x="19.8057%" y="2629" width="0.1790%" height="15" fill="rgb(215,228,8)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (42 samples, 0.18%)</title><rect x="19.8057%" y="2613" width="0.1790%" height="15" fill="rgb(205,185,17)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (42 samples, 0.18%)</title><rect x="19.8057%" y="2597" width="0.1790%" height="15" fill="rgb(213,62,36)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (42 samples, 0.18%)</title><rect x="19.8057%" y="2581" width="0.1790%" height="15" fill="rgb(209,34,9)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (42 samples, 0.18%)</title><rect x="19.8057%" y="2565" width="0.1790%" height="15" fill="rgb(246,151,27)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (42 samples, 0.18%)</title><rect x="19.8057%" y="2549" width="0.1790%" height="15" fill="rgb(218,206,3)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (42 samples, 0.18%)</title><rect x="19.8057%" y="2533" width="0.1790%" height="15" fill="rgb(242,202,1)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (42 samples, 0.18%)</title><rect x="19.8057%" y="2517" width="0.1790%" height="15" fill="rgb(227,185,16)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (42 samples, 0.18%)</title><rect x="19.8057%" y="2501" width="0.1790%" height="15" fill="rgb(241,1,14)" fg:x="4648" fg:w="42"/><text x="20.0557%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (40 samples, 0.17%)</title><rect x="19.8142%" y="2485" width="0.1704%" height="15" fill="rgb(212,113,25)" fg:x="4650" fg:w="40"/><text x="20.0642%" y="2495.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="19.9719%" y="2469" width="0.0128%" height="15" fill="rgb(247,37,43)" fg:x="4687" fg:w="3"/><text x="20.2219%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="19.9847%" y="2517" width="0.0213%" height="15" fill="rgb(226,54,8)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="19.9847%" y="2501" width="0.0213%" height="15" fill="rgb(251,205,25)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="19.9847%" y="2485" width="0.0213%" height="15" fill="rgb(246,87,35)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="19.9847%" y="2469" width="0.0213%" height="15" fill="rgb(251,145,46)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="19.9847%" y="2453" width="0.0213%" height="15" fill="rgb(210,210,33)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="19.9847%" y="2437" width="0.0213%" height="15" fill="rgb(221,151,11)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="19.9847%" y="2421" width="0.0213%" height="15" fill="rgb(208,160,28)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="19.9847%" y="2405" width="0.0213%" height="15" fill="rgb(243,69,29)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="19.9847%" y="2389" width="0.0213%" height="15" fill="rgb(224,144,4)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="19.9847%" y="2373" width="0.0213%" height="15" fill="rgb(211,140,38)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="19.9847%" y="2357" width="0.0213%" height="15" fill="rgb(252,189,15)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="19.9847%" y="2341" width="0.0213%" height="15" fill="rgb(251,175,23)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="19.9847%" y="2325" width="0.0213%" height="15" fill="rgb(212,184,11)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2335.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="19.9847%" y="2309" width="0.0213%" height="15" fill="rgb(217,205,6)" fg:x="4690" fg:w="5"/><text x="20.2347%" y="2319.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="19.9889%" y="2293" width="0.0170%" height="15" fill="rgb(235,45,45)" fg:x="4691" fg:w="4"/><text x="20.2389%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="19.9847%" y="2597" width="0.0341%" height="15" fill="rgb(211,157,53)" fg:x="4690" fg:w="8"/><text x="20.2347%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="19.9847%" y="2581" width="0.0341%" height="15" fill="rgb(212,13,8)" fg:x="4690" fg:w="8"/><text x="20.2347%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="19.9847%" y="2565" width="0.0341%" height="15" fill="rgb(218,80,36)" fg:x="4690" fg:w="8"/><text x="20.2347%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="19.9847%" y="2549" width="0.0341%" height="15" fill="rgb(211,123,43)" fg:x="4690" fg:w="8"/><text x="20.2347%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="19.9847%" y="2533" width="0.0341%" height="15" fill="rgb(206,165,2)" fg:x="4690" fg:w="8"/><text x="20.2347%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.0060%" y="2517" width="0.0128%" height="15" fill="rgb(248,63,35)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.0060%" y="2501" width="0.0128%" height="15" fill="rgb(219,133,41)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.0060%" y="2485" width="0.0128%" height="15" fill="rgb(206,175,46)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="20.0060%" y="2469" width="0.0128%" height="15" fill="rgb(224,41,35)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="20.0060%" y="2453" width="0.0128%" height="15" fill="rgb(226,113,24)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="20.0060%" y="2437" width="0.0128%" height="15" fill="rgb(219,51,41)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="20.0060%" y="2421" width="0.0128%" height="15" fill="rgb(220,145,47)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="20.0060%" y="2405" width="0.0128%" height="15" fill="rgb(239,121,47)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="20.0060%" y="2389" width="0.0128%" height="15" fill="rgb(207,60,40)" fg:x="4695" fg:w="3"/><text x="20.2560%" y="2399.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="20.0187%" y="2293" width="0.0213%" height="15" fill="rgb(224,229,11)" fg:x="4698" fg:w="5"/><text x="20.2687%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="20.0187%" y="2453" width="0.0298%" height="15" fill="rgb(252,28,32)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="20.0187%" y="2437" width="0.0298%" height="15" fill="rgb(207,52,49)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="20.0187%" y="2421" width="0.0298%" height="15" fill="rgb(243,51,50)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="20.0187%" y="2405" width="0.0298%" height="15" fill="rgb(212,92,21)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="20.0187%" y="2389" width="0.0298%" height="15" fill="rgb(230,183,50)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="20.0187%" y="2373" width="0.0298%" height="15" fill="rgb(225,48,9)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="20.0187%" y="2357" width="0.0298%" height="15" fill="rgb(254,44,4)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="20.0187%" y="2341" width="0.0298%" height="15" fill="rgb(252,128,37)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="20.0187%" y="2325" width="0.0298%" height="15" fill="rgb(227,178,8)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="20.0187%" y="2309" width="0.0298%" height="15" fill="rgb(205,206,32)" fg:x="4698" fg:w="7"/><text x="20.2687%" y="2319.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="20.0486%" y="2309" width="0.0128%" height="15" fill="rgb(220,218,22)" fg:x="4705" fg:w="3"/><text x="20.2986%" y="2319.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="20.0486%" y="2293" width="0.0128%" height="15" fill="rgb(236,41,28)" fg:x="4705" fg:w="3"/><text x="20.2986%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (62 samples, 0.26%)</title><rect x="19.8057%" y="2709" width="0.2642%" height="15" fill="rgb(219,37,7)" fg:x="4648" fg:w="62"/><text x="20.0557%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (62 samples, 0.26%)</title><rect x="19.8057%" y="2693" width="0.2642%" height="15" fill="rgb(206,160,15)" fg:x="4648" fg:w="62"/><text x="20.0557%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (62 samples, 0.26%)</title><rect x="19.8057%" y="2677" width="0.2642%" height="15" fill="rgb(208,82,21)" fg:x="4648" fg:w="62"/><text x="20.0557%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (62 samples, 0.26%)</title><rect x="19.8057%" y="2661" width="0.2642%" height="15" fill="rgb(226,130,25)" fg:x="4648" fg:w="62"/><text x="20.0557%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="19.9847%" y="2645" width="0.0852%" height="15" fill="rgb(212,72,24)" fg:x="4690" fg:w="20"/><text x="20.2347%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="19.9847%" y="2629" width="0.0852%" height="15" fill="rgb(206,28,16)" fg:x="4690" fg:w="20"/><text x="20.2347%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="19.9847%" y="2613" width="0.0852%" height="15" fill="rgb(249,41,5)" fg:x="4690" fg:w="20"/><text x="20.2347%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="20.0187%" y="2597" width="0.0511%" height="15" fill="rgb(233,96,48)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="20.0187%" y="2581" width="0.0511%" height="15" fill="rgb(240,198,11)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2591.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="20.0187%" y="2565" width="0.0511%" height="15" fill="rgb(209,175,35)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="20.0187%" y="2549" width="0.0511%" height="15" fill="rgb(214,40,51)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="20.0187%" y="2533" width="0.0511%" height="15" fill="rgb(252,56,4)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="20.0187%" y="2517" width="0.0511%" height="15" fill="rgb(219,131,5)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="20.0187%" y="2501" width="0.0511%" height="15" fill="rgb(223,67,53)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="20.0187%" y="2485" width="0.0511%" height="15" fill="rgb(227,154,8)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="20.0187%" y="2469" width="0.0511%" height="15" fill="rgb(216,174,51)" fg:x="4698" fg:w="12"/><text x="20.2687%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="20.0486%" y="2453" width="0.0213%" height="15" fill="rgb(239,60,34)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="20.0486%" y="2437" width="0.0213%" height="15" fill="rgb(236,165,48)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="20.0486%" y="2421" width="0.0213%" height="15" fill="rgb(210,37,26)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="20.0486%" y="2405" width="0.0213%" height="15" fill="rgb(211,3,17)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="20.0486%" y="2389" width="0.0213%" height="15" fill="rgb(234,88,49)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="20.0486%" y="2373" width="0.0213%" height="15" fill="rgb(233,40,17)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="20.0486%" y="2357" width="0.0213%" height="15" fill="rgb(235,127,31)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="20.0486%" y="2341" width="0.0213%" height="15" fill="rgb(248,167,17)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="20.0486%" y="2325" width="0.0213%" height="15" fill="rgb(218,179,8)" fg:x="4705" fg:w="5"/><text x="20.2986%" y="2335.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (13 samples, 0.06%)</title><rect x="20.0741%" y="2389" width="0.0554%" height="15" fill="rgb(216,92,14)" fg:x="4711" fg:w="13"/><text x="20.3241%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (13 samples, 0.06%)</title><rect x="20.0741%" y="2373" width="0.0554%" height="15" fill="rgb(221,198,46)" fg:x="4711" fg:w="13"/><text x="20.3241%" y="2383.50"></text></g><g><title>exp (13 samples, 0.06%)</title><rect x="20.0741%" y="2357" width="0.0554%" height="15" fill="rgb(244,7,25)" fg:x="4711" fg:w="13"/><text x="20.3241%" y="2367.50"></text></g><g><title>[libm.so.6] (13 samples, 0.06%)</title><rect x="20.0741%" y="2341" width="0.0554%" height="15" fill="rgb(233,75,6)" fg:x="4711" fg:w="13"/><text x="20.3241%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (12 samples, 0.05%)</title><rect x="20.1295%" y="2389" width="0.0511%" height="15" fill="rgb(240,189,41)" fg:x="4724" fg:w="12"/><text x="20.3795%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (12 samples, 0.05%)</title><rect x="20.1295%" y="2373" width="0.0511%" height="15" fill="rgb(237,157,21)" fg:x="4724" fg:w="12"/><text x="20.3795%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (37 samples, 0.16%)</title><rect x="20.0741%" y="2405" width="0.1577%" height="15" fill="rgb(210,136,49)" fg:x="4711" fg:w="37"/><text x="20.3241%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (12 samples, 0.05%)</title><rect x="20.1807%" y="2389" width="0.0511%" height="15" fill="rgb(210,68,29)" fg:x="4736" fg:w="12"/><text x="20.4307%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (12 samples, 0.05%)</title><rect x="20.1807%" y="2373" width="0.0511%" height="15" fill="rgb(247,207,20)" fg:x="4736" fg:w="12"/><text x="20.4307%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (41 samples, 0.17%)</title><rect x="20.0699%" y="2581" width="0.1747%" height="15" fill="rgb(224,73,48)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (41 samples, 0.17%)</title><rect x="20.0699%" y="2565" width="0.1747%" height="15" fill="rgb(215,136,47)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (41 samples, 0.17%)</title><rect x="20.0699%" y="2549" width="0.1747%" height="15" fill="rgb(232,222,16)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (41 samples, 0.17%)</title><rect x="20.0699%" y="2533" width="0.1747%" height="15" fill="rgb(249,202,47)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (41 samples, 0.17%)</title><rect x="20.0699%" y="2517" width="0.1747%" height="15" fill="rgb(236,56,8)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (41 samples, 0.17%)</title><rect x="20.0699%" y="2501" width="0.1747%" height="15" fill="rgb(222,6,3)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (41 samples, 0.17%)</title><rect x="20.0699%" y="2485" width="0.1747%" height="15" fill="rgb(254,222,28)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (41 samples, 0.17%)</title><rect x="20.0699%" y="2469" width="0.1747%" height="15" fill="rgb(219,57,23)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (41 samples, 0.17%)</title><rect x="20.0699%" y="2453" width="0.1747%" height="15" fill="rgb(251,106,48)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (41 samples, 0.17%)</title><rect x="20.0699%" y="2437" width="0.1747%" height="15" fill="rgb(242,2,23)" fg:x="4710" fg:w="41"/><text x="20.3199%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (40 samples, 0.17%)</title><rect x="20.0741%" y="2421" width="0.1704%" height="15" fill="rgb(212,109,31)" fg:x="4711" fg:w="40"/><text x="20.3241%" y="2431.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="20.2318%" y="2405" width="0.0128%" height="15" fill="rgb(241,9,22)" fg:x="4748" fg:w="3"/><text x="20.4818%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="20.2446%" y="2277" width="0.0170%" height="15" fill="rgb(209,64,27)" fg:x="4751" fg:w="4"/><text x="20.4946%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="20.2446%" y="2261" width="0.0170%" height="15" fill="rgb(248,13,44)" fg:x="4751" fg:w="4"/><text x="20.4946%" y="2271.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="20.2446%" y="2245" width="0.0170%" height="15" fill="rgb(213,86,6)" fg:x="4751" fg:w="4"/><text x="20.4946%" y="2255.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="20.2446%" y="2453" width="0.0213%" height="15" fill="rgb(247,11,18)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="20.2446%" y="2437" width="0.0213%" height="15" fill="rgb(252,31,11)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="20.2446%" y="2421" width="0.0213%" height="15" fill="rgb(215,63,51)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="20.2446%" y="2405" width="0.0213%" height="15" fill="rgb(222,180,4)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="20.2446%" y="2389" width="0.0213%" height="15" fill="rgb(233,4,23)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="20.2446%" y="2373" width="0.0213%" height="15" fill="rgb(230,116,22)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="20.2446%" y="2357" width="0.0213%" height="15" fill="rgb(222,20,14)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="20.2446%" y="2341" width="0.0213%" height="15" fill="rgb(210,176,43)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="20.2446%" y="2325" width="0.0213%" height="15" fill="rgb(219,67,32)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="20.2446%" y="2309" width="0.0213%" height="15" fill="rgb(228,91,39)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="20.2446%" y="2293" width="0.0213%" height="15" fill="rgb(254,63,14)" fg:x="4751" fg:w="5"/><text x="20.4946%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="20.2446%" y="2533" width="0.0256%" height="15" fill="rgb(216,171,39)" fg:x="4751" fg:w="6"/><text x="20.4946%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="20.2446%" y="2517" width="0.0256%" height="15" fill="rgb(248,68,25)" fg:x="4751" fg:w="6"/><text x="20.4946%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="20.2446%" y="2501" width="0.0256%" height="15" fill="rgb(239,63,16)" fg:x="4751" fg:w="6"/><text x="20.4946%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="20.2446%" y="2485" width="0.0256%" height="15" fill="rgb(225,111,43)" fg:x="4751" fg:w="6"/><text x="20.4946%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="20.2446%" y="2469" width="0.0256%" height="15" fill="rgb(246,165,17)" fg:x="4751" fg:w="6"/><text x="20.4946%" y="2479.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="20.2702%" y="2229" width="0.0170%" height="15" fill="rgb(208,124,1)" fg:x="4757" fg:w="4"/><text x="20.5202%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="20.2702%" y="2213" width="0.0170%" height="15" fill="rgb(234,147,33)" fg:x="4757" fg:w="4"/><text x="20.5202%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="20.2702%" y="2197" width="0.0170%" height="15" fill="rgb(240,86,30)" fg:x="4757" fg:w="4"/><text x="20.5202%" y="2207.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="20.2702%" y="2181" width="0.0170%" height="15" fill="rgb(237,34,51)" fg:x="4757" fg:w="4"/><text x="20.5202%" y="2191.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="20.2702%" y="2165" width="0.0170%" height="15" fill="rgb(232,131,41)" fg:x="4757" fg:w="4"/><text x="20.5202%" y="2175.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="20.2702%" y="2389" width="0.0256%" height="15" fill="rgb(227,129,53)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="20.2702%" y="2373" width="0.0256%" height="15" fill="rgb(230,90,35)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="20.2702%" y="2357" width="0.0256%" height="15" fill="rgb(248,88,27)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="20.2702%" y="2341" width="0.0256%" height="15" fill="rgb(223,18,17)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="20.2702%" y="2325" width="0.0256%" height="15" fill="rgb(241,11,10)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="20.2702%" y="2309" width="0.0256%" height="15" fill="rgb(232,111,52)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="20.2702%" y="2293" width="0.0256%" height="15" fill="rgb(228,67,8)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="20.2702%" y="2277" width="0.0256%" height="15" fill="rgb(251,168,31)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="20.2702%" y="2261" width="0.0256%" height="15" fill="rgb(249,164,11)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="20.2702%" y="2245" width="0.0256%" height="15" fill="rgb(239,81,9)" fg:x="4757" fg:w="6"/><text x="20.5202%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (637 samples, 2.71%)</title><rect x="17.5899%" y="2997" width="2.7143%" height="15" fill="rgb(222,145,38)" fg:x="4128" fg:w="637"/><text x="17.8399%" y="3007.50">ra..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (637 samples, 2.71%)</title><rect x="17.5899%" y="2981" width="2.7143%" height="15" fill="rgb(238,80,54)" fg:x="4128" fg:w="637"/><text x="17.8399%" y="2991.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (637 samples, 2.71%)</title><rect x="17.5899%" y="2965" width="2.7143%" height="15" fill="rgb(237,116,16)" fg:x="4128" fg:w="637"/><text x="17.8399%" y="2975.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (637 samples, 2.71%)</title><rect x="17.5899%" y="2949" width="2.7143%" height="15" fill="rgb(218,135,19)" fg:x="4128" fg:w="637"/><text x="17.8399%" y="2959.50">ra..</text></g><g><title>rayon_core::join::join_context (562 samples, 2.39%)</title><rect x="17.9095%" y="2933" width="2.3948%" height="15" fill="rgb(216,207,44)" fg:x="4203" fg:w="562"/><text x="18.1595%" y="2943.50">ra..</text></g><g><title>rayon_core::registry::in_worker (562 samples, 2.39%)</title><rect x="17.9095%" y="2917" width="2.3948%" height="15" fill="rgb(226,152,40)" fg:x="4203" fg:w="562"/><text x="18.1595%" y="2927.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (562 samples, 2.39%)</title><rect x="17.9095%" y="2901" width="2.3948%" height="15" fill="rgb(219,98,35)" fg:x="4203" fg:w="562"/><text x="18.1595%" y="2911.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (194 samples, 0.83%)</title><rect x="19.4776%" y="2885" width="0.8267%" height="15" fill="rgb(222,136,46)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (194 samples, 0.83%)</title><rect x="19.4776%" y="2869" width="0.8267%" height="15" fill="rgb(222,71,8)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2879.50"></text></g><g><title>std::panicking::try (194 samples, 0.83%)</title><rect x="19.4776%" y="2853" width="0.8267%" height="15" fill="rgb(209,89,53)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (194 samples, 0.83%)</title><rect x="19.4776%" y="2837" width="0.8267%" height="15" fill="rgb(210,97,51)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (194 samples, 0.83%)</title><rect x="19.4776%" y="2821" width="0.8267%" height="15" fill="rgb(248,65,21)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (194 samples, 0.83%)</title><rect x="19.4776%" y="2805" width="0.8267%" height="15" fill="rgb(222,5,31)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (194 samples, 0.83%)</title><rect x="19.4776%" y="2789" width="0.8267%" height="15" fill="rgb(241,16,30)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (194 samples, 0.83%)</title><rect x="19.4776%" y="2773" width="0.8267%" height="15" fill="rgb(215,86,30)" fg:x="4571" fg:w="194"/><text x="19.7276%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (117 samples, 0.50%)</title><rect x="19.8057%" y="2757" width="0.4986%" height="15" fill="rgb(235,26,44)" fg:x="4648" fg:w="117"/><text x="20.0557%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (117 samples, 0.50%)</title><rect x="19.8057%" y="2741" width="0.4986%" height="15" fill="rgb(228,147,14)" fg:x="4648" fg:w="117"/><text x="20.0557%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (117 samples, 0.50%)</title><rect x="19.8057%" y="2725" width="0.4986%" height="15" fill="rgb(253,38,50)" fg:x="4648" fg:w="117"/><text x="20.0557%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (55 samples, 0.23%)</title><rect x="20.0699%" y="2709" width="0.2344%" height="15" fill="rgb(251,151,16)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (55 samples, 0.23%)</title><rect x="20.0699%" y="2693" width="0.2344%" height="15" fill="rgb(224,64,19)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2703.50"></text></g><g><title>std::panicking::try (55 samples, 0.23%)</title><rect x="20.0699%" y="2677" width="0.2344%" height="15" fill="rgb(235,214,47)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (55 samples, 0.23%)</title><rect x="20.0699%" y="2661" width="0.2344%" height="15" fill="rgb(218,15,19)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (55 samples, 0.23%)</title><rect x="20.0699%" y="2645" width="0.2344%" height="15" fill="rgb(247,209,3)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (55 samples, 0.23%)</title><rect x="20.0699%" y="2629" width="0.2344%" height="15" fill="rgb(217,29,2)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (55 samples, 0.23%)</title><rect x="20.0699%" y="2613" width="0.2344%" height="15" fill="rgb(234,9,9)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.23%)</title><rect x="20.0699%" y="2597" width="0.2344%" height="15" fill="rgb(207,43,14)" fg:x="4710" fg:w="55"/><text x="20.3199%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="20.2446%" y="2581" width="0.0597%" height="15" fill="rgb(216,219,36)" fg:x="4751" fg:w="14"/><text x="20.4946%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="20.2446%" y="2565" width="0.0597%" height="15" fill="rgb(238,12,26)" fg:x="4751" fg:w="14"/><text x="20.4946%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="20.2446%" y="2549" width="0.0597%" height="15" fill="rgb(226,67,30)" fg:x="4751" fg:w="14"/><text x="20.4946%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="20.2702%" y="2533" width="0.0341%" height="15" fill="rgb(229,154,7)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="20.2702%" y="2517" width="0.0341%" height="15" fill="rgb(249,90,18)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2527.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="20.2702%" y="2501" width="0.0341%" height="15" fill="rgb(223,53,15)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="20.2702%" y="2485" width="0.0341%" height="15" fill="rgb(253,86,38)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="20.2702%" y="2469" width="0.0341%" height="15" fill="rgb(222,198,9)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="20.2702%" y="2453" width="0.0341%" height="15" fill="rgb(240,146,25)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.2702%" y="2437" width="0.0341%" height="15" fill="rgb(225,38,10)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.2702%" y="2421" width="0.0341%" height="15" fill="rgb(246,93,4)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="20.2702%" y="2405" width="0.0341%" height="15" fill="rgb(222,55,18)" fg:x="4757" fg:w="8"/><text x="20.5202%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.3128%" y="2645" width="0.0128%" height="15" fill="rgb(233,137,48)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.3128%" y="2629" width="0.0128%" height="15" fill="rgb(214,8,54)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.3128%" y="2613" width="0.0128%" height="15" fill="rgb(206,75,4)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.3128%" y="2597" width="0.0128%" height="15" fill="rgb(238,171,14)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.3128%" y="2581" width="0.0128%" height="15" fill="rgb(233,70,41)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.3128%" y="2565" width="0.0128%" height="15" fill="rgb(214,68,36)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.3128%" y="2549" width="0.0128%" height="15" fill="rgb(223,29,5)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.3128%" y="2533" width="0.0128%" height="15" fill="rgb(251,22,40)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.3128%" y="2517" width="0.0128%" height="15" fill="rgb(210,67,41)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.3128%" y="2501" width="0.0128%" height="15" fill="rgb(225,177,31)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.3128%" y="2485" width="0.0128%" height="15" fill="rgb(221,229,11)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.3128%" y="2469" width="0.0128%" height="15" fill="rgb(247,172,52)" fg:x="4767" fg:w="3"/><text x="20.5628%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.3255%" y="2533" width="0.0128%" height="15" fill="rgb(212,73,19)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.3255%" y="2517" width="0.0128%" height="15" fill="rgb(244,7,46)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2527.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.3255%" y="2501" width="0.0128%" height="15" fill="rgb(230,113,20)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.3255%" y="2485" width="0.0128%" height="15" fill="rgb(209,97,30)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2495.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="20.3255%" y="2469" width="0.0128%" height="15" fill="rgb(243,89,12)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2479.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="20.3255%" y="2453" width="0.0128%" height="15" fill="rgb(228,32,19)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2463.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="20.3255%" y="2437" width="0.0128%" height="15" fill="rgb(248,25,17)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="20.3255%" y="2421" width="0.0128%" height="15" fill="rgb(232,161,29)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2431.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="20.3255%" y="2405" width="0.0128%" height="15" fill="rgb(251,192,11)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2415.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="20.3255%" y="2389" width="0.0128%" height="15" fill="rgb(240,47,32)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2399.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="20.3255%" y="2373" width="0.0128%" height="15" fill="rgb(250,16,45)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="20.3255%" y="2357" width="0.0128%" height="15" fill="rgb(227,217,42)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2367.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="20.3255%" y="2341" width="0.0128%" height="15" fill="rgb(206,82,54)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="20.3255%" y="2325" width="0.0128%" height="15" fill="rgb(243,145,25)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="20.3255%" y="2309" width="0.0128%" height="15" fill="rgb(207,166,24)" fg:x="4770" fg:w="3"/><text x="20.5755%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="20.3469%" y="1333" width="0.0256%" height="15" fill="rgb(215,191,44)" fg:x="4775" fg:w="6"/><text x="20.5969%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="20.3469%" y="1317" width="0.0256%" height="15" fill="rgb(234,218,51)" fg:x="4775" fg:w="6"/><text x="20.5969%" y="1327.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="20.3511%" y="1301" width="0.0213%" height="15" fill="rgb(245,133,21)" fg:x="4776" fg:w="5"/><text x="20.6011%" y="1311.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="20.3511%" y="1285" width="0.0213%" height="15" fill="rgb(230,136,45)" fg:x="4776" fg:w="5"/><text x="20.6011%" y="1295.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="20.3511%" y="1269" width="0.0213%" height="15" fill="rgb(247,63,43)" fg:x="4776" fg:w="5"/><text x="20.6011%" y="1279.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="20.3511%" y="1253" width="0.0213%" height="15" fill="rgb(254,223,31)" fg:x="4776" fg:w="5"/><text x="20.6011%" y="1263.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="20.3511%" y="1237" width="0.0213%" height="15" fill="rgb(236,185,0)" fg:x="4776" fg:w="5"/><text x="20.6011%" y="1247.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="20.3511%" y="1221" width="0.0213%" height="15" fill="rgb(231,139,46)" fg:x="4776" fg:w="5"/><text x="20.6011%" y="1231.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="20.3554%" y="1205" width="0.0170%" height="15" fill="rgb(236,147,31)" fg:x="4777" fg:w="4"/><text x="20.6054%" y="1215.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="20.3469%" y="1621" width="0.0341%" height="15" fill="rgb(225,222,22)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="20.3469%" y="1605" width="0.0341%" height="15" fill="rgb(225,193,14)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1615.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="20.3469%" y="1589" width="0.0341%" height="15" fill="rgb(253,193,46)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1599.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="20.3469%" y="1573" width="0.0341%" height="15" fill="rgb(218,187,39)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1583.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="20.3469%" y="1557" width="0.0341%" height="15" fill="rgb(227,162,48)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1567.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="20.3469%" y="1541" width="0.0341%" height="15" fill="rgb(222,25,5)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1551.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="20.3469%" y="1525" width="0.0341%" height="15" fill="rgb(211,205,16)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1535.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="20.3469%" y="1509" width="0.0341%" height="15" fill="rgb(244,191,2)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1519.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="20.3469%" y="1493" width="0.0341%" height="15" fill="rgb(248,159,12)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1503.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="20.3469%" y="1477" width="0.0341%" height="15" fill="rgb(235,204,17)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1487.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="20.3469%" y="1461" width="0.0341%" height="15" fill="rgb(240,21,27)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1471.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="20.3469%" y="1445" width="0.0341%" height="15" fill="rgb(224,170,31)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1455.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="20.3469%" y="1429" width="0.0341%" height="15" fill="rgb(223,145,32)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.3469%" y="1413" width="0.0341%" height="15" fill="rgb(243,100,5)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.3469%" y="1397" width="0.0341%" height="15" fill="rgb(242,131,51)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1407.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="20.3469%" y="1381" width="0.0341%" height="15" fill="rgb(223,156,46)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1391.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="20.3469%" y="1365" width="0.0341%" height="15" fill="rgb(215,10,40)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="20.3469%" y="1349" width="0.0341%" height="15" fill="rgb(233,155,0)" fg:x="4775" fg:w="8"/><text x="20.5969%" y="1359.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="20.3469%" y="1733" width="0.0426%" height="15" fill="rgb(247,78,6)" fg:x="4775" fg:w="10"/><text x="20.5969%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="20.3469%" y="1717" width="0.0426%" height="15" fill="rgb(237,217,21)" fg:x="4775" fg:w="10"/><text x="20.5969%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="20.3469%" y="1701" width="0.0426%" height="15" fill="rgb(212,1,21)" fg:x="4775" fg:w="10"/><text x="20.5969%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="20.3469%" y="1685" width="0.0426%" height="15" fill="rgb(213,7,14)" fg:x="4775" fg:w="10"/><text x="20.5969%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="20.3469%" y="1669" width="0.0426%" height="15" fill="rgb(225,84,14)" fg:x="4775" fg:w="10"/><text x="20.5969%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="20.3469%" y="1653" width="0.0426%" height="15" fill="rgb(239,216,39)" fg:x="4775" fg:w="10"/><text x="20.5969%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="20.3469%" y="1637" width="0.0426%" height="15" fill="rgb(253,29,23)" fg:x="4775" fg:w="10"/><text x="20.5969%" y="1647.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (14 samples, 0.06%)</title><rect x="20.3469%" y="2197" width="0.0597%" height="15" fill="rgb(220,167,50)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="20.3469%" y="2181" width="0.0597%" height="15" fill="rgb(232,141,1)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (14 samples, 0.06%)</title><rect x="20.3469%" y="2165" width="0.0597%" height="15" fill="rgb(222,210,1)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2175.50"></text></g><g><title>rayon_core::job::JobRef::execute (14 samples, 0.06%)</title><rect x="20.3469%" y="2149" width="0.0597%" height="15" fill="rgb(219,84,10)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2159.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (14 samples, 0.06%)</title><rect x="20.3469%" y="2133" width="0.0597%" height="15" fill="rgb(245,188,6)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2143.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (14 samples, 0.06%)</title><rect x="20.3469%" y="2117" width="0.0597%" height="15" fill="rgb(252,139,39)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2127.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="20.3469%" y="2101" width="0.0597%" height="15" fill="rgb(218,42,26)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2111.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="20.3469%" y="2085" width="0.0597%" height="15" fill="rgb(237,226,51)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2095.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="20.3469%" y="2069" width="0.0597%" height="15" fill="rgb(246,15,17)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2079.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="20.3469%" y="2053" width="0.0597%" height="15" fill="rgb(228,170,42)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2063.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="20.3469%" y="2037" width="0.0597%" height="15" fill="rgb(248,118,53)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2047.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (14 samples, 0.06%)</title><rect x="20.3469%" y="2021" width="0.0597%" height="15" fill="rgb(207,30,10)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="20.3469%" y="2005" width="0.0597%" height="15" fill="rgb(217,104,38)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="20.3469%" y="1989" width="0.0597%" height="15" fill="rgb(211,165,26)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="20.3469%" y="1973" width="0.0597%" height="15" fill="rgb(247,38,9)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="20.3469%" y="1957" width="0.0597%" height="15" fill="rgb(218,187,8)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="20.3469%" y="1941" width="0.0597%" height="15" fill="rgb(247,94,28)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="20.3469%" y="1925" width="0.0597%" height="15" fill="rgb(218,173,30)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1935.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="20.3469%" y="1909" width="0.0597%" height="15" fill="rgb(245,45,36)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1919.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="20.3469%" y="1893" width="0.0597%" height="15" fill="rgb(221,172,44)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1903.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="20.3469%" y="1877" width="0.0597%" height="15" fill="rgb(222,45,12)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1887.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="20.3469%" y="1861" width="0.0597%" height="15" fill="rgb(250,10,22)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1871.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="20.3469%" y="1845" width="0.0597%" height="15" fill="rgb(239,27,0)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="20.3469%" y="1829" width="0.0597%" height="15" fill="rgb(223,118,22)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="20.3469%" y="1813" width="0.0597%" height="15" fill="rgb(251,81,25)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="20.3469%" y="1797" width="0.0597%" height="15" fill="rgb(237,225,53)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="20.3469%" y="1781" width="0.0597%" height="15" fill="rgb(237,186,51)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="20.3469%" y="1765" width="0.0597%" height="15" fill="rgb(247,209,11)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="20.3469%" y="1749" width="0.0597%" height="15" fill="rgb(223,109,27)" fg:x="4775" fg:w="14"/><text x="20.5969%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="20.3895%" y="1733" width="0.0170%" height="15" fill="rgb(246,181,13)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="20.3895%" y="1717" width="0.0170%" height="15" fill="rgb(234,57,44)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1727.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="20.3895%" y="1701" width="0.0170%" height="15" fill="rgb(211,227,50)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="20.3895%" y="1685" width="0.0170%" height="15" fill="rgb(254,57,34)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="20.3895%" y="1669" width="0.0170%" height="15" fill="rgb(227,212,26)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="20.3895%" y="1653" width="0.0170%" height="15" fill="rgb(244,169,44)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.3895%" y="1637" width="0.0170%" height="15" fill="rgb(236,135,50)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.3895%" y="1621" width="0.0170%" height="15" fill="rgb(241,89,30)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.3895%" y="1605" width="0.0170%" height="15" fill="rgb(206,113,34)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.3895%" y="1589" width="0.0170%" height="15" fill="rgb(218,104,52)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.3895%" y="1573" width="0.0170%" height="15" fill="rgb(223,82,32)" fg:x="4785" fg:w="4"/><text x="20.6395%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (16 samples, 0.07%)</title><rect x="20.3469%" y="2485" width="0.0682%" height="15" fill="rgb(249,219,30)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.07%)</title><rect x="20.3469%" y="2469" width="0.0682%" height="15" fill="rgb(233,141,21)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (16 samples, 0.07%)</title><rect x="20.3469%" y="2453" width="0.0682%" height="15" fill="rgb(252,87,44)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2463.50"></text></g><g><title>rayon_core::job::JobRef::execute (16 samples, 0.07%)</title><rect x="20.3469%" y="2437" width="0.0682%" height="15" fill="rgb(229,48,33)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (16 samples, 0.07%)</title><rect x="20.3469%" y="2421" width="0.0682%" height="15" fill="rgb(229,23,22)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (16 samples, 0.07%)</title><rect x="20.3469%" y="2405" width="0.0682%" height="15" fill="rgb(244,116,16)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="20.3469%" y="2389" width="0.0682%" height="15" fill="rgb(247,45,10)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2399.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="20.3469%" y="2373" width="0.0682%" height="15" fill="rgb(228,60,29)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2383.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="20.3469%" y="2357" width="0.0682%" height="15" fill="rgb(205,129,15)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2367.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="20.3469%" y="2341" width="0.0682%" height="15" fill="rgb(206,229,4)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="20.3469%" y="2325" width="0.0682%" height="15" fill="rgb(249,191,30)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (16 samples, 0.07%)</title><rect x="20.3469%" y="2309" width="0.0682%" height="15" fill="rgb(250,84,54)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="20.3469%" y="2293" width="0.0682%" height="15" fill="rgb(207,25,53)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="20.3469%" y="2277" width="0.0682%" height="15" fill="rgb(235,40,8)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="20.3469%" y="2261" width="0.0682%" height="15" fill="rgb(226,169,33)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="20.3469%" y="2245" width="0.0682%" height="15" fill="rgb(238,110,8)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="20.3469%" y="2229" width="0.0682%" height="15" fill="rgb(251,206,12)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="20.3469%" y="2213" width="0.0682%" height="15" fill="rgb(248,171,18)" fg:x="4775" fg:w="16"/><text x="20.5969%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (26 samples, 0.11%)</title><rect x="20.3255%" y="2597" width="0.1108%" height="15" fill="rgb(213,65,46)" fg:x="4770" fg:w="26"/><text x="20.5755%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="20.3255%" y="2581" width="0.1108%" height="15" fill="rgb(211,154,15)" fg:x="4770" fg:w="26"/><text x="20.5755%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="20.3255%" y="2565" width="0.1108%" height="15" fill="rgb(217,75,43)" fg:x="4770" fg:w="26"/><text x="20.5755%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="20.3255%" y="2549" width="0.1108%" height="15" fill="rgb(230,32,33)" fg:x="4770" fg:w="26"/><text x="20.5755%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="20.3383%" y="2533" width="0.0980%" height="15" fill="rgb(221,100,16)" fg:x="4773" fg:w="23"/><text x="20.5883%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="20.3383%" y="2517" width="0.0980%" height="15" fill="rgb(212,129,47)" fg:x="4773" fg:w="23"/><text x="20.5883%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="20.3383%" y="2501" width="0.0980%" height="15" fill="rgb(239,217,47)" fg:x="4773" fg:w="23"/><text x="20.5883%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="20.4150%" y="2485" width="0.0213%" height="15" fill="rgb(230,84,24)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="20.4150%" y="2469" width="0.0213%" height="15" fill="rgb(214,153,51)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2479.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="20.4150%" y="2453" width="0.0213%" height="15" fill="rgb(231,6,35)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="20.4150%" y="2437" width="0.0213%" height="15" fill="rgb(229,122,30)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="20.4150%" y="2421" width="0.0213%" height="15" fill="rgb(234,71,10)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="20.4150%" y="2405" width="0.0213%" height="15" fill="rgb(215,173,26)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.4150%" y="2389" width="0.0213%" height="15" fill="rgb(248,118,52)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.4150%" y="2373" width="0.0213%" height="15" fill="rgb(237,55,46)" fg:x="4791" fg:w="5"/><text x="20.6650%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="20.4236%" y="2357" width="0.0128%" height="15" fill="rgb(243,214,43)" fg:x="4793" fg:w="3"/><text x="20.6736%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="20.4236%" y="2341" width="0.0128%" height="15" fill="rgb(252,123,30)" fg:x="4793" fg:w="3"/><text x="20.6736%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="20.4236%" y="2325" width="0.0128%" height="15" fill="rgb(215,73,39)" fg:x="4793" fg:w="3"/><text x="20.6736%" y="2335.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="20.4363%" y="2181" width="0.0170%" height="15" fill="rgb(251,194,29)" fg:x="4796" fg:w="4"/><text x="20.6863%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="20.4406%" y="2165" width="0.0128%" height="15" fill="rgb(224,58,52)" fg:x="4797" fg:w="3"/><text x="20.6906%" y="2175.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="20.4406%" y="2149" width="0.0128%" height="15" fill="rgb(248,106,46)" fg:x="4797" fg:w="3"/><text x="20.6906%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="20.4363%" y="2357" width="0.0213%" height="15" fill="rgb(223,80,29)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="20.4363%" y="2341" width="0.0213%" height="15" fill="rgb(243,137,9)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="20.4363%" y="2325" width="0.0213%" height="15" fill="rgb(235,121,28)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="20.4363%" y="2309" width="0.0213%" height="15" fill="rgb(219,121,41)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="20.4363%" y="2293" width="0.0213%" height="15" fill="rgb(251,60,6)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="20.4363%" y="2277" width="0.0213%" height="15" fill="rgb(208,12,30)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="20.4363%" y="2261" width="0.0213%" height="15" fill="rgb(207,176,36)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="20.4363%" y="2245" width="0.0213%" height="15" fill="rgb(211,188,29)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="20.4363%" y="2229" width="0.0213%" height="15" fill="rgb(220,184,37)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="20.4363%" y="2213" width="0.0213%" height="15" fill="rgb(239,87,37)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="20.4363%" y="2197" width="0.0213%" height="15" fill="rgb(232,113,44)" fg:x="4796" fg:w="5"/><text x="20.6863%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="20.4747%" y="1685" width="0.0298%" height="15" fill="rgb(246,25,39)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1695.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="20.4747%" y="1669" width="0.0298%" height="15" fill="rgb(247,30,13)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="20.4747%" y="1653" width="0.0298%" height="15" fill="rgb(230,176,35)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1663.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="20.4747%" y="1637" width="0.0298%" height="15" fill="rgb(222,23,18)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1647.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="20.4747%" y="1621" width="0.0298%" height="15" fill="rgb(234,86,8)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="20.4747%" y="1605" width="0.0298%" height="15" fill="rgb(206,218,47)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1615.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="20.4747%" y="1589" width="0.0298%" height="15" fill="rgb(229,35,31)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1599.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="20.4747%" y="1573" width="0.0298%" height="15" fill="rgb(242,81,7)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1583.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="20.4747%" y="1557" width="0.0298%" height="15" fill="rgb(231,11,35)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1567.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="20.4747%" y="1541" width="0.0298%" height="15" fill="rgb(219,218,17)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1551.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="20.4747%" y="1525" width="0.0298%" height="15" fill="rgb(221,83,32)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1535.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="20.4747%" y="1509" width="0.0298%" height="15" fill="rgb(233,49,54)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="20.4747%" y="1493" width="0.0298%" height="15" fill="rgb(206,18,51)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="20.4747%" y="1477" width="0.0298%" height="15" fill="rgb(249,193,15)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="20.4747%" y="1461" width="0.0298%" height="15" fill="rgb(245,186,19)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1471.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="20.4747%" y="1445" width="0.0298%" height="15" fill="rgb(230,4,24)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1455.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="20.4747%" y="1429" width="0.0298%" height="15" fill="rgb(234,75,27)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="20.4747%" y="1413" width="0.0298%" height="15" fill="rgb(244,187,35)" fg:x="4805" fg:w="7"/><text x="20.7247%" y="1423.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="20.4832%" y="1397" width="0.0213%" height="15" fill="rgb(241,97,43)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1407.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="20.4832%" y="1381" width="0.0213%" height="15" fill="rgb(236,94,2)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1391.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="20.4832%" y="1365" width="0.0213%" height="15" fill="rgb(231,175,7)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1375.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="20.4832%" y="1349" width="0.0213%" height="15" fill="rgb(236,89,47)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1359.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="20.4832%" y="1333" width="0.0213%" height="15" fill="rgb(213,191,37)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1343.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="20.4832%" y="1317" width="0.0213%" height="15" fill="rgb(252,0,34)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.4832%" y="1301" width="0.0213%" height="15" fill="rgb(208,145,44)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.4832%" y="1285" width="0.0213%" height="15" fill="rgb(227,95,50)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1295.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="20.4832%" y="1269" width="0.0213%" height="15" fill="rgb(222,136,24)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1279.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="20.4832%" y="1253" width="0.0213%" height="15" fill="rgb(218,105,10)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="20.4832%" y="1237" width="0.0213%" height="15" fill="rgb(216,65,28)" fg:x="4807" fg:w="5"/><text x="20.7332%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="20.4917%" y="1221" width="0.0128%" height="15" fill="rgb(229,6,28)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="20.4917%" y="1205" width="0.0128%" height="15" fill="rgb(222,160,42)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1215.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="20.4917%" y="1189" width="0.0128%" height="15" fill="rgb(235,83,49)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="20.4917%" y="1173" width="0.0128%" height="15" fill="rgb(236,86,36)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="20.4917%" y="1157" width="0.0128%" height="15" fill="rgb(236,19,41)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1167.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="20.4917%" y="1141" width="0.0128%" height="15" fill="rgb(217,71,31)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.4917%" y="1125" width="0.0128%" height="15" fill="rgb(236,209,25)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.4917%" y="1109" width="0.0128%" height="15" fill="rgb(247,104,21)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.4917%" y="1093" width="0.0128%" height="15" fill="rgb(243,80,38)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1103.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.4917%" y="1077" width="0.0128%" height="15" fill="rgb(232,109,38)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.4917%" y="1061" width="0.0128%" height="15" fill="rgb(212,177,53)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1071.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.4917%" y="1045" width="0.0128%" height="15" fill="rgb(227,30,34)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1055.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.4917%" y="1029" width="0.0128%" height="15" fill="rgb(205,175,25)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1039.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.4917%" y="1013" width="0.0128%" height="15" fill="rgb(249,39,54)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1023.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.4917%" y="997" width="0.0128%" height="15" fill="rgb(215,54,37)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="1007.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.4917%" y="981" width="0.0128%" height="15" fill="rgb(205,60,46)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="991.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.4917%" y="965" width="0.0128%" height="15" fill="rgb(238,89,29)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="975.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.4917%" y="949" width="0.0128%" height="15" fill="rgb(212,48,10)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="959.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.4917%" y="933" width="0.0128%" height="15" fill="rgb(237,186,28)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="943.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.4917%" y="917" width="0.0128%" height="15" fill="rgb(237,204,4)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="927.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="20.4917%" y="901" width="0.0128%" height="15" fill="rgb(237,15,47)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="911.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="20.4917%" y="885" width="0.0128%" height="15" fill="rgb(244,110,25)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="895.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="20.4917%" y="869" width="0.0128%" height="15" fill="rgb(241,12,16)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="879.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="20.4917%" y="853" width="0.0128%" height="15" fill="rgb(235,25,9)" fg:x="4809" fg:w="3"/><text x="20.7417%" y="863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="20.4747%" y="1797" width="0.0341%" height="15" fill="rgb(245,159,19)" fg:x="4805" fg:w="8"/><text x="20.7247%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="20.4747%" y="1781" width="0.0341%" height="15" fill="rgb(236,63,32)" fg:x="4805" fg:w="8"/><text x="20.7247%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.4747%" y="1765" width="0.0341%" height="15" fill="rgb(235,32,52)" fg:x="4805" fg:w="8"/><text x="20.7247%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.4747%" y="1749" width="0.0341%" height="15" fill="rgb(209,176,21)" fg:x="4805" fg:w="8"/><text x="20.7247%" y="1759.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="20.4747%" y="1733" width="0.0341%" height="15" fill="rgb(205,90,42)" fg:x="4805" fg:w="8"/><text x="20.7247%" y="1743.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="20.4747%" y="1717" width="0.0341%" height="15" fill="rgb(213,132,16)" fg:x="4805" fg:w="8"/><text x="20.7247%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="20.4747%" y="1701" width="0.0341%" height="15" fill="rgb(232,11,22)" fg:x="4805" fg:w="8"/><text x="20.7247%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="20.4747%" y="1909" width="0.0511%" height="15" fill="rgb(248,167,41)" fg:x="4805" fg:w="12"/><text x="20.7247%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="20.4747%" y="1893" width="0.0511%" height="15" fill="rgb(209,127,6)" fg:x="4805" fg:w="12"/><text x="20.7247%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="20.4747%" y="1877" width="0.0511%" height="15" fill="rgb(246,210,34)" fg:x="4805" fg:w="12"/><text x="20.7247%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="20.4747%" y="1861" width="0.0511%" height="15" fill="rgb(238,165,13)" fg:x="4805" fg:w="12"/><text x="20.7247%" y="1871.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="20.4747%" y="1845" width="0.0511%" height="15" fill="rgb(233,98,15)" fg:x="4805" fg:w="12"/><text x="20.7247%" y="1855.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="20.4747%" y="1829" width="0.0511%" height="15" fill="rgb(215,215,51)" fg:x="4805" fg:w="12"/><text x="20.7247%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="20.4747%" y="1813" width="0.0511%" height="15" fill="rgb(217,161,25)" fg:x="4805" fg:w="12"/><text x="20.7247%" y="1823.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="20.5088%" y="1797" width="0.0170%" height="15" fill="rgb(217,167,48)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1807.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="20.5088%" y="1781" width="0.0170%" height="15" fill="rgb(205,163,34)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1791.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="20.5088%" y="1765" width="0.0170%" height="15" fill="rgb(241,197,31)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1775.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="20.5088%" y="1749" width="0.0170%" height="15" fill="rgb(225,123,11)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1759.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="20.5088%" y="1733" width="0.0170%" height="15" fill="rgb(217,4,20)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5088%" y="1717" width="0.0170%" height="15" fill="rgb(215,55,9)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5088%" y="1701" width="0.0170%" height="15" fill="rgb(218,165,5)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.5088%" y="1685" width="0.0170%" height="15" fill="rgb(222,175,15)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.5088%" y="1669" width="0.0170%" height="15" fill="rgb(223,85,34)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.5088%" y="1653" width="0.0170%" height="15" fill="rgb(234,228,29)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5088%" y="1637" width="0.0170%" height="15" fill="rgb(239,7,28)" fg:x="4813" fg:w="4"/><text x="20.7588%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="20.5258%" y="1733" width="0.0170%" height="15" fill="rgb(252,222,53)" fg:x="4817" fg:w="4"/><text x="20.7758%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5258%" y="1717" width="0.0170%" height="15" fill="rgb(232,146,44)" fg:x="4817" fg:w="4"/><text x="20.7758%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5258%" y="1701" width="0.0170%" height="15" fill="rgb(243,223,53)" fg:x="4817" fg:w="4"/><text x="20.7758%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.5258%" y="1685" width="0.0170%" height="15" fill="rgb(219,128,25)" fg:x="4817" fg:w="4"/><text x="20.7758%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.5258%" y="1669" width="0.0170%" height="15" fill="rgb(223,56,32)" fg:x="4817" fg:w="4"/><text x="20.7758%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.5258%" y="1653" width="0.0170%" height="15" fill="rgb(237,41,3)" fg:x="4817" fg:w="4"/><text x="20.7758%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5258%" y="1637" width="0.0170%" height="15" fill="rgb(235,138,9)" fg:x="4817" fg:w="4"/><text x="20.7758%" y="1647.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (22 samples, 0.09%)</title><rect x="20.4662%" y="2197" width="0.0937%" height="15" fill="rgb(214,131,10)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.09%)</title><rect x="20.4662%" y="2181" width="0.0937%" height="15" fill="rgb(229,89,7)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (22 samples, 0.09%)</title><rect x="20.4662%" y="2165" width="0.0937%" height="15" fill="rgb(240,24,42)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2175.50"></text></g><g><title>rayon_core::job::JobRef::execute (22 samples, 0.09%)</title><rect x="20.4662%" y="2149" width="0.0937%" height="15" fill="rgb(243,188,54)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2159.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (22 samples, 0.09%)</title><rect x="20.4662%" y="2133" width="0.0937%" height="15" fill="rgb(246,92,22)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2143.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (22 samples, 0.09%)</title><rect x="20.4662%" y="2117" width="0.0937%" height="15" fill="rgb(211,176,51)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2127.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="20.4662%" y="2101" width="0.0937%" height="15" fill="rgb(246,207,34)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2111.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="20.4662%" y="2085" width="0.0937%" height="15" fill="rgb(239,95,2)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2095.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="20.4662%" y="2069" width="0.0937%" height="15" fill="rgb(211,124,25)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2079.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="20.4662%" y="2053" width="0.0937%" height="15" fill="rgb(231,221,19)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2063.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="20.4662%" y="2037" width="0.0937%" height="15" fill="rgb(239,183,19)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2047.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (22 samples, 0.09%)</title><rect x="20.4662%" y="2021" width="0.0937%" height="15" fill="rgb(221,130,29)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="20.4662%" y="2005" width="0.0937%" height="15" fill="rgb(206,130,36)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="20.4662%" y="1989" width="0.0937%" height="15" fill="rgb(215,70,19)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="20.4662%" y="1973" width="0.0937%" height="15" fill="rgb(244,16,43)" fg:x="4803" fg:w="22"/><text x="20.7162%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="20.4747%" y="1957" width="0.0852%" height="15" fill="rgb(222,115,32)" fg:x="4805" fg:w="20"/><text x="20.7247%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="20.4747%" y="1941" width="0.0852%" height="15" fill="rgb(247,48,25)" fg:x="4805" fg:w="20"/><text x="20.7247%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="20.4747%" y="1925" width="0.0852%" height="15" fill="rgb(226,180,51)" fg:x="4805" fg:w="20"/><text x="20.7247%" y="1935.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="20.5258%" y="1909" width="0.0341%" height="15" fill="rgb(217,142,42)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1919.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="20.5258%" y="1893" width="0.0341%" height="15" fill="rgb(220,178,3)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1903.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="20.5258%" y="1877" width="0.0341%" height="15" fill="rgb(217,221,4)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1887.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="20.5258%" y="1861" width="0.0341%" height="15" fill="rgb(237,63,43)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1871.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="20.5258%" y="1845" width="0.0341%" height="15" fill="rgb(220,57,8)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="20.5258%" y="1829" width="0.0341%" height="15" fill="rgb(254,186,27)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.5258%" y="1813" width="0.0341%" height="15" fill="rgb(251,57,28)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.5258%" y="1797" width="0.0341%" height="15" fill="rgb(215,228,0)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="20.5258%" y="1781" width="0.0341%" height="15" fill="rgb(237,218,39)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="20.5258%" y="1765" width="0.0341%" height="15" fill="rgb(207,2,54)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="20.5258%" y="1749" width="0.0341%" height="15" fill="rgb(232,76,50)" fg:x="4817" fg:w="8"/><text x="20.7758%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="20.5429%" y="1733" width="0.0170%" height="15" fill="rgb(211,85,31)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="20.5429%" y="1717" width="0.0170%" height="15" fill="rgb(223,210,27)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1727.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="20.5429%" y="1701" width="0.0170%" height="15" fill="rgb(254,36,8)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="20.5429%" y="1685" width="0.0170%" height="15" fill="rgb(213,4,25)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="20.5429%" y="1669" width="0.0170%" height="15" fill="rgb(224,2,39)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5429%" y="1653" width="0.0170%" height="15" fill="rgb(208,8,39)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5429%" y="1637" width="0.0170%" height="15" fill="rgb(216,226,3)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.5429%" y="1621" width="0.0170%" height="15" fill="rgb(249,139,31)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.5429%" y="1605" width="0.0170%" height="15" fill="rgb(242,170,35)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.5429%" y="1589" width="0.0170%" height="15" fill="rgb(238,14,9)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5429%" y="1573" width="0.0170%" height="15" fill="rgb(251,81,46)" fg:x="4821" fg:w="4"/><text x="20.7929%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="20.5642%" y="2021" width="0.0170%" height="15" fill="rgb(230,23,4)" fg:x="4826" fg:w="4"/><text x="20.8142%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5642%" y="2005" width="0.0170%" height="15" fill="rgb(211,85,25)" fg:x="4826" fg:w="4"/><text x="20.8142%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5642%" y="1989" width="0.0170%" height="15" fill="rgb(252,23,31)" fg:x="4826" fg:w="4"/><text x="20.8142%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.5642%" y="1973" width="0.0170%" height="15" fill="rgb(234,163,38)" fg:x="4826" fg:w="4"/><text x="20.8142%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.5642%" y="1957" width="0.0170%" height="15" fill="rgb(210,190,50)" fg:x="4826" fg:w="4"/><text x="20.8142%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.5642%" y="1941" width="0.0170%" height="15" fill="rgb(228,158,3)" fg:x="4826" fg:w="4"/><text x="20.8142%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.5642%" y="1925" width="0.0170%" height="15" fill="rgb(216,130,0)" fg:x="4826" fg:w="4"/><text x="20.8142%" y="1935.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (32 samples, 0.14%)</title><rect x="20.4576%" y="2309" width="0.1364%" height="15" fill="rgb(224,184,10)" fg:x="4801" fg:w="32"/><text x="20.7076%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="20.4576%" y="2293" width="0.1364%" height="15" fill="rgb(214,202,18)" fg:x="4801" fg:w="32"/><text x="20.7076%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="20.4576%" y="2277" width="0.1364%" height="15" fill="rgb(213,229,54)" fg:x="4801" fg:w="32"/><text x="20.7076%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="20.4576%" y="2261" width="0.1364%" height="15" fill="rgb(246,120,0)" fg:x="4801" fg:w="32"/><text x="20.7076%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="20.4576%" y="2245" width="0.1364%" height="15" fill="rgb(237,6,15)" fg:x="4801" fg:w="32"/><text x="20.7076%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="20.4576%" y="2229" width="0.1364%" height="15" fill="rgb(252,156,15)" fg:x="4801" fg:w="32"/><text x="20.7076%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="20.4576%" y="2213" width="0.1364%" height="15" fill="rgb(249,78,18)" fg:x="4801" fg:w="32"/><text x="20.7076%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="20.5599%" y="2197" width="0.0341%" height="15" fill="rgb(230,223,44)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="20.5599%" y="2181" width="0.0341%" height="15" fill="rgb(230,222,32)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2191.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="20.5599%" y="2165" width="0.0341%" height="15" fill="rgb(247,54,6)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="20.5599%" y="2149" width="0.0341%" height="15" fill="rgb(247,115,45)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="20.5599%" y="2133" width="0.0341%" height="15" fill="rgb(213,203,37)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="20.5599%" y="2117" width="0.0341%" height="15" fill="rgb(248,188,18)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.5599%" y="2101" width="0.0341%" height="15" fill="rgb(206,80,8)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.5599%" y="2085" width="0.0341%" height="15" fill="rgb(245,217,31)" fg:x="4825" fg:w="8"/><text x="20.8099%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="20.5642%" y="2069" width="0.0298%" height="15" fill="rgb(220,193,15)" fg:x="4826" fg:w="7"/><text x="20.8142%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="20.5642%" y="2053" width="0.0298%" height="15" fill="rgb(226,7,19)" fg:x="4826" fg:w="7"/><text x="20.8142%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="20.5642%" y="2037" width="0.0298%" height="15" fill="rgb(222,145,31)" fg:x="4826" fg:w="7"/><text x="20.8142%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="20.5812%" y="2021" width="0.0128%" height="15" fill="rgb(241,193,36)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="20.5812%" y="2005" width="0.0128%" height="15" fill="rgb(225,123,33)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="2015.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="20.5812%" y="1989" width="0.0128%" height="15" fill="rgb(246,136,38)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="20.5812%" y="1973" width="0.0128%" height="15" fill="rgb(243,56,24)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="20.5812%" y="1957" width="0.0128%" height="15" fill="rgb(215,147,2)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="20.5812%" y="1941" width="0.0128%" height="15" fill="rgb(209,155,27)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.5812%" y="1925" width="0.0128%" height="15" fill="rgb(222,177,11)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.5812%" y="1909" width="0.0128%" height="15" fill="rgb(212,227,15)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="20.5812%" y="1893" width="0.0128%" height="15" fill="rgb(214,138,20)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="20.5812%" y="1877" width="0.0128%" height="15" fill="rgb(221,170,31)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="20.5812%" y="1861" width="0.0128%" height="15" fill="rgb(253,207,5)" fg:x="4830" fg:w="3"/><text x="20.8312%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="20.6025%" y="1909" width="0.0128%" height="15" fill="rgb(212,64,37)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6025%" y="1893" width="0.0128%" height="15" fill="rgb(208,113,51)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6025%" y="1877" width="0.0128%" height="15" fill="rgb(237,15,5)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.6025%" y="1861" width="0.0128%" height="15" fill="rgb(238,33,18)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.6025%" y="1845" width="0.0128%" height="15" fill="rgb(253,206,50)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1855.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.6025%" y="1829" width="0.0128%" height="15" fill="rgb(242,158,43)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.6025%" y="1813" width="0.0128%" height="15" fill="rgb(213,125,27)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1823.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.6025%" y="1797" width="0.0128%" height="15" fill="rgb(233,161,31)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1807.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.6025%" y="1781" width="0.0128%" height="15" fill="rgb(218,135,6)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1791.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.6025%" y="1765" width="0.0128%" height="15" fill="rgb(222,73,53)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.6025%" y="1749" width="0.0128%" height="15" fill="rgb(229,66,53)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6025%" y="1733" width="0.0128%" height="15" fill="rgb(208,128,19)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.6025%" y="1717" width="0.0128%" height="15" fill="rgb(235,70,27)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1727.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.6025%" y="1701" width="0.0128%" height="15" fill="rgb(241,130,30)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1711.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6025%" y="1685" width="0.0128%" height="15" fill="rgb(222,57,48)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1695.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.6025%" y="1669" width="0.0128%" height="15" fill="rgb(225,204,29)" fg:x="4835" fg:w="3"/><text x="20.8525%" y="1679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="20.6025%" y="2021" width="0.0213%" height="15" fill="rgb(240,196,35)" fg:x="4835" fg:w="5"/><text x="20.8525%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6025%" y="2005" width="0.0213%" height="15" fill="rgb(215,150,16)" fg:x="4835" fg:w="5"/><text x="20.8525%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6025%" y="1989" width="0.0213%" height="15" fill="rgb(209,170,13)" fg:x="4835" fg:w="5"/><text x="20.8525%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.6025%" y="1973" width="0.0213%" height="15" fill="rgb(235,75,31)" fg:x="4835" fg:w="5"/><text x="20.8525%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="20.6025%" y="1957" width="0.0213%" height="15" fill="rgb(252,1,47)" fg:x="4835" fg:w="5"/><text x="20.8525%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="20.6025%" y="1941" width="0.0213%" height="15" fill="rgb(241,2,36)" fg:x="4835" fg:w="5"/><text x="20.8525%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6025%" y="1925" width="0.0213%" height="15" fill="rgb(236,191,4)" fg:x="4835" fg:w="5"/><text x="20.8525%" y="1935.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="20.6238%" y="1845" width="0.0128%" height="15" fill="rgb(212,65,35)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6238%" y="1829" width="0.0128%" height="15" fill="rgb(209,49,33)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6238%" y="1813" width="0.0128%" height="15" fill="rgb(208,36,46)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.6238%" y="1797" width="0.0128%" height="15" fill="rgb(210,125,2)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.6238%" y="1781" width="0.0128%" height="15" fill="rgb(225,62,6)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1791.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.6238%" y="1765" width="0.0128%" height="15" fill="rgb(210,54,27)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.6238%" y="1749" width="0.0128%" height="15" fill="rgb(249,189,52)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.6238%" y="1733" width="0.0128%" height="15" fill="rgb(225,134,40)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1743.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.6238%" y="1717" width="0.0128%" height="15" fill="rgb(206,13,37)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1727.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.6238%" y="1701" width="0.0128%" height="15" fill="rgb(232,114,28)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.6238%" y="1685" width="0.0128%" height="15" fill="rgb(253,215,8)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6238%" y="1669" width="0.0128%" height="15" fill="rgb(254,64,19)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.6238%" y="1653" width="0.0128%" height="15" fill="rgb(242,18,46)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1663.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.6238%" y="1637" width="0.0128%" height="15" fill="rgb(239,192,30)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1647.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6238%" y="1621" width="0.0128%" height="15" fill="rgb(232,73,14)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1631.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.6238%" y="1605" width="0.0128%" height="15" fill="rgb(225,51,9)" fg:x="4840" fg:w="3"/><text x="20.8738%" y="1615.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="20.5940%" y="2133" width="0.0511%" height="15" fill="rgb(242,217,54)" fg:x="4833" fg:w="12"/><text x="20.8440%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="20.5940%" y="2117" width="0.0511%" height="15" fill="rgb(216,93,3)" fg:x="4833" fg:w="12"/><text x="20.8440%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="20.5940%" y="2101" width="0.0511%" height="15" fill="rgb(230,119,33)" fg:x="4833" fg:w="12"/><text x="20.8440%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="20.5940%" y="2085" width="0.0511%" height="15" fill="rgb(238,170,27)" fg:x="4833" fg:w="12"/><text x="20.8440%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="20.6025%" y="2069" width="0.0426%" height="15" fill="rgb(229,8,2)" fg:x="4835" fg:w="10"/><text x="20.8525%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="20.6025%" y="2053" width="0.0426%" height="15" fill="rgb(205,214,42)" fg:x="4835" fg:w="10"/><text x="20.8525%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="20.6025%" y="2037" width="0.0426%" height="15" fill="rgb(245,113,1)" fg:x="4835" fg:w="10"/><text x="20.8525%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="20.6238%" y="2021" width="0.0213%" height="15" fill="rgb(252,50,2)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="20.6238%" y="2005" width="0.0213%" height="15" fill="rgb(225,122,24)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="2015.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="20.6238%" y="1989" width="0.0213%" height="15" fill="rgb(234,129,31)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="20.6238%" y="1973" width="0.0213%" height="15" fill="rgb(219,177,4)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="20.6238%" y="1957" width="0.0213%" height="15" fill="rgb(225,142,27)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6238%" y="1941" width="0.0213%" height="15" fill="rgb(205,107,51)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6238%" y="1925" width="0.0213%" height="15" fill="rgb(236,223,15)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.6238%" y="1909" width="0.0213%" height="15" fill="rgb(235,133,11)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="20.6238%" y="1893" width="0.0213%" height="15" fill="rgb(247,172,13)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="20.6238%" y="1877" width="0.0213%" height="15" fill="rgb(233,191,41)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6238%" y="1861" width="0.0213%" height="15" fill="rgb(250,65,16)" fg:x="4840" fg:w="5"/><text x="20.8738%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="20.6537%" y="1845" width="0.0128%" height="15" fill="rgb(206,10,27)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6537%" y="1829" width="0.0128%" height="15" fill="rgb(212,96,22)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6537%" y="1813" width="0.0128%" height="15" fill="rgb(206,50,0)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.6537%" y="1797" width="0.0128%" height="15" fill="rgb(249,105,52)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.6537%" y="1781" width="0.0128%" height="15" fill="rgb(216,93,51)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1791.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.6537%" y="1765" width="0.0128%" height="15" fill="rgb(217,172,13)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.6537%" y="1749" width="0.0128%" height="15" fill="rgb(235,199,38)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.6537%" y="1733" width="0.0128%" height="15" fill="rgb(221,97,33)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1743.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.6537%" y="1717" width="0.0128%" height="15" fill="rgb(205,156,50)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1727.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.6537%" y="1701" width="0.0128%" height="15" fill="rgb(215,142,19)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.6537%" y="1685" width="0.0128%" height="15" fill="rgb(232,170,7)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6537%" y="1669" width="0.0128%" height="15" fill="rgb(223,50,17)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.6537%" y="1653" width="0.0128%" height="15" fill="rgb(230,103,46)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1663.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.6537%" y="1637" width="0.0128%" height="15" fill="rgb(254,30,34)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1647.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6537%" y="1621" width="0.0128%" height="15" fill="rgb(235,198,1)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1631.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.6537%" y="1605" width="0.0128%" height="15" fill="rgb(217,105,47)" fg:x="4847" fg:w="3"/><text x="20.9037%" y="1615.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="20.6537%" y="1957" width="0.0213%" height="15" fill="rgb(231,18,12)" fg:x="4847" fg:w="5"/><text x="20.9037%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6537%" y="1941" width="0.0213%" height="15" fill="rgb(218,196,1)" fg:x="4847" fg:w="5"/><text x="20.9037%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6537%" y="1925" width="0.0213%" height="15" fill="rgb(210,32,3)" fg:x="4847" fg:w="5"/><text x="20.9037%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.6537%" y="1909" width="0.0213%" height="15" fill="rgb(227,178,30)" fg:x="4847" fg:w="5"/><text x="20.9037%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="20.6537%" y="1893" width="0.0213%" height="15" fill="rgb(231,140,27)" fg:x="4847" fg:w="5"/><text x="20.9037%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="20.6537%" y="1877" width="0.0213%" height="15" fill="rgb(206,66,35)" fg:x="4847" fg:w="5"/><text x="20.9037%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6537%" y="1861" width="0.0213%" height="15" fill="rgb(212,34,2)" fg:x="4847" fg:w="5"/><text x="20.9037%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="20.6750%" y="1781" width="0.0128%" height="15" fill="rgb(207,201,33)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6750%" y="1765" width="0.0128%" height="15" fill="rgb(221,135,32)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6750%" y="1749" width="0.0128%" height="15" fill="rgb(206,77,31)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.6750%" y="1733" width="0.0128%" height="15" fill="rgb(252,198,50)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.6750%" y="1717" width="0.0128%" height="15" fill="rgb(206,79,27)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.6750%" y="1701" width="0.0128%" height="15" fill="rgb(228,108,9)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.6750%" y="1685" width="0.0128%" height="15" fill="rgb(213,9,39)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.6750%" y="1669" width="0.0128%" height="15" fill="rgb(252,51,13)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.6750%" y="1653" width="0.0128%" height="15" fill="rgb(218,202,39)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.6750%" y="1637" width="0.0128%" height="15" fill="rgb(214,122,21)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.6750%" y="1621" width="0.0128%" height="15" fill="rgb(217,205,48)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6750%" y="1605" width="0.0128%" height="15" fill="rgb(230,216,13)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.6750%" y="1589" width="0.0128%" height="15" fill="rgb(249,118,4)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.6750%" y="1573" width="0.0128%" height="15" fill="rgb(212,207,40)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.6750%" y="1557" width="0.0128%" height="15" fill="rgb(217,156,26)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.6750%" y="1541" width="0.0128%" height="15" fill="rgb(226,86,34)" fg:x="4852" fg:w="3"/><text x="20.9250%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (61 samples, 0.26%)</title><rect x="20.4363%" y="2597" width="0.2599%" height="15" fill="rgb(217,111,30)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (61 samples, 0.26%)</title><rect x="20.4363%" y="2581" width="0.2599%" height="15" fill="rgb(228,64,18)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (61 samples, 0.26%)</title><rect x="20.4363%" y="2565" width="0.2599%" height="15" fill="rgb(254,217,48)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2575.50"></text></g><g><title>rayon_core::job::JobRef::execute (61 samples, 0.26%)</title><rect x="20.4363%" y="2549" width="0.2599%" height="15" fill="rgb(226,156,48)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2559.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (61 samples, 0.26%)</title><rect x="20.4363%" y="2533" width="0.2599%" height="15" fill="rgb(236,168,20)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2543.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (61 samples, 0.26%)</title><rect x="20.4363%" y="2517" width="0.2599%" height="15" fill="rgb(239,210,33)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (61 samples, 0.26%)</title><rect x="20.4363%" y="2501" width="0.2599%" height="15" fill="rgb(242,85,17)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2511.50"></text></g><g><title>std::panic::catch_unwind (61 samples, 0.26%)</title><rect x="20.4363%" y="2485" width="0.2599%" height="15" fill="rgb(221,196,15)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2495.50"></text></g><g><title>std::panicking::try (61 samples, 0.26%)</title><rect x="20.4363%" y="2469" width="0.2599%" height="15" fill="rgb(249,76,21)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2479.50"></text></g><g><title>std::panicking::try::do_call (61 samples, 0.26%)</title><rect x="20.4363%" y="2453" width="0.2599%" height="15" fill="rgb(243,67,29)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (61 samples, 0.26%)</title><rect x="20.4363%" y="2437" width="0.2599%" height="15" fill="rgb(240,159,2)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (61 samples, 0.26%)</title><rect x="20.4363%" y="2421" width="0.2599%" height="15" fill="rgb(244,64,3)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (61 samples, 0.26%)</title><rect x="20.4363%" y="2405" width="0.2599%" height="15" fill="rgb(220,86,40)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (61 samples, 0.26%)</title><rect x="20.4363%" y="2389" width="0.2599%" height="15" fill="rgb(222,194,51)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (61 samples, 0.26%)</title><rect x="20.4363%" y="2373" width="0.2599%" height="15" fill="rgb(207,154,19)" fg:x="4796" fg:w="61"/><text x="20.6863%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (56 samples, 0.24%)</title><rect x="20.4576%" y="2357" width="0.2386%" height="15" fill="rgb(206,178,36)" fg:x="4801" fg:w="56"/><text x="20.7076%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.24%)</title><rect x="20.4576%" y="2341" width="0.2386%" height="15" fill="rgb(218,8,24)" fg:x="4801" fg:w="56"/><text x="20.7076%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (56 samples, 0.24%)</title><rect x="20.4576%" y="2325" width="0.2386%" height="15" fill="rgb(226,83,41)" fg:x="4801" fg:w="56"/><text x="20.7076%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (24 samples, 0.10%)</title><rect x="20.5940%" y="2309" width="0.1023%" height="15" fill="rgb(224,23,22)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (24 samples, 0.10%)</title><rect x="20.5940%" y="2293" width="0.1023%" height="15" fill="rgb(218,198,45)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2303.50"></text></g><g><title>std::panicking::try (24 samples, 0.10%)</title><rect x="20.5940%" y="2277" width="0.1023%" height="15" fill="rgb(249,147,41)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (24 samples, 0.10%)</title><rect x="20.5940%" y="2261" width="0.1023%" height="15" fill="rgb(244,224,13)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (24 samples, 0.10%)</title><rect x="20.5940%" y="2245" width="0.1023%" height="15" fill="rgb(225,97,27)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (24 samples, 0.10%)</title><rect x="20.5940%" y="2229" width="0.1023%" height="15" fill="rgb(254,64,0)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="20.5940%" y="2213" width="0.1023%" height="15" fill="rgb(208,130,43)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="20.5940%" y="2197" width="0.1023%" height="15" fill="rgb(247,91,25)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="20.5940%" y="2181" width="0.1023%" height="15" fill="rgb(215,218,42)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="20.5940%" y="2165" width="0.1023%" height="15" fill="rgb(233,9,24)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="20.5940%" y="2149" width="0.1023%" height="15" fill="rgb(252,105,38)" fg:x="4833" fg:w="24"/><text x="20.8440%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="20.6451%" y="2133" width="0.0511%" height="15" fill="rgb(225,40,49)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="20.6451%" y="2117" width="0.0511%" height="15" fill="rgb(232,196,19)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2127.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="20.6451%" y="2101" width="0.0511%" height="15" fill="rgb(207,35,15)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="20.6451%" y="2085" width="0.0511%" height="15" fill="rgb(238,68,36)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="20.6451%" y="2069" width="0.0511%" height="15" fill="rgb(205,158,20)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="20.6451%" y="2053" width="0.0511%" height="15" fill="rgb(232,32,22)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="20.6451%" y="2037" width="0.0511%" height="15" fill="rgb(210,169,6)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="20.6451%" y="2021" width="0.0511%" height="15" fill="rgb(229,28,12)" fg:x="4845" fg:w="12"/><text x="20.8951%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="20.6537%" y="2005" width="0.0426%" height="15" fill="rgb(229,78,10)" fg:x="4847" fg:w="10"/><text x="20.9037%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="20.6537%" y="1989" width="0.0426%" height="15" fill="rgb(223,139,54)" fg:x="4847" fg:w="10"/><text x="20.9037%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="20.6537%" y="1973" width="0.0426%" height="15" fill="rgb(207,110,4)" fg:x="4847" fg:w="10"/><text x="20.9037%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="20.6750%" y="1957" width="0.0213%" height="15" fill="rgb(248,30,41)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="20.6750%" y="1941" width="0.0213%" height="15" fill="rgb(235,54,25)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1951.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="20.6750%" y="1925" width="0.0213%" height="15" fill="rgb(213,107,41)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="20.6750%" y="1909" width="0.0213%" height="15" fill="rgb(237,102,9)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="20.6750%" y="1893" width="0.0213%" height="15" fill="rgb(252,137,49)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6750%" y="1877" width="0.0213%" height="15" fill="rgb(233,202,33)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6750%" y="1861" width="0.0213%" height="15" fill="rgb(223,14,51)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.6750%" y="1845" width="0.0213%" height="15" fill="rgb(248,70,23)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="20.6750%" y="1829" width="0.0213%" height="15" fill="rgb(209,207,47)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="20.6750%" y="1813" width="0.0213%" height="15" fill="rgb(245,124,2)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="20.6750%" y="1797" width="0.0213%" height="15" fill="rgb(249,208,11)" fg:x="4852" fg:w="5"/><text x="20.9250%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.6963%" y="2469" width="0.0128%" height="15" fill="rgb(247,112,7)" fg:x="4857" fg:w="3"/><text x="20.9463%" y="2479.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.7091%" y="2181" width="0.0128%" height="15" fill="rgb(209,192,31)" fg:x="4860" fg:w="3"/><text x="20.9591%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="20.7091%" y="2357" width="0.0170%" height="15" fill="rgb(236,55,19)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="20.7091%" y="2341" width="0.0170%" height="15" fill="rgb(252,89,41)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="20.7091%" y="2325" width="0.0170%" height="15" fill="rgb(220,172,14)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="20.7091%" y="2309" width="0.0170%" height="15" fill="rgb(252,65,2)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="20.7091%" y="2293" width="0.0170%" height="15" fill="rgb(250,20,8)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="20.7091%" y="2277" width="0.0170%" height="15" fill="rgb(234,149,13)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="20.7091%" y="2261" width="0.0170%" height="15" fill="rgb(223,219,12)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="20.7091%" y="2245" width="0.0170%" height="15" fill="rgb(234,13,49)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="20.7091%" y="2229" width="0.0170%" height="15" fill="rgb(214,41,25)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="20.7091%" y="2213" width="0.0170%" height="15" fill="rgb(232,198,52)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="20.7091%" y="2197" width="0.0170%" height="15" fill="rgb(236,111,46)" fg:x="4860" fg:w="4"/><text x="20.9591%" y="2207.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="20.7091%" y="2421" width="0.0341%" height="15" fill="rgb(253,30,20)" fg:x="4860" fg:w="8"/><text x="20.9591%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="20.7091%" y="2405" width="0.0341%" height="15" fill="rgb(247,141,17)" fg:x="4860" fg:w="8"/><text x="20.9591%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.7091%" y="2389" width="0.0341%" height="15" fill="rgb(214,195,21)" fg:x="4860" fg:w="8"/><text x="20.9591%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.7091%" y="2373" width="0.0341%" height="15" fill="rgb(214,98,12)" fg:x="4860" fg:w="8"/><text x="20.9591%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.7261%" y="2357" width="0.0170%" height="15" fill="rgb(239,4,26)" fg:x="4864" fg:w="4"/><text x="20.9761%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.7261%" y="2341" width="0.0170%" height="15" fill="rgb(234,210,35)" fg:x="4864" fg:w="4"/><text x="20.9761%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.7261%" y="2325" width="0.0170%" height="15" fill="rgb(252,178,27)" fg:x="4864" fg:w="4"/><text x="20.9761%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="20.7431%" y="2293" width="0.0213%" height="15" fill="rgb(217,50,1)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="20.7431%" y="2277" width="0.0213%" height="15" fill="rgb(233,137,5)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="20.7431%" y="2261" width="0.0213%" height="15" fill="rgb(217,227,25)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="20.7431%" y="2245" width="0.0213%" height="15" fill="rgb(242,89,38)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="20.7431%" y="2229" width="0.0213%" height="15" fill="rgb(212,190,30)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="20.7431%" y="2213" width="0.0213%" height="15" fill="rgb(222,120,8)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="20.7431%" y="2197" width="0.0213%" height="15" fill="rgb(227,181,9)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="20.7431%" y="2181" width="0.0213%" height="15" fill="rgb(222,125,29)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="20.7431%" y="2165" width="0.0213%" height="15" fill="rgb(215,153,31)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="20.7431%" y="2149" width="0.0213%" height="15" fill="rgb(228,77,30)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="20.7431%" y="2133" width="0.0213%" height="15" fill="rgb(226,110,9)" fg:x="4868" fg:w="5"/><text x="20.9931%" y="2143.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="20.7517%" y="2117" width="0.0128%" height="15" fill="rgb(219,111,7)" fg:x="4870" fg:w="3"/><text x="21.0017%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (110 samples, 0.47%)</title><rect x="20.3128%" y="2709" width="0.4687%" height="15" fill="rgb(229,167,25)" fg:x="4767" fg:w="110"/><text x="20.5628%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (110 samples, 0.47%)</title><rect x="20.3128%" y="2693" width="0.4687%" height="15" fill="rgb(209,77,43)" fg:x="4767" fg:w="110"/><text x="20.5628%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (110 samples, 0.47%)</title><rect x="20.3128%" y="2677" width="0.4687%" height="15" fill="rgb(233,70,39)" fg:x="4767" fg:w="110"/><text x="20.5628%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (110 samples, 0.47%)</title><rect x="20.3128%" y="2661" width="0.4687%" height="15" fill="rgb(207,171,44)" fg:x="4767" fg:w="110"/><text x="20.5628%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (107 samples, 0.46%)</title><rect x="20.3255%" y="2645" width="0.4559%" height="15" fill="rgb(244,91,6)" fg:x="4770" fg:w="107"/><text x="20.5755%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (107 samples, 0.46%)</title><rect x="20.3255%" y="2629" width="0.4559%" height="15" fill="rgb(234,136,12)" fg:x="4770" fg:w="107"/><text x="20.5755%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (107 samples, 0.46%)</title><rect x="20.3255%" y="2613" width="0.4559%" height="15" fill="rgb(216,210,38)" fg:x="4770" fg:w="107"/><text x="20.5755%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="20.6963%" y="2597" width="0.0852%" height="15" fill="rgb(241,227,7)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="20.6963%" y="2581" width="0.0852%" height="15" fill="rgb(241,222,11)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2591.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="20.6963%" y="2565" width="0.0852%" height="15" fill="rgb(246,86,18)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="20.6963%" y="2549" width="0.0852%" height="15" fill="rgb(224,151,49)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="20.6963%" y="2533" width="0.0852%" height="15" fill="rgb(235,4,41)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="20.6963%" y="2517" width="0.0852%" height="15" fill="rgb(218,30,52)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="20.6963%" y="2501" width="0.0852%" height="15" fill="rgb(205,124,51)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="20.6963%" y="2485" width="0.0852%" height="15" fill="rgb(237,126,51)" fg:x="4857" fg:w="20"/><text x="20.9463%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="20.7091%" y="2469" width="0.0724%" height="15" fill="rgb(225,32,46)" fg:x="4860" fg:w="17"/><text x="20.9591%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="20.7091%" y="2453" width="0.0724%" height="15" fill="rgb(251,60,49)" fg:x="4860" fg:w="17"/><text x="20.9591%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="20.7091%" y="2437" width="0.0724%" height="15" fill="rgb(234,18,23)" fg:x="4860" fg:w="17"/><text x="20.9591%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="20.7431%" y="2421" width="0.0384%" height="15" fill="rgb(234,25,23)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="20.7431%" y="2405" width="0.0384%" height="15" fill="rgb(210,43,52)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2415.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="20.7431%" y="2389" width="0.0384%" height="15" fill="rgb(237,198,21)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="20.7431%" y="2373" width="0.0384%" height="15" fill="rgb(211,20,34)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="20.7431%" y="2357" width="0.0384%" height="15" fill="rgb(221,155,50)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="20.7431%" y="2341" width="0.0384%" height="15" fill="rgb(213,214,53)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="20.7431%" y="2325" width="0.0384%" height="15" fill="rgb(215,229,48)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="20.7431%" y="2309" width="0.0384%" height="15" fill="rgb(243,88,5)" fg:x="4868" fg:w="9"/><text x="20.9931%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.7644%" y="2293" width="0.0170%" height="15" fill="rgb(216,199,8)" fg:x="4873" fg:w="4"/><text x="21.0144%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.7644%" y="2277" width="0.0170%" height="15" fill="rgb(241,22,4)" fg:x="4873" fg:w="4"/><text x="21.0144%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.7644%" y="2261" width="0.0170%" height="15" fill="rgb(209,190,22)" fg:x="4873" fg:w="4"/><text x="21.0144%" y="2271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="20.7900%" y="2021" width="0.0170%" height="15" fill="rgb(251,138,45)" fg:x="4879" fg:w="4"/><text x="21.0400%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="20.7900%" y="2005" width="0.0170%" height="15" fill="rgb(219,111,22)" fg:x="4879" fg:w="4"/><text x="21.0400%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.7900%" y="1989" width="0.0170%" height="15" fill="rgb(253,29,49)" fg:x="4879" fg:w="4"/><text x="21.0400%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.7900%" y="1973" width="0.0170%" height="15" fill="rgb(238,129,49)" fg:x="4879" fg:w="4"/><text x="21.0400%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.7900%" y="1957" width="0.0170%" height="15" fill="rgb(240,26,41)" fg:x="4879" fg:w="4"/><text x="21.0400%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.7900%" y="1941" width="0.0170%" height="15" fill="rgb(221,47,33)" fg:x="4879" fg:w="4"/><text x="21.0400%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.7900%" y="1925" width="0.0170%" height="15" fill="rgb(216,200,17)" fg:x="4879" fg:w="4"/><text x="21.0400%" y="1935.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="20.7900%" y="2133" width="0.0341%" height="15" fill="rgb(230,151,26)" fg:x="4879" fg:w="8"/><text x="21.0400%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="20.7900%" y="2117" width="0.0341%" height="15" fill="rgb(242,182,16)" fg:x="4879" fg:w="8"/><text x="21.0400%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.7900%" y="2101" width="0.0341%" height="15" fill="rgb(236,35,53)" fg:x="4879" fg:w="8"/><text x="21.0400%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.7900%" y="2085" width="0.0341%" height="15" fill="rgb(214,180,28)" fg:x="4879" fg:w="8"/><text x="21.0400%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="20.7900%" y="2069" width="0.0341%" height="15" fill="rgb(208,173,36)" fg:x="4879" fg:w="8"/><text x="21.0400%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="20.7900%" y="2053" width="0.0341%" height="15" fill="rgb(218,39,15)" fg:x="4879" fg:w="8"/><text x="21.0400%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="20.7900%" y="2037" width="0.0341%" height="15" fill="rgb(213,145,15)" fg:x="4879" fg:w="8"/><text x="21.0400%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="20.8071%" y="2021" width="0.0170%" height="15" fill="rgb(242,110,37)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="20.8071%" y="2005" width="0.0170%" height="15" fill="rgb(247,146,22)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="2015.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="20.8071%" y="1989" width="0.0170%" height="15" fill="rgb(215,191,7)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="20.8071%" y="1973" width="0.0170%" height="15" fill="rgb(240,158,1)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="20.8071%" y="1957" width="0.0170%" height="15" fill="rgb(241,78,32)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8071%" y="1941" width="0.0170%" height="15" fill="rgb(248,83,10)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8071%" y="1925" width="0.0170%" height="15" fill="rgb(241,52,0)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.8071%" y="1909" width="0.0170%" height="15" fill="rgb(238,37,13)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.8071%" y="1893" width="0.0170%" height="15" fill="rgb(242,194,17)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.8071%" y="1877" width="0.0170%" height="15" fill="rgb(236,96,3)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8071%" y="1861" width="0.0170%" height="15" fill="rgb(235,148,34)" fg:x="4883" fg:w="4"/><text x="21.0571%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="20.8241%" y="1957" width="0.0128%" height="15" fill="rgb(254,12,11)" fg:x="4887" fg:w="3"/><text x="21.0741%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8241%" y="1941" width="0.0128%" height="15" fill="rgb(207,31,54)" fg:x="4887" fg:w="3"/><text x="21.0741%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8241%" y="1925" width="0.0128%" height="15" fill="rgb(252,14,28)" fg:x="4887" fg:w="3"/><text x="21.0741%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.8241%" y="1909" width="0.0128%" height="15" fill="rgb(252,108,36)" fg:x="4887" fg:w="3"/><text x="21.0741%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="20.8241%" y="1893" width="0.0128%" height="15" fill="rgb(214,149,7)" fg:x="4887" fg:w="3"/><text x="21.0741%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="20.8241%" y="1877" width="0.0128%" height="15" fill="rgb(243,94,12)" fg:x="4887" fg:w="3"/><text x="21.0741%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8241%" y="1861" width="0.0128%" height="15" fill="rgb(208,36,10)" fg:x="4887" fg:w="3"/><text x="21.0741%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (14 samples, 0.06%)</title><rect x="20.7900%" y="2421" width="0.0597%" height="15" fill="rgb(233,185,52)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="20.7900%" y="2405" width="0.0597%" height="15" fill="rgb(234,50,45)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (14 samples, 0.06%)</title><rect x="20.7900%" y="2389" width="0.0597%" height="15" fill="rgb(228,92,54)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (14 samples, 0.06%)</title><rect x="20.7900%" y="2373" width="0.0597%" height="15" fill="rgb(224,85,25)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (14 samples, 0.06%)</title><rect x="20.7900%" y="2357" width="0.0597%" height="15" fill="rgb(246,1,45)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (14 samples, 0.06%)</title><rect x="20.7900%" y="2341" width="0.0597%" height="15" fill="rgb(240,66,23)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="20.7900%" y="2325" width="0.0597%" height="15" fill="rgb(222,96,27)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="20.7900%" y="2309" width="0.0597%" height="15" fill="rgb(212,136,10)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2319.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="20.7900%" y="2293" width="0.0597%" height="15" fill="rgb(226,192,50)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="20.7900%" y="2277" width="0.0597%" height="15" fill="rgb(241,182,31)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="20.7900%" y="2261" width="0.0597%" height="15" fill="rgb(219,205,47)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (14 samples, 0.06%)</title><rect x="20.7900%" y="2245" width="0.0597%" height="15" fill="rgb(207,96,14)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="20.7900%" y="2229" width="0.0597%" height="15" fill="rgb(216,119,9)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="20.7900%" y="2213" width="0.0597%" height="15" fill="rgb(235,62,36)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="20.7900%" y="2197" width="0.0597%" height="15" fill="rgb(214,41,27)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="20.7900%" y="2181" width="0.0597%" height="15" fill="rgb(214,174,37)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="20.7900%" y="2165" width="0.0597%" height="15" fill="rgb(212,11,25)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="20.7900%" y="2149" width="0.0597%" height="15" fill="rgb(217,71,35)" fg:x="4879" fg:w="14"/><text x="21.0400%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="20.8241%" y="2133" width="0.0256%" height="15" fill="rgb(234,152,9)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="20.8241%" y="2117" width="0.0256%" height="15" fill="rgb(228,32,51)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2127.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="20.8241%" y="2101" width="0.0256%" height="15" fill="rgb(209,14,47)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="20.8241%" y="2085" width="0.0256%" height="15" fill="rgb(218,201,17)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="20.8241%" y="2069" width="0.0256%" height="15" fill="rgb(218,98,15)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="20.8241%" y="2053" width="0.0256%" height="15" fill="rgb(233,202,29)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="20.8241%" y="2037" width="0.0256%" height="15" fill="rgb(207,196,44)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="20.8241%" y="2021" width="0.0256%" height="15" fill="rgb(218,63,34)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="20.8241%" y="2005" width="0.0256%" height="15" fill="rgb(209,10,5)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="20.8241%" y="1989" width="0.0256%" height="15" fill="rgb(224,36,28)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="20.8241%" y="1973" width="0.0256%" height="15" fill="rgb(249,178,7)" fg:x="4887" fg:w="6"/><text x="21.0741%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="20.8369%" y="1957" width="0.0128%" height="15" fill="rgb(253,163,10)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="20.8369%" y="1941" width="0.0128%" height="15" fill="rgb(245,67,46)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1951.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="20.8369%" y="1925" width="0.0128%" height="15" fill="rgb(225,14,18)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="20.8369%" y="1909" width="0.0128%" height="15" fill="rgb(217,41,54)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="20.8369%" y="1893" width="0.0128%" height="15" fill="rgb(222,111,11)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8369%" y="1877" width="0.0128%" height="15" fill="rgb(211,85,31)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8369%" y="1861" width="0.0128%" height="15" fill="rgb(223,29,26)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.8369%" y="1845" width="0.0128%" height="15" fill="rgb(236,124,50)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="20.8369%" y="1829" width="0.0128%" height="15" fill="rgb(219,148,15)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="20.8369%" y="1813" width="0.0128%" height="15" fill="rgb(248,159,33)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8369%" y="1797" width="0.0128%" height="15" fill="rgb(252,65,8)" fg:x="4890" fg:w="3"/><text x="21.0869%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="20.8497%" y="2133" width="0.0170%" height="15" fill="rgb(236,45,7)" fg:x="4893" fg:w="4"/><text x="21.0997%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8497%" y="2117" width="0.0170%" height="15" fill="rgb(244,3,48)" fg:x="4893" fg:w="4"/><text x="21.0997%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8497%" y="2101" width="0.0170%" height="15" fill="rgb(224,123,53)" fg:x="4893" fg:w="4"/><text x="21.0997%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.8497%" y="2085" width="0.0170%" height="15" fill="rgb(223,173,15)" fg:x="4893" fg:w="4"/><text x="21.0997%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="20.8497%" y="2069" width="0.0170%" height="15" fill="rgb(254,181,5)" fg:x="4893" fg:w="4"/><text x="21.0997%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="20.8497%" y="2053" width="0.0170%" height="15" fill="rgb(243,124,33)" fg:x="4893" fg:w="4"/><text x="21.0997%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8497%" y="2037" width="0.0170%" height="15" fill="rgb(253,220,11)" fg:x="4893" fg:w="4"/><text x="21.0997%" y="2047.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="20.8667%" y="2133" width="0.0170%" height="15" fill="rgb(217,14,4)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="20.8667%" y="2117" width="0.0170%" height="15" fill="rgb(209,196,12)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="20.8667%" y="2101" width="0.0170%" height="15" fill="rgb(237,108,29)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="20.8667%" y="2085" width="0.0170%" height="15" fill="rgb(216,173,20)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="20.8667%" y="2069" width="0.0170%" height="15" fill="rgb(245,27,6)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="20.8667%" y="2053" width="0.0170%" height="15" fill="rgb(210,181,20)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="20.8667%" y="2037" width="0.0170%" height="15" fill="rgb(235,213,1)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="20.8667%" y="2021" width="0.0170%" height="15" fill="rgb(239,68,43)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2031.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="20.8667%" y="2005" width="0.0170%" height="15" fill="rgb(254,137,43)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="20.8667%" y="1989" width="0.0170%" height="15" fill="rgb(252,170,38)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="20.8667%" y="1973" width="0.0170%" height="15" fill="rgb(234,21,42)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8667%" y="1957" width="0.0170%" height="15" fill="rgb(216,145,40)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8667%" y="1941" width="0.0170%" height="15" fill="rgb(251,73,9)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8667%" y="1925" width="0.0170%" height="15" fill="rgb(242,54,6)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="20.8667%" y="1909" width="0.0170%" height="15" fill="rgb(239,70,7)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="20.8667%" y="1893" width="0.0170%" height="15" fill="rgb(216,159,35)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1903.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="20.8667%" y="1877" width="0.0170%" height="15" fill="rgb(224,50,39)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1887.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="20.8667%" y="1861" width="0.0170%" height="15" fill="rgb(235,9,35)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="20.8667%" y="1845" width="0.0170%" height="15" fill="rgb(239,34,21)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1855.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="20.8667%" y="1829" width="0.0170%" height="15" fill="rgb(218,162,43)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1839.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8667%" y="1813" width="0.0170%" height="15" fill="rgb(219,89,33)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1823.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8667%" y="1797" width="0.0170%" height="15" fill="rgb(226,125,37)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="20.8667%" y="1781" width="0.0170%" height="15" fill="rgb(233,149,30)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1791.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="20.8667%" y="1765" width="0.0170%" height="15" fill="rgb(236,8,18)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1775.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="20.8667%" y="1749" width="0.0170%" height="15" fill="rgb(205,176,9)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1759.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="20.8667%" y="1733" width="0.0170%" height="15" fill="rgb(252,103,44)" fg:x="4897" fg:w="4"/><text x="21.1167%" y="1743.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="20.8710%" y="1717" width="0.0128%" height="15" fill="rgb(207,68,53)" fg:x="4898" fg:w="3"/><text x="21.1210%" y="1727.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="20.8710%" y="1701" width="0.0128%" height="15" fill="rgb(218,193,48)" fg:x="4898" fg:w="3"/><text x="21.1210%" y="1711.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="20.8710%" y="1685" width="0.0128%" height="15" fill="rgb(234,121,52)" fg:x="4898" fg:w="3"/><text x="21.1210%" y="1695.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="20.8710%" y="1669" width="0.0128%" height="15" fill="rgb(227,218,49)" fg:x="4898" fg:w="3"/><text x="21.1210%" y="1679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="20.8838%" y="1957" width="0.0128%" height="15" fill="rgb(221,8,7)" fg:x="4901" fg:w="3"/><text x="21.1338%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8838%" y="1941" width="0.0128%" height="15" fill="rgb(217,151,36)" fg:x="4901" fg:w="3"/><text x="21.1338%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.8838%" y="1925" width="0.0128%" height="15" fill="rgb(213,71,5)" fg:x="4901" fg:w="3"/><text x="21.1338%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.8838%" y="1909" width="0.0128%" height="15" fill="rgb(225,145,43)" fg:x="4901" fg:w="3"/><text x="21.1338%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.8838%" y="1893" width="0.0128%" height="15" fill="rgb(235,118,19)" fg:x="4901" fg:w="3"/><text x="21.1338%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="20.8497%" y="2245" width="0.0682%" height="15" fill="rgb(214,102,36)" fg:x="4893" fg:w="16"/><text x="21.0997%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="20.8497%" y="2229" width="0.0682%" height="15" fill="rgb(220,56,43)" fg:x="4893" fg:w="16"/><text x="21.0997%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="20.8497%" y="2213" width="0.0682%" height="15" fill="rgb(246,136,46)" fg:x="4893" fg:w="16"/><text x="21.0997%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="20.8497%" y="2197" width="0.0682%" height="15" fill="rgb(249,99,12)" fg:x="4893" fg:w="16"/><text x="21.0997%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="20.8497%" y="2181" width="0.0682%" height="15" fill="rgb(224,31,42)" fg:x="4893" fg:w="16"/><text x="21.0997%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="20.8497%" y="2165" width="0.0682%" height="15" fill="rgb(208,96,21)" fg:x="4893" fg:w="16"/><text x="21.0997%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="20.8497%" y="2149" width="0.0682%" height="15" fill="rgb(237,229,7)" fg:x="4893" fg:w="16"/><text x="21.0997%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="20.8838%" y="2133" width="0.0341%" height="15" fill="rgb(210,12,6)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="20.8838%" y="2117" width="0.0341%" height="15" fill="rgb(240,9,34)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2127.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="20.8838%" y="2101" width="0.0341%" height="15" fill="rgb(211,68,37)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="20.8838%" y="2085" width="0.0341%" height="15" fill="rgb(249,138,50)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="20.8838%" y="2069" width="0.0341%" height="15" fill="rgb(243,185,40)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="20.8838%" y="2053" width="0.0341%" height="15" fill="rgb(242,92,35)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.8838%" y="2037" width="0.0341%" height="15" fill="rgb(244,98,5)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.8838%" y="2021" width="0.0341%" height="15" fill="rgb(228,186,29)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="20.8838%" y="2005" width="0.0341%" height="15" fill="rgb(253,7,44)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="20.8838%" y="1989" width="0.0341%" height="15" fill="rgb(216,11,45)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="20.8838%" y="1973" width="0.0341%" height="15" fill="rgb(205,67,3)" fg:x="4901" fg:w="8"/><text x="21.1338%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="20.8965%" y="1957" width="0.0213%" height="15" fill="rgb(250,18,3)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="20.8965%" y="1941" width="0.0213%" height="15" fill="rgb(241,222,43)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1951.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="20.8965%" y="1925" width="0.0213%" height="15" fill="rgb(233,115,3)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="20.8965%" y="1909" width="0.0213%" height="15" fill="rgb(215,165,25)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="20.8965%" y="1893" width="0.0213%" height="15" fill="rgb(234,179,6)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="20.8965%" y="1877" width="0.0213%" height="15" fill="rgb(215,82,23)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.8965%" y="1861" width="0.0213%" height="15" fill="rgb(211,47,18)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.8965%" y="1845" width="0.0213%" height="15" fill="rgb(248,17,9)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="20.8965%" y="1829" width="0.0213%" height="15" fill="rgb(210,212,12)" fg:x="4904" fg:w="5"/><text x="21.1465%" y="1839.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.9051%" y="1813" width="0.0128%" height="15" fill="rgb(230,135,45)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1823.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.9051%" y="1797" width="0.0128%" height="15" fill="rgb(214,121,41)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.9051%" y="1781" width="0.0128%" height="15" fill="rgb(239,165,45)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1791.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="20.9051%" y="1765" width="0.0128%" height="15" fill="rgb(214,85,51)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1775.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9051%" y="1749" width="0.0128%" height="15" fill="rgb(223,90,27)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1759.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9051%" y="1733" width="0.0128%" height="15" fill="rgb(244,84,11)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1743.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="20.9051%" y="1717" width="0.0128%" height="15" fill="rgb(253,41,47)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1727.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9051%" y="1701" width="0.0128%" height="15" fill="rgb(232,39,5)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1711.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="20.9051%" y="1685" width="0.0128%" height="15" fill="rgb(211,93,4)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1695.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="20.9051%" y="1669" width="0.0128%" height="15" fill="rgb(219,50,49)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1679.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="20.9051%" y="1653" width="0.0128%" height="15" fill="rgb(232,80,19)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1663.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="20.9051%" y="1637" width="0.0128%" height="15" fill="rgb(215,227,39)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1647.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="20.9051%" y="1621" width="0.0128%" height="15" fill="rgb(211,99,12)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1631.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="20.9051%" y="1605" width="0.0128%" height="15" fill="rgb(214,158,5)" fg:x="4906" fg:w="3"/><text x="21.1551%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.9178%" y="1829" width="0.0128%" height="15" fill="rgb(242,19,53)" fg:x="4909" fg:w="3"/><text x="21.1678%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="20.9178%" y="2005" width="0.0170%" height="15" fill="rgb(208,18,20)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="20.9178%" y="1989" width="0.0170%" height="15" fill="rgb(250,44,11)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="20.9178%" y="1973" width="0.0170%" height="15" fill="rgb(238,159,13)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="20.9178%" y="1957" width="0.0170%" height="15" fill="rgb(231,74,18)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="20.9178%" y="1941" width="0.0170%" height="15" fill="rgb(229,219,45)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="20.9178%" y="1925" width="0.0170%" height="15" fill="rgb(210,221,1)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="20.9178%" y="1909" width="0.0170%" height="15" fill="rgb(209,60,51)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="20.9178%" y="1893" width="0.0170%" height="15" fill="rgb(252,97,34)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="20.9178%" y="1877" width="0.0170%" height="15" fill="rgb(243,211,37)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="20.9178%" y="1861" width="0.0170%" height="15" fill="rgb(210,229,37)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="20.9178%" y="1845" width="0.0170%" height="15" fill="rgb(220,208,43)" fg:x="4909" fg:w="4"/><text x="21.1678%" y="1855.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="20.9605%" y="741" width="0.0128%" height="15" fill="rgb(218,118,50)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9605%" y="725" width="0.0128%" height="15" fill="rgb(254,169,52)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9605%" y="709" width="0.0128%" height="15" fill="rgb(221,214,37)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.9605%" y="693" width="0.0128%" height="15" fill="rgb(254,186,32)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.9605%" y="677" width="0.0128%" height="15" fill="rgb(215,144,43)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="687.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.9605%" y="661" width="0.0128%" height="15" fill="rgb(252,21,46)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="671.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.9605%" y="645" width="0.0128%" height="15" fill="rgb(207,166,46)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.9605%" y="629" width="0.0128%" height="15" fill="rgb(253,37,49)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="639.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.9605%" y="613" width="0.0128%" height="15" fill="rgb(222,97,20)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.9605%" y="597" width="0.0128%" height="15" fill="rgb(244,181,26)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="607.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.9605%" y="581" width="0.0128%" height="15" fill="rgb(241,22,29)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="591.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9605%" y="565" width="0.0128%" height="15" fill="rgb(206,200,43)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="575.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.9605%" y="549" width="0.0128%" height="15" fill="rgb(226,224,43)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="559.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.9605%" y="533" width="0.0128%" height="15" fill="rgb(253,129,28)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9605%" y="517" width="0.0128%" height="15" fill="rgb(252,99,33)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="527.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="20.9605%" y="501" width="0.0128%" height="15" fill="rgb(208,123,45)" fg:x="4919" fg:w="3"/><text x="21.2105%" y="511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="20.9519%" y="1029" width="0.0298%" height="15" fill="rgb(251,106,12)" fg:x="4917" fg:w="7"/><text x="21.2019%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="20.9519%" y="1013" width="0.0298%" height="15" fill="rgb(240,209,35)" fg:x="4917" fg:w="7"/><text x="21.2019%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="20.9519%" y="997" width="0.0298%" height="15" fill="rgb(214,52,50)" fg:x="4917" fg:w="7"/><text x="21.2019%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="20.9519%" y="981" width="0.0298%" height="15" fill="rgb(234,119,4)" fg:x="4917" fg:w="7"/><text x="21.2019%" y="991.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="20.9519%" y="965" width="0.0298%" height="15" fill="rgb(228,181,36)" fg:x="4917" fg:w="7"/><text x="21.2019%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="20.9519%" y="949" width="0.0298%" height="15" fill="rgb(213,171,42)" fg:x="4917" fg:w="7"/><text x="21.2019%" y="959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="20.9519%" y="933" width="0.0298%" height="15" fill="rgb(239,14,41)" fg:x="4917" fg:w="7"/><text x="21.2019%" y="943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="20.9605%" y="917" width="0.0213%" height="15" fill="rgb(239,111,46)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="927.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="20.9605%" y="901" width="0.0213%" height="15" fill="rgb(214,72,7)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="911.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="20.9605%" y="885" width="0.0213%" height="15" fill="rgb(221,114,1)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="895.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="20.9605%" y="869" width="0.0213%" height="15" fill="rgb(213,143,14)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="20.9605%" y="853" width="0.0213%" height="15" fill="rgb(220,221,53)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="20.9605%" y="837" width="0.0213%" height="15" fill="rgb(236,189,27)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.9605%" y="821" width="0.0213%" height="15" fill="rgb(252,139,49)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.9605%" y="805" width="0.0213%" height="15" fill="rgb(231,158,33)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="815.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="20.9605%" y="789" width="0.0213%" height="15" fill="rgb(207,201,15)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="20.9605%" y="773" width="0.0213%" height="15" fill="rgb(218,43,48)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="20.9605%" y="757" width="0.0213%" height="15" fill="rgb(244,63,52)" fg:x="4919" fg:w="5"/><text x="21.2105%" y="767.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="20.9818%" y="853" width="0.0213%" height="15" fill="rgb(236,60,17)" fg:x="4924" fg:w="5"/><text x="21.2318%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="20.9818%" y="837" width="0.0213%" height="15" fill="rgb(205,206,29)" fg:x="4924" fg:w="5"/><text x="21.2318%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="20.9818%" y="821" width="0.0213%" height="15" fill="rgb(205,209,35)" fg:x="4924" fg:w="5"/><text x="21.2318%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="20.9818%" y="805" width="0.0213%" height="15" fill="rgb(227,112,14)" fg:x="4924" fg:w="5"/><text x="21.2318%" y="815.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="20.9818%" y="789" width="0.0213%" height="15" fill="rgb(248,151,9)" fg:x="4924" fg:w="5"/><text x="21.2318%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="20.9818%" y="773" width="0.0213%" height="15" fill="rgb(247,45,40)" fg:x="4924" fg:w="5"/><text x="21.2318%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="20.9818%" y="757" width="0.0213%" height="15" fill="rgb(232,185,16)" fg:x="4924" fg:w="5"/><text x="21.2318%" y="767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="20.9903%" y="741" width="0.0128%" height="15" fill="rgb(215,45,44)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="751.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="20.9903%" y="725" width="0.0128%" height="15" fill="rgb(206,69,32)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="735.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="20.9903%" y="709" width="0.0128%" height="15" fill="rgb(233,98,50)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="719.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="20.9903%" y="693" width="0.0128%" height="15" fill="rgb(232,217,52)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="20.9903%" y="677" width="0.0128%" height="15" fill="rgb(250,42,51)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9903%" y="661" width="0.0128%" height="15" fill="rgb(241,200,26)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9903%" y="645" width="0.0128%" height="15" fill="rgb(207,10,32)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="20.9903%" y="629" width="0.0128%" height="15" fill="rgb(214,63,15)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="20.9903%" y="613" width="0.0128%" height="15" fill="rgb(234,176,14)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="623.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="20.9903%" y="597" width="0.0128%" height="15" fill="rgb(226,104,52)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="20.9903%" y="581" width="0.0128%" height="15" fill="rgb(211,222,1)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="20.9903%" y="565" width="0.0128%" height="15" fill="rgb(237,7,3)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="575.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="20.9903%" y="549" width="0.0128%" height="15" fill="rgb(218,143,7)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="20.9903%" y="533" width="0.0128%" height="15" fill="rgb(208,25,22)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="20.9903%" y="517" width="0.0128%" height="15" fill="rgb(228,127,16)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="527.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9903%" y="501" width="0.0128%" height="15" fill="rgb(237,86,27)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="20.9903%" y="485" width="0.0128%" height="15" fill="rgb(207,125,19)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="495.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="20.9903%" y="469" width="0.0128%" height="15" fill="rgb(243,195,0)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="20.9903%" y="453" width="0.0128%" height="15" fill="rgb(230,95,18)" fg:x="4926" fg:w="3"/><text x="21.2403%" y="463.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (17 samples, 0.07%)</title><rect x="20.9434%" y="1493" width="0.0724%" height="15" fill="rgb(232,157,21)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="20.9434%" y="1477" width="0.0724%" height="15" fill="rgb(212,120,50)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (17 samples, 0.07%)</title><rect x="20.9434%" y="1461" width="0.0724%" height="15" fill="rgb(222,204,44)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1471.50"></text></g><g><title>rayon_core::job::JobRef::execute (17 samples, 0.07%)</title><rect x="20.9434%" y="1445" width="0.0724%" height="15" fill="rgb(236,6,33)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1455.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (17 samples, 0.07%)</title><rect x="20.9434%" y="1429" width="0.0724%" height="15" fill="rgb(247,11,38)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1439.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (17 samples, 0.07%)</title><rect x="20.9434%" y="1413" width="0.0724%" height="15" fill="rgb(215,111,0)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1423.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="20.9434%" y="1397" width="0.0724%" height="15" fill="rgb(211,65,46)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1407.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="20.9434%" y="1381" width="0.0724%" height="15" fill="rgb(216,5,12)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1391.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="20.9434%" y="1365" width="0.0724%" height="15" fill="rgb(226,7,2)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1375.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="20.9434%" y="1349" width="0.0724%" height="15" fill="rgb(242,116,12)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1359.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="20.9434%" y="1333" width="0.0724%" height="15" fill="rgb(249,209,7)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1343.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (17 samples, 0.07%)</title><rect x="20.9434%" y="1317" width="0.0724%" height="15" fill="rgb(232,73,17)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="20.9434%" y="1301" width="0.0724%" height="15" fill="rgb(214,13,32)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="20.9434%" y="1285" width="0.0724%" height="15" fill="rgb(221,125,10)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="20.9434%" y="1269" width="0.0724%" height="15" fill="rgb(246,7,44)" fg:x="4915" fg:w="17"/><text x="21.1934%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="20.9519%" y="1253" width="0.0639%" height="15" fill="rgb(239,18,35)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="20.9519%" y="1237" width="0.0639%" height="15" fill="rgb(250,222,16)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="20.9519%" y="1221" width="0.0639%" height="15" fill="rgb(219,100,8)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="20.9519%" y="1205" width="0.0639%" height="15" fill="rgb(240,62,13)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1215.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="20.9519%" y="1189" width="0.0639%" height="15" fill="rgb(253,194,2)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1199.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="20.9519%" y="1173" width="0.0639%" height="15" fill="rgb(235,58,31)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1183.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="20.9519%" y="1157" width="0.0639%" height="15" fill="rgb(231,37,11)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="20.9519%" y="1141" width="0.0639%" height="15" fill="rgb(235,133,0)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="20.9519%" y="1125" width="0.0639%" height="15" fill="rgb(212,185,40)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="20.9519%" y="1109" width="0.0639%" height="15" fill="rgb(216,68,42)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="20.9519%" y="1093" width="0.0639%" height="15" fill="rgb(239,81,4)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="20.9519%" y="1077" width="0.0639%" height="15" fill="rgb(206,86,6)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="20.9519%" y="1061" width="0.0639%" height="15" fill="rgb(249,95,27)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="20.9519%" y="1045" width="0.0639%" height="15" fill="rgb(205,155,45)" fg:x="4917" fg:w="15"/><text x="21.2019%" y="1055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="20.9818%" y="1029" width="0.0341%" height="15" fill="rgb(213,55,42)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="1039.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="20.9818%" y="1013" width="0.0341%" height="15" fill="rgb(249,197,4)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="1023.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="20.9818%" y="997" width="0.0341%" height="15" fill="rgb(212,128,32)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="1007.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="20.9818%" y="981" width="0.0341%" height="15" fill="rgb(252,47,30)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="20.9818%" y="965" width="0.0341%" height="15" fill="rgb(209,79,18)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="20.9818%" y="949" width="0.0341%" height="15" fill="rgb(225,81,38)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="20.9818%" y="933" width="0.0341%" height="15" fill="rgb(205,95,16)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="20.9818%" y="917" width="0.0341%" height="15" fill="rgb(214,30,4)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="927.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="20.9818%" y="901" width="0.0341%" height="15" fill="rgb(232,137,22)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="20.9818%" y="885" width="0.0341%" height="15" fill="rgb(232,156,19)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="20.9818%" y="869" width="0.0341%" height="15" fill="rgb(248,157,26)" fg:x="4924" fg:w="8"/><text x="21.2318%" y="879.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.0031%" y="853" width="0.0128%" height="15" fill="rgb(242,24,3)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="863.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.0031%" y="837" width="0.0128%" height="15" fill="rgb(218,195,48)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="847.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.0031%" y="821" width="0.0128%" height="15" fill="rgb(214,193,36)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="831.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.0031%" y="805" width="0.0128%" height="15" fill="rgb(242,110,40)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="815.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.0031%" y="789" width="0.0128%" height="15" fill="rgb(233,150,26)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0031%" y="773" width="0.0128%" height="15" fill="rgb(239,200,30)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0031%" y="757" width="0.0128%" height="15" fill="rgb(226,28,11)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.0031%" y="741" width="0.0128%" height="15" fill="rgb(220,26,48)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="751.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.0031%" y="725" width="0.0128%" height="15" fill="rgb(232,10,11)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.0031%" y="709" width="0.0128%" height="15" fill="rgb(252,143,50)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0031%" y="693" width="0.0128%" height="15" fill="rgb(206,58,22)" fg:x="4929" fg:w="3"/><text x="21.2531%" y="703.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="21.0159%" y="1317" width="0.0170%" height="15" fill="rgb(250,9,45)" fg:x="4932" fg:w="4"/><text x="21.2659%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="21.0159%" y="1301" width="0.0170%" height="15" fill="rgb(225,148,14)" fg:x="4932" fg:w="4"/><text x="21.2659%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.0159%" y="1285" width="0.0170%" height="15" fill="rgb(205,178,40)" fg:x="4932" fg:w="4"/><text x="21.2659%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.0159%" y="1269" width="0.0170%" height="15" fill="rgb(215,201,4)" fg:x="4932" fg:w="4"/><text x="21.2659%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.0159%" y="1253" width="0.0170%" height="15" fill="rgb(219,223,24)" fg:x="4932" fg:w="4"/><text x="21.2659%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.0159%" y="1237" width="0.0170%" height="15" fill="rgb(217,19,31)" fg:x="4932" fg:w="4"/><text x="21.2659%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.0159%" y="1221" width="0.0170%" height="15" fill="rgb(235,33,3)" fg:x="4932" fg:w="4"/><text x="21.2659%" y="1231.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (26 samples, 0.11%)</title><rect x="20.9434%" y="1957" width="0.1108%" height="15" fill="rgb(221,39,18)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.11%)</title><rect x="20.9434%" y="1941" width="0.1108%" height="15" fill="rgb(242,162,33)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (26 samples, 0.11%)</title><rect x="20.9434%" y="1925" width="0.1108%" height="15" fill="rgb(233,215,28)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (26 samples, 0.11%)</title><rect x="20.9434%" y="1909" width="0.1108%" height="15" fill="rgb(212,117,9)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (26 samples, 0.11%)</title><rect x="20.9434%" y="1893" width="0.1108%" height="15" fill="rgb(237,70,47)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (26 samples, 0.11%)</title><rect x="20.9434%" y="1877" width="0.1108%" height="15" fill="rgb(206,177,13)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="20.9434%" y="1861" width="0.1108%" height="15" fill="rgb(209,174,33)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="20.9434%" y="1845" width="0.1108%" height="15" fill="rgb(226,6,11)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1855.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="20.9434%" y="1829" width="0.1108%" height="15" fill="rgb(240,214,6)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="20.9434%" y="1813" width="0.1108%" height="15" fill="rgb(254,214,40)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="20.9434%" y="1797" width="0.1108%" height="15" fill="rgb(230,187,15)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (26 samples, 0.11%)</title><rect x="20.9434%" y="1781" width="0.1108%" height="15" fill="rgb(250,11,27)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="20.9434%" y="1765" width="0.1108%" height="15" fill="rgb(243,107,19)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="20.9434%" y="1749" width="0.1108%" height="15" fill="rgb(253,66,26)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="20.9434%" y="1733" width="0.1108%" height="15" fill="rgb(228,43,8)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="20.9434%" y="1717" width="0.1108%" height="15" fill="rgb(232,197,36)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="20.9434%" y="1701" width="0.1108%" height="15" fill="rgb(221,182,31)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="20.9434%" y="1685" width="0.1108%" height="15" fill="rgb(244,25,36)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="20.9434%" y="1669" width="0.1108%" height="15" fill="rgb(247,101,19)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="20.9434%" y="1653" width="0.1108%" height="15" fill="rgb(223,117,19)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1663.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="20.9434%" y="1637" width="0.1108%" height="15" fill="rgb(249,63,38)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="20.9434%" y="1621" width="0.1108%" height="15" fill="rgb(220,143,23)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="20.9434%" y="1605" width="0.1108%" height="15" fill="rgb(252,183,22)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (26 samples, 0.11%)</title><rect x="20.9434%" y="1589" width="0.1108%" height="15" fill="rgb(243,176,15)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="20.9434%" y="1573" width="0.1108%" height="15" fill="rgb(244,204,46)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="20.9434%" y="1557" width="0.1108%" height="15" fill="rgb(227,28,54)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="20.9434%" y="1541" width="0.1108%" height="15" fill="rgb(231,10,15)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="20.9434%" y="1525" width="0.1108%" height="15" fill="rgb(210,200,17)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="20.9434%" y="1509" width="0.1108%" height="15" fill="rgb(251,106,46)" fg:x="4915" fg:w="26"/><text x="21.1934%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="21.0159%" y="1493" width="0.0384%" height="15" fill="rgb(218,211,15)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="21.0159%" y="1477" width="0.0384%" height="15" fill="rgb(239,62,10)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1487.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="21.0159%" y="1461" width="0.0384%" height="15" fill="rgb(225,53,53)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="21.0159%" y="1445" width="0.0384%" height="15" fill="rgb(207,16,24)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="21.0159%" y="1429" width="0.0384%" height="15" fill="rgb(217,52,28)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="21.0159%" y="1413" width="0.0384%" height="15" fill="rgb(246,1,5)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="21.0159%" y="1397" width="0.0384%" height="15" fill="rgb(221,29,26)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="21.0159%" y="1381" width="0.0384%" height="15" fill="rgb(250,133,32)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="21.0159%" y="1365" width="0.0384%" height="15" fill="rgb(236,63,16)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="21.0159%" y="1349" width="0.0384%" height="15" fill="rgb(231,159,14)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="21.0159%" y="1333" width="0.0384%" height="15" fill="rgb(207,102,36)" fg:x="4932" fg:w="9"/><text x="21.2659%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="21.0329%" y="1317" width="0.0213%" height="15" fill="rgb(230,224,31)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="21.0329%" y="1301" width="0.0213%" height="15" fill="rgb(215,182,16)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1311.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="21.0329%" y="1285" width="0.0213%" height="15" fill="rgb(226,113,2)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="21.0329%" y="1269" width="0.0213%" height="15" fill="rgb(241,18,35)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="21.0329%" y="1253" width="0.0213%" height="15" fill="rgb(240,165,44)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="21.0329%" y="1237" width="0.0213%" height="15" fill="rgb(229,130,47)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="21.0329%" y="1221" width="0.0213%" height="15" fill="rgb(223,93,7)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="21.0329%" y="1205" width="0.0213%" height="15" fill="rgb(205,180,36)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="21.0329%" y="1189" width="0.0213%" height="15" fill="rgb(221,103,28)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="21.0329%" y="1173" width="0.0213%" height="15" fill="rgb(212,4,3)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="21.0329%" y="1157" width="0.0213%" height="15" fill="rgb(209,221,53)" fg:x="4936" fg:w="5"/><text x="21.2829%" y="1167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.0414%" y="1141" width="0.0128%" height="15" fill="rgb(233,229,52)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.0414%" y="1125" width="0.0128%" height="15" fill="rgb(254,127,37)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1135.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.0414%" y="1109" width="0.0128%" height="15" fill="rgb(207,161,26)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.0414%" y="1093" width="0.0128%" height="15" fill="rgb(223,75,5)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.0414%" y="1077" width="0.0128%" height="15" fill="rgb(235,115,52)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0414%" y="1061" width="0.0128%" height="15" fill="rgb(240,91,46)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0414%" y="1045" width="0.0128%" height="15" fill="rgb(251,144,21)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.0414%" y="1029" width="0.0128%" height="15" fill="rgb(247,220,47)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.0414%" y="1013" width="0.0128%" height="15" fill="rgb(253,122,1)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1023.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.0414%" y="997" width="0.0128%" height="15" fill="rgb(221,0,24)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.0414%" y="981" width="0.0128%" height="15" fill="rgb(220,204,54)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="991.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.0414%" y="965" width="0.0128%" height="15" fill="rgb(205,96,25)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="975.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.0414%" y="949" width="0.0128%" height="15" fill="rgb(247,77,20)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="959.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.0414%" y="933" width="0.0128%" height="15" fill="rgb(245,151,8)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="943.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.0414%" y="917" width="0.0128%" height="15" fill="rgb(242,158,39)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="927.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0414%" y="901" width="0.0128%" height="15" fill="rgb(222,214,50)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.0414%" y="885" width="0.0128%" height="15" fill="rgb(229,60,39)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="895.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.0414%" y="869" width="0.0128%" height="15" fill="rgb(240,148,18)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="879.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0414%" y="853" width="0.0128%" height="15" fill="rgb(215,96,11)" fg:x="4938" fg:w="3"/><text x="21.2914%" y="863.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.0542%" y="1829" width="0.0128%" height="15" fill="rgb(238,162,53)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.0542%" y="1813" width="0.0128%" height="15" fill="rgb(214,83,18)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.0542%" y="1797" width="0.0128%" height="15" fill="rgb(248,117,24)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.0542%" y="1781" width="0.0128%" height="15" fill="rgb(238,190,6)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.0542%" y="1765" width="0.0128%" height="15" fill="rgb(213,51,6)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.0542%" y="1749" width="0.0128%" height="15" fill="rgb(212,136,1)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.0542%" y="1733" width="0.0128%" height="15" fill="rgb(221,192,14)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0542%" y="1717" width="0.0128%" height="15" fill="rgb(244,38,54)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.0542%" y="1701" width="0.0128%" height="15" fill="rgb(240,45,28)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.0542%" y="1685" width="0.0128%" height="15" fill="rgb(240,123,12)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0542%" y="1669" width="0.0128%" height="15" fill="rgb(216,14,30)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.0542%" y="1653" width="0.0128%" height="15" fill="rgb(212,50,24)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="21.0542%" y="1637" width="0.0128%" height="15" fill="rgb(253,229,47)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="21.0542%" y="1621" width="0.0128%" height="15" fill="rgb(214,26,17)" fg:x="4941" fg:w="3"/><text x="21.3042%" y="1631.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="21.0670%" y="1669" width="0.0128%" height="15" fill="rgb(252,60,11)" fg:x="4944" fg:w="3"/><text x="21.3170%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0670%" y="1653" width="0.0128%" height="15" fill="rgb(209,59,37)" fg:x="4944" fg:w="3"/><text x="21.3170%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0670%" y="1637" width="0.0128%" height="15" fill="rgb(228,126,53)" fg:x="4944" fg:w="3"/><text x="21.3170%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.0670%" y="1621" width="0.0128%" height="15" fill="rgb(233,99,2)" fg:x="4944" fg:w="3"/><text x="21.3170%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.0670%" y="1605" width="0.0128%" height="15" fill="rgb(217,106,34)" fg:x="4944" fg:w="3"/><text x="21.3170%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.0670%" y="1589" width="0.0128%" height="15" fill="rgb(222,46,19)" fg:x="4944" fg:w="3"/><text x="21.3170%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0670%" y="1573" width="0.0128%" height="15" fill="rgb(251,87,31)" fg:x="4944" fg:w="3"/><text x="21.3170%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="21.0670%" y="1781" width="0.0298%" height="15" fill="rgb(213,70,51)" fg:x="4944" fg:w="7"/><text x="21.3170%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="21.0670%" y="1765" width="0.0298%" height="15" fill="rgb(229,144,18)" fg:x="4944" fg:w="7"/><text x="21.3170%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="21.0670%" y="1749" width="0.0298%" height="15" fill="rgb(254,60,26)" fg:x="4944" fg:w="7"/><text x="21.3170%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="21.0670%" y="1733" width="0.0298%" height="15" fill="rgb(243,127,51)" fg:x="4944" fg:w="7"/><text x="21.3170%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="21.0670%" y="1717" width="0.0298%" height="15" fill="rgb(221,51,25)" fg:x="4944" fg:w="7"/><text x="21.3170%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="21.0670%" y="1701" width="0.0298%" height="15" fill="rgb(205,42,7)" fg:x="4944" fg:w="7"/><text x="21.3170%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="21.0670%" y="1685" width="0.0298%" height="15" fill="rgb(236,177,48)" fg:x="4944" fg:w="7"/><text x="21.3170%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="21.0798%" y="1669" width="0.0170%" height="15" fill="rgb(226,79,31)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="21.0798%" y="1653" width="0.0170%" height="15" fill="rgb(216,170,12)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1663.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="21.0798%" y="1637" width="0.0170%" height="15" fill="rgb(208,62,51)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="21.0798%" y="1621" width="0.0170%" height="15" fill="rgb(254,129,9)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="21.0798%" y="1605" width="0.0170%" height="15" fill="rgb(243,209,31)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="21.0798%" y="1589" width="0.0170%" height="15" fill="rgb(213,159,23)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.0798%" y="1573" width="0.0170%" height="15" fill="rgb(249,77,39)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.0798%" y="1557" width="0.0170%" height="15" fill="rgb(230,13,33)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.0798%" y="1541" width="0.0170%" height="15" fill="rgb(215,215,7)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.0798%" y="1525" width="0.0170%" height="15" fill="rgb(222,92,25)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.0798%" y="1509" width="0.0170%" height="15" fill="rgb(215,173,22)" fg:x="4947" fg:w="4"/><text x="21.3298%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="21.0968%" y="1781" width="0.0128%" height="15" fill="rgb(247,205,52)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="21.0968%" y="1765" width="0.0128%" height="15" fill="rgb(240,210,37)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="21.0968%" y="1749" width="0.0128%" height="15" fill="rgb(224,13,10)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="21.0968%" y="1733" width="0.0128%" height="15" fill="rgb(209,48,33)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="21.0968%" y="1717" width="0.0128%" height="15" fill="rgb(228,219,23)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="21.0968%" y="1701" width="0.0128%" height="15" fill="rgb(239,46,49)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.0968%" y="1685" width="0.0128%" height="15" fill="rgb(206,172,51)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.0968%" y="1669" width="0.0128%" height="15" fill="rgb(213,212,35)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1679.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.0968%" y="1653" width="0.0128%" height="15" fill="rgb(252,40,27)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.0968%" y="1637" width="0.0128%" height="15" fill="rgb(212,33,41)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.0968%" y="1621" width="0.0128%" height="15" fill="rgb(232,160,27)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1605" width="0.0128%" height="15" fill="rgb(244,160,20)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1589" width="0.0128%" height="15" fill="rgb(205,66,20)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1573" width="0.0128%" height="15" fill="rgb(236,158,6)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.0968%" y="1557" width="0.0128%" height="15" fill="rgb(232,25,36)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.0968%" y="1541" width="0.0128%" height="15" fill="rgb(220,153,35)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.0968%" y="1525" width="0.0128%" height="15" fill="rgb(216,5,8)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1509" width="0.0128%" height="15" fill="rgb(240,97,3)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.0968%" y="1493" width="0.0128%" height="15" fill="rgb(220,99,26)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.0968%" y="1477" width="0.0128%" height="15" fill="rgb(237,96,2)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.0968%" y="1461" width="0.0128%" height="15" fill="rgb(217,197,47)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.0968%" y="1445" width="0.0128%" height="15" fill="rgb(252,133,54)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.0968%" y="1429" width="0.0128%" height="15" fill="rgb(233,37,30)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1413" width="0.0128%" height="15" fill="rgb(239,182,12)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1397" width="0.0128%" height="15" fill="rgb(245,83,39)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.0968%" y="1381" width="0.0128%" height="15" fill="rgb(222,109,36)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.0968%" y="1365" width="0.0128%" height="15" fill="rgb(237,95,44)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.0968%" y="1349" width="0.0128%" height="15" fill="rgb(216,36,54)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1333" width="0.0128%" height="15" fill="rgb(236,164,3)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.0968%" y="1317" width="0.0128%" height="15" fill="rgb(223,15,21)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.0968%" y="1301" width="0.0128%" height="15" fill="rgb(239,191,12)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1311.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.0968%" y="1285" width="0.0128%" height="15" fill="rgb(231,191,37)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.0968%" y="1269" width="0.0128%" height="15" fill="rgb(209,155,36)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.0968%" y="1253" width="0.0128%" height="15" fill="rgb(216,222,49)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1237" width="0.0128%" height="15" fill="rgb(218,181,2)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1221" width="0.0128%" height="15" fill="rgb(239,125,9)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.0968%" y="1205" width="0.0128%" height="15" fill="rgb(233,103,7)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.0968%" y="1189" width="0.0128%" height="15" fill="rgb(209,223,5)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1199.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.0968%" y="1173" width="0.0128%" height="15" fill="rgb(234,71,27)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.0968%" y="1157" width="0.0128%" height="15" fill="rgb(251,202,16)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1167.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.0968%" y="1141" width="0.0128%" height="15" fill="rgb(231,180,0)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1151.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.0968%" y="1125" width="0.0128%" height="15" fill="rgb(223,58,28)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1135.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.0968%" y="1109" width="0.0128%" height="15" fill="rgb(250,34,24)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1119.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.0968%" y="1093" width="0.0128%" height="15" fill="rgb(235,24,16)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1103.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1077" width="0.0128%" height="15" fill="rgb(219,28,33)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1087.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.0968%" y="1061" width="0.0128%" height="15" fill="rgb(228,150,43)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1071.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.0968%" y="1045" width="0.0128%" height="15" fill="rgb(221,228,36)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.0968%" y="1029" width="0.0128%" height="15" fill="rgb(232,116,17)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1039.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.0968%" y="1013" width="0.0128%" height="15" fill="rgb(220,110,51)" fg:x="4951" fg:w="3"/><text x="21.3468%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.1096%" y="1653" width="0.0128%" height="15" fill="rgb(207,26,25)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.1096%" y="1637" width="0.0128%" height="15" fill="rgb(223,58,19)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.1096%" y="1621" width="0.0128%" height="15" fill="rgb(234,125,39)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.1096%" y="1605" width="0.0128%" height="15" fill="rgb(241,48,36)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.1096%" y="1589" width="0.0128%" height="15" fill="rgb(217,148,51)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.1096%" y="1573" width="0.0128%" height="15" fill="rgb(247,17,25)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.1096%" y="1557" width="0.0128%" height="15" fill="rgb(219,89,38)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1096%" y="1541" width="0.0128%" height="15" fill="rgb(220,145,2)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.1096%" y="1525" width="0.0128%" height="15" fill="rgb(244,66,47)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.1096%" y="1509" width="0.0128%" height="15" fill="rgb(226,182,5)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1096%" y="1493" width="0.0128%" height="15" fill="rgb(211,98,20)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.1096%" y="1477" width="0.0128%" height="15" fill="rgb(217,103,52)" fg:x="4954" fg:w="3"/><text x="21.3596%" y="1487.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="21.1224%" y="1605" width="0.0128%" height="15" fill="rgb(208,125,52)" fg:x="4957" fg:w="3"/><text x="21.3724%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1224%" y="1589" width="0.0128%" height="15" fill="rgb(244,70,13)" fg:x="4957" fg:w="3"/><text x="21.3724%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1224%" y="1573" width="0.0128%" height="15" fill="rgb(253,124,3)" fg:x="4957" fg:w="3"/><text x="21.3724%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.1224%" y="1557" width="0.0128%" height="15" fill="rgb(222,145,32)" fg:x="4957" fg:w="3"/><text x="21.3724%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.1224%" y="1541" width="0.0128%" height="15" fill="rgb(232,183,47)" fg:x="4957" fg:w="3"/><text x="21.3724%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.1224%" y="1525" width="0.0128%" height="15" fill="rgb(246,226,4)" fg:x="4957" fg:w="3"/><text x="21.3724%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1224%" y="1509" width="0.0128%" height="15" fill="rgb(228,185,46)" fg:x="4957" fg:w="3"/><text x="21.3724%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (55 samples, 0.23%)</title><rect x="20.9178%" y="2245" width="0.2344%" height="15" fill="rgb(213,196,4)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (55 samples, 0.23%)</title><rect x="20.9178%" y="2229" width="0.2344%" height="15" fill="rgb(212,2,45)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (55 samples, 0.23%)</title><rect x="20.9178%" y="2213" width="0.2344%" height="15" fill="rgb(217,145,50)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (55 samples, 0.23%)</title><rect x="20.9178%" y="2197" width="0.2344%" height="15" fill="rgb(242,10,46)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (55 samples, 0.23%)</title><rect x="20.9178%" y="2181" width="0.2344%" height="15" fill="rgb(252,91,48)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (55 samples, 0.23%)</title><rect x="20.9178%" y="2165" width="0.2344%" height="15" fill="rgb(216,72,13)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (55 samples, 0.23%)</title><rect x="20.9178%" y="2149" width="0.2344%" height="15" fill="rgb(219,6,37)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (55 samples, 0.23%)</title><rect x="20.9178%" y="2133" width="0.2344%" height="15" fill="rgb(236,185,40)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2143.50"></text></g><g><title>std::panicking::try (55 samples, 0.23%)</title><rect x="20.9178%" y="2117" width="0.2344%" height="15" fill="rgb(208,81,48)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (55 samples, 0.23%)</title><rect x="20.9178%" y="2101" width="0.2344%" height="15" fill="rgb(211,42,33)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (55 samples, 0.23%)</title><rect x="20.9178%" y="2085" width="0.2344%" height="15" fill="rgb(211,90,39)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (55 samples, 0.23%)</title><rect x="20.9178%" y="2069" width="0.2344%" height="15" fill="rgb(218,136,12)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (55 samples, 0.23%)</title><rect x="20.9178%" y="2053" width="0.2344%" height="15" fill="rgb(234,12,32)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (55 samples, 0.23%)</title><rect x="20.9178%" y="2037" width="0.2344%" height="15" fill="rgb(221,164,18)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.23%)</title><rect x="20.9178%" y="2021" width="0.2344%" height="15" fill="rgb(239,135,14)" fg:x="4909" fg:w="55"/><text x="21.1678%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (51 samples, 0.22%)</title><rect x="20.9349%" y="2005" width="0.2173%" height="15" fill="rgb(226,198,47)" fg:x="4913" fg:w="51"/><text x="21.1849%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (51 samples, 0.22%)</title><rect x="20.9349%" y="1989" width="0.2173%" height="15" fill="rgb(244,121,47)" fg:x="4913" fg:w="51"/><text x="21.1849%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (51 samples, 0.22%)</title><rect x="20.9349%" y="1973" width="0.2173%" height="15" fill="rgb(226,21,48)" fg:x="4913" fg:w="51"/><text x="21.1849%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="21.0542%" y="1957" width="0.0980%" height="15" fill="rgb(215,178,47)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="21.0542%" y="1941" width="0.0980%" height="15" fill="rgb(206,212,19)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1951.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="21.0542%" y="1925" width="0.0980%" height="15" fill="rgb(230,104,34)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="21.0542%" y="1909" width="0.0980%" height="15" fill="rgb(210,96,51)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="21.0542%" y="1893" width="0.0980%" height="15" fill="rgb(229,111,47)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (23 samples, 0.10%)</title><rect x="21.0542%" y="1877" width="0.0980%" height="15" fill="rgb(218,174,45)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="21.0542%" y="1861" width="0.0980%" height="15" fill="rgb(215,21,32)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="21.0542%" y="1845" width="0.0980%" height="15" fill="rgb(235,72,21)" fg:x="4941" fg:w="23"/><text x="21.3042%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="21.0670%" y="1829" width="0.0852%" height="15" fill="rgb(250,113,30)" fg:x="4944" fg:w="20"/><text x="21.3170%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="21.0670%" y="1813" width="0.0852%" height="15" fill="rgb(244,136,34)" fg:x="4944" fg:w="20"/><text x="21.3170%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="21.0670%" y="1797" width="0.0852%" height="15" fill="rgb(213,226,47)" fg:x="4944" fg:w="20"/><text x="21.3170%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="21.1096%" y="1781" width="0.0426%" height="15" fill="rgb(224,136,40)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="21.1096%" y="1765" width="0.0426%" height="15" fill="rgb(253,124,12)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1775.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="21.1096%" y="1749" width="0.0426%" height="15" fill="rgb(210,67,8)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="21.1096%" y="1733" width="0.0426%" height="15" fill="rgb(210,204,0)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="21.1096%" y="1717" width="0.0426%" height="15" fill="rgb(217,179,22)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="21.1096%" y="1701" width="0.0426%" height="15" fill="rgb(237,192,33)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="21.1096%" y="1685" width="0.0426%" height="15" fill="rgb(211,104,28)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="21.1096%" y="1669" width="0.0426%" height="15" fill="rgb(214,75,30)" fg:x="4954" fg:w="10"/><text x="21.3596%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="21.1224%" y="1653" width="0.0298%" height="15" fill="rgb(220,227,12)" fg:x="4957" fg:w="7"/><text x="21.3724%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="21.1224%" y="1637" width="0.0298%" height="15" fill="rgb(233,134,28)" fg:x="4957" fg:w="7"/><text x="21.3724%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="21.1224%" y="1621" width="0.0298%" height="15" fill="rgb(215,146,24)" fg:x="4957" fg:w="7"/><text x="21.3724%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="21.1352%" y="1605" width="0.0170%" height="15" fill="rgb(248,227,20)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="21.1352%" y="1589" width="0.0170%" height="15" fill="rgb(250,44,42)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1599.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="21.1352%" y="1573" width="0.0170%" height="15" fill="rgb(219,5,35)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="21.1352%" y="1557" width="0.0170%" height="15" fill="rgb(241,132,32)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="21.1352%" y="1541" width="0.0170%" height="15" fill="rgb(234,212,51)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="21.1352%" y="1525" width="0.0170%" height="15" fill="rgb(242,173,29)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.1352%" y="1509" width="0.0170%" height="15" fill="rgb(212,159,2)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.1352%" y="1493" width="0.0170%" height="15" fill="rgb(238,165,31)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.1352%" y="1477" width="0.0170%" height="15" fill="rgb(241,57,36)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.1352%" y="1461" width="0.0170%" height="15" fill="rgb(249,7,4)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.1352%" y="1445" width="0.0170%" height="15" fill="rgb(250,137,44)" fg:x="4960" fg:w="4"/><text x="21.3852%" y="1455.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="21.1522%" y="1701" width="0.0128%" height="15" fill="rgb(244,185,1)" fg:x="4964" fg:w="3"/><text x="21.4022%" y="1711.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="21.1522%" y="1685" width="0.0128%" height="15" fill="rgb(216,5,53)" fg:x="4964" fg:w="3"/><text x="21.4022%" y="1695.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="21.1522%" y="1669" width="0.0128%" height="15" fill="rgb(234,89,21)" fg:x="4964" fg:w="3"/><text x="21.4022%" y="1679.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="21.1522%" y="1653" width="0.0128%" height="15" fill="rgb(250,81,43)" fg:x="4964" fg:w="3"/><text x="21.4022%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.1522%" y="1893" width="0.0170%" height="15" fill="rgb(243,132,11)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.1522%" y="1877" width="0.0170%" height="15" fill="rgb(253,159,28)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.1522%" y="1861" width="0.0170%" height="15" fill="rgb(237,167,34)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.1522%" y="1845" width="0.0170%" height="15" fill="rgb(237,16,50)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.1522%" y="1829" width="0.0170%" height="15" fill="rgb(247,125,2)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.1522%" y="1813" width="0.0170%" height="15" fill="rgb(254,35,3)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.1522%" y="1797" width="0.0170%" height="15" fill="rgb(237,209,21)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.1522%" y="1781" width="0.0170%" height="15" fill="rgb(224,122,20)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.1522%" y="1765" width="0.0170%" height="15" fill="rgb(224,11,46)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.1522%" y="1749" width="0.0170%" height="15" fill="rgb(248,21,33)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.1522%" y="1733" width="0.0170%" height="15" fill="rgb(222,144,7)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="21.1522%" y="1717" width="0.0170%" height="15" fill="rgb(205,141,37)" fg:x="4964" fg:w="4"/><text x="21.4022%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="21.1693%" y="1845" width="0.0128%" height="15" fill="rgb(237,130,8)" fg:x="4968" fg:w="3"/><text x="21.4193%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1693%" y="1829" width="0.0128%" height="15" fill="rgb(209,179,39)" fg:x="4968" fg:w="3"/><text x="21.4193%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1693%" y="1813" width="0.0128%" height="15" fill="rgb(207,52,17)" fg:x="4968" fg:w="3"/><text x="21.4193%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.1693%" y="1797" width="0.0128%" height="15" fill="rgb(253,158,17)" fg:x="4968" fg:w="3"/><text x="21.4193%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.1693%" y="1781" width="0.0128%" height="15" fill="rgb(208,19,53)" fg:x="4968" fg:w="3"/><text x="21.4193%" y="1791.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.1820%" y="1701" width="0.0128%" height="15" fill="rgb(233,152,13)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.1820%" y="1685" width="0.0128%" height="15" fill="rgb(231,84,1)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.1820%" y="1669" width="0.0128%" height="15" fill="rgb(229,142,48)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.1820%" y="1653" width="0.0128%" height="15" fill="rgb(248,70,29)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.1820%" y="1637" width="0.0128%" height="15" fill="rgb(250,85,7)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.1820%" y="1621" width="0.0128%" height="15" fill="rgb(235,140,43)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1820%" y="1605" width="0.0128%" height="15" fill="rgb(216,0,5)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.1820%" y="1589" width="0.0128%" height="15" fill="rgb(223,167,29)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.1820%" y="1573" width="0.0128%" height="15" fill="rgb(229,150,33)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.1820%" y="1557" width="0.0128%" height="15" fill="rgb(227,26,52)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.1820%" y="1541" width="0.0128%" height="15" fill="rgb(250,60,52)" fg:x="4971" fg:w="3"/><text x="21.4320%" y="1551.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="21.1522%" y="1957" width="0.0511%" height="15" fill="rgb(228,81,46)" fg:x="4964" fg:w="12"/><text x="21.4022%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="21.1522%" y="1941" width="0.0511%" height="15" fill="rgb(225,218,31)" fg:x="4964" fg:w="12"/><text x="21.4022%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="21.1522%" y="1925" width="0.0511%" height="15" fill="rgb(230,35,16)" fg:x="4964" fg:w="12"/><text x="21.4022%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="21.1522%" y="1909" width="0.0511%" height="15" fill="rgb(247,100,0)" fg:x="4964" fg:w="12"/><text x="21.4022%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="21.1693%" y="1893" width="0.0341%" height="15" fill="rgb(223,135,11)" fg:x="4968" fg:w="8"/><text x="21.4193%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="21.1693%" y="1877" width="0.0341%" height="15" fill="rgb(207,136,0)" fg:x="4968" fg:w="8"/><text x="21.4193%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="21.1693%" y="1861" width="0.0341%" height="15" fill="rgb(246,131,25)" fg:x="4968" fg:w="8"/><text x="21.4193%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="21.1820%" y="1845" width="0.0213%" height="15" fill="rgb(209,47,12)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="21.1820%" y="1829" width="0.0213%" height="15" fill="rgb(221,25,16)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1839.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="21.1820%" y="1813" width="0.0213%" height="15" fill="rgb(223,164,33)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="21.1820%" y="1797" width="0.0213%" height="15" fill="rgb(220,26,23)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="21.1820%" y="1781" width="0.0213%" height="15" fill="rgb(231,224,1)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="21.1820%" y="1765" width="0.0213%" height="15" fill="rgb(229,221,24)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="21.1820%" y="1749" width="0.0213%" height="15" fill="rgb(213,34,10)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="21.1820%" y="1733" width="0.0213%" height="15" fill="rgb(215,33,11)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="21.1820%" y="1717" width="0.0213%" height="15" fill="rgb(216,20,41)" fg:x="4971" fg:w="5"/><text x="21.4320%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.2033%" y="1813" width="0.0128%" height="15" fill="rgb(228,43,31)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.2033%" y="1797" width="0.0128%" height="15" fill="rgb(227,83,26)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.2033%" y="1781" width="0.0128%" height="15" fill="rgb(217,168,19)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.2033%" y="1765" width="0.0128%" height="15" fill="rgb(231,34,33)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.2033%" y="1749" width="0.0128%" height="15" fill="rgb(230,120,51)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.2033%" y="1733" width="0.0128%" height="15" fill="rgb(215,138,27)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2033%" y="1717" width="0.0128%" height="15" fill="rgb(246,80,47)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.2033%" y="1701" width="0.0128%" height="15" fill="rgb(215,57,53)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.2033%" y="1685" width="0.0128%" height="15" fill="rgb(229,137,5)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2033%" y="1669" width="0.0128%" height="15" fill="rgb(210,86,2)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.2033%" y="1653" width="0.0128%" height="15" fill="rgb(231,226,51)" fg:x="4976" fg:w="3"/><text x="21.4533%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="21.2033%" y="1829" width="0.0213%" height="15" fill="rgb(216,62,29)" fg:x="4976" fg:w="5"/><text x="21.4533%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="21.1522%" y="2069" width="0.0852%" height="15" fill="rgb(248,202,3)" fg:x="4964" fg:w="20"/><text x="21.4022%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="21.1522%" y="2053" width="0.0852%" height="15" fill="rgb(225,181,7)" fg:x="4964" fg:w="20"/><text x="21.4022%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="21.1522%" y="2037" width="0.0852%" height="15" fill="rgb(247,170,54)" fg:x="4964" fg:w="20"/><text x="21.4022%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="21.1522%" y="2021" width="0.0852%" height="15" fill="rgb(236,204,33)" fg:x="4964" fg:w="20"/><text x="21.4022%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="21.1522%" y="2005" width="0.0852%" height="15" fill="rgb(216,45,30)" fg:x="4964" fg:w="20"/><text x="21.4022%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="21.1522%" y="1989" width="0.0852%" height="15" fill="rgb(213,203,16)" fg:x="4964" fg:w="20"/><text x="21.4022%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="21.1522%" y="1973" width="0.0852%" height="15" fill="rgb(215,46,16)" fg:x="4964" fg:w="20"/><text x="21.4022%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="21.2033%" y="1957" width="0.0341%" height="15" fill="rgb(217,162,46)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="21.2033%" y="1941" width="0.0341%" height="15" fill="rgb(224,189,20)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1951.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="21.2033%" y="1925" width="0.0341%" height="15" fill="rgb(232,35,51)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="21.2033%" y="1909" width="0.0341%" height="15" fill="rgb(243,221,46)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="21.2033%" y="1893" width="0.0341%" height="15" fill="rgb(248,16,16)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="21.2033%" y="1877" width="0.0341%" height="15" fill="rgb(220,168,13)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="21.2033%" y="1861" width="0.0341%" height="15" fill="rgb(243,102,39)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="21.2033%" y="1845" width="0.0341%" height="15" fill="rgb(245,82,32)" fg:x="4976" fg:w="8"/><text x="21.4533%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.2246%" y="1829" width="0.0128%" height="15" fill="rgb(230,164,19)" fg:x="4981" fg:w="3"/><text x="21.4746%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.2246%" y="1813" width="0.0128%" height="15" fill="rgb(221,9,41)" fg:x="4981" fg:w="3"/><text x="21.4746%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2246%" y="1797" width="0.0128%" height="15" fill="rgb(216,93,0)" fg:x="4981" fg:w="3"/><text x="21.4746%" y="1807.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.2374%" y="1813" width="0.0170%" height="15" fill="rgb(235,113,9)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.2374%" y="1797" width="0.0170%" height="15" fill="rgb(209,224,10)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.2374%" y="1781" width="0.0170%" height="15" fill="rgb(226,54,34)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.2374%" y="1765" width="0.0170%" height="15" fill="rgb(222,60,8)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.2374%" y="1749" width="0.0170%" height="15" fill="rgb(248,228,41)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.2374%" y="1733" width="0.0170%" height="15" fill="rgb(226,31,32)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.2374%" y="1717" width="0.0170%" height="15" fill="rgb(242,132,49)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.2374%" y="1701" width="0.0170%" height="15" fill="rgb(224,194,19)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.2374%" y="1685" width="0.0170%" height="15" fill="rgb(232,200,51)" fg:x="4984" fg:w="4"/><text x="21.4874%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2417%" y="1669" width="0.0128%" height="15" fill="rgb(235,60,46)" fg:x="4985" fg:w="3"/><text x="21.4917%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.2417%" y="1653" width="0.0128%" height="15" fill="rgb(240,109,52)" fg:x="4985" fg:w="3"/><text x="21.4917%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="21.2374%" y="1829" width="0.0256%" height="15" fill="rgb(215,78,37)" fg:x="4984" fg:w="6"/><text x="21.4874%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="21.2630%" y="1781" width="0.0128%" height="15" fill="rgb(225,141,7)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2630%" y="1765" width="0.0128%" height="15" fill="rgb(216,102,54)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2630%" y="1749" width="0.0128%" height="15" fill="rgb(238,143,13)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.2630%" y="1733" width="0.0128%" height="15" fill="rgb(219,45,51)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.2630%" y="1717" width="0.0128%" height="15" fill="rgb(242,105,46)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.2630%" y="1701" width="0.0128%" height="15" fill="rgb(206,154,49)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.2630%" y="1685" width="0.0128%" height="15" fill="rgb(239,215,4)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.2630%" y="1669" width="0.0128%" height="15" fill="rgb(238,82,17)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.2630%" y="1653" width="0.0128%" height="15" fill="rgb(242,49,30)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.2630%" y="1637" width="0.0128%" height="15" fill="rgb(248,5,16)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.2630%" y="1621" width="0.0128%" height="15" fill="rgb(237,138,32)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2630%" y="1605" width="0.0128%" height="15" fill="rgb(235,79,45)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.2630%" y="1589" width="0.0128%" height="15" fill="rgb(213,105,25)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.2630%" y="1573" width="0.0128%" height="15" fill="rgb(251,131,7)" fg:x="4990" fg:w="3"/><text x="21.5130%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="21.2374%" y="1893" width="0.0469%" height="15" fill="rgb(211,155,7)" fg:x="4984" fg:w="11"/><text x="21.4874%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="21.2374%" y="1877" width="0.0469%" height="15" fill="rgb(243,70,15)" fg:x="4984" fg:w="11"/><text x="21.4874%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="21.2374%" y="1861" width="0.0469%" height="15" fill="rgb(215,171,2)" fg:x="4984" fg:w="11"/><text x="21.4874%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="21.2374%" y="1845" width="0.0469%" height="15" fill="rgb(244,121,35)" fg:x="4984" fg:w="11"/><text x="21.4874%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="21.2630%" y="1829" width="0.0213%" height="15" fill="rgb(249,147,17)" fg:x="4990" fg:w="5"/><text x="21.5130%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="21.2630%" y="1813" width="0.0213%" height="15" fill="rgb(241,193,52)" fg:x="4990" fg:w="5"/><text x="21.5130%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="21.2630%" y="1797" width="0.0213%" height="15" fill="rgb(217,159,39)" fg:x="4990" fg:w="5"/><text x="21.5130%" y="1807.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.2843%" y="1749" width="0.0128%" height="15" fill="rgb(248,110,0)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.2843%" y="1733" width="0.0128%" height="15" fill="rgb(233,227,0)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.2843%" y="1717" width="0.0128%" height="15" fill="rgb(252,55,2)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.2843%" y="1701" width="0.0128%" height="15" fill="rgb(224,194,24)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.2843%" y="1685" width="0.0128%" height="15" fill="rgb(247,5,33)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.2843%" y="1669" width="0.0128%" height="15" fill="rgb(242,66,47)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2843%" y="1653" width="0.0128%" height="15" fill="rgb(213,107,12)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.2843%" y="1637" width="0.0128%" height="15" fill="rgb(206,131,1)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.2843%" y="1621" width="0.0128%" height="15" fill="rgb(214,9,36)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.2843%" y="1605" width="0.0128%" height="15" fill="rgb(251,215,18)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.2843%" y="1589" width="0.0128%" height="15" fill="rgb(251,64,9)" fg:x="4995" fg:w="3"/><text x="21.5343%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="21.2843%" y="1765" width="0.0213%" height="15" fill="rgb(235,68,21)" fg:x="4995" fg:w="5"/><text x="21.5343%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="21.3056%" y="1717" width="0.0128%" height="15" fill="rgb(240,69,38)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.3056%" y="1701" width="0.0128%" height="15" fill="rgb(231,18,27)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.3056%" y="1685" width="0.0128%" height="15" fill="rgb(215,154,25)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.3056%" y="1669" width="0.0128%" height="15" fill="rgb(224,33,46)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.3056%" y="1653" width="0.0128%" height="15" fill="rgb(248,191,53)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.3056%" y="1637" width="0.0128%" height="15" fill="rgb(231,3,37)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.3056%" y="1621" width="0.0128%" height="15" fill="rgb(209,152,2)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.3056%" y="1605" width="0.0128%" height="15" fill="rgb(212,208,43)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.3056%" y="1589" width="0.0128%" height="15" fill="rgb(208,60,49)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.3056%" y="1573" width="0.0128%" height="15" fill="rgb(245,135,6)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.3056%" y="1557" width="0.0128%" height="15" fill="rgb(243,86,23)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.3056%" y="1541" width="0.0128%" height="15" fill="rgb(223,7,20)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.3056%" y="1525" width="0.0128%" height="15" fill="rgb(212,182,17)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.3056%" y="1509" width="0.0128%" height="15" fill="rgb(237,94,50)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.3056%" y="1493" width="0.0128%" height="15" fill="rgb(232,185,44)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.3056%" y="1477" width="0.0128%" height="15" fill="rgb(205,50,36)" fg:x="5000" fg:w="3"/><text x="21.5556%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (128 samples, 0.55%)</title><rect x="20.7815%" y="2709" width="0.5454%" height="15" fill="rgb(252,32,32)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (128 samples, 0.55%)</title><rect x="20.7815%" y="2693" width="0.5454%" height="15" fill="rgb(241,123,33)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (128 samples, 0.55%)</title><rect x="20.7815%" y="2677" width="0.5454%" height="15" fill="rgb(212,140,16)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (128 samples, 0.55%)</title><rect x="20.7815%" y="2661" width="0.5454%" height="15" fill="rgb(247,132,5)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (128 samples, 0.55%)</title><rect x="20.7815%" y="2645" width="0.5454%" height="15" fill="rgb(209,137,38)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (128 samples, 0.55%)</title><rect x="20.7815%" y="2629" width="0.5454%" height="15" fill="rgb(248,32,42)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (128 samples, 0.55%)</title><rect x="20.7815%" y="2613" width="0.5454%" height="15" fill="rgb(216,188,40)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (128 samples, 0.55%)</title><rect x="20.7815%" y="2597" width="0.5454%" height="15" fill="rgb(209,127,53)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2607.50"></text></g><g><title>std::panicking::try (128 samples, 0.55%)</title><rect x="20.7815%" y="2581" width="0.5454%" height="15" fill="rgb(254,162,9)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (128 samples, 0.55%)</title><rect x="20.7815%" y="2565" width="0.5454%" height="15" fill="rgb(219,183,10)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (128 samples, 0.55%)</title><rect x="20.7815%" y="2549" width="0.5454%" height="15" fill="rgb(217,192,21)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (128 samples, 0.55%)</title><rect x="20.7815%" y="2533" width="0.5454%" height="15" fill="rgb(251,89,27)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (128 samples, 0.55%)</title><rect x="20.7815%" y="2517" width="0.5454%" height="15" fill="rgb(253,55,28)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (128 samples, 0.55%)</title><rect x="20.7815%" y="2501" width="0.5454%" height="15" fill="rgb(216,159,8)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (128 samples, 0.55%)</title><rect x="20.7815%" y="2485" width="0.5454%" height="15" fill="rgb(231,228,44)" fg:x="4877" fg:w="128"/><text x="21.0315%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (126 samples, 0.54%)</title><rect x="20.7900%" y="2469" width="0.5369%" height="15" fill="rgb(247,34,48)" fg:x="4879" fg:w="126"/><text x="21.0400%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (126 samples, 0.54%)</title><rect x="20.7900%" y="2453" width="0.5369%" height="15" fill="rgb(247,222,18)" fg:x="4879" fg:w="126"/><text x="21.0400%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (126 samples, 0.54%)</title><rect x="20.7900%" y="2437" width="0.5369%" height="15" fill="rgb(227,49,4)" fg:x="4879" fg:w="126"/><text x="21.0400%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (112 samples, 0.48%)</title><rect x="20.8497%" y="2421" width="0.4772%" height="15" fill="rgb(219,189,53)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (112 samples, 0.48%)</title><rect x="20.8497%" y="2405" width="0.4772%" height="15" fill="rgb(241,160,53)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2415.50"></text></g><g><title>std::panicking::try (112 samples, 0.48%)</title><rect x="20.8497%" y="2389" width="0.4772%" height="15" fill="rgb(227,115,4)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (112 samples, 0.48%)</title><rect x="20.8497%" y="2373" width="0.4772%" height="15" fill="rgb(215,28,28)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (112 samples, 0.48%)</title><rect x="20.8497%" y="2357" width="0.4772%" height="15" fill="rgb(237,143,40)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (112 samples, 0.48%)</title><rect x="20.8497%" y="2341" width="0.4772%" height="15" fill="rgb(205,107,24)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (112 samples, 0.48%)</title><rect x="20.8497%" y="2325" width="0.4772%" height="15" fill="rgb(209,112,35)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (112 samples, 0.48%)</title><rect x="20.8497%" y="2309" width="0.4772%" height="15" fill="rgb(206,135,5)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (112 samples, 0.48%)</title><rect x="20.8497%" y="2293" width="0.4772%" height="15" fill="rgb(227,217,38)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (112 samples, 0.48%)</title><rect x="20.8497%" y="2277" width="0.4772%" height="15" fill="rgb(205,0,41)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (112 samples, 0.48%)</title><rect x="20.8497%" y="2261" width="0.4772%" height="15" fill="rgb(220,20,40)" fg:x="4893" fg:w="112"/><text x="21.0997%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (41 samples, 0.17%)</title><rect x="21.1522%" y="2245" width="0.1747%" height="15" fill="rgb(216,145,3)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (41 samples, 0.17%)</title><rect x="21.1522%" y="2229" width="0.1747%" height="15" fill="rgb(207,130,51)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2239.50"></text></g><g><title>std::panicking::try (41 samples, 0.17%)</title><rect x="21.1522%" y="2213" width="0.1747%" height="15" fill="rgb(252,93,13)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (41 samples, 0.17%)</title><rect x="21.1522%" y="2197" width="0.1747%" height="15" fill="rgb(210,105,15)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (41 samples, 0.17%)</title><rect x="21.1522%" y="2181" width="0.1747%" height="15" fill="rgb(212,126,31)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (41 samples, 0.17%)</title><rect x="21.1522%" y="2165" width="0.1747%" height="15" fill="rgb(241,167,46)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (41 samples, 0.17%)</title><rect x="21.1522%" y="2149" width="0.1747%" height="15" fill="rgb(217,143,19)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.17%)</title><rect x="21.1522%" y="2133" width="0.1747%" height="15" fill="rgb(235,117,33)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (41 samples, 0.17%)</title><rect x="21.1522%" y="2117" width="0.1747%" height="15" fill="rgb(247,95,6)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.17%)</title><rect x="21.1522%" y="2101" width="0.1747%" height="15" fill="rgb(243,206,43)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (41 samples, 0.17%)</title><rect x="21.1522%" y="2085" width="0.1747%" height="15" fill="rgb(229,65,54)" fg:x="4964" fg:w="41"/><text x="21.4022%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="21.2374%" y="2069" width="0.0895%" height="15" fill="rgb(247,137,34)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="21.2374%" y="2053" width="0.0895%" height="15" fill="rgb(245,174,44)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="2063.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="21.2374%" y="2037" width="0.0895%" height="15" fill="rgb(223,64,15)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="21.2374%" y="2021" width="0.0895%" height="15" fill="rgb(243,153,36)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="21.2374%" y="2005" width="0.0895%" height="15" fill="rgb(252,23,4)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="21.2374%" y="1989" width="0.0895%" height="15" fill="rgb(209,132,13)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="21.2374%" y="1973" width="0.0895%" height="15" fill="rgb(209,196,21)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="21.2374%" y="1957" width="0.0895%" height="15" fill="rgb(252,197,1)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="21.2374%" y="1941" width="0.0895%" height="15" fill="rgb(229,42,46)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="21.2374%" y="1925" width="0.0895%" height="15" fill="rgb(219,85,8)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="21.2374%" y="1909" width="0.0895%" height="15" fill="rgb(223,185,14)" fg:x="4984" fg:w="21"/><text x="21.4874%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="21.2843%" y="1893" width="0.0426%" height="15" fill="rgb(217,196,18)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="21.2843%" y="1877" width="0.0426%" height="15" fill="rgb(220,122,37)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1887.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="21.2843%" y="1861" width="0.0426%" height="15" fill="rgb(236,135,33)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="21.2843%" y="1845" width="0.0426%" height="15" fill="rgb(222,86,54)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="21.2843%" y="1829" width="0.0426%" height="15" fill="rgb(227,42,22)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="21.2843%" y="1813" width="0.0426%" height="15" fill="rgb(243,101,27)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="21.2843%" y="1797" width="0.0426%" height="15" fill="rgb(229,100,8)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="21.2843%" y="1781" width="0.0426%" height="15" fill="rgb(252,68,10)" fg:x="4995" fg:w="10"/><text x="21.5343%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="21.3056%" y="1765" width="0.0213%" height="15" fill="rgb(219,19,31)" fg:x="5000" fg:w="5"/><text x="21.5556%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="21.3056%" y="1749" width="0.0213%" height="15" fill="rgb(246,150,44)" fg:x="5000" fg:w="5"/><text x="21.5556%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="21.3056%" y="1733" width="0.0213%" height="15" fill="rgb(211,14,39)" fg:x="5000" fg:w="5"/><text x="21.5556%" y="1743.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="21.3269%" y="2389" width="0.0128%" height="15" fill="rgb(221,98,29)" fg:x="5005" fg:w="3"/><text x="21.5769%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="21.3269%" y="2373" width="0.0128%" height="15" fill="rgb(221,70,26)" fg:x="5005" fg:w="3"/><text x="21.5769%" y="2383.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="21.3397%" y="2389" width="0.0128%" height="15" fill="rgb(236,146,30)" fg:x="5008" fg:w="3"/><text x="21.5897%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="21.3397%" y="2373" width="0.0128%" height="15" fill="rgb(226,94,34)" fg:x="5008" fg:w="3"/><text x="21.5897%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="21.3269%" y="2405" width="0.0341%" height="15" fill="rgb(248,132,21)" fg:x="5005" fg:w="8"/><text x="21.5769%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="21.3269%" y="2565" width="0.0384%" height="15" fill="rgb(245,43,50)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="21.3269%" y="2549" width="0.0384%" height="15" fill="rgb(245,132,31)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="21.3269%" y="2533" width="0.0384%" height="15" fill="rgb(230,171,4)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="21.3269%" y="2517" width="0.0384%" height="15" fill="rgb(235,6,45)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="21.3269%" y="2501" width="0.0384%" height="15" fill="rgb(220,80,28)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="21.3269%" y="2485" width="0.0384%" height="15" fill="rgb(242,171,9)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="21.3269%" y="2469" width="0.0384%" height="15" fill="rgb(214,135,29)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="21.3269%" y="2453" width="0.0384%" height="15" fill="rgb(221,229,16)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="21.3269%" y="2437" width="0.0384%" height="15" fill="rgb(253,59,46)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="21.3269%" y="2421" width="0.0384%" height="15" fill="rgb(250,147,20)" fg:x="5005" fg:w="9"/><text x="21.5769%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.06%)</title><rect x="21.3269%" y="2581" width="0.0554%" height="15" fill="rgb(236,64,48)" fg:x="5005" fg:w="13"/><text x="21.5769%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.3653%" y="2565" width="0.0170%" height="15" fill="rgb(240,37,42)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2575.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.3653%" y="2549" width="0.0170%" height="15" fill="rgb(220,41,50)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.3653%" y="2533" width="0.0170%" height="15" fill="rgb(216,51,14)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="21.3653%" y="2517" width="0.0170%" height="15" fill="rgb(215,83,10)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="21.3653%" y="2501" width="0.0170%" height="15" fill="rgb(206,144,17)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="21.3653%" y="2485" width="0.0170%" height="15" fill="rgb(219,196,37)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="21.3653%" y="2469" width="0.0170%" height="15" fill="rgb(226,135,26)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2479.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="21.3653%" y="2453" width="0.0170%" height="15" fill="rgb(237,195,40)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="21.3653%" y="2437" width="0.0170%" height="15" fill="rgb(228,182,42)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2447.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="21.3653%" y="2421" width="0.0170%" height="15" fill="rgb(224,135,50)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="21.3653%" y="2405" width="0.0170%" height="15" fill="rgb(236,215,34)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="21.3653%" y="2389" width="0.0170%" height="15" fill="rgb(244,213,27)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="21.3653%" y="2373" width="0.0170%" height="15" fill="rgb(233,37,53)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="21.3653%" y="2357" width="0.0170%" height="15" fill="rgb(222,132,14)" fg:x="5014" fg:w="4"/><text x="21.6153%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="21.3823%" y="2469" width="0.0213%" height="15" fill="rgb(219,202,29)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="21.3823%" y="2453" width="0.0213%" height="15" fill="rgb(226,157,39)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="21.3823%" y="2437" width="0.0213%" height="15" fill="rgb(235,213,2)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="21.3823%" y="2421" width="0.0213%" height="15" fill="rgb(250,121,2)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="21.3823%" y="2405" width="0.0213%" height="15" fill="rgb(206,192,33)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="21.3823%" y="2389" width="0.0213%" height="15" fill="rgb(240,161,6)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="21.3823%" y="2373" width="0.0213%" height="15" fill="rgb(246,53,30)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="21.3823%" y="2357" width="0.0213%" height="15" fill="rgb(219,123,43)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="21.3823%" y="2341" width="0.0213%" height="15" fill="rgb(236,53,49)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="21.3823%" y="2325" width="0.0213%" height="15" fill="rgb(241,156,1)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="21.3823%" y="2309" width="0.0213%" height="15" fill="rgb(209,73,26)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="21.3823%" y="2293" width="0.0213%" height="15" fill="rgb(206,114,3)" fg:x="5018" fg:w="5"/><text x="21.6323%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="21.4036%" y="2357" width="0.0213%" height="15" fill="rgb(230,214,9)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="21.4036%" y="2341" width="0.0213%" height="15" fill="rgb(240,184,46)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="21.4036%" y="2325" width="0.0213%" height="15" fill="rgb(242,169,54)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="21.4036%" y="2309" width="0.0213%" height="15" fill="rgb(207,168,50)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="21.4036%" y="2293" width="0.0213%" height="15" fill="rgb(240,114,2)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="21.4036%" y="2277" width="0.0213%" height="15" fill="rgb(211,17,40)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="21.4036%" y="2261" width="0.0213%" height="15" fill="rgb(235,97,36)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="21.4036%" y="2245" width="0.0213%" height="15" fill="rgb(208,164,11)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="21.4036%" y="2229" width="0.0213%" height="15" fill="rgb(242,11,17)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="21.4036%" y="2213" width="0.0213%" height="15" fill="rgb(215,86,33)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="21.4036%" y="2197" width="0.0213%" height="15" fill="rgb(245,185,28)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="21.4036%" y="2181" width="0.0213%" height="15" fill="rgb(231,89,42)" fg:x="5023" fg:w="5"/><text x="21.6536%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="21.4036%" y="2421" width="0.0426%" height="15" fill="rgb(210,18,47)" fg:x="5023" fg:w="10"/><text x="21.6536%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="21.4036%" y="2405" width="0.0426%" height="15" fill="rgb(214,84,8)" fg:x="5023" fg:w="10"/><text x="21.6536%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="21.4036%" y="2389" width="0.0426%" height="15" fill="rgb(214,222,23)" fg:x="5023" fg:w="10"/><text x="21.6536%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="21.4036%" y="2373" width="0.0426%" height="15" fill="rgb(213,104,21)" fg:x="5023" fg:w="10"/><text x="21.6536%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="21.4249%" y="2357" width="0.0213%" height="15" fill="rgb(238,138,6)" fg:x="5028" fg:w="5"/><text x="21.6749%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="21.4249%" y="2341" width="0.0213%" height="15" fill="rgb(205,167,50)" fg:x="5028" fg:w="5"/><text x="21.6749%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="21.4249%" y="2325" width="0.0213%" height="15" fill="rgb(230,105,27)" fg:x="5028" fg:w="5"/><text x="21.6749%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="21.4292%" y="2309" width="0.0170%" height="15" fill="rgb(222,97,48)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="21.4292%" y="2293" width="0.0170%" height="15" fill="rgb(222,197,14)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2303.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="21.4292%" y="2277" width="0.0170%" height="15" fill="rgb(210,105,47)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="21.4292%" y="2261" width="0.0170%" height="15" fill="rgb(238,158,19)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="21.4292%" y="2245" width="0.0170%" height="15" fill="rgb(226,176,23)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="21.4292%" y="2229" width="0.0170%" height="15" fill="rgb(208,79,31)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.4292%" y="2213" width="0.0170%" height="15" fill="rgb(221,154,21)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.4292%" y="2197" width="0.0170%" height="15" fill="rgb(213,61,41)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.4292%" y="2181" width="0.0170%" height="15" fill="rgb(215,28,33)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.4292%" y="2165" width="0.0170%" height="15" fill="rgb(231,139,26)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.4292%" y="2149" width="0.0170%" height="15" fill="rgb(232,159,16)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.4292%" y="2133" width="0.0170%" height="15" fill="rgb(233,80,10)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.4292%" y="2117" width="0.0170%" height="15" fill="rgb(208,147,29)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.4292%" y="2101" width="0.0170%" height="15" fill="rgb(213,10,12)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.4292%" y="2085" width="0.0170%" height="15" fill="rgb(231,218,13)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.4292%" y="2069" width="0.0170%" height="15" fill="rgb(244,199,44)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.4292%" y="2053" width="0.0170%" height="15" fill="rgb(240,144,53)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.4292%" y="2037" width="0.0170%" height="15" fill="rgb(223,57,28)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.4292%" y="2021" width="0.0170%" height="15" fill="rgb(213,134,38)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="21.4292%" y="2005" width="0.0170%" height="15" fill="rgb(251,182,42)" fg:x="5029" fg:w="4"/><text x="21.6792%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="21.4462%" y="1957" width="0.0256%" height="15" fill="rgb(229,93,13)" fg:x="5033" fg:w="6"/><text x="21.6962%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="21.4462%" y="1941" width="0.0256%" height="15" fill="rgb(234,171,3)" fg:x="5033" fg:w="6"/><text x="21.6962%" y="1951.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="21.4505%" y="1925" width="0.0213%" height="15" fill="rgb(241,105,32)" fg:x="5034" fg:w="5"/><text x="21.7005%" y="1935.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="21.4505%" y="1909" width="0.0213%" height="15" fill="rgb(221,66,3)" fg:x="5034" fg:w="5"/><text x="21.7005%" y="1919.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="21.4505%" y="1893" width="0.0213%" height="15" fill="rgb(248,155,29)" fg:x="5034" fg:w="5"/><text x="21.7005%" y="1903.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="21.4505%" y="1877" width="0.0213%" height="15" fill="rgb(231,31,5)" fg:x="5034" fg:w="5"/><text x="21.7005%" y="1887.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="21.4505%" y="1861" width="0.0213%" height="15" fill="rgb(213,188,31)" fg:x="5034" fg:w="5"/><text x="21.7005%" y="1871.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="21.4505%" y="1845" width="0.0213%" height="15" fill="rgb(212,104,33)" fg:x="5034" fg:w="5"/><text x="21.7005%" y="1855.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="21.4505%" y="1829" width="0.0213%" height="15" fill="rgb(254,77,51)" fg:x="5034" fg:w="5"/><text x="21.7005%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="21.4718%" y="1029" width="0.0128%" height="15" fill="rgb(234,39,26)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="1039.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="21.4718%" y="1013" width="0.0128%" height="15" fill="rgb(208,88,36)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="21.4718%" y="997" width="0.0128%" height="15" fill="rgb(243,222,10)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="1007.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="21.4718%" y="981" width="0.0128%" height="15" fill="rgb(218,133,52)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="991.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="21.4718%" y="965" width="0.0128%" height="15" fill="rgb(222,25,26)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="975.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="21.4718%" y="949" width="0.0128%" height="15" fill="rgb(243,174,24)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="959.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.4718%" y="933" width="0.0128%" height="15" fill="rgb(233,188,52)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="943.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.4718%" y="917" width="0.0128%" height="15" fill="rgb(208,89,14)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="927.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.4718%" y="901" width="0.0128%" height="15" fill="rgb(205,204,21)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="911.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.4718%" y="885" width="0.0128%" height="15" fill="rgb(246,39,28)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="895.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.4718%" y="869" width="0.0128%" height="15" fill="rgb(235,71,19)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="879.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="853" width="0.0128%" height="15" fill="rgb(211,62,39)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="837" width="0.0128%" height="15" fill="rgb(246,118,20)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="821" width="0.0128%" height="15" fill="rgb(230,82,12)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.4718%" y="805" width="0.0128%" height="15" fill="rgb(205,212,34)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="815.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.4718%" y="789" width="0.0128%" height="15" fill="rgb(239,90,1)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.4718%" y="773" width="0.0128%" height="15" fill="rgb(225,198,50)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="757" width="0.0128%" height="15" fill="rgb(227,208,48)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.4718%" y="741" width="0.0128%" height="15" fill="rgb(238,134,41)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="751.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.4718%" y="725" width="0.0128%" height="15" fill="rgb(241,58,39)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="735.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.4718%" y="709" width="0.0128%" height="15" fill="rgb(214,126,4)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="719.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.4718%" y="693" width="0.0128%" height="15" fill="rgb(235,149,4)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.4718%" y="677" width="0.0128%" height="15" fill="rgb(236,59,29)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="661" width="0.0128%" height="15" fill="rgb(246,11,33)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="645" width="0.0128%" height="15" fill="rgb(232,180,35)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.4718%" y="629" width="0.0128%" height="15" fill="rgb(220,35,37)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.4718%" y="613" width="0.0128%" height="15" fill="rgb(238,107,48)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="623.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.4718%" y="597" width="0.0128%" height="15" fill="rgb(205,65,21)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.4718%" y="581" width="0.0128%" height="15" fill="rgb(246,138,48)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.4718%" y="565" width="0.0128%" height="15" fill="rgb(209,220,47)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="575.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.4718%" y="549" width="0.0128%" height="15" fill="rgb(222,162,49)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.4718%" y="533" width="0.0128%" height="15" fill="rgb(243,123,11)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.4718%" y="517" width="0.0128%" height="15" fill="rgb(221,229,41)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="527.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="501" width="0.0128%" height="15" fill="rgb(216,68,4)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.4718%" y="485" width="0.0128%" height="15" fill="rgb(207,88,35)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="495.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.4718%" y="469" width="0.0128%" height="15" fill="rgb(252,2,5)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4718%" y="453" width="0.0128%" height="15" fill="rgb(209,173,7)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="463.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.4718%" y="437" width="0.0128%" height="15" fill="rgb(210,198,52)" fg:x="5039" fg:w="3"/><text x="21.7218%" y="447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="21.4718%" y="1317" width="0.0256%" height="15" fill="rgb(228,152,32)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1327.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="21.4718%" y="1301" width="0.0256%" height="15" fill="rgb(249,98,29)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1311.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="21.4718%" y="1285" width="0.0256%" height="15" fill="rgb(205,148,48)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1295.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="21.4718%" y="1269" width="0.0256%" height="15" fill="rgb(236,69,34)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1279.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="21.4718%" y="1253" width="0.0256%" height="15" fill="rgb(220,151,41)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1263.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="21.4718%" y="1237" width="0.0256%" height="15" fill="rgb(254,106,24)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="21.4718%" y="1221" width="0.0256%" height="15" fill="rgb(210,37,48)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="21.4718%" y="1205" width="0.0256%" height="15" fill="rgb(254,131,5)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1215.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="21.4718%" y="1189" width="0.0256%" height="15" fill="rgb(216,55,41)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="21.4718%" y="1173" width="0.0256%" height="15" fill="rgb(250,35,31)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="21.4718%" y="1157" width="0.0256%" height="15" fill="rgb(207,124,33)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1167.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="21.4718%" y="1141" width="0.0256%" height="15" fill="rgb(249,175,17)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="21.4718%" y="1125" width="0.0256%" height="15" fill="rgb(224,175,39)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="21.4718%" y="1109" width="0.0256%" height="15" fill="rgb(208,67,49)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="21.4718%" y="1093" width="0.0256%" height="15" fill="rgb(222,188,41)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="21.4718%" y="1077" width="0.0256%" height="15" fill="rgb(243,213,30)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="21.4718%" y="1061" width="0.0256%" height="15" fill="rgb(253,100,45)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="21.4718%" y="1045" width="0.0256%" height="15" fill="rgb(226,24,44)" fg:x="5039" fg:w="6"/><text x="21.7218%" y="1055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.4846%" y="1029" width="0.0128%" height="15" fill="rgb(215,41,24)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="1039.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.4846%" y="1013" width="0.0128%" height="15" fill="rgb(254,53,33)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="1023.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.4846%" y="997" width="0.0128%" height="15" fill="rgb(242,103,10)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="1007.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.4846%" y="981" width="0.0128%" height="15" fill="rgb(246,29,21)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.4846%" y="965" width="0.0128%" height="15" fill="rgb(251,154,1)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4846%" y="949" width="0.0128%" height="15" fill="rgb(254,212,26)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4846%" y="933" width="0.0128%" height="15" fill="rgb(251,187,46)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.4846%" y="917" width="0.0128%" height="15" fill="rgb(224,208,14)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="927.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.4846%" y="901" width="0.0128%" height="15" fill="rgb(222,176,26)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="911.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.4846%" y="885" width="0.0128%" height="15" fill="rgb(241,219,52)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="895.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.4846%" y="869" width="0.0128%" height="15" fill="rgb(252,198,21)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="879.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.4846%" y="853" width="0.0128%" height="15" fill="rgb(244,196,23)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="863.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.4846%" y="837" width="0.0128%" height="15" fill="rgb(239,121,44)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="847.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.4846%" y="821" width="0.0128%" height="15" fill="rgb(249,203,23)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="831.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.4846%" y="805" width="0.0128%" height="15" fill="rgb(238,219,10)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="815.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4846%" y="789" width="0.0128%" height="15" fill="rgb(241,35,46)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="799.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.4846%" y="773" width="0.0128%" height="15" fill="rgb(218,28,6)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="783.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.4846%" y="757" width="0.0128%" height="15" fill="rgb(233,151,50)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="767.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4846%" y="741" width="0.0128%" height="15" fill="rgb(208,57,8)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="751.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.4846%" y="725" width="0.0128%" height="15" fill="rgb(253,99,10)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="735.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="21.4846%" y="709" width="0.0128%" height="15" fill="rgb(237,196,49)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="719.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="21.4846%" y="693" width="0.0128%" height="15" fill="rgb(209,51,3)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="21.4846%" y="677" width="0.0128%" height="15" fill="rgb(238,129,10)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="687.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="21.4846%" y="661" width="0.0128%" height="15" fill="rgb(246,201,16)" fg:x="5042" fg:w="3"/><text x="21.7346%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="21.4718%" y="1781" width="0.0384%" height="15" fill="rgb(250,160,20)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="21.4718%" y="1765" width="0.0384%" height="15" fill="rgb(251,107,25)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="21.4718%" y="1749" width="0.0384%" height="15" fill="rgb(212,103,39)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="21.4718%" y="1733" width="0.0384%" height="15" fill="rgb(207,9,29)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="21.4718%" y="1717" width="0.0384%" height="15" fill="rgb(227,84,3)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="21.4718%" y="1701" width="0.0384%" height="15" fill="rgb(242,194,7)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="21.4718%" y="1685" width="0.0384%" height="15" fill="rgb(230,40,4)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="21.4718%" y="1669" width="0.0384%" height="15" fill="rgb(243,229,33)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1679.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="21.4718%" y="1653" width="0.0384%" height="15" fill="rgb(240,65,24)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="21.4718%" y="1637" width="0.0384%" height="15" fill="rgb(212,28,20)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="21.4718%" y="1621" width="0.0384%" height="15" fill="rgb(209,72,3)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="21.4718%" y="1605" width="0.0384%" height="15" fill="rgb(238,170,36)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="21.4718%" y="1589" width="0.0384%" height="15" fill="rgb(236,19,38)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="21.4718%" y="1573" width="0.0384%" height="15" fill="rgb(230,67,43)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="21.4718%" y="1557" width="0.0384%" height="15" fill="rgb(227,14,36)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="21.4718%" y="1541" width="0.0384%" height="15" fill="rgb(247,171,49)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="21.4718%" y="1525" width="0.0384%" height="15" fill="rgb(235,164,51)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="21.4718%" y="1509" width="0.0384%" height="15" fill="rgb(246,107,20)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="21.4718%" y="1493" width="0.0384%" height="15" fill="rgb(226,88,18)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="21.4718%" y="1477" width="0.0384%" height="15" fill="rgb(235,136,9)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1487.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="21.4718%" y="1461" width="0.0384%" height="15" fill="rgb(209,3,34)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="21.4718%" y="1445" width="0.0384%" height="15" fill="rgb(213,38,19)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="21.4718%" y="1429" width="0.0384%" height="15" fill="rgb(254,24,24)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="21.4718%" y="1413" width="0.0384%" height="15" fill="rgb(219,122,42)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="21.4718%" y="1397" width="0.0384%" height="15" fill="rgb(205,128,31)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="21.4718%" y="1381" width="0.0384%" height="15" fill="rgb(212,142,0)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="21.4718%" y="1365" width="0.0384%" height="15" fill="rgb(211,25,35)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="21.4718%" y="1349" width="0.0384%" height="15" fill="rgb(220,150,53)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="21.4718%" y="1333" width="0.0384%" height="15" fill="rgb(220,30,24)" fg:x="5039" fg:w="9"/><text x="21.7218%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.4974%" y="1317" width="0.0128%" height="15" fill="rgb(218,86,23)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.4974%" y="1301" width="0.0128%" height="15" fill="rgb(206,62,27)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1311.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.4974%" y="1285" width="0.0128%" height="15" fill="rgb(249,174,0)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.4974%" y="1269" width="0.0128%" height="15" fill="rgb(246,67,27)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.4974%" y="1253" width="0.0128%" height="15" fill="rgb(250,195,30)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4974%" y="1237" width="0.0128%" height="15" fill="rgb(251,171,50)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4974%" y="1221" width="0.0128%" height="15" fill="rgb(236,196,10)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.4974%" y="1205" width="0.0128%" height="15" fill="rgb(249,228,52)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.4974%" y="1189" width="0.0128%" height="15" fill="rgb(219,60,51)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1199.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.4974%" y="1173" width="0.0128%" height="15" fill="rgb(240,198,24)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.4974%" y="1157" width="0.0128%" height="15" fill="rgb(240,192,40)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1167.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.4974%" y="1141" width="0.0128%" height="15" fill="rgb(219,118,5)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1151.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.4974%" y="1125" width="0.0128%" height="15" fill="rgb(205,202,34)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1135.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.4974%" y="1109" width="0.0128%" height="15" fill="rgb(234,153,26)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1119.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.4974%" y="1093" width="0.0128%" height="15" fill="rgb(229,26,29)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1103.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4974%" y="1077" width="0.0128%" height="15" fill="rgb(237,115,21)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1087.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.4974%" y="1061" width="0.0128%" height="15" fill="rgb(252,144,15)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1071.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.4974%" y="1045" width="0.0128%" height="15" fill="rgb(232,26,13)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.4974%" y="1029" width="0.0128%" height="15" fill="rgb(206,44,19)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1039.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.4974%" y="1013" width="0.0128%" height="15" fill="rgb(249,159,2)" fg:x="5045" fg:w="3"/><text x="21.7474%" y="1023.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="21.5101%" y="1605" width="0.0170%" height="15" fill="rgb(231,5,32)" fg:x="5048" fg:w="4"/><text x="21.7601%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="21.5101%" y="1589" width="0.0170%" height="15" fill="rgb(249,210,18)" fg:x="5048" fg:w="4"/><text x="21.7601%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.5101%" y="1573" width="0.0170%" height="15" fill="rgb(215,223,36)" fg:x="5048" fg:w="4"/><text x="21.7601%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.5101%" y="1557" width="0.0170%" height="15" fill="rgb(245,185,20)" fg:x="5048" fg:w="4"/><text x="21.7601%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.5101%" y="1541" width="0.0170%" height="15" fill="rgb(206,224,11)" fg:x="5048" fg:w="4"/><text x="21.7601%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.5101%" y="1525" width="0.0170%" height="15" fill="rgb(248,73,42)" fg:x="5048" fg:w="4"/><text x="21.7601%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.5101%" y="1509" width="0.0170%" height="15" fill="rgb(219,149,31)" fg:x="5048" fg:w="4"/><text x="21.7601%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.5144%" y="1493" width="0.0128%" height="15" fill="rgb(243,104,17)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.5144%" y="1477" width="0.0128%" height="15" fill="rgb(244,117,33)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.5144%" y="1461" width="0.0128%" height="15" fill="rgb(251,25,47)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.5144%" y="1445" width="0.0128%" height="15" fill="rgb(249,70,13)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.5144%" y="1429" width="0.0128%" height="15" fill="rgb(217,133,18)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.5144%" y="1413" width="0.0128%" height="15" fill="rgb(248,97,28)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.5144%" y="1397" width="0.0128%" height="15" fill="rgb(237,193,4)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.5144%" y="1381" width="0.0128%" height="15" fill="rgb(247,198,45)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.5144%" y="1365" width="0.0128%" height="15" fill="rgb(245,2,20)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1375.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.5144%" y="1349" width="0.0128%" height="15" fill="rgb(210,71,36)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.5144%" y="1333" width="0.0128%" height="15" fill="rgb(238,114,30)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1343.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.5144%" y="1317" width="0.0128%" height="15" fill="rgb(241,200,2)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1327.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.5144%" y="1301" width="0.0128%" height="15" fill="rgb(232,106,18)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1311.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.5144%" y="1285" width="0.0128%" height="15" fill="rgb(211,141,18)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.5144%" y="1269" width="0.0128%" height="15" fill="rgb(224,9,9)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.5144%" y="1253" width="0.0128%" height="15" fill="rgb(249,137,46)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1263.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.5144%" y="1237" width="0.0128%" height="15" fill="rgb(236,44,45)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1247.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.5144%" y="1221" width="0.0128%" height="15" fill="rgb(205,68,40)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1231.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.5144%" y="1205" width="0.0128%" height="15" fill="rgb(214,198,49)" fg:x="5049" fg:w="3"/><text x="21.7644%" y="1215.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (21 samples, 0.09%)</title><rect x="21.4462%" y="2421" width="0.0895%" height="15" fill="rgb(226,140,45)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.09%)</title><rect x="21.4462%" y="2405" width="0.0895%" height="15" fill="rgb(209,109,20)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (21 samples, 0.09%)</title><rect x="21.4462%" y="2389" width="0.0895%" height="15" fill="rgb(217,33,46)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (21 samples, 0.09%)</title><rect x="21.4462%" y="2373" width="0.0895%" height="15" fill="rgb(232,150,33)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (21 samples, 0.09%)</title><rect x="21.4462%" y="2357" width="0.0895%" height="15" fill="rgb(233,76,25)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (21 samples, 0.09%)</title><rect x="21.4462%" y="2341" width="0.0895%" height="15" fill="rgb(254,219,23)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="21.4462%" y="2325" width="0.0895%" height="15" fill="rgb(233,108,4)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="21.4462%" y="2309" width="0.0895%" height="15" fill="rgb(229,98,6)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2319.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="21.4462%" y="2293" width="0.0895%" height="15" fill="rgb(217,40,27)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="21.4462%" y="2277" width="0.0895%" height="15" fill="rgb(221,35,43)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="21.4462%" y="2261" width="0.0895%" height="15" fill="rgb(212,107,11)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (21 samples, 0.09%)</title><rect x="21.4462%" y="2245" width="0.0895%" height="15" fill="rgb(245,42,44)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="21.4462%" y="2229" width="0.0895%" height="15" fill="rgb(209,31,12)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="21.4462%" y="2213" width="0.0895%" height="15" fill="rgb(210,228,54)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="21.4462%" y="2197" width="0.0895%" height="15" fill="rgb(241,19,33)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="21.4462%" y="2181" width="0.0895%" height="15" fill="rgb(229,51,27)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="21.4462%" y="2165" width="0.0895%" height="15" fill="rgb(214,167,49)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="21.4462%" y="2149" width="0.0895%" height="15" fill="rgb(248,140,47)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="21.4462%" y="2133" width="0.0895%" height="15" fill="rgb(228,6,51)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="21.4462%" y="2117" width="0.0895%" height="15" fill="rgb(242,44,53)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2127.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="21.4462%" y="2101" width="0.0895%" height="15" fill="rgb(249,90,50)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="21.4462%" y="2085" width="0.0895%" height="15" fill="rgb(222,84,19)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="21.4462%" y="2069" width="0.0895%" height="15" fill="rgb(214,140,12)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="21.4462%" y="2053" width="0.0895%" height="15" fill="rgb(210,20,43)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="21.4462%" y="2037" width="0.0895%" height="15" fill="rgb(243,1,40)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="21.4462%" y="2021" width="0.0895%" height="15" fill="rgb(224,102,26)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="21.4462%" y="2005" width="0.0895%" height="15" fill="rgb(221,179,1)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="21.4462%" y="1989" width="0.0895%" height="15" fill="rgb(216,209,47)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="21.4462%" y="1973" width="0.0895%" height="15" fill="rgb(251,135,9)" fg:x="5033" fg:w="21"/><text x="21.6962%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="21.4718%" y="1957" width="0.0639%" height="15" fill="rgb(242,9,36)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="21.4718%" y="1941" width="0.0639%" height="15" fill="rgb(249,60,37)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1951.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="21.4718%" y="1925" width="0.0639%" height="15" fill="rgb(230,66,45)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="21.4718%" y="1909" width="0.0639%" height="15" fill="rgb(216,1,47)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="21.4718%" y="1893" width="0.0639%" height="15" fill="rgb(235,8,23)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="21.4718%" y="1877" width="0.0639%" height="15" fill="rgb(225,136,11)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="21.4718%" y="1861" width="0.0639%" height="15" fill="rgb(228,63,44)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="21.4718%" y="1845" width="0.0639%" height="15" fill="rgb(240,43,52)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="21.4718%" y="1829" width="0.0639%" height="15" fill="rgb(217,167,36)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="21.4718%" y="1813" width="0.0639%" height="15" fill="rgb(250,19,6)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="21.4718%" y="1797" width="0.0639%" height="15" fill="rgb(236,60,51)" fg:x="5039" fg:w="15"/><text x="21.7218%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="21.5101%" y="1781" width="0.0256%" height="15" fill="rgb(222,217,20)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="21.5101%" y="1765" width="0.0256%" height="15" fill="rgb(242,65,52)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1775.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="21.5101%" y="1749" width="0.0256%" height="15" fill="rgb(217,5,41)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="21.5101%" y="1733" width="0.0256%" height="15" fill="rgb(223,208,53)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="21.5101%" y="1717" width="0.0256%" height="15" fill="rgb(221,104,30)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="21.5101%" y="1701" width="0.0256%" height="15" fill="rgb(230,210,42)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="21.5101%" y="1685" width="0.0256%" height="15" fill="rgb(206,205,27)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="21.5101%" y="1669" width="0.0256%" height="15" fill="rgb(233,114,38)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="21.5101%" y="1653" width="0.0256%" height="15" fill="rgb(216,174,36)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="21.5101%" y="1637" width="0.0256%" height="15" fill="rgb(211,30,9)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="21.5101%" y="1621" width="0.0256%" height="15" fill="rgb(216,8,21)" fg:x="5048" fg:w="6"/><text x="21.7601%" y="1631.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="21.5357%" y="2101" width="0.0128%" height="15" fill="rgb(237,209,39)" fg:x="5054" fg:w="3"/><text x="21.7857%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="21.5357%" y="2085" width="0.0128%" height="15" fill="rgb(235,111,47)" fg:x="5054" fg:w="3"/><text x="21.7857%" y="2095.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="21.5357%" y="2069" width="0.0128%" height="15" fill="rgb(216,139,9)" fg:x="5054" fg:w="3"/><text x="21.7857%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="21.5357%" y="2293" width="0.0298%" height="15" fill="rgb(248,185,4)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="21.5357%" y="2277" width="0.0298%" height="15" fill="rgb(239,185,25)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="21.5357%" y="2261" width="0.0298%" height="15" fill="rgb(233,207,8)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="21.5357%" y="2245" width="0.0298%" height="15" fill="rgb(249,220,24)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="21.5357%" y="2229" width="0.0298%" height="15" fill="rgb(221,50,14)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="21.5357%" y="2213" width="0.0298%" height="15" fill="rgb(227,79,42)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="21.5357%" y="2197" width="0.0298%" height="15" fill="rgb(228,218,49)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="21.5357%" y="2181" width="0.0298%" height="15" fill="rgb(249,18,15)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="21.5357%" y="2165" width="0.0298%" height="15" fill="rgb(212,84,27)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="21.5357%" y="2149" width="0.0298%" height="15" fill="rgb(207,83,24)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="21.5357%" y="2133" width="0.0298%" height="15" fill="rgb(219,61,7)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="21.5357%" y="2117" width="0.0298%" height="15" fill="rgb(211,43,29)" fg:x="5054" fg:w="7"/><text x="21.7857%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="21.5655%" y="2245" width="0.0170%" height="15" fill="rgb(243,15,23)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="21.5655%" y="2229" width="0.0170%" height="15" fill="rgb(217,52,28)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.5655%" y="2213" width="0.0170%" height="15" fill="rgb(210,35,6)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.5655%" y="2197" width="0.0170%" height="15" fill="rgb(237,187,28)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.5655%" y="2181" width="0.0170%" height="15" fill="rgb(231,136,24)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.5655%" y="2165" width="0.0170%" height="15" fill="rgb(205,176,52)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.5655%" y="2149" width="0.0170%" height="15" fill="rgb(218,65,12)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.5655%" y="2133" width="0.0170%" height="15" fill="rgb(234,101,21)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.5655%" y="2117" width="0.0170%" height="15" fill="rgb(206,13,20)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.5655%" y="2101" width="0.0170%" height="15" fill="rgb(236,89,44)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.5655%" y="2085" width="0.0170%" height="15" fill="rgb(225,52,17)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.5655%" y="2069" width="0.0170%" height="15" fill="rgb(214,27,25)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.5655%" y="2053" width="0.0170%" height="15" fill="rgb(240,141,35)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.5655%" y="2037" width="0.0170%" height="15" fill="rgb(216,126,3)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.5655%" y="2021" width="0.0170%" height="15" fill="rgb(249,196,23)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="21.5655%" y="2005" width="0.0170%" height="15" fill="rgb(215,185,43)" fg:x="5061" fg:w="4"/><text x="21.8155%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="21.5826%" y="2245" width="0.0384%" height="15" fill="rgb(208,194,36)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="21.5826%" y="2229" width="0.0384%" height="15" fill="rgb(245,182,12)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="21.5826%" y="2213" width="0.0384%" height="15" fill="rgb(244,222,52)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="21.5826%" y="2197" width="0.0384%" height="15" fill="rgb(236,222,51)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="21.5826%" y="2181" width="0.0384%" height="15" fill="rgb(254,71,22)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="21.5826%" y="2165" width="0.0384%" height="15" fill="rgb(250,104,15)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="21.5826%" y="2149" width="0.0384%" height="15" fill="rgb(229,223,46)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="21.5826%" y="2133" width="0.0384%" height="15" fill="rgb(209,129,18)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2143.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="21.5826%" y="2117" width="0.0384%" height="15" fill="rgb(224,160,1)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="21.5826%" y="2101" width="0.0384%" height="15" fill="rgb(237,112,21)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="21.5826%" y="2085" width="0.0384%" height="15" fill="rgb(215,198,53)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="21.5826%" y="2069" width="0.0384%" height="15" fill="rgb(218,227,35)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="21.5826%" y="2053" width="0.0384%" height="15" fill="rgb(232,121,22)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="21.5826%" y="2037" width="0.0384%" height="15" fill="rgb(235,52,54)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="21.5826%" y="2021" width="0.0384%" height="15" fill="rgb(219,21,44)" fg:x="5065" fg:w="9"/><text x="21.8326%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="21.5868%" y="2005" width="0.0341%" height="15" fill="rgb(221,51,43)" fg:x="5066" fg:w="8"/><text x="21.8368%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="21.5868%" y="1989" width="0.0341%" height="15" fill="rgb(225,77,42)" fg:x="5066" fg:w="8"/><text x="21.8368%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="21.5868%" y="1973" width="0.0341%" height="15" fill="rgb(214,117,53)" fg:x="5066" fg:w="8"/><text x="21.8368%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="21.5954%" y="1957" width="0.0256%" height="15" fill="rgb(218,227,27)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="21.5954%" y="1941" width="0.0256%" height="15" fill="rgb(223,214,36)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1951.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="21.5954%" y="1925" width="0.0256%" height="15" fill="rgb(235,21,7)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="21.5954%" y="1909" width="0.0256%" height="15" fill="rgb(244,216,4)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="21.5954%" y="1893" width="0.0256%" height="15" fill="rgb(249,197,24)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="21.5954%" y="1877" width="0.0256%" height="15" fill="rgb(222,169,49)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="21.5954%" y="1861" width="0.0256%" height="15" fill="rgb(207,137,33)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="21.5954%" y="1845" width="0.0256%" height="15" fill="rgb(219,180,40)" fg:x="5068" fg:w="6"/><text x="21.8454%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.6039%" y="1829" width="0.0170%" height="15" fill="rgb(250,163,42)" fg:x="5070" fg:w="4"/><text x="21.8539%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.6039%" y="1813" width="0.0170%" height="15" fill="rgb(239,163,0)" fg:x="5070" fg:w="4"/><text x="21.8539%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.6039%" y="1797" width="0.0170%" height="15" fill="rgb(252,38,28)" fg:x="5070" fg:w="4"/><text x="21.8539%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.6209%" y="2117" width="0.0170%" height="15" fill="rgb(254,203,26)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.6209%" y="2101" width="0.0170%" height="15" fill="rgb(209,129,32)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.6209%" y="2085" width="0.0170%" height="15" fill="rgb(207,177,52)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.6209%" y="2069" width="0.0170%" height="15" fill="rgb(230,209,36)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.6209%" y="2053" width="0.0170%" height="15" fill="rgb(238,131,0)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.6209%" y="2037" width="0.0170%" height="15" fill="rgb(218,61,31)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.6209%" y="2021" width="0.0170%" height="15" fill="rgb(232,6,53)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.6209%" y="2005" width="0.0170%" height="15" fill="rgb(254,100,32)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.6209%" y="1989" width="0.0170%" height="15" fill="rgb(229,194,49)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.6209%" y="1973" width="0.0170%" height="15" fill="rgb(206,208,39)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.6209%" y="1957" width="0.0170%" height="15" fill="rgb(246,226,14)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="21.6209%" y="1941" width="0.0170%" height="15" fill="rgb(226,48,32)" fg:x="5074" fg:w="4"/><text x="21.8709%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="21.6380%" y="2069" width="0.0170%" height="15" fill="rgb(252,43,54)" fg:x="5078" fg:w="4"/><text x="21.8880%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="21.6380%" y="2053" width="0.0170%" height="15" fill="rgb(207,124,0)" fg:x="5078" fg:w="4"/><text x="21.8880%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.6380%" y="2037" width="0.0170%" height="15" fill="rgb(248,188,30)" fg:x="5078" fg:w="4"/><text x="21.8880%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.6380%" y="2021" width="0.0170%" height="15" fill="rgb(232,14,43)" fg:x="5078" fg:w="4"/><text x="21.8880%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.6380%" y="2005" width="0.0170%" height="15" fill="rgb(218,52,29)" fg:x="5078" fg:w="4"/><text x="21.8880%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.6380%" y="1989" width="0.0170%" height="15" fill="rgb(218,176,50)" fg:x="5078" fg:w="4"/><text x="21.8880%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.6380%" y="1973" width="0.0170%" height="15" fill="rgb(213,112,0)" fg:x="5078" fg:w="4"/><text x="21.8880%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (67 samples, 0.29%)</title><rect x="21.3823%" y="2533" width="0.2855%" height="15" fill="rgb(244,216,8)" fg:x="5018" fg:w="67"/><text x="21.6323%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (67 samples, 0.29%)</title><rect x="21.3823%" y="2517" width="0.2855%" height="15" fill="rgb(224,148,53)" fg:x="5018" fg:w="67"/><text x="21.6323%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (67 samples, 0.29%)</title><rect x="21.3823%" y="2501" width="0.2855%" height="15" fill="rgb(241,133,40)" fg:x="5018" fg:w="67"/><text x="21.6323%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (67 samples, 0.29%)</title><rect x="21.3823%" y="2485" width="0.2855%" height="15" fill="rgb(232,17,44)" fg:x="5018" fg:w="67"/><text x="21.6323%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (62 samples, 0.26%)</title><rect x="21.4036%" y="2469" width="0.2642%" height="15" fill="rgb(213,32,25)" fg:x="5023" fg:w="62"/><text x="21.6536%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (62 samples, 0.26%)</title><rect x="21.4036%" y="2453" width="0.2642%" height="15" fill="rgb(249,115,27)" fg:x="5023" fg:w="62"/><text x="21.6536%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (62 samples, 0.26%)</title><rect x="21.4036%" y="2437" width="0.2642%" height="15" fill="rgb(241,50,1)" fg:x="5023" fg:w="62"/><text x="21.6536%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (31 samples, 0.13%)</title><rect x="21.5357%" y="2421" width="0.1321%" height="15" fill="rgb(244,175,40)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (31 samples, 0.13%)</title><rect x="21.5357%" y="2405" width="0.1321%" height="15" fill="rgb(230,94,34)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2415.50"></text></g><g><title>std::panicking::try (31 samples, 0.13%)</title><rect x="21.5357%" y="2389" width="0.1321%" height="15" fill="rgb(223,185,29)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (31 samples, 0.13%)</title><rect x="21.5357%" y="2373" width="0.1321%" height="15" fill="rgb(225,193,15)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (31 samples, 0.13%)</title><rect x="21.5357%" y="2357" width="0.1321%" height="15" fill="rgb(252,121,38)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (31 samples, 0.13%)</title><rect x="21.5357%" y="2341" width="0.1321%" height="15" fill="rgb(232,44,12)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (31 samples, 0.13%)</title><rect x="21.5357%" y="2325" width="0.1321%" height="15" fill="rgb(226,45,54)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.13%)</title><rect x="21.5357%" y="2309" width="0.1321%" height="15" fill="rgb(209,67,17)" fg:x="5054" fg:w="31"/><text x="21.7857%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="21.5655%" y="2293" width="0.1023%" height="15" fill="rgb(219,108,52)" fg:x="5061" fg:w="24"/><text x="21.8155%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="21.5655%" y="2277" width="0.1023%" height="15" fill="rgb(216,118,19)" fg:x="5061" fg:w="24"/><text x="21.8155%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="21.5655%" y="2261" width="0.1023%" height="15" fill="rgb(228,120,40)" fg:x="5061" fg:w="24"/><text x="21.8155%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="21.6209%" y="2245" width="0.0469%" height="15" fill="rgb(221,218,34)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="21.6209%" y="2229" width="0.0469%" height="15" fill="rgb(235,89,14)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2239.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="21.6209%" y="2213" width="0.0469%" height="15" fill="rgb(248,89,7)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="21.6209%" y="2197" width="0.0469%" height="15" fill="rgb(212,114,34)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="21.6209%" y="2181" width="0.0469%" height="15" fill="rgb(246,88,32)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="21.6209%" y="2165" width="0.0469%" height="15" fill="rgb(237,135,0)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="21.6209%" y="2149" width="0.0469%" height="15" fill="rgb(220,201,54)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="21.6209%" y="2133" width="0.0469%" height="15" fill="rgb(210,142,36)" fg:x="5074" fg:w="11"/><text x="21.8709%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="21.6380%" y="2117" width="0.0298%" height="15" fill="rgb(247,189,26)" fg:x="5078" fg:w="7"/><text x="21.8880%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="21.6380%" y="2101" width="0.0298%" height="15" fill="rgb(223,89,24)" fg:x="5078" fg:w="7"/><text x="21.8880%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="21.6380%" y="2085" width="0.0298%" height="15" fill="rgb(205,90,19)" fg:x="5078" fg:w="7"/><text x="21.8880%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.6550%" y="2069" width="0.0128%" height="15" fill="rgb(234,57,40)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.6550%" y="2053" width="0.0128%" height="15" fill="rgb(213,109,10)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="2063.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.6550%" y="2037" width="0.0128%" height="15" fill="rgb(214,189,23)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.6550%" y="2021" width="0.0128%" height="15" fill="rgb(234,200,10)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.6550%" y="2005" width="0.0128%" height="15" fill="rgb(221,148,16)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="21.6550%" y="1989" width="0.0128%" height="15" fill="rgb(230,115,10)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.6550%" y="1973" width="0.0128%" height="15" fill="rgb(220,106,42)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.6550%" y="1957" width="0.0128%" height="15" fill="rgb(225,105,39)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.6550%" y="1941" width="0.0128%" height="15" fill="rgb(211,161,38)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.6550%" y="1925" width="0.0128%" height="15" fill="rgb(213,23,19)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.6550%" y="1909" width="0.0128%" height="15" fill="rgb(240,2,33)" fg:x="5082" fg:w="3"/><text x="21.9050%" y="1919.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="21.6721%" y="2101" width="0.0170%" height="15" fill="rgb(221,29,45)" fg:x="5086" fg:w="4"/><text x="21.9221%" y="2111.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="21.6721%" y="2085" width="0.0170%" height="15" fill="rgb(242,10,19)" fg:x="5086" fg:w="4"/><text x="21.9221%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="21.6678%" y="2293" width="0.0341%" height="15" fill="rgb(250,84,37)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="21.6678%" y="2277" width="0.0341%" height="15" fill="rgb(214,136,7)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="21.6678%" y="2261" width="0.0341%" height="15" fill="rgb(231,189,12)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="21.6678%" y="2245" width="0.0341%" height="15" fill="rgb(244,40,16)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="21.6678%" y="2229" width="0.0341%" height="15" fill="rgb(217,29,15)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="21.6678%" y="2213" width="0.0341%" height="15" fill="rgb(235,172,33)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="21.6678%" y="2197" width="0.0341%" height="15" fill="rgb(206,148,28)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="21.6678%" y="2181" width="0.0341%" height="15" fill="rgb(251,167,37)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="21.6678%" y="2165" width="0.0341%" height="15" fill="rgb(229,94,52)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="21.6678%" y="2149" width="0.0341%" height="15" fill="rgb(216,132,9)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="21.6678%" y="2133" width="0.0341%" height="15" fill="rgb(208,110,29)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="21.6678%" y="2117" width="0.0341%" height="15" fill="rgb(241,23,8)" fg:x="5085" fg:w="8"/><text x="21.9178%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="21.6891%" y="2101" width="0.0128%" height="15" fill="rgb(208,26,35)" fg:x="5090" fg:w="3"/><text x="21.9391%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="21.6891%" y="2085" width="0.0128%" height="15" fill="rgb(242,165,34)" fg:x="5090" fg:w="3"/><text x="21.9391%" y="2095.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="21.7062%" y="2133" width="0.0128%" height="15" fill="rgb(222,222,33)" fg:x="5094" fg:w="3"/><text x="21.9562%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7062%" y="2117" width="0.0128%" height="15" fill="rgb(227,16,52)" fg:x="5094" fg:w="3"/><text x="21.9562%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7062%" y="2101" width="0.0128%" height="15" fill="rgb(213,93,12)" fg:x="5094" fg:w="3"/><text x="21.9562%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.7062%" y="2085" width="0.0128%" height="15" fill="rgb(238,41,5)" fg:x="5094" fg:w="3"/><text x="21.9562%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.7062%" y="2069" width="0.0128%" height="15" fill="rgb(211,60,15)" fg:x="5094" fg:w="3"/><text x="21.9562%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.7062%" y="2053" width="0.0128%" height="15" fill="rgb(209,11,34)" fg:x="5094" fg:w="3"/><text x="21.9562%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7062%" y="2037" width="0.0128%" height="15" fill="rgb(254,155,53)" fg:x="5094" fg:w="3"/><text x="21.9562%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="21.7019%" y="2245" width="0.0341%" height="15" fill="rgb(236,174,8)" fg:x="5093" fg:w="8"/><text x="21.9519%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="21.7019%" y="2229" width="0.0341%" height="15" fill="rgb(229,31,27)" fg:x="5093" fg:w="8"/><text x="21.9519%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="21.7019%" y="2213" width="0.0341%" height="15" fill="rgb(242,226,26)" fg:x="5093" fg:w="8"/><text x="21.9519%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="21.7019%" y="2197" width="0.0341%" height="15" fill="rgb(234,32,40)" fg:x="5093" fg:w="8"/><text x="21.9519%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="21.7062%" y="2181" width="0.0298%" height="15" fill="rgb(249,226,47)" fg:x="5094" fg:w="7"/><text x="21.9562%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="21.7062%" y="2165" width="0.0298%" height="15" fill="rgb(212,6,26)" fg:x="5094" fg:w="7"/><text x="21.9562%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="21.7062%" y="2149" width="0.0298%" height="15" fill="rgb(249,202,29)" fg:x="5094" fg:w="7"/><text x="21.9562%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="21.7189%" y="2133" width="0.0170%" height="15" fill="rgb(226,106,4)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="21.7189%" y="2117" width="0.0170%" height="15" fill="rgb(251,2,27)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="21.7189%" y="2101" width="0.0170%" height="15" fill="rgb(236,208,0)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="21.7189%" y="2085" width="0.0170%" height="15" fill="rgb(211,66,17)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="21.7189%" y="2069" width="0.0170%" height="15" fill="rgb(216,129,9)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7189%" y="2053" width="0.0170%" height="15" fill="rgb(215,130,23)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7189%" y="2037" width="0.0170%" height="15" fill="rgb(253,157,11)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.7189%" y="2021" width="0.0170%" height="15" fill="rgb(224,25,14)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.7189%" y="2005" width="0.0170%" height="15" fill="rgb(238,16,7)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.7189%" y="1989" width="0.0170%" height="15" fill="rgb(228,74,11)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7189%" y="1973" width="0.0170%" height="15" fill="rgb(239,221,27)" fg:x="5097" fg:w="4"/><text x="21.9689%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.7360%" y="1893" width="0.0128%" height="15" fill="rgb(229,166,18)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.7360%" y="1877" width="0.0128%" height="15" fill="rgb(254,94,46)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.7360%" y="1861" width="0.0128%" height="15" fill="rgb(241,79,19)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.7360%" y="1845" width="0.0128%" height="15" fill="rgb(228,99,51)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.7360%" y="1829" width="0.0128%" height="15" fill="rgb(211,15,6)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.7360%" y="1813" width="0.0128%" height="15" fill="rgb(245,107,54)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.7360%" y="1797" width="0.0128%" height="15" fill="rgb(243,3,2)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7360%" y="1781" width="0.0128%" height="15" fill="rgb(206,122,10)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.7360%" y="1765" width="0.0128%" height="15" fill="rgb(224,88,4)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.7360%" y="1749" width="0.0128%" height="15" fill="rgb(230,1,41)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7360%" y="1733" width="0.0128%" height="15" fill="rgb(230,1,31)" fg:x="5101" fg:w="3"/><text x="21.9860%" y="1743.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="21.7488%" y="1845" width="0.0170%" height="15" fill="rgb(232,67,19)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="21.7488%" y="1829" width="0.0170%" height="15" fill="rgb(222,206,20)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="21.7488%" y="1813" width="0.0170%" height="15" fill="rgb(217,225,19)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="21.7488%" y="1797" width="0.0170%" height="15" fill="rgb(234,13,33)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="21.7488%" y="1781" width="0.0170%" height="15" fill="rgb(254,5,1)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="21.7488%" y="1765" width="0.0170%" height="15" fill="rgb(211,121,41)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="21.7488%" y="1749" width="0.0170%" height="15" fill="rgb(213,199,35)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="21.7488%" y="1733" width="0.0170%" height="15" fill="rgb(240,118,22)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1743.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="21.7488%" y="1717" width="0.0170%" height="15" fill="rgb(238,184,25)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="21.7488%" y="1701" width="0.0170%" height="15" fill="rgb(210,165,6)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="21.7488%" y="1685" width="0.0170%" height="15" fill="rgb(235,149,5)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7488%" y="1669" width="0.0170%" height="15" fill="rgb(221,63,5)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7488%" y="1653" width="0.0170%" height="15" fill="rgb(250,44,41)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7488%" y="1637" width="0.0170%" height="15" fill="rgb(235,112,47)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.7488%" y="1621" width="0.0170%" height="15" fill="rgb(252,176,34)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.7488%" y="1605" width="0.0170%" height="15" fill="rgb(234,50,19)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1615.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.7488%" y="1589" width="0.0170%" height="15" fill="rgb(241,195,31)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.7488%" y="1573" width="0.0170%" height="15" fill="rgb(212,93,11)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1583.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.7488%" y="1557" width="0.0170%" height="15" fill="rgb(254,98,51)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1567.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.7488%" y="1541" width="0.0170%" height="15" fill="rgb(246,18,45)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1551.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.7488%" y="1525" width="0.0170%" height="15" fill="rgb(215,148,23)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.7488%" y="1509" width="0.0170%" height="15" fill="rgb(227,22,7)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7488%" y="1493" width="0.0170%" height="15" fill="rgb(207,210,37)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.7488%" y="1477" width="0.0170%" height="15" fill="rgb(247,147,42)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1487.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.7488%" y="1461" width="0.0170%" height="15" fill="rgb(226,213,14)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.7488%" y="1445" width="0.0170%" height="15" fill="rgb(223,18,10)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1455.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="21.7488%" y="1429" width="0.0170%" height="15" fill="rgb(253,34,22)" fg:x="5104" fg:w="4"/><text x="21.9988%" y="1439.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="21.7360%" y="1957" width="0.0384%" height="15" fill="rgb(222,90,31)" fg:x="5101" fg:w="9"/><text x="21.9860%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="21.7360%" y="1941" width="0.0384%" height="15" fill="rgb(220,182,30)" fg:x="5101" fg:w="9"/><text x="21.9860%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="21.7360%" y="1925" width="0.0384%" height="15" fill="rgb(229,170,12)" fg:x="5101" fg:w="9"/><text x="21.9860%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="21.7360%" y="1909" width="0.0384%" height="15" fill="rgb(210,101,21)" fg:x="5101" fg:w="9"/><text x="21.9860%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="21.7488%" y="1893" width="0.0256%" height="15" fill="rgb(237,177,31)" fg:x="5104" fg:w="6"/><text x="21.9988%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="21.7488%" y="1877" width="0.0256%" height="15" fill="rgb(215,91,34)" fg:x="5104" fg:w="6"/><text x="21.9988%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="21.7488%" y="1861" width="0.0256%" height="15" fill="rgb(229,206,16)" fg:x="5104" fg:w="6"/><text x="21.9988%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="21.7743%" y="1829" width="0.0128%" height="15" fill="rgb(235,207,10)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="21.7743%" y="1813" width="0.0128%" height="15" fill="rgb(247,18,10)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="21.7743%" y="1797" width="0.0128%" height="15" fill="rgb(232,4,6)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="21.7743%" y="1781" width="0.0128%" height="15" fill="rgb(247,93,45)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="21.7743%" y="1765" width="0.0128%" height="15" fill="rgb(240,181,18)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="21.7743%" y="1749" width="0.0128%" height="15" fill="rgb(208,224,0)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="21.7743%" y="1733" width="0.0128%" height="15" fill="rgb(224,207,54)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7743%" y="1717" width="0.0128%" height="15" fill="rgb(217,152,29)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="21.7743%" y="1701" width="0.0128%" height="15" fill="rgb(243,78,27)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="21.7743%" y="1685" width="0.0128%" height="15" fill="rgb(228,111,9)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7743%" y="1669" width="0.0128%" height="15" fill="rgb(230,213,21)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.7743%" y="1653" width="0.0128%" height="15" fill="rgb(248,50,36)" fg:x="5110" fg:w="3"/><text x="22.0243%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="21.7914%" y="1781" width="0.0128%" height="15" fill="rgb(226,19,31)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="21.7914%" y="1765" width="0.0128%" height="15" fill="rgb(205,132,21)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="21.7914%" y="1749" width="0.0128%" height="15" fill="rgb(207,42,19)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="21.7914%" y="1733" width="0.0128%" height="15" fill="rgb(229,69,35)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="21.7914%" y="1717" width="0.0128%" height="15" fill="rgb(226,96,11)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="21.7914%" y="1701" width="0.0128%" height="15" fill="rgb(236,133,54)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="21.7914%" y="1685" width="0.0128%" height="15" fill="rgb(247,166,21)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="21.7914%" y="1669" width="0.0128%" height="15" fill="rgb(220,132,12)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1679.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="21.7914%" y="1653" width="0.0128%" height="15" fill="rgb(233,27,30)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="21.7914%" y="1637" width="0.0128%" height="15" fill="rgb(246,161,27)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="21.7914%" y="1621" width="0.0128%" height="15" fill="rgb(240,56,3)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7914%" y="1605" width="0.0128%" height="15" fill="rgb(242,190,9)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7914%" y="1589" width="0.0128%" height="15" fill="rgb(234,3,52)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="21.7914%" y="1573" width="0.0128%" height="15" fill="rgb(220,221,19)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="21.7914%" y="1557" width="0.0128%" height="15" fill="rgb(247,178,30)" fg:x="5114" fg:w="3"/><text x="22.0414%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (20 samples, 0.09%)</title><rect x="21.7360%" y="2245" width="0.0852%" height="15" fill="rgb(234,212,27)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.09%)</title><rect x="21.7360%" y="2229" width="0.0852%" height="15" fill="rgb(226,199,38)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (20 samples, 0.09%)</title><rect x="21.7360%" y="2213" width="0.0852%" height="15" fill="rgb(248,114,22)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (20 samples, 0.09%)</title><rect x="21.7360%" y="2197" width="0.0852%" height="15" fill="rgb(221,180,4)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (20 samples, 0.09%)</title><rect x="21.7360%" y="2181" width="0.0852%" height="15" fill="rgb(220,229,24)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (20 samples, 0.09%)</title><rect x="21.7360%" y="2165" width="0.0852%" height="15" fill="rgb(226,184,27)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="21.7360%" y="2149" width="0.0852%" height="15" fill="rgb(232,99,15)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="21.7360%" y="2133" width="0.0852%" height="15" fill="rgb(250,167,16)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2143.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="21.7360%" y="2117" width="0.0852%" height="15" fill="rgb(243,113,6)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="21.7360%" y="2101" width="0.0852%" height="15" fill="rgb(244,147,52)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="21.7360%" y="2085" width="0.0852%" height="15" fill="rgb(235,59,50)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (20 samples, 0.09%)</title><rect x="21.7360%" y="2069" width="0.0852%" height="15" fill="rgb(250,188,6)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="21.7360%" y="2053" width="0.0852%" height="15" fill="rgb(236,173,11)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="21.7360%" y="2037" width="0.0852%" height="15" fill="rgb(233,64,3)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="21.7360%" y="2021" width="0.0852%" height="15" fill="rgb(207,92,7)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="21.7360%" y="2005" width="0.0852%" height="15" fill="rgb(221,30,19)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="21.7360%" y="1989" width="0.0852%" height="15" fill="rgb(245,22,49)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="21.7360%" y="1973" width="0.0852%" height="15" fill="rgb(218,39,20)" fg:x="5101" fg:w="20"/><text x="21.9860%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="21.7743%" y="1957" width="0.0469%" height="15" fill="rgb(222,144,21)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="21.7743%" y="1941" width="0.0469%" height="15" fill="rgb(222,78,51)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1951.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="21.7743%" y="1925" width="0.0469%" height="15" fill="rgb(248,213,53)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="21.7743%" y="1909" width="0.0469%" height="15" fill="rgb(245,28,34)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="21.7743%" y="1893" width="0.0469%" height="15" fill="rgb(229,186,26)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="21.7743%" y="1877" width="0.0469%" height="15" fill="rgb(224,0,41)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="21.7743%" y="1861" width="0.0469%" height="15" fill="rgb(223,136,51)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="21.7743%" y="1845" width="0.0469%" height="15" fill="rgb(234,50,9)" fg:x="5110" fg:w="11"/><text x="22.0243%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="21.7871%" y="1829" width="0.0341%" height="15" fill="rgb(242,164,20)" fg:x="5113" fg:w="8"/><text x="22.0371%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="21.7871%" y="1813" width="0.0341%" height="15" fill="rgb(230,169,22)" fg:x="5113" fg:w="8"/><text x="22.0371%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="21.7871%" y="1797" width="0.0341%" height="15" fill="rgb(228,82,26)" fg:x="5113" fg:w="8"/><text x="22.0371%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="21.8042%" y="1781" width="0.0170%" height="15" fill="rgb(244,220,31)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="21.8042%" y="1765" width="0.0170%" height="15" fill="rgb(214,35,25)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="21.8042%" y="1749" width="0.0170%" height="15" fill="rgb(245,162,54)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="21.8042%" y="1733" width="0.0170%" height="15" fill="rgb(210,43,24)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="21.8042%" y="1717" width="0.0170%" height="15" fill="rgb(226,145,51)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8042%" y="1701" width="0.0170%" height="15" fill="rgb(237,52,53)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8042%" y="1685" width="0.0170%" height="15" fill="rgb(216,226,7)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="21.8042%" y="1669" width="0.0170%" height="15" fill="rgb(206,223,18)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.8042%" y="1653" width="0.0170%" height="15" fill="rgb(221,1,10)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.8042%" y="1637" width="0.0170%" height="15" fill="rgb(221,151,42)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.8042%" y="1621" width="0.0170%" height="15" fill="rgb(205,183,46)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.8042%" y="1605" width="0.0170%" height="15" fill="rgb(239,229,1)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.8042%" y="1589" width="0.0170%" height="15" fill="rgb(236,192,23)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.8042%" y="1573" width="0.0170%" height="15" fill="rgb(215,146,3)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.8042%" y="1557" width="0.0170%" height="15" fill="rgb(235,52,27)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8042%" y="1541" width="0.0170%" height="15" fill="rgb(236,45,20)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.8042%" y="1525" width="0.0170%" height="15" fill="rgb(235,86,41)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.8042%" y="1509" width="0.0170%" height="15" fill="rgb(235,27,27)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8042%" y="1493" width="0.0170%" height="15" fill="rgb(232,4,34)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="21.8042%" y="1477" width="0.0170%" height="15" fill="rgb(215,22,10)" fg:x="5117" fg:w="4"/><text x="22.0542%" y="1487.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="21.8212%" y="1941" width="0.0128%" height="15" fill="rgb(230,228,27)" fg:x="5121" fg:w="3"/><text x="22.0712%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.8212%" y="2117" width="0.0170%" height="15" fill="rgb(216,26,51)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.8212%" y="2101" width="0.0170%" height="15" fill="rgb(225,180,50)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.8212%" y="2085" width="0.0170%" height="15" fill="rgb(236,211,2)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.8212%" y="2069" width="0.0170%" height="15" fill="rgb(250,51,20)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.8212%" y="2053" width="0.0170%" height="15" fill="rgb(232,70,37)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.8212%" y="2037" width="0.0170%" height="15" fill="rgb(226,183,39)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.8212%" y="2021" width="0.0170%" height="15" fill="rgb(232,228,21)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8212%" y="2005" width="0.0170%" height="15" fill="rgb(251,118,32)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.8212%" y="1989" width="0.0170%" height="15" fill="rgb(235,172,38)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.8212%" y="1973" width="0.0170%" height="15" fill="rgb(235,63,18)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8212%" y="1957" width="0.0170%" height="15" fill="rgb(225,4,7)" fg:x="5121" fg:w="4"/><text x="22.0712%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="21.8382%" y="1957" width="0.0256%" height="15" fill="rgb(231,61,1)" fg:x="5125" fg:w="6"/><text x="22.0882%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="21.8382%" y="1941" width="0.0256%" height="15" fill="rgb(241,155,22)" fg:x="5125" fg:w="6"/><text x="22.0882%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="21.8382%" y="1925" width="0.0256%" height="15" fill="rgb(209,100,26)" fg:x="5125" fg:w="6"/><text x="22.0882%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="21.8382%" y="1909" width="0.0256%" height="15" fill="rgb(248,181,15)" fg:x="5125" fg:w="6"/><text x="22.0882%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.8468%" y="1893" width="0.0170%" height="15" fill="rgb(214,94,31)" fg:x="5127" fg:w="4"/><text x="22.0968%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.8468%" y="1877" width="0.0170%" height="15" fill="rgb(207,16,42)" fg:x="5127" fg:w="4"/><text x="22.0968%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8468%" y="1861" width="0.0170%" height="15" fill="rgb(208,127,13)" fg:x="5127" fg:w="4"/><text x="22.0968%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="21.8382%" y="2069" width="0.0469%" height="15" fill="rgb(220,211,18)" fg:x="5125" fg:w="11"/><text x="22.0882%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="21.8382%" y="2053" width="0.0469%" height="15" fill="rgb(221,55,38)" fg:x="5125" fg:w="11"/><text x="22.0882%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="21.8382%" y="2037" width="0.0469%" height="15" fill="rgb(252,219,45)" fg:x="5125" fg:w="11"/><text x="22.0882%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="21.8382%" y="2021" width="0.0469%" height="15" fill="rgb(248,53,35)" fg:x="5125" fg:w="11"/><text x="22.0882%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="21.8382%" y="2005" width="0.0469%" height="15" fill="rgb(210,87,2)" fg:x="5125" fg:w="11"/><text x="22.0882%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="21.8382%" y="1989" width="0.0469%" height="15" fill="rgb(239,133,9)" fg:x="5125" fg:w="11"/><text x="22.0882%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="21.8382%" y="1973" width="0.0469%" height="15" fill="rgb(214,114,5)" fg:x="5125" fg:w="11"/><text x="22.0882%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="21.8638%" y="1957" width="0.0213%" height="15" fill="rgb(206,124,24)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="21.8638%" y="1941" width="0.0213%" height="15" fill="rgb(212,57,33)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1951.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="21.8638%" y="1925" width="0.0213%" height="15" fill="rgb(246,21,20)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="21.8638%" y="1909" width="0.0213%" height="15" fill="rgb(253,210,39)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="21.8638%" y="1893" width="0.0213%" height="15" fill="rgb(209,187,24)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="21.8638%" y="1877" width="0.0213%" height="15" fill="rgb(246,136,17)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="21.8638%" y="1861" width="0.0213%" height="15" fill="rgb(211,0,30)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="21.8638%" y="1845" width="0.0213%" height="15" fill="rgb(216,199,7)" fg:x="5131" fg:w="5"/><text x="22.1138%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="21.8723%" y="1829" width="0.0128%" height="15" fill="rgb(207,210,19)" fg:x="5133" fg:w="3"/><text x="22.1223%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="21.8723%" y="1813" width="0.0128%" height="15" fill="rgb(237,187,39)" fg:x="5133" fg:w="3"/><text x="22.1223%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="21.8723%" y="1797" width="0.0128%" height="15" fill="rgb(243,194,42)" fg:x="5133" fg:w="3"/><text x="22.1223%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="21.8851%" y="1893" width="0.0256%" height="15" fill="rgb(225,194,19)" fg:x="5136" fg:w="6"/><text x="22.1351%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="21.8851%" y="1877" width="0.0256%" height="15" fill="rgb(224,192,14)" fg:x="5136" fg:w="6"/><text x="22.1351%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="21.8851%" y="1861" width="0.0256%" height="15" fill="rgb(252,21,18)" fg:x="5136" fg:w="6"/><text x="22.1351%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="21.8851%" y="1845" width="0.0256%" height="15" fill="rgb(229,69,19)" fg:x="5136" fg:w="6"/><text x="22.1351%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.8936%" y="1829" width="0.0170%" height="15" fill="rgb(251,31,53)" fg:x="5138" fg:w="4"/><text x="22.1436%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.8936%" y="1813" width="0.0170%" height="15" fill="rgb(218,39,50)" fg:x="5138" fg:w="4"/><text x="22.1436%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.8936%" y="1797" width="0.0170%" height="15" fill="rgb(231,50,17)" fg:x="5138" fg:w="4"/><text x="22.1436%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (63 samples, 0.27%)</title><rect x="21.6678%" y="2533" width="0.2685%" height="15" fill="rgb(223,217,31)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (63 samples, 0.27%)</title><rect x="21.6678%" y="2517" width="0.2685%" height="15" fill="rgb(225,91,12)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (63 samples, 0.27%)</title><rect x="21.6678%" y="2501" width="0.2685%" height="15" fill="rgb(242,58,43)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (63 samples, 0.27%)</title><rect x="21.6678%" y="2485" width="0.2685%" height="15" fill="rgb(242,32,21)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (63 samples, 0.27%)</title><rect x="21.6678%" y="2469" width="0.2685%" height="15" fill="rgb(211,127,1)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (63 samples, 0.27%)</title><rect x="21.6678%" y="2453" width="0.2685%" height="15" fill="rgb(231,93,13)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (63 samples, 0.27%)</title><rect x="21.6678%" y="2437" width="0.2685%" height="15" fill="rgb(218,83,4)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (63 samples, 0.27%)</title><rect x="21.6678%" y="2421" width="0.2685%" height="15" fill="rgb(230,218,10)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2431.50"></text></g><g><title>std::panicking::try (63 samples, 0.27%)</title><rect x="21.6678%" y="2405" width="0.2685%" height="15" fill="rgb(235,127,18)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (63 samples, 0.27%)</title><rect x="21.6678%" y="2389" width="0.2685%" height="15" fill="rgb(213,137,46)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (63 samples, 0.27%)</title><rect x="21.6678%" y="2373" width="0.2685%" height="15" fill="rgb(235,179,24)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (63 samples, 0.27%)</title><rect x="21.6678%" y="2357" width="0.2685%" height="15" fill="rgb(247,58,49)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (63 samples, 0.27%)</title><rect x="21.6678%" y="2341" width="0.2685%" height="15" fill="rgb(242,222,5)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (63 samples, 0.27%)</title><rect x="21.6678%" y="2325" width="0.2685%" height="15" fill="rgb(230,16,48)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (63 samples, 0.27%)</title><rect x="21.6678%" y="2309" width="0.2685%" height="15" fill="rgb(241,192,16)" fg:x="5085" fg:w="63"/><text x="21.9178%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (55 samples, 0.23%)</title><rect x="21.7019%" y="2293" width="0.2344%" height="15" fill="rgb(209,25,37)" fg:x="5093" fg:w="55"/><text x="21.9519%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.23%)</title><rect x="21.7019%" y="2277" width="0.2344%" height="15" fill="rgb(229,215,13)" fg:x="5093" fg:w="55"/><text x="21.9519%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55 samples, 0.23%)</title><rect x="21.7019%" y="2261" width="0.2344%" height="15" fill="rgb(213,199,8)" fg:x="5093" fg:w="55"/><text x="21.9519%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (27 samples, 0.12%)</title><rect x="21.8212%" y="2245" width="0.1151%" height="15" fill="rgb(226,151,19)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (27 samples, 0.12%)</title><rect x="21.8212%" y="2229" width="0.1151%" height="15" fill="rgb(254,183,12)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2239.50"></text></g><g><title>std::panicking::try (27 samples, 0.12%)</title><rect x="21.8212%" y="2213" width="0.1151%" height="15" fill="rgb(245,8,3)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (27 samples, 0.12%)</title><rect x="21.8212%" y="2197" width="0.1151%" height="15" fill="rgb(229,159,35)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (27 samples, 0.12%)</title><rect x="21.8212%" y="2181" width="0.1151%" height="15" fill="rgb(209,145,1)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (27 samples, 0.12%)</title><rect x="21.8212%" y="2165" width="0.1151%" height="15" fill="rgb(228,183,16)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="21.8212%" y="2149" width="0.1151%" height="15" fill="rgb(222,68,0)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="21.8212%" y="2133" width="0.1151%" height="15" fill="rgb(209,130,50)" fg:x="5121" fg:w="27"/><text x="22.0712%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="21.8382%" y="2117" width="0.0980%" height="15" fill="rgb(228,176,44)" fg:x="5125" fg:w="23"/><text x="22.0882%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="21.8382%" y="2101" width="0.0980%" height="15" fill="rgb(221,164,2)" fg:x="5125" fg:w="23"/><text x="22.0882%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="21.8382%" y="2085" width="0.0980%" height="15" fill="rgb(249,199,49)" fg:x="5125" fg:w="23"/><text x="22.0882%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="21.8851%" y="2069" width="0.0511%" height="15" fill="rgb(228,205,53)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="21.8851%" y="2053" width="0.0511%" height="15" fill="rgb(235,77,20)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="2063.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="21.8851%" y="2037" width="0.0511%" height="15" fill="rgb(227,147,34)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="21.8851%" y="2021" width="0.0511%" height="15" fill="rgb(226,203,52)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="21.8851%" y="2005" width="0.0511%" height="15" fill="rgb(226,186,23)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="21.8851%" y="1989" width="0.0511%" height="15" fill="rgb(236,13,30)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="21.8851%" y="1973" width="0.0511%" height="15" fill="rgb(228,121,22)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="21.8851%" y="1957" width="0.0511%" height="15" fill="rgb(248,222,26)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="21.8851%" y="1941" width="0.0511%" height="15" fill="rgb(251,72,25)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="21.8851%" y="1925" width="0.0511%" height="15" fill="rgb(223,114,24)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="21.8851%" y="1909" width="0.0511%" height="15" fill="rgb(232,190,43)" fg:x="5136" fg:w="12"/><text x="22.1351%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="21.9107%" y="1893" width="0.0256%" height="15" fill="rgb(208,90,0)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="21.9107%" y="1877" width="0.0256%" height="15" fill="rgb(234,149,31)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1887.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="21.9107%" y="1861" width="0.0256%" height="15" fill="rgb(235,188,36)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="21.9107%" y="1845" width="0.0256%" height="15" fill="rgb(219,59,51)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="21.9107%" y="1829" width="0.0256%" height="15" fill="rgb(236,101,40)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="21.9107%" y="1813" width="0.0256%" height="15" fill="rgb(235,33,7)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="21.9107%" y="1797" width="0.0256%" height="15" fill="rgb(213,169,26)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="21.9107%" y="1781" width="0.0256%" height="15" fill="rgb(218,99,34)" fg:x="5142" fg:w="6"/><text x="22.1607%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="21.9192%" y="1765" width="0.0170%" height="15" fill="rgb(210,57,24)" fg:x="5144" fg:w="4"/><text x="22.1692%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="21.9192%" y="1749" width="0.0170%" height="15" fill="rgb(231,181,54)" fg:x="5144" fg:w="4"/><text x="22.1692%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="21.9192%" y="1733" width="0.0170%" height="15" fill="rgb(251,188,48)" fg:x="5144" fg:w="4"/><text x="22.1692%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="21.9363%" y="2405" width="0.0170%" height="15" fill="rgb(243,12,45)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="21.9363%" y="2389" width="0.0170%" height="15" fill="rgb(250,197,9)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="21.9363%" y="2373" width="0.0170%" height="15" fill="rgb(235,149,35)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="21.9363%" y="2357" width="0.0170%" height="15" fill="rgb(219,27,19)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="21.9363%" y="2341" width="0.0170%" height="15" fill="rgb(244,78,31)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="21.9363%" y="2325" width="0.0170%" height="15" fill="rgb(241,13,4)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="21.9363%" y="2309" width="0.0170%" height="15" fill="rgb(212,194,26)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="21.9363%" y="2293" width="0.0170%" height="15" fill="rgb(236,80,11)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="21.9363%" y="2277" width="0.0170%" height="15" fill="rgb(206,1,24)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="21.9363%" y="2261" width="0.0170%" height="15" fill="rgb(238,215,50)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="21.9363%" y="2245" width="0.0170%" height="15" fill="rgb(254,126,32)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="21.9363%" y="2229" width="0.0170%" height="15" fill="rgb(206,111,53)" fg:x="5148" fg:w="4"/><text x="22.1863%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="21.9576%" y="2101" width="0.0213%" height="15" fill="rgb(218,72,44)" fg:x="5153" fg:w="5"/><text x="22.2076%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="21.9576%" y="2085" width="0.0213%" height="15" fill="rgb(238,25,3)" fg:x="5153" fg:w="5"/><text x="22.2076%" y="2095.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="21.9576%" y="2069" width="0.0213%" height="15" fill="rgb(250,191,7)" fg:x="5153" fg:w="5"/><text x="22.2076%" y="2079.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="21.9576%" y="2053" width="0.0213%" height="15" fill="rgb(238,56,30)" fg:x="5153" fg:w="5"/><text x="22.2076%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="21.9789%" y="2101" width="0.0128%" height="15" fill="rgb(210,27,45)" fg:x="5158" fg:w="3"/><text x="22.2289%" y="2111.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="21.9789%" y="2085" width="0.0128%" height="15" fill="rgb(207,10,50)" fg:x="5158" fg:w="3"/><text x="22.2289%" y="2095.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (11 samples, 0.05%)</title><rect x="21.9533%" y="2117" width="0.0469%" height="15" fill="rgb(249,30,23)" fg:x="5152" fg:w="11"/><text x="22.2033%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="21.9533%" y="2293" width="0.0511%" height="15" fill="rgb(250,80,12)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="21.9533%" y="2277" width="0.0511%" height="15" fill="rgb(210,221,37)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (12 samples, 0.05%)</title><rect x="21.9533%" y="2261" width="0.0511%" height="15" fill="rgb(205,96,24)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (12 samples, 0.05%)</title><rect x="21.9533%" y="2245" width="0.0511%" height="15" fill="rgb(247,104,22)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (12 samples, 0.05%)</title><rect x="21.9533%" y="2229" width="0.0511%" height="15" fill="rgb(222,61,53)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (12 samples, 0.05%)</title><rect x="21.9533%" y="2213" width="0.0511%" height="15" fill="rgb(241,11,53)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (12 samples, 0.05%)</title><rect x="21.9533%" y="2197" width="0.0511%" height="15" fill="rgb(230,111,47)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (12 samples, 0.05%)</title><rect x="21.9533%" y="2181" width="0.0511%" height="15" fill="rgb(218,187,29)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (12 samples, 0.05%)</title><rect x="21.9533%" y="2165" width="0.0511%" height="15" fill="rgb(210,121,46)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="21.9533%" y="2149" width="0.0511%" height="15" fill="rgb(250,43,19)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (12 samples, 0.05%)</title><rect x="21.9533%" y="2133" width="0.0511%" height="15" fill="rgb(238,61,12)" fg:x="5152" fg:w="12"/><text x="22.2033%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="22.0044%" y="2181" width="0.0213%" height="15" fill="rgb(251,198,9)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="22.0044%" y="2165" width="0.0213%" height="15" fill="rgb(214,192,38)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="22.0044%" y="2149" width="0.0213%" height="15" fill="rgb(214,73,19)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="22.0044%" y="2133" width="0.0213%" height="15" fill="rgb(249,222,49)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="22.0044%" y="2117" width="0.0213%" height="15" fill="rgb(231,181,54)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="22.0044%" y="2101" width="0.0213%" height="15" fill="rgb(240,1,13)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="22.0044%" y="2085" width="0.0213%" height="15" fill="rgb(225,21,16)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="22.0044%" y="2069" width="0.0213%" height="15" fill="rgb(246,176,50)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="22.0044%" y="2053" width="0.0213%" height="15" fill="rgb(208,96,50)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="22.0044%" y="2037" width="0.0213%" height="15" fill="rgb(240,219,19)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="22.0044%" y="2021" width="0.0213%" height="15" fill="rgb(234,73,5)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="22.0044%" y="2005" width="0.0213%" height="15" fill="rgb(225,52,53)" fg:x="5164" fg:w="5"/><text x="22.2544%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="22.0130%" y="1989" width="0.0128%" height="15" fill="rgb(250,12,14)" fg:x="5166" fg:w="3"/><text x="22.2630%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="22.0130%" y="1973" width="0.0128%" height="15" fill="rgb(242,185,54)" fg:x="5166" fg:w="3"/><text x="22.2630%" y="1983.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="22.0343%" y="1781" width="0.0128%" height="15" fill="rgb(211,206,31)" fg:x="5171" fg:w="3"/><text x="22.2843%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="22.0343%" y="2021" width="0.0170%" height="15" fill="rgb(252,10,33)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0343%" y="2005" width="0.0170%" height="15" fill="rgb(216,26,7)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0343%" y="1989" width="0.0170%" height="15" fill="rgb(228,112,40)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.0343%" y="1973" width="0.0170%" height="15" fill="rgb(212,21,16)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.0343%" y="1957" width="0.0170%" height="15" fill="rgb(249,3,29)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1967.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.0343%" y="1941" width="0.0170%" height="15" fill="rgb(221,42,51)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.0343%" y="1925" width="0.0170%" height="15" fill="rgb(225,90,21)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1935.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.0343%" y="1909" width="0.0170%" height="15" fill="rgb(242,131,5)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1919.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.0343%" y="1893" width="0.0170%" height="15" fill="rgb(220,187,28)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1903.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.0343%" y="1877" width="0.0170%" height="15" fill="rgb(210,75,48)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.0343%" y="1861" width="0.0170%" height="15" fill="rgb(211,91,40)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0343%" y="1845" width="0.0170%" height="15" fill="rgb(205,43,18)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.0343%" y="1829" width="0.0170%" height="15" fill="rgb(207,123,11)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1839.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.0343%" y="1813" width="0.0170%" height="15" fill="rgb(235,89,39)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1823.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0343%" y="1797" width="0.0170%" height="15" fill="rgb(245,217,27)" fg:x="5171" fg:w="4"/><text x="22.2843%" y="1807.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="22.0513%" y="1717" width="0.0128%" height="15" fill="rgb(216,55,17)" fg:x="5175" fg:w="3"/><text x="22.3013%" y="1727.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="22.0513%" y="1701" width="0.0128%" height="15" fill="rgb(252,116,44)" fg:x="5175" fg:w="3"/><text x="22.3013%" y="1711.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="22.0513%" y="1685" width="0.0128%" height="15" fill="rgb(229,153,4)" fg:x="5175" fg:w="3"/><text x="22.3013%" y="1695.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="22.0513%" y="1669" width="0.0128%" height="15" fill="rgb(222,24,35)" fg:x="5175" fg:w="3"/><text x="22.3013%" y="1679.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="22.0513%" y="1653" width="0.0128%" height="15" fill="rgb(214,26,20)" fg:x="5175" fg:w="3"/><text x="22.3013%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="22.0257%" y="2133" width="0.0426%" height="15" fill="rgb(215,14,45)" fg:x="5169" fg:w="10"/><text x="22.2757%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="22.0257%" y="2117" width="0.0426%" height="15" fill="rgb(217,212,50)" fg:x="5169" fg:w="10"/><text x="22.2757%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="22.0257%" y="2101" width="0.0426%" height="15" fill="rgb(230,172,52)" fg:x="5169" fg:w="10"/><text x="22.2757%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="22.0257%" y="2085" width="0.0426%" height="15" fill="rgb(210,48,36)" fg:x="5169" fg:w="10"/><text x="22.2757%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="22.0343%" y="2069" width="0.0341%" height="15" fill="rgb(216,213,32)" fg:x="5171" fg:w="8"/><text x="22.2843%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="22.0343%" y="2053" width="0.0341%" height="15" fill="rgb(237,202,41)" fg:x="5171" fg:w="8"/><text x="22.2843%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="22.0343%" y="2037" width="0.0341%" height="15" fill="rgb(209,14,29)" fg:x="5171" fg:w="8"/><text x="22.2843%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="22.0513%" y="2021" width="0.0170%" height="15" fill="rgb(219,29,3)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="22.0513%" y="2005" width="0.0170%" height="15" fill="rgb(229,13,49)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="2015.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="22.0513%" y="1989" width="0.0170%" height="15" fill="rgb(210,206,2)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="22.0513%" y="1973" width="0.0170%" height="15" fill="rgb(216,154,46)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="22.0513%" y="1957" width="0.0170%" height="15" fill="rgb(211,170,52)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0513%" y="1941" width="0.0170%" height="15" fill="rgb(233,109,47)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0513%" y="1925" width="0.0170%" height="15" fill="rgb(208,212,30)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.0513%" y="1909" width="0.0170%" height="15" fill="rgb(215,190,19)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.0513%" y="1893" width="0.0170%" height="15" fill="rgb(207,164,53)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.0513%" y="1877" width="0.0170%" height="15" fill="rgb(213,87,49)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.0513%" y="1861" width="0.0170%" height="15" fill="rgb(241,216,24)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.0513%" y="1845" width="0.0170%" height="15" fill="rgb(241,123,45)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.0513%" y="1829" width="0.0170%" height="15" fill="rgb(220,36,15)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.0513%" y="1813" width="0.0170%" height="15" fill="rgb(215,202,9)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.0513%" y="1797" width="0.0170%" height="15" fill="rgb(252,71,26)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0513%" y="1781" width="0.0170%" height="15" fill="rgb(243,195,19)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.0513%" y="1765" width="0.0170%" height="15" fill="rgb(207,167,27)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.0513%" y="1749" width="0.0170%" height="15" fill="rgb(250,146,54)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0513%" y="1733" width="0.0170%" height="15" fill="rgb(245,79,9)" fg:x="5175" fg:w="4"/><text x="22.3013%" y="1743.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="22.0769%" y="1701" width="0.0128%" height="15" fill="rgb(234,197,22)" fg:x="5181" fg:w="3"/><text x="22.3269%" y="1711.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="22.0769%" y="1685" width="0.0128%" height="15" fill="rgb(221,52,48)" fg:x="5181" fg:w="3"/><text x="22.3269%" y="1695.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="22.0769%" y="1669" width="0.0128%" height="15" fill="rgb(235,80,0)" fg:x="5181" fg:w="3"/><text x="22.3269%" y="1679.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="22.0769%" y="1653" width="0.0128%" height="15" fill="rgb(221,117,53)" fg:x="5181" fg:w="3"/><text x="22.3269%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="22.0769%" y="1957" width="0.0170%" height="15" fill="rgb(239,48,47)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0769%" y="1941" width="0.0170%" height="15" fill="rgb(227,191,52)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0769%" y="1925" width="0.0170%" height="15" fill="rgb(241,118,1)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.0769%" y="1909" width="0.0170%" height="15" fill="rgb(240,85,3)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.0769%" y="1893" width="0.0170%" height="15" fill="rgb(237,68,37)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.0769%" y="1877" width="0.0170%" height="15" fill="rgb(212,9,20)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.0769%" y="1861" width="0.0170%" height="15" fill="rgb(218,84,17)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.0769%" y="1845" width="0.0170%" height="15" fill="rgb(235,147,20)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.0769%" y="1829" width="0.0170%" height="15" fill="rgb(208,224,1)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.0769%" y="1813" width="0.0170%" height="15" fill="rgb(232,97,50)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.0769%" y="1797" width="0.0170%" height="15" fill="rgb(238,15,45)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0769%" y="1781" width="0.0170%" height="15" fill="rgb(231,46,18)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.0769%" y="1765" width="0.0170%" height="15" fill="rgb(254,169,10)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.0769%" y="1749" width="0.0170%" height="15" fill="rgb(243,169,30)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.0769%" y="1733" width="0.0170%" height="15" fill="rgb(236,90,49)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.0769%" y="1717" width="0.0170%" height="15" fill="rgb(218,80,15)" fg:x="5181" fg:w="4"/><text x="22.3269%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (24 samples, 0.10%)</title><rect x="22.0044%" y="2245" width="0.1023%" height="15" fill="rgb(222,115,37)" fg:x="5164" fg:w="24"/><text x="22.2544%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (24 samples, 0.10%)</title><rect x="22.0044%" y="2229" width="0.1023%" height="15" fill="rgb(227,0,6)" fg:x="5164" fg:w="24"/><text x="22.2544%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="22.0044%" y="2213" width="0.1023%" height="15" fill="rgb(217,189,13)" fg:x="5164" fg:w="24"/><text x="22.2544%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="22.0044%" y="2197" width="0.1023%" height="15" fill="rgb(220,74,19)" fg:x="5164" fg:w="24"/><text x="22.2544%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="22.0257%" y="2181" width="0.0810%" height="15" fill="rgb(224,81,18)" fg:x="5169" fg:w="19"/><text x="22.2757%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="22.0257%" y="2165" width="0.0810%" height="15" fill="rgb(245,178,48)" fg:x="5169" fg:w="19"/><text x="22.2757%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="22.0257%" y="2149" width="0.0810%" height="15" fill="rgb(207,78,24)" fg:x="5169" fg:w="19"/><text x="22.2757%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="22.0683%" y="2133" width="0.0384%" height="15" fill="rgb(223,222,30)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="22.0683%" y="2117" width="0.0384%" height="15" fill="rgb(234,101,12)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2127.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="22.0683%" y="2101" width="0.0384%" height="15" fill="rgb(209,80,46)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="22.0683%" y="2085" width="0.0384%" height="15" fill="rgb(228,79,14)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="22.0683%" y="2069" width="0.0384%" height="15" fill="rgb(220,219,34)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="22.0683%" y="2053" width="0.0384%" height="15" fill="rgb(207,80,21)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="22.0683%" y="2037" width="0.0384%" height="15" fill="rgb(210,154,44)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="22.0683%" y="2021" width="0.0384%" height="15" fill="rgb(246,44,39)" fg:x="5179" fg:w="9"/><text x="22.3183%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="22.0769%" y="2005" width="0.0298%" height="15" fill="rgb(252,175,13)" fg:x="5181" fg:w="7"/><text x="22.3269%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="22.0769%" y="1989" width="0.0298%" height="15" fill="rgb(211,50,39)" fg:x="5181" fg:w="7"/><text x="22.3269%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="22.0769%" y="1973" width="0.0298%" height="15" fill="rgb(231,204,27)" fg:x="5181" fg:w="7"/><text x="22.3269%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="22.0939%" y="1957" width="0.0128%" height="15" fill="rgb(253,26,34)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="22.0939%" y="1941" width="0.0128%" height="15" fill="rgb(207,139,38)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1951.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="22.0939%" y="1925" width="0.0128%" height="15" fill="rgb(248,54,27)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="22.0939%" y="1909" width="0.0128%" height="15" fill="rgb(234,25,33)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="22.0939%" y="1893" width="0.0128%" height="15" fill="rgb(249,107,47)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="22.0939%" y="1877" width="0.0128%" height="15" fill="rgb(230,190,31)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="22.0939%" y="1861" width="0.0128%" height="15" fill="rgb(238,173,45)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="22.0939%" y="1845" width="0.0128%" height="15" fill="rgb(222,16,50)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="22.0939%" y="1829" width="0.0128%" height="15" fill="rgb(251,204,47)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="22.0939%" y="1813" width="0.0128%" height="15" fill="rgb(225,12,3)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="22.0939%" y="1797" width="0.0128%" height="15" fill="rgb(214,208,22)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="22.0939%" y="1781" width="0.0128%" height="15" fill="rgb(240,57,32)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="22.0939%" y="1765" width="0.0128%" height="15" fill="rgb(243,113,48)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="22.0939%" y="1749" width="0.0128%" height="15" fill="rgb(225,135,30)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="22.0939%" y="1733" width="0.0128%" height="15" fill="rgb(222,3,53)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="22.0939%" y="1717" width="0.0128%" height="15" fill="rgb(243,142,2)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="22.0939%" y="1701" width="0.0128%" height="15" fill="rgb(233,67,14)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="22.0939%" y="1685" width="0.0128%" height="15" fill="rgb(245,125,36)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="22.0939%" y="1669" width="0.0128%" height="15" fill="rgb(225,199,6)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="22.0939%" y="1653" width="0.0128%" height="15" fill="rgb(244,71,6)" fg:x="5185" fg:w="3"/><text x="22.3439%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.1067%" y="2117" width="0.0170%" height="15" fill="rgb(225,62,9)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.1067%" y="2101" width="0.0170%" height="15" fill="rgb(246,139,53)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.1067%" y="2085" width="0.0170%" height="15" fill="rgb(243,161,46)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.1067%" y="2069" width="0.0170%" height="15" fill="rgb(236,153,7)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.1067%" y="2053" width="0.0170%" height="15" fill="rgb(248,42,35)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.1067%" y="2037" width="0.0170%" height="15" fill="rgb(250,17,31)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.1067%" y="2021" width="0.0170%" height="15" fill="rgb(248,138,14)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1067%" y="2005" width="0.0170%" height="15" fill="rgb(228,161,3)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.1067%" y="1989" width="0.0170%" height="15" fill="rgb(248,116,17)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.1067%" y="1973" width="0.0170%" height="15" fill="rgb(207,78,24)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1067%" y="1957" width="0.0170%" height="15" fill="rgb(234,99,48)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.1067%" y="1941" width="0.0170%" height="15" fill="rgb(242,22,26)" fg:x="5188" fg:w="4"/><text x="22.3567%" y="1951.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="22.1408%" y="1653" width="0.0128%" height="15" fill="rgb(227,78,32)" fg:x="5196" fg:w="3"/><text x="22.3908%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="22.1237%" y="2069" width="0.0341%" height="15" fill="rgb(226,189,43)" fg:x="5192" fg:w="8"/><text x="22.3737%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="22.1237%" y="2053" width="0.0341%" height="15" fill="rgb(227,218,35)" fg:x="5192" fg:w="8"/><text x="22.3737%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="22.1237%" y="2037" width="0.0341%" height="15" fill="rgb(206,111,40)" fg:x="5192" fg:w="8"/><text x="22.3737%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="22.1237%" y="2021" width="0.0341%" height="15" fill="rgb(208,217,22)" fg:x="5192" fg:w="8"/><text x="22.3737%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="22.1323%" y="2005" width="0.0256%" height="15" fill="rgb(248,20,20)" fg:x="5194" fg:w="6"/><text x="22.3823%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="22.1323%" y="1989" width="0.0256%" height="15" fill="rgb(239,155,16)" fg:x="5194" fg:w="6"/><text x="22.3823%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="22.1323%" y="1973" width="0.0256%" height="15" fill="rgb(238,171,46)" fg:x="5194" fg:w="6"/><text x="22.3823%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="22.1408%" y="1957" width="0.0170%" height="15" fill="rgb(248,11,36)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="22.1408%" y="1941" width="0.0170%" height="15" fill="rgb(220,148,37)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1951.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="22.1408%" y="1925" width="0.0170%" height="15" fill="rgb(218,144,42)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="22.1408%" y="1909" width="0.0170%" height="15" fill="rgb(245,20,20)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="22.1408%" y="1893" width="0.0170%" height="15" fill="rgb(240,111,48)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1408%" y="1877" width="0.0170%" height="15" fill="rgb(237,225,32)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1408%" y="1861" width="0.0170%" height="15" fill="rgb(228,161,46)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.1408%" y="1845" width="0.0170%" height="15" fill="rgb(235,196,21)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.1408%" y="1829" width="0.0170%" height="15" fill="rgb(250,133,21)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.1408%" y="1813" width="0.0170%" height="15" fill="rgb(236,94,32)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.1408%" y="1797" width="0.0170%" height="15" fill="rgb(219,176,25)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.1408%" y="1781" width="0.0170%" height="15" fill="rgb(211,17,43)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.1408%" y="1765" width="0.0170%" height="15" fill="rgb(220,75,23)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.1408%" y="1749" width="0.0170%" height="15" fill="rgb(215,122,32)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.1408%" y="1733" width="0.0170%" height="15" fill="rgb(218,57,38)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1408%" y="1717" width="0.0170%" height="15" fill="rgb(233,208,46)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.1408%" y="1701" width="0.0170%" height="15" fill="rgb(221,35,50)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.1408%" y="1685" width="0.0170%" height="15" fill="rgb(229,213,29)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1408%" y="1669" width="0.0170%" height="15" fill="rgb(229,110,40)" fg:x="5196" fg:w="4"/><text x="22.3908%" y="1679.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="22.1664%" y="1637" width="0.0128%" height="15" fill="rgb(247,206,19)" fg:x="5202" fg:w="3"/><text x="22.4164%" y="1647.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="22.1664%" y="1621" width="0.0128%" height="15" fill="rgb(216,229,45)" fg:x="5202" fg:w="3"/><text x="22.4164%" y="1631.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="22.1664%" y="1893" width="0.0170%" height="15" fill="rgb(205,184,31)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1664%" y="1877" width="0.0170%" height="15" fill="rgb(213,91,10)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1664%" y="1861" width="0.0170%" height="15" fill="rgb(250,49,8)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.1664%" y="1845" width="0.0170%" height="15" fill="rgb(207,26,8)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.1664%" y="1829" width="0.0170%" height="15" fill="rgb(224,2,13)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.1664%" y="1813" width="0.0170%" height="15" fill="rgb(219,108,27)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.1664%" y="1797" width="0.0170%" height="15" fill="rgb(240,89,32)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.1664%" y="1781" width="0.0170%" height="15" fill="rgb(248,205,3)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.1664%" y="1765" width="0.0170%" height="15" fill="rgb(236,197,47)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.1664%" y="1749" width="0.0170%" height="15" fill="rgb(244,185,52)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.1664%" y="1733" width="0.0170%" height="15" fill="rgb(210,206,23)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1664%" y="1717" width="0.0170%" height="15" fill="rgb(251,177,30)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.1664%" y="1701" width="0.0170%" height="15" fill="rgb(243,27,45)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.1664%" y="1685" width="0.0170%" height="15" fill="rgb(248,141,51)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1664%" y="1669" width="0.0170%" height="15" fill="rgb(235,102,15)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.1664%" y="1653" width="0.0170%" height="15" fill="rgb(214,164,53)" fg:x="5202" fg:w="4"/><text x="22.4164%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (58 samples, 0.25%)</title><rect x="21.9533%" y="2357" width="0.2471%" height="15" fill="rgb(228,18,51)" fg:x="5152" fg:w="58"/><text x="22.2033%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (58 samples, 0.25%)</title><rect x="21.9533%" y="2341" width="0.2471%" height="15" fill="rgb(205,211,11)" fg:x="5152" fg:w="58"/><text x="22.2033%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (58 samples, 0.25%)</title><rect x="21.9533%" y="2325" width="0.2471%" height="15" fill="rgb(208,63,6)" fg:x="5152" fg:w="58"/><text x="22.2033%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.25%)</title><rect x="21.9533%" y="2309" width="0.2471%" height="15" fill="rgb(245,76,14)" fg:x="5152" fg:w="58"/><text x="22.2033%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (46 samples, 0.20%)</title><rect x="22.0044%" y="2293" width="0.1960%" height="15" fill="rgb(234,176,34)" fg:x="5164" fg:w="46"/><text x="22.2544%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.20%)</title><rect x="22.0044%" y="2277" width="0.1960%" height="15" fill="rgb(243,156,42)" fg:x="5164" fg:w="46"/><text x="22.2544%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (46 samples, 0.20%)</title><rect x="22.0044%" y="2261" width="0.1960%" height="15" fill="rgb(237,182,10)" fg:x="5164" fg:w="46"/><text x="22.2544%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="22.1067%" y="2245" width="0.0937%" height="15" fill="rgb(244,117,0)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="22.1067%" y="2229" width="0.0937%" height="15" fill="rgb(239,91,50)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2239.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="22.1067%" y="2213" width="0.0937%" height="15" fill="rgb(206,38,9)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="22.1067%" y="2197" width="0.0937%" height="15" fill="rgb(205,25,10)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="22.1067%" y="2181" width="0.0937%" height="15" fill="rgb(206,224,7)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (22 samples, 0.09%)</title><rect x="22.1067%" y="2165" width="0.0937%" height="15" fill="rgb(227,157,10)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="22.1067%" y="2149" width="0.0937%" height="15" fill="rgb(214,157,37)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="22.1067%" y="2133" width="0.0937%" height="15" fill="rgb(209,180,35)" fg:x="5188" fg:w="22"/><text x="22.3567%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="22.1237%" y="2117" width="0.0767%" height="15" fill="rgb(216,174,49)" fg:x="5192" fg:w="18"/><text x="22.3737%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="22.1237%" y="2101" width="0.0767%" height="15" fill="rgb(205,96,20)" fg:x="5192" fg:w="18"/><text x="22.3737%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="22.1237%" y="2085" width="0.0767%" height="15" fill="rgb(214,220,39)" fg:x="5192" fg:w="18"/><text x="22.3737%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="22.1578%" y="2069" width="0.0426%" height="15" fill="rgb(245,126,30)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="22.1578%" y="2053" width="0.0426%" height="15" fill="rgb(215,88,33)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="2063.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="22.1578%" y="2037" width="0.0426%" height="15" fill="rgb(210,1,49)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="22.1578%" y="2021" width="0.0426%" height="15" fill="rgb(207,133,3)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="22.1578%" y="2005" width="0.0426%" height="15" fill="rgb(231,47,43)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="22.1578%" y="1989" width="0.0426%" height="15" fill="rgb(245,64,1)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="22.1578%" y="1973" width="0.0426%" height="15" fill="rgb(253,145,20)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="22.1578%" y="1957" width="0.0426%" height="15" fill="rgb(211,39,18)" fg:x="5200" fg:w="10"/><text x="22.4078%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="22.1664%" y="1941" width="0.0341%" height="15" fill="rgb(223,225,18)" fg:x="5202" fg:w="8"/><text x="22.4164%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="22.1664%" y="1925" width="0.0341%" height="15" fill="rgb(210,202,44)" fg:x="5202" fg:w="8"/><text x="22.4164%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="22.1664%" y="1909" width="0.0341%" height="15" fill="rgb(231,138,36)" fg:x="5202" fg:w="8"/><text x="22.4164%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="22.1834%" y="1893" width="0.0170%" height="15" fill="rgb(237,115,25)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="22.1834%" y="1877" width="0.0170%" height="15" fill="rgb(215,53,48)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1887.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="22.1834%" y="1861" width="0.0170%" height="15" fill="rgb(243,193,24)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="22.1834%" y="1845" width="0.0170%" height="15" fill="rgb(210,106,28)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="22.1834%" y="1829" width="0.0170%" height="15" fill="rgb(249,192,0)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1834%" y="1813" width="0.0170%" height="15" fill="rgb(224,96,21)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1834%" y="1797" width="0.0170%" height="15" fill="rgb(243,160,19)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.1834%" y="1781" width="0.0170%" height="15" fill="rgb(219,205,50)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.1834%" y="1765" width="0.0170%" height="15" fill="rgb(218,175,44)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.1834%" y="1749" width="0.0170%" height="15" fill="rgb(251,84,47)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.1834%" y="1733" width="0.0170%" height="15" fill="rgb(241,14,16)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.1834%" y="1717" width="0.0170%" height="15" fill="rgb(207,142,28)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.1834%" y="1701" width="0.0170%" height="15" fill="rgb(208,116,22)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.1834%" y="1685" width="0.0170%" height="15" fill="rgb(210,0,43)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.1834%" y="1669" width="0.0170%" height="15" fill="rgb(246,33,21)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1834%" y="1653" width="0.0170%" height="15" fill="rgb(208,158,54)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.1834%" y="1637" width="0.0170%" height="15" fill="rgb(218,99,29)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.1834%" y="1621" width="0.0170%" height="15" fill="rgb(226,29,7)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.1834%" y="1605" width="0.0170%" height="15" fill="rgb(206,178,46)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.1834%" y="1589" width="0.0170%" height="15" fill="rgb(205,169,32)" fg:x="5206" fg:w="4"/><text x="22.4334%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="22.2004%" y="2037" width="0.0170%" height="15" fill="rgb(217,4,13)" fg:x="5210" fg:w="4"/><text x="22.4504%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="22.2004%" y="2021" width="0.0170%" height="15" fill="rgb(210,140,37)" fg:x="5210" fg:w="4"/><text x="22.4504%" y="2031.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="22.2047%" y="2005" width="0.0128%" height="15" fill="rgb(229,80,10)" fg:x="5211" fg:w="3"/><text x="22.4547%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="22.2217%" y="2037" width="0.0170%" height="15" fill="rgb(212,175,34)" fg:x="5215" fg:w="4"/><text x="22.4717%" y="2047.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="22.2217%" y="2021" width="0.0170%" height="15" fill="rgb(216,207,24)" fg:x="5215" fg:w="4"/><text x="22.4717%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="22.2004%" y="2229" width="0.0426%" height="15" fill="rgb(234,163,3)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="22.2004%" y="2213" width="0.0426%" height="15" fill="rgb(248,101,16)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="22.2004%" y="2197" width="0.0426%" height="15" fill="rgb(209,152,54)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="22.2004%" y="2181" width="0.0426%" height="15" fill="rgb(229,124,51)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="22.2004%" y="2165" width="0.0426%" height="15" fill="rgb(219,83,18)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="22.2004%" y="2149" width="0.0426%" height="15" fill="rgb(206,29,38)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="22.2004%" y="2133" width="0.0426%" height="15" fill="rgb(245,123,23)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="22.2004%" y="2117" width="0.0426%" height="15" fill="rgb(238,50,33)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="22.2004%" y="2101" width="0.0426%" height="15" fill="rgb(234,165,23)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="22.2004%" y="2085" width="0.0426%" height="15" fill="rgb(211,82,31)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="22.2004%" y="2069" width="0.0426%" height="15" fill="rgb(224,166,46)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="22.2004%" y="2053" width="0.0426%" height="15" fill="rgb(211,13,8)" fg:x="5210" fg:w="10"/><text x="22.4504%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="22.2431%" y="2117" width="0.0213%" height="15" fill="rgb(212,7,42)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="22.2431%" y="2101" width="0.0213%" height="15" fill="rgb(249,102,19)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="22.2431%" y="2085" width="0.0213%" height="15" fill="rgb(225,41,13)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="22.2431%" y="2069" width="0.0213%" height="15" fill="rgb(220,65,27)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="22.2431%" y="2053" width="0.0213%" height="15" fill="rgb(206,4,41)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="22.2431%" y="2037" width="0.0213%" height="15" fill="rgb(219,60,39)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="22.2431%" y="2021" width="0.0213%" height="15" fill="rgb(226,4,38)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="22.2431%" y="2005" width="0.0213%" height="15" fill="rgb(250,52,3)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="22.2431%" y="1989" width="0.0213%" height="15" fill="rgb(234,93,0)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="22.2431%" y="1973" width="0.0213%" height="15" fill="rgb(251,47,47)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="22.2431%" y="1957" width="0.0213%" height="15" fill="rgb(205,166,47)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="22.2431%" y="1941" width="0.0213%" height="15" fill="rgb(231,148,8)" fg:x="5220" fg:w="5"/><text x="22.4931%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="22.2729%" y="1957" width="0.0170%" height="15" fill="rgb(244,185,19)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="22.2729%" y="1941" width="0.0170%" height="15" fill="rgb(224,201,45)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.2729%" y="1925" width="0.0170%" height="15" fill="rgb(240,77,39)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.2729%" y="1909" width="0.0170%" height="15" fill="rgb(248,211,29)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.2729%" y="1893" width="0.0170%" height="15" fill="rgb(232,214,46)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.2729%" y="1877" width="0.0170%" height="15" fill="rgb(213,99,54)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.2729%" y="1861" width="0.0170%" height="15" fill="rgb(240,19,46)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.2729%" y="1845" width="0.0170%" height="15" fill="rgb(243,89,10)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.2729%" y="1829" width="0.0170%" height="15" fill="rgb(249,28,32)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.2729%" y="1813" width="0.0170%" height="15" fill="rgb(253,30,9)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.2729%" y="1797" width="0.0170%" height="15" fill="rgb(217,2,26)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.2729%" y="1781" width="0.0170%" height="15" fill="rgb(220,28,10)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.2729%" y="1765" width="0.0170%" height="15" fill="rgb(228,167,49)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.2729%" y="1749" width="0.0170%" height="15" fill="rgb(238,212,3)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.2729%" y="1733" width="0.0170%" height="15" fill="rgb(229,134,44)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.2729%" y="1717" width="0.0170%" height="15" fill="rgb(208,71,4)" fg:x="5227" fg:w="4"/><text x="22.5229%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="22.2644%" y="2069" width="0.0341%" height="15" fill="rgb(221,205,45)" fg:x="5225" fg:w="8"/><text x="22.5144%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="22.2644%" y="2053" width="0.0341%" height="15" fill="rgb(215,132,38)" fg:x="5225" fg:w="8"/><text x="22.5144%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="22.2644%" y="2037" width="0.0341%" height="15" fill="rgb(227,158,6)" fg:x="5225" fg:w="8"/><text x="22.5144%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="22.2644%" y="2021" width="0.0341%" height="15" fill="rgb(250,10,38)" fg:x="5225" fg:w="8"/><text x="22.5144%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="22.2729%" y="2005" width="0.0256%" height="15" fill="rgb(225,171,40)" fg:x="5227" fg:w="6"/><text x="22.5229%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="22.2729%" y="1989" width="0.0256%" height="15" fill="rgb(238,17,43)" fg:x="5227" fg:w="6"/><text x="22.5229%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="22.2729%" y="1973" width="0.0256%" height="15" fill="rgb(208,145,4)" fg:x="5227" fg:w="6"/><text x="22.5229%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="22.3070%" y="1893" width="0.0128%" height="15" fill="rgb(232,82,7)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3070%" y="1877" width="0.0128%" height="15" fill="rgb(205,166,38)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3070%" y="1861" width="0.0128%" height="15" fill="rgb(240,228,4)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="22.3070%" y="1845" width="0.0128%" height="15" fill="rgb(233,121,40)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="22.3070%" y="1829" width="0.0128%" height="15" fill="rgb(243,84,30)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="22.3070%" y="1813" width="0.0128%" height="15" fill="rgb(235,81,48)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="22.3070%" y="1797" width="0.0128%" height="15" fill="rgb(218,137,0)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="22.3070%" y="1781" width="0.0128%" height="15" fill="rgb(223,151,48)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="22.3070%" y="1765" width="0.0128%" height="15" fill="rgb(247,30,19)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="22.3070%" y="1749" width="0.0128%" height="15" fill="rgb(205,129,29)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="22.3070%" y="1733" width="0.0128%" height="15" fill="rgb(222,29,2)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3070%" y="1717" width="0.0128%" height="15" fill="rgb(232,145,33)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="22.3070%" y="1701" width="0.0128%" height="15" fill="rgb(217,30,31)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="22.3070%" y="1685" width="0.0128%" height="15" fill="rgb(243,22,52)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3070%" y="1669" width="0.0128%" height="15" fill="rgb(254,228,14)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="22.3070%" y="1653" width="0.0128%" height="15" fill="rgb(231,45,50)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="22.3070%" y="1637" width="0.0128%" height="15" fill="rgb(248,125,3)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="22.3070%" y="1621" width="0.0128%" height="15" fill="rgb(213,76,9)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1631.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="22.3070%" y="1605" width="0.0128%" height="15" fill="rgb(238,108,21)" fg:x="5235" fg:w="3"/><text x="22.5570%" y="1615.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="22.2431%" y="2181" width="0.0937%" height="15" fill="rgb(229,214,19)" fg:x="5220" fg:w="22"/><text x="22.4931%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="22.2431%" y="2165" width="0.0937%" height="15" fill="rgb(252,201,5)" fg:x="5220" fg:w="22"/><text x="22.4931%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="22.2431%" y="2149" width="0.0937%" height="15" fill="rgb(233,165,49)" fg:x="5220" fg:w="22"/><text x="22.4931%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="22.2431%" y="2133" width="0.0937%" height="15" fill="rgb(208,165,19)" fg:x="5220" fg:w="22"/><text x="22.4931%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="22.2644%" y="2117" width="0.0724%" height="15" fill="rgb(216,220,31)" fg:x="5225" fg:w="17"/><text x="22.5144%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="22.2644%" y="2101" width="0.0724%" height="15" fill="rgb(214,8,31)" fg:x="5225" fg:w="17"/><text x="22.5144%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="22.2644%" y="2085" width="0.0724%" height="15" fill="rgb(220,32,32)" fg:x="5225" fg:w="17"/><text x="22.5144%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="22.2984%" y="2069" width="0.0384%" height="15" fill="rgb(237,172,34)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="22.2984%" y="2053" width="0.0384%" height="15" fill="rgb(240,209,5)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="2063.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="22.2984%" y="2037" width="0.0384%" height="15" fill="rgb(221,219,1)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="22.2984%" y="2021" width="0.0384%" height="15" fill="rgb(237,90,36)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="22.2984%" y="2005" width="0.0384%" height="15" fill="rgb(245,14,51)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="22.2984%" y="1989" width="0.0384%" height="15" fill="rgb(211,71,49)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="22.2984%" y="1973" width="0.0384%" height="15" fill="rgb(230,223,9)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="22.2984%" y="1957" width="0.0384%" height="15" fill="rgb(212,33,31)" fg:x="5233" fg:w="9"/><text x="22.5484%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="22.3070%" y="1941" width="0.0298%" height="15" fill="rgb(218,141,5)" fg:x="5235" fg:w="7"/><text x="22.5570%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="22.3070%" y="1925" width="0.0298%" height="15" fill="rgb(239,194,8)" fg:x="5235" fg:w="7"/><text x="22.5570%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="22.3070%" y="1909" width="0.0298%" height="15" fill="rgb(225,119,29)" fg:x="5235" fg:w="7"/><text x="22.5570%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="22.3198%" y="1893" width="0.0170%" height="15" fill="rgb(233,32,3)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="22.3198%" y="1877" width="0.0170%" height="15" fill="rgb(248,126,40)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1887.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="22.3198%" y="1861" width="0.0170%" height="15" fill="rgb(213,102,53)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="22.3198%" y="1845" width="0.0170%" height="15" fill="rgb(212,69,15)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="22.3198%" y="1829" width="0.0170%" height="15" fill="rgb(253,39,34)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3198%" y="1813" width="0.0170%" height="15" fill="rgb(205,189,54)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3198%" y="1797" width="0.0170%" height="15" fill="rgb(234,229,45)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.3198%" y="1781" width="0.0170%" height="15" fill="rgb(243,79,48)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.3198%" y="1765" width="0.0170%" height="15" fill="rgb(206,71,50)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.3198%" y="1749" width="0.0170%" height="15" fill="rgb(209,32,17)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.3198%" y="1733" width="0.0170%" height="15" fill="rgb(219,229,6)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.3198%" y="1717" width="0.0170%" height="15" fill="rgb(226,25,27)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.3198%" y="1701" width="0.0170%" height="15" fill="rgb(218,185,23)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.3198%" y="1685" width="0.0170%" height="15" fill="rgb(242,123,5)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.3198%" y="1669" width="0.0170%" height="15" fill="rgb(215,53,19)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3198%" y="1653" width="0.0170%" height="15" fill="rgb(233,20,30)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.3198%" y="1637" width="0.0170%" height="15" fill="rgb(209,67,20)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.3198%" y="1621" width="0.0170%" height="15" fill="rgb(227,181,50)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3198%" y="1605" width="0.0170%" height="15" fill="rgb(252,75,38)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.3198%" y="1589" width="0.0170%" height="15" fill="rgb(235,9,33)" fg:x="5238" fg:w="4"/><text x="22.5698%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="22.3240%" y="1573" width="0.0128%" height="15" fill="rgb(208,87,30)" fg:x="5239" fg:w="3"/><text x="22.5740%" y="1583.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="22.3240%" y="1557" width="0.0128%" height="15" fill="rgb(215,199,39)" fg:x="5239" fg:w="3"/><text x="22.5740%" y="1567.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="22.3368%" y="1861" width="0.0256%" height="15" fill="rgb(246,208,12)" fg:x="5242" fg:w="6"/><text x="22.5868%" y="1871.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="22.3368%" y="1845" width="0.0256%" height="15" fill="rgb(206,195,10)" fg:x="5242" fg:w="6"/><text x="22.5868%" y="1855.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="22.3411%" y="1829" width="0.0213%" height="15" fill="rgb(244,1,30)" fg:x="5243" fg:w="5"/><text x="22.5911%" y="1839.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="22.3453%" y="1813" width="0.0170%" height="15" fill="rgb(230,83,5)" fg:x="5244" fg:w="4"/><text x="22.5953%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="22.3368%" y="2053" width="0.0384%" height="15" fill="rgb(239,62,17)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="22.3368%" y="2037" width="0.0384%" height="15" fill="rgb(252,193,41)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="22.3368%" y="2021" width="0.0384%" height="15" fill="rgb(216,142,19)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="22.3368%" y="2005" width="0.0384%" height="15" fill="rgb(240,81,38)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="22.3368%" y="1989" width="0.0384%" height="15" fill="rgb(240,109,40)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="22.3368%" y="1973" width="0.0384%" height="15" fill="rgb(230,123,10)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="22.3368%" y="1957" width="0.0384%" height="15" fill="rgb(253,42,32)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="22.3368%" y="1941" width="0.0384%" height="15" fill="rgb(218,154,8)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="22.3368%" y="1925" width="0.0384%" height="15" fill="rgb(216,197,10)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="22.3368%" y="1909" width="0.0384%" height="15" fill="rgb(223,107,12)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="22.3368%" y="1893" width="0.0384%" height="15" fill="rgb(241,174,42)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="22.3368%" y="1877" width="0.0384%" height="15" fill="rgb(231,78,20)" fg:x="5242" fg:w="9"/><text x="22.5868%" y="1887.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="22.3751%" y="1893" width="0.0128%" height="15" fill="rgb(230,208,49)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3751%" y="1877" width="0.0128%" height="15" fill="rgb(238,11,34)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3751%" y="1861" width="0.0128%" height="15" fill="rgb(210,130,26)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="22.3751%" y="1845" width="0.0128%" height="15" fill="rgb(242,131,11)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="22.3751%" y="1829" width="0.0128%" height="15" fill="rgb(237,38,28)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="22.3751%" y="1813" width="0.0128%" height="15" fill="rgb(244,180,43)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="22.3751%" y="1797" width="0.0128%" height="15" fill="rgb(214,171,19)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="22.3751%" y="1781" width="0.0128%" height="15" fill="rgb(252,101,45)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="22.3751%" y="1765" width="0.0128%" height="15" fill="rgb(211,96,33)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="22.3751%" y="1749" width="0.0128%" height="15" fill="rgb(207,80,25)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="22.3751%" y="1733" width="0.0128%" height="15" fill="rgb(225,15,35)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3751%" y="1717" width="0.0128%" height="15" fill="rgb(214,93,43)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="22.3751%" y="1701" width="0.0128%" height="15" fill="rgb(248,42,37)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="22.3751%" y="1685" width="0.0128%" height="15" fill="rgb(217,135,32)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="22.3751%" y="1669" width="0.0128%" height="15" fill="rgb(216,74,28)" fg:x="5251" fg:w="3"/><text x="22.6251%" y="1679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="22.3751%" y="2005" width="0.0298%" height="15" fill="rgb(247,108,16)" fg:x="5251" fg:w="7"/><text x="22.6251%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="22.3751%" y="1989" width="0.0298%" height="15" fill="rgb(205,219,30)" fg:x="5251" fg:w="7"/><text x="22.6251%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="22.3751%" y="1973" width="0.0298%" height="15" fill="rgb(241,122,9)" fg:x="5251" fg:w="7"/><text x="22.6251%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="22.3751%" y="1957" width="0.0298%" height="15" fill="rgb(216,148,50)" fg:x="5251" fg:w="7"/><text x="22.6251%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="22.3751%" y="1941" width="0.0298%" height="15" fill="rgb(226,154,2)" fg:x="5251" fg:w="7"/><text x="22.6251%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="22.3751%" y="1925" width="0.0298%" height="15" fill="rgb(220,128,1)" fg:x="5251" fg:w="7"/><text x="22.6251%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="22.3751%" y="1909" width="0.0298%" height="15" fill="rgb(245,185,29)" fg:x="5251" fg:w="7"/><text x="22.6251%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="22.3879%" y="1893" width="0.0170%" height="15" fill="rgb(243,161,2)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="22.3879%" y="1877" width="0.0170%" height="15" fill="rgb(249,215,17)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1887.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="22.3879%" y="1861" width="0.0170%" height="15" fill="rgb(237,67,11)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="22.3879%" y="1845" width="0.0170%" height="15" fill="rgb(239,17,24)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="22.3879%" y="1829" width="0.0170%" height="15" fill="rgb(215,97,29)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3879%" y="1813" width="0.0170%" height="15" fill="rgb(253,228,42)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3879%" y="1797" width="0.0170%" height="15" fill="rgb(240,85,2)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.3879%" y="1781" width="0.0170%" height="15" fill="rgb(214,155,4)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.3879%" y="1765" width="0.0170%" height="15" fill="rgb(247,120,22)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.3879%" y="1749" width="0.0170%" height="15" fill="rgb(211,208,6)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.3879%" y="1733" width="0.0170%" height="15" fill="rgb(235,99,41)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.3879%" y="1717" width="0.0170%" height="15" fill="rgb(223,28,8)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.3879%" y="1701" width="0.0170%" height="15" fill="rgb(212,71,20)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.3879%" y="1685" width="0.0170%" height="15" fill="rgb(206,85,3)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.3879%" y="1669" width="0.0170%" height="15" fill="rgb(244,180,11)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3879%" y="1653" width="0.0170%" height="15" fill="rgb(223,16,21)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.3879%" y="1637" width="0.0170%" height="15" fill="rgb(238,85,42)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.3879%" y="1621" width="0.0170%" height="15" fill="rgb(205,85,8)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.3879%" y="1605" width="0.0170%" height="15" fill="rgb(217,190,15)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.3879%" y="1589" width="0.0170%" height="15" fill="rgb(243,192,23)" fg:x="5254" fg:w="4"/><text x="22.6379%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (497 samples, 2.12%)</title><rect x="20.3042%" y="2997" width="2.1178%" height="15" fill="rgb(223,220,37)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="3007.50">r..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (497 samples, 2.12%)</title><rect x="20.3042%" y="2981" width="2.1178%" height="15" fill="rgb(208,41,17)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2991.50">r..</text></g><g><title>rayon_core::registry::WorkerThread::execute (497 samples, 2.12%)</title><rect x="20.3042%" y="2965" width="2.1178%" height="15" fill="rgb(224,188,7)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2975.50">r..</text></g><g><title>rayon_core::job::JobRef::execute (497 samples, 2.12%)</title><rect x="20.3042%" y="2949" width="2.1178%" height="15" fill="rgb(236,16,50)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2959.50">r..</text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (497 samples, 2.12%)</title><rect x="20.3042%" y="2933" width="2.1178%" height="15" fill="rgb(238,6,24)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2943.50"><..</text></g><g><title>rayon_core::job::JobResult<T>::call (497 samples, 2.12%)</title><rect x="20.3042%" y="2917" width="2.1178%" height="15" fill="rgb(253,67,45)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2927.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (497 samples, 2.12%)</title><rect x="20.3042%" y="2901" width="2.1178%" height="15" fill="rgb(210,89,32)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2911.50">r..</text></g><g><title>std::panic::catch_unwind (497 samples, 2.12%)</title><rect x="20.3042%" y="2885" width="2.1178%" height="15" fill="rgb(208,89,9)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2895.50">s..</text></g><g><title>std::panicking::try (497 samples, 2.12%)</title><rect x="20.3042%" y="2869" width="2.1178%" height="15" fill="rgb(222,180,44)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2879.50">s..</text></g><g><title>std::panicking::try::do_call (497 samples, 2.12%)</title><rect x="20.3042%" y="2853" width="2.1178%" height="15" fill="rgb(250,181,46)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2863.50">s..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (497 samples, 2.12%)</title><rect x="20.3042%" y="2837" width="2.1178%" height="15" fill="rgb(210,190,26)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2847.50"><..</text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (497 samples, 2.12%)</title><rect x="20.3042%" y="2821" width="2.1178%" height="15" fill="rgb(253,49,13)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2831.50">r..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (497 samples, 2.12%)</title><rect x="20.3042%" y="2805" width="2.1178%" height="15" fill="rgb(240,184,42)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2815.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (497 samples, 2.12%)</title><rect x="20.3042%" y="2789" width="2.1178%" height="15" fill="rgb(246,59,37)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2799.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (497 samples, 2.12%)</title><rect x="20.3042%" y="2773" width="2.1178%" height="15" fill="rgb(207,134,54)" fg:x="4765" fg:w="497"/><text x="20.5542%" y="2783.50">r..</text></g><g><title>rayon_core::join::join_context (495 samples, 2.11%)</title><rect x="20.3128%" y="2757" width="2.1093%" height="15" fill="rgb(250,122,24)" fg:x="4767" fg:w="495"/><text x="20.5628%" y="2767.50">r..</text></g><g><title>rayon_core::registry::in_worker (495 samples, 2.11%)</title><rect x="20.3128%" y="2741" width="2.1093%" height="15" fill="rgb(239,206,3)" fg:x="4767" fg:w="495"/><text x="20.5628%" y="2751.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (495 samples, 2.11%)</title><rect x="20.3128%" y="2725" width="2.1093%" height="15" fill="rgb(253,220,32)" fg:x="4767" fg:w="495"/><text x="20.5628%" y="2735.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (257 samples, 1.10%)</title><rect x="21.3269%" y="2709" width="1.0951%" height="15" fill="rgb(209,217,48)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (257 samples, 1.10%)</title><rect x="21.3269%" y="2693" width="1.0951%" height="15" fill="rgb(242,91,39)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2703.50"></text></g><g><title>std::panicking::try (257 samples, 1.10%)</title><rect x="21.3269%" y="2677" width="1.0951%" height="15" fill="rgb(228,4,13)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (257 samples, 1.10%)</title><rect x="21.3269%" y="2661" width="1.0951%" height="15" fill="rgb(223,133,4)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (257 samples, 1.10%)</title><rect x="21.3269%" y="2645" width="1.0951%" height="15" fill="rgb(215,105,30)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (257 samples, 1.10%)</title><rect x="21.3269%" y="2629" width="1.0951%" height="15" fill="rgb(230,9,4)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (257 samples, 1.10%)</title><rect x="21.3269%" y="2613" width="1.0951%" height="15" fill="rgb(248,15,2)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (257 samples, 1.10%)</title><rect x="21.3269%" y="2597" width="1.0951%" height="15" fill="rgb(208,210,22)" fg:x="5005" fg:w="257"/><text x="21.5769%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (244 samples, 1.04%)</title><rect x="21.3823%" y="2581" width="1.0397%" height="15" fill="rgb(208,112,41)" fg:x="5018" fg:w="244"/><text x="21.6323%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (244 samples, 1.04%)</title><rect x="21.3823%" y="2565" width="1.0397%" height="15" fill="rgb(232,83,14)" fg:x="5018" fg:w="244"/><text x="21.6323%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (244 samples, 1.04%)</title><rect x="21.3823%" y="2549" width="1.0397%" height="15" fill="rgb(229,65,11)" fg:x="5018" fg:w="244"/><text x="21.6323%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (114 samples, 0.49%)</title><rect x="21.9363%" y="2533" width="0.4858%" height="15" fill="rgb(228,126,24)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (114 samples, 0.49%)</title><rect x="21.9363%" y="2517" width="0.4858%" height="15" fill="rgb(218,66,33)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2527.50"></text></g><g><title>std::panicking::try (114 samples, 0.49%)</title><rect x="21.9363%" y="2501" width="0.4858%" height="15" fill="rgb(251,49,52)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (114 samples, 0.49%)</title><rect x="21.9363%" y="2485" width="0.4858%" height="15" fill="rgb(219,46,37)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (114 samples, 0.49%)</title><rect x="21.9363%" y="2469" width="0.4858%" height="15" fill="rgb(213,53,49)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (114 samples, 0.49%)</title><rect x="21.9363%" y="2453" width="0.4858%" height="15" fill="rgb(214,134,1)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (114 samples, 0.49%)</title><rect x="21.9363%" y="2437" width="0.4858%" height="15" fill="rgb(208,139,43)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (114 samples, 0.49%)</title><rect x="21.9363%" y="2421" width="0.4858%" height="15" fill="rgb(231,105,35)" fg:x="5148" fg:w="114"/><text x="22.1863%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (110 samples, 0.47%)</title><rect x="21.9533%" y="2405" width="0.4687%" height="15" fill="rgb(247,189,9)" fg:x="5152" fg:w="110"/><text x="22.2033%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (110 samples, 0.47%)</title><rect x="21.9533%" y="2389" width="0.4687%" height="15" fill="rgb(252,48,51)" fg:x="5152" fg:w="110"/><text x="22.2033%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (110 samples, 0.47%)</title><rect x="21.9533%" y="2373" width="0.4687%" height="15" fill="rgb(209,121,1)" fg:x="5152" fg:w="110"/><text x="22.2033%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (52 samples, 0.22%)</title><rect x="22.2004%" y="2357" width="0.2216%" height="15" fill="rgb(231,40,26)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (52 samples, 0.22%)</title><rect x="22.2004%" y="2341" width="0.2216%" height="15" fill="rgb(251,8,13)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2351.50"></text></g><g><title>std::panicking::try (52 samples, 0.22%)</title><rect x="22.2004%" y="2325" width="0.2216%" height="15" fill="rgb(231,110,2)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (52 samples, 0.22%)</title><rect x="22.2004%" y="2309" width="0.2216%" height="15" fill="rgb(216,153,22)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (52 samples, 0.22%)</title><rect x="22.2004%" y="2293" width="0.2216%" height="15" fill="rgb(249,116,49)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (52 samples, 0.22%)</title><rect x="22.2004%" y="2277" width="0.2216%" height="15" fill="rgb(230,89,2)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (52 samples, 0.22%)</title><rect x="22.2004%" y="2261" width="0.2216%" height="15" fill="rgb(231,125,23)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.22%)</title><rect x="22.2004%" y="2245" width="0.2216%" height="15" fill="rgb(212,217,18)" fg:x="5210" fg:w="52"/><text x="22.4504%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="22.2431%" y="2229" width="0.1790%" height="15" fill="rgb(210,21,33)" fg:x="5220" fg:w="42"/><text x="22.4931%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="22.2431%" y="2213" width="0.1790%" height="15" fill="rgb(241,97,9)" fg:x="5220" fg:w="42"/><text x="22.4931%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="22.2431%" y="2197" width="0.1790%" height="15" fill="rgb(221,35,31)" fg:x="5220" fg:w="42"/><text x="22.4931%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="22.3368%" y="2181" width="0.0852%" height="15" fill="rgb(251,23,23)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="22.3368%" y="2165" width="0.0852%" height="15" fill="rgb(227,165,2)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2175.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="22.3368%" y="2149" width="0.0852%" height="15" fill="rgb(242,24,2)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="22.3368%" y="2133" width="0.0852%" height="15" fill="rgb(242,138,51)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="22.3368%" y="2117" width="0.0852%" height="15" fill="rgb(220,219,5)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="22.3368%" y="2101" width="0.0852%" height="15" fill="rgb(247,53,29)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="22.3368%" y="2085" width="0.0852%" height="15" fill="rgb(233,43,39)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="22.3368%" y="2069" width="0.0852%" height="15" fill="rgb(230,128,54)" fg:x="5242" fg:w="20"/><text x="22.5868%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="22.3751%" y="2053" width="0.0469%" height="15" fill="rgb(218,20,12)" fg:x="5251" fg:w="11"/><text x="22.6251%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="22.3751%" y="2037" width="0.0469%" height="15" fill="rgb(206,51,14)" fg:x="5251" fg:w="11"/><text x="22.6251%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="22.3751%" y="2021" width="0.0469%" height="15" fill="rgb(223,16,35)" fg:x="5251" fg:w="11"/><text x="22.6251%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="22.4050%" y="2005" width="0.0170%" height="15" fill="rgb(226,165,37)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="22.4050%" y="1989" width="0.0170%" height="15" fill="rgb(240,26,21)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1999.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="22.4050%" y="1973" width="0.0170%" height="15" fill="rgb(240,72,46)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="22.4050%" y="1957" width="0.0170%" height="15" fill="rgb(211,33,41)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="22.4050%" y="1941" width="0.0170%" height="15" fill="rgb(224,157,46)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="22.4050%" y="1925" width="0.0170%" height="15" fill="rgb(223,59,19)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="22.4050%" y="1909" width="0.0170%" height="15" fill="rgb(239,187,1)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.4050%" y="1893" width="0.0170%" height="15" fill="rgb(226,95,9)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="22.4050%" y="1877" width="0.0170%" height="15" fill="rgb(234,61,54)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="22.4050%" y="1861" width="0.0170%" height="15" fill="rgb(205,209,47)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="22.4050%" y="1845" width="0.0170%" height="15" fill="rgb(228,7,43)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="22.4050%" y="1829" width="0.0170%" height="15" fill="rgb(240,217,52)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="22.4050%" y="1813" width="0.0170%" height="15" fill="rgb(211,178,21)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="22.4050%" y="1797" width="0.0170%" height="15" fill="rgb(205,25,34)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="22.4050%" y="1781" width="0.0170%" height="15" fill="rgb(209,57,11)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="22.4050%" y="1765" width="0.0170%" height="15" fill="rgb(221,99,2)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="22.4050%" y="1749" width="0.0170%" height="15" fill="rgb(232,79,22)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="22.4050%" y="1733" width="0.0170%" height="15" fill="rgb(221,145,32)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="22.4050%" y="1717" width="0.0170%" height="15" fill="rgb(236,133,36)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="22.4050%" y="1701" width="0.0170%" height="15" fill="rgb(208,224,44)" fg:x="5258" fg:w="4"/><text x="22.6550%" y="1711.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (40 samples, 0.17%)</title><rect x="22.4220%" y="2677" width="0.1704%" height="15" fill="rgb(235,143,15)" fg:x="5262" fg:w="40"/><text x="22.6720%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::exp (40 samples, 0.17%)</title><rect x="22.4220%" y="2661" width="0.1704%" height="15" fill="rgb(249,83,27)" fg:x="5262" fg:w="40"/><text x="22.6720%" y="2671.50"></text></g><g><title>exp (38 samples, 0.16%)</title><rect x="22.4305%" y="2645" width="0.1619%" height="15" fill="rgb(238,226,19)" fg:x="5264" fg:w="38"/><text x="22.6805%" y="2655.50"></text></g><g><title>[libm.so.6] (31 samples, 0.13%)</title><rect x="22.4604%" y="2629" width="0.1321%" height="15" fill="rgb(226,206,27)" fg:x="5271" fg:w="31"/><text x="22.7104%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (19 samples, 0.08%)</title><rect x="22.5967%" y="2677" width="0.0810%" height="15" fill="rgb(251,182,9)" fg:x="5303" fg:w="19"/><text x="22.8467%" y="2687.50"></text></g><g><title>core::f64::<impl f64>::recip (19 samples, 0.08%)</title><rect x="22.5967%" y="2661" width="0.0810%" height="15" fill="rgb(212,140,41)" fg:x="5303" fg:w="19"/><text x="22.8467%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (82 samples, 0.35%)</title><rect x="22.4220%" y="2693" width="0.3494%" height="15" fill="rgb(220,106,18)" fg:x="5262" fg:w="82"/><text x="22.6720%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (22 samples, 0.09%)</title><rect x="22.6777%" y="2677" width="0.0937%" height="15" fill="rgb(252,46,41)" fg:x="5322" fg:w="22"/><text x="22.9277%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::sqrt (22 samples, 0.09%)</title><rect x="22.6777%" y="2661" width="0.0937%" height="15" fill="rgb(209,222,15)" fg:x="5322" fg:w="22"/><text x="22.9277%" y="2671.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (85 samples, 0.36%)</title><rect x="22.4220%" y="2853" width="0.3622%" height="15" fill="rgb(233,83,50)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (85 samples, 0.36%)</title><rect x="22.4220%" y="2837" width="0.3622%" height="15" fill="rgb(205,212,0)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (85 samples, 0.36%)</title><rect x="22.4220%" y="2821" width="0.3622%" height="15" fill="rgb(235,117,51)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2831.50"></text></g><g><title>core::option::Option<T>::map (85 samples, 0.36%)</title><rect x="22.4220%" y="2805" width="0.3622%" height="15" fill="rgb(233,133,48)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2815.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (85 samples, 0.36%)</title><rect x="22.4220%" y="2789" width="0.3622%" height="15" fill="rgb(219,3,2)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2799.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (85 samples, 0.36%)</title><rect x="22.4220%" y="2773" width="0.3622%" height="15" fill="rgb(225,80,52)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (85 samples, 0.36%)</title><rect x="22.4220%" y="2757" width="0.3622%" height="15" fill="rgb(235,195,42)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2767.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (85 samples, 0.36%)</title><rect x="22.4220%" y="2741" width="0.3622%" height="15" fill="rgb(240,207,46)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2751.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (85 samples, 0.36%)</title><rect x="22.4220%" y="2725" width="0.3622%" height="15" fill="rgb(236,112,50)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (85 samples, 0.36%)</title><rect x="22.4220%" y="2709" width="0.3622%" height="15" fill="rgb(249,151,27)" fg:x="5262" fg:w="85"/><text x="22.6720%" y="2719.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="22.7714%" y="2693" width="0.0128%" height="15" fill="rgb(253,223,52)" fg:x="5344" fg:w="3"/><text x="23.0214%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (93 samples, 0.40%)</title><rect x="22.4220%" y="2869" width="0.3963%" height="15" fill="rgb(215,55,33)" fg:x="5262" fg:w="93"/><text x="22.6720%" y="2879.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="22.7842%" y="2853" width="0.0341%" height="15" fill="rgb(207,24,17)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2863.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="22.7842%" y="2837" width="0.0341%" height="15" fill="rgb(218,169,32)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="22.7842%" y="2821" width="0.0341%" height="15" fill="rgb(209,210,6)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (8 samples, 0.03%)</title><rect x="22.7842%" y="2805" width="0.0341%" height="15" fill="rgb(225,208,8)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2815.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="22.7842%" y="2789" width="0.0341%" height="15" fill="rgb(238,14,32)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2799.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="22.7842%" y="2773" width="0.0341%" height="15" fill="rgb(211,137,3)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2783.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="22.7842%" y="2757" width="0.0341%" height="15" fill="rgb(207,171,19)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2767.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="22.7842%" y="2741" width="0.0341%" height="15" fill="rgb(250,80,8)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2751.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="22.7842%" y="2725" width="0.0341%" height="15" fill="rgb(209,103,53)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="22.7842%" y="2709" width="0.0341%" height="15" fill="rgb(233,198,10)" fg:x="5347" fg:w="8"/><text x="23.0342%" y="2719.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="22.7927%" y="2693" width="0.0256%" height="15" fill="rgb(236,125,25)" fg:x="5349" fg:w="6"/><text x="23.0427%" y="2703.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="22.7927%" y="2677" width="0.0256%" height="15" fill="rgb(254,182,48)" fg:x="5349" fg:w="6"/><text x="23.0427%" y="2687.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="22.7927%" y="2661" width="0.0256%" height="15" fill="rgb(216,108,44)" fg:x="5349" fg:w="6"/><text x="23.0427%" y="2671.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="22.7927%" y="2645" width="0.0256%" height="15" fill="rgb(222,72,39)" fg:x="5349" fg:w="6"/><text x="23.0427%" y="2655.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="22.8013%" y="2629" width="0.0170%" height="15" fill="rgb(252,70,39)" fg:x="5351" fg:w="4"/><text x="23.0513%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (40 samples, 0.17%)</title><rect x="22.8226%" y="2565" width="0.1704%" height="15" fill="rgb(243,99,34)" fg:x="5356" fg:w="40"/><text x="23.0726%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (40 samples, 0.17%)</title><rect x="22.8226%" y="2549" width="0.1704%" height="15" fill="rgb(252,109,12)" fg:x="5356" fg:w="40"/><text x="23.0726%" y="2559.50"></text></g><g><title>exp (39 samples, 0.17%)</title><rect x="22.8268%" y="2533" width="0.1662%" height="15" fill="rgb(211,186,10)" fg:x="5357" fg:w="39"/><text x="23.0768%" y="2543.50"></text></g><g><title>[libm.so.6] (33 samples, 0.14%)</title><rect x="22.8524%" y="2517" width="0.1406%" height="15" fill="rgb(246,90,8)" fg:x="5363" fg:w="33"/><text x="23.1024%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (17 samples, 0.07%)</title><rect x="22.9930%" y="2565" width="0.0724%" height="15" fill="rgb(226,91,24)" fg:x="5396" fg:w="17"/><text x="23.2430%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (17 samples, 0.07%)</title><rect x="22.9930%" y="2549" width="0.0724%" height="15" fill="rgb(216,28,44)" fg:x="5396" fg:w="17"/><text x="23.2430%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (72 samples, 0.31%)</title><rect x="22.8183%" y="2581" width="0.3068%" height="15" fill="rgb(229,36,0)" fg:x="5355" fg:w="72"/><text x="23.0683%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (14 samples, 0.06%)</title><rect x="23.0655%" y="2565" width="0.0597%" height="15" fill="rgb(245,97,18)" fg:x="5413" fg:w="14"/><text x="23.3155%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (14 samples, 0.06%)</title><rect x="23.0655%" y="2549" width="0.0597%" height="15" fill="rgb(241,97,54)" fg:x="5413" fg:w="14"/><text x="23.3155%" y="2559.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (78 samples, 0.33%)</title><rect x="22.8183%" y="2741" width="0.3324%" height="15" fill="rgb(234,125,17)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (78 samples, 0.33%)</title><rect x="22.8183%" y="2725" width="0.3324%" height="15" fill="rgb(228,172,39)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (78 samples, 0.33%)</title><rect x="22.8183%" y="2709" width="0.3324%" height="15" fill="rgb(227,169,1)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (78 samples, 0.33%)</title><rect x="22.8183%" y="2693" width="0.3324%" height="15" fill="rgb(206,13,35)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (78 samples, 0.33%)</title><rect x="22.8183%" y="2677" width="0.3324%" height="15" fill="rgb(211,117,30)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (78 samples, 0.33%)</title><rect x="22.8183%" y="2661" width="0.3324%" height="15" fill="rgb(230,198,4)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (78 samples, 0.33%)</title><rect x="22.8183%" y="2645" width="0.3324%" height="15" fill="rgb(213,87,54)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (78 samples, 0.33%)</title><rect x="22.8183%" y="2629" width="0.3324%" height="15" fill="rgb(248,43,22)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (78 samples, 0.33%)</title><rect x="22.8183%" y="2613" width="0.3324%" height="15" fill="rgb(213,175,48)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (78 samples, 0.33%)</title><rect x="22.8183%" y="2597" width="0.3324%" height="15" fill="rgb(252,55,9)" fg:x="5355" fg:w="78"/><text x="23.0683%" y="2607.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="23.1251%" y="2581" width="0.0256%" height="15" fill="rgb(231,72,33)" fg:x="5427" fg:w="6"/><text x="23.3751%" y="2591.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="23.1507%" y="2613" width="0.0128%" height="15" fill="rgb(213,2,54)" fg:x="5433" fg:w="3"/><text x="23.4007%" y="2623.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="23.1507%" y="2597" width="0.0128%" height="15" fill="rgb(208,88,25)" fg:x="5433" fg:w="3"/><text x="23.4007%" y="2607.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="23.1507%" y="2581" width="0.0128%" height="15" fill="rgb(215,117,13)" fg:x="5433" fg:w="3"/><text x="23.4007%" y="2591.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="23.1507%" y="2565" width="0.0128%" height="15" fill="rgb(243,147,21)" fg:x="5433" fg:w="3"/><text x="23.4007%" y="2575.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="23.1507%" y="2549" width="0.0128%" height="15" fill="rgb(208,215,36)" fg:x="5433" fg:w="3"/><text x="23.4007%" y="2559.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="23.1507%" y="2533" width="0.0128%" height="15" fill="rgb(238,187,24)" fg:x="5433" fg:w="3"/><text x="23.4007%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (82 samples, 0.35%)</title><rect x="22.8183%" y="2757" width="0.3494%" height="15" fill="rgb(214,173,11)" fg:x="5355" fg:w="82"/><text x="23.0683%" y="2767.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="23.1507%" y="2741" width="0.0170%" height="15" fill="rgb(222,71,20)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2751.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="23.1507%" y="2725" width="0.0170%" height="15" fill="rgb(242,125,4)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="23.1507%" y="2709" width="0.0170%" height="15" fill="rgb(217,101,52)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="23.1507%" y="2693" width="0.0170%" height="15" fill="rgb(223,2,50)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2703.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="23.1507%" y="2677" width="0.0170%" height="15" fill="rgb(225,197,9)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="23.1507%" y="2661" width="0.0170%" height="15" fill="rgb(234,76,27)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2671.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="23.1507%" y="2645" width="0.0170%" height="15" fill="rgb(213,161,26)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2655.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="23.1507%" y="2629" width="0.0170%" height="15" fill="rgb(210,228,2)" fg:x="5433" fg:w="4"/><text x="23.4007%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (27 samples, 0.12%)</title><rect x="23.1720%" y="2453" width="0.1151%" height="15" fill="rgb(235,4,16)" fg:x="5438" fg:w="27"/><text x="23.4220%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (27 samples, 0.12%)</title><rect x="23.1720%" y="2437" width="0.1151%" height="15" fill="rgb(235,83,42)" fg:x="5438" fg:w="27"/><text x="23.4220%" y="2447.50"></text></g><g><title>exp (27 samples, 0.12%)</title><rect x="23.1720%" y="2421" width="0.1151%" height="15" fill="rgb(207,116,39)" fg:x="5438" fg:w="27"/><text x="23.4220%" y="2431.50"></text></g><g><title>[libm.so.6] (21 samples, 0.09%)</title><rect x="23.1975%" y="2405" width="0.0895%" height="15" fill="rgb(253,206,9)" fg:x="5444" fg:w="21"/><text x="23.4475%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (15 samples, 0.06%)</title><rect x="23.2870%" y="2453" width="0.0639%" height="15" fill="rgb(234,32,47)" fg:x="5465" fg:w="15"/><text x="23.5370%" y="2463.50"></text></g><g><title>core::f64::<impl f64>::recip (15 samples, 0.06%)</title><rect x="23.2870%" y="2437" width="0.0639%" height="15" fill="rgb(247,40,39)" fg:x="5465" fg:w="15"/><text x="23.5370%" y="2447.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (53 samples, 0.23%)</title><rect x="23.1720%" y="2469" width="0.2258%" height="15" fill="rgb(236,199,13)" fg:x="5438" fg:w="53"/><text x="23.4220%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (11 samples, 0.05%)</title><rect x="23.3509%" y="2453" width="0.0469%" height="15" fill="rgb(240,127,44)" fg:x="5480" fg:w="11"/><text x="23.6009%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::sqrt (11 samples, 0.05%)</title><rect x="23.3509%" y="2437" width="0.0469%" height="15" fill="rgb(248,220,47)" fg:x="5480" fg:w="11"/><text x="23.6009%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (56 samples, 0.24%)</title><rect x="23.1677%" y="2645" width="0.2386%" height="15" fill="rgb(240,78,9)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (56 samples, 0.24%)</title><rect x="23.1677%" y="2629" width="0.2386%" height="15" fill="rgb(245,119,5)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (56 samples, 0.24%)</title><rect x="23.1677%" y="2613" width="0.2386%" height="15" fill="rgb(238,175,31)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (56 samples, 0.24%)</title><rect x="23.1677%" y="2597" width="0.2386%" height="15" fill="rgb(232,140,42)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (56 samples, 0.24%)</title><rect x="23.1677%" y="2581" width="0.2386%" height="15" fill="rgb(218,179,7)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (56 samples, 0.24%)</title><rect x="23.1677%" y="2565" width="0.2386%" height="15" fill="rgb(232,79,27)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (56 samples, 0.24%)</title><rect x="23.1677%" y="2549" width="0.2386%" height="15" fill="rgb(247,11,19)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (56 samples, 0.24%)</title><rect x="23.1677%" y="2533" width="0.2386%" height="15" fill="rgb(216,171,54)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (56 samples, 0.24%)</title><rect x="23.1677%" y="2517" width="0.2386%" height="15" fill="rgb(233,158,36)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (56 samples, 0.24%)</title><rect x="23.1677%" y="2501" width="0.2386%" height="15" fill="rgb(215,48,47)" fg:x="5437" fg:w="56"/><text x="23.4177%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (55 samples, 0.23%)</title><rect x="23.1720%" y="2485" width="0.2344%" height="15" fill="rgb(230,223,15)" fg:x="5438" fg:w="55"/><text x="23.4220%" y="2495.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="23.4063%" y="2341" width="0.0170%" height="15" fill="rgb(234,49,19)" fg:x="5493" fg:w="4"/><text x="23.6563%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="23.4063%" y="2325" width="0.0170%" height="15" fill="rgb(232,89,25)" fg:x="5493" fg:w="4"/><text x="23.6563%" y="2335.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="23.4063%" y="2309" width="0.0170%" height="15" fill="rgb(237,206,28)" fg:x="5493" fg:w="4"/><text x="23.6563%" y="2319.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="23.4063%" y="2293" width="0.0170%" height="15" fill="rgb(249,68,37)" fg:x="5493" fg:w="4"/><text x="23.6563%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="23.4234%" y="2341" width="0.0213%" height="15" fill="rgb(226,99,43)" fg:x="5497" fg:w="5"/><text x="23.6734%" y="2351.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="23.4234%" y="2325" width="0.0213%" height="15" fill="rgb(216,46,28)" fg:x="5497" fg:w="5"/><text x="23.6734%" y="2335.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="23.4063%" y="2357" width="0.0426%" height="15" fill="rgb(216,33,9)" fg:x="5493" fg:w="10"/><text x="23.6563%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="23.4063%" y="2597" width="0.0469%" height="15" fill="rgb(216,129,4)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="23.4063%" y="2581" width="0.0469%" height="15" fill="rgb(216,106,3)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="23.4063%" y="2565" width="0.0469%" height="15" fill="rgb(217,79,45)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="23.4063%" y="2549" width="0.0469%" height="15" fill="rgb(239,98,13)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="23.4063%" y="2533" width="0.0469%" height="15" fill="rgb(221,115,4)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2543.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="23.4063%" y="2517" width="0.0469%" height="15" fill="rgb(215,85,0)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (11 samples, 0.05%)</title><rect x="23.4063%" y="2501" width="0.0469%" height="15" fill="rgb(230,62,15)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (11 samples, 0.05%)</title><rect x="23.4063%" y="2485" width="0.0469%" height="15" fill="rgb(247,162,2)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (11 samples, 0.05%)</title><rect x="23.4063%" y="2469" width="0.0469%" height="15" fill="rgb(212,112,32)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (11 samples, 0.05%)</title><rect x="23.4063%" y="2453" width="0.0469%" height="15" fill="rgb(216,137,9)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (11 samples, 0.05%)</title><rect x="23.4063%" y="2437" width="0.0469%" height="15" fill="rgb(250,149,33)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (11 samples, 0.05%)</title><rect x="23.4063%" y="2421" width="0.0469%" height="15" fill="rgb(246,124,31)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (11 samples, 0.05%)</title><rect x="23.4063%" y="2405" width="0.0469%" height="15" fill="rgb(216,210,22)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="23.4063%" y="2389" width="0.0469%" height="15" fill="rgb(228,128,36)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (11 samples, 0.05%)</title><rect x="23.4063%" y="2373" width="0.0469%" height="15" fill="rgb(231,41,0)" fg:x="5493" fg:w="11"/><text x="23.6563%" y="2383.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="23.4532%" y="2277" width="0.0170%" height="15" fill="rgb(232,61,26)" fg:x="5504" fg:w="4"/><text x="23.7032%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="23.4532%" y="2261" width="0.0170%" height="15" fill="rgb(217,60,9)" fg:x="5504" fg:w="4"/><text x="23.7032%" y="2271.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="23.4532%" y="2245" width="0.0170%" height="15" fill="rgb(233,41,35)" fg:x="5504" fg:w="4"/><text x="23.7032%" y="2255.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="23.4532%" y="2229" width="0.0170%" height="15" fill="rgb(253,139,43)" fg:x="5504" fg:w="4"/><text x="23.7032%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="23.4703%" y="2277" width="0.0128%" height="15" fill="rgb(245,100,51)" fg:x="5508" fg:w="3"/><text x="23.7203%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="23.4703%" y="2261" width="0.0128%" height="15" fill="rgb(250,208,18)" fg:x="5508" fg:w="3"/><text x="23.7203%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="23.4532%" y="2453" width="0.0384%" height="15" fill="rgb(245,33,2)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="23.4532%" y="2437" width="0.0384%" height="15" fill="rgb(244,171,31)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="23.4532%" y="2421" width="0.0384%" height="15" fill="rgb(229,1,43)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="23.4532%" y="2405" width="0.0384%" height="15" fill="rgb(223,153,28)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="23.4532%" y="2389" width="0.0384%" height="15" fill="rgb(241,4,46)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="23.4532%" y="2373" width="0.0384%" height="15" fill="rgb(230,81,11)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="23.4532%" y="2357" width="0.0384%" height="15" fill="rgb(253,204,39)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="23.4532%" y="2341" width="0.0384%" height="15" fill="rgb(250,96,8)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="23.4532%" y="2325" width="0.0384%" height="15" fill="rgb(219,89,54)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="23.4532%" y="2309" width="0.0384%" height="15" fill="rgb(235,136,39)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="23.4532%" y="2293" width="0.0384%" height="15" fill="rgb(230,155,37)" fg:x="5504" fg:w="9"/><text x="23.7032%" y="2303.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="23.4958%" y="2309" width="0.0256%" height="15" fill="rgb(235,199,50)" fg:x="5514" fg:w="6"/><text x="23.7458%" y="2319.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (5 samples, 0.02%)</title><rect x="23.5001%" y="2293" width="0.0213%" height="15" fill="rgb(227,81,32)" fg:x="5515" fg:w="5"/><text x="23.7501%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (84 samples, 0.36%)</title><rect x="23.1677%" y="2709" width="0.3579%" height="15" fill="rgb(225,6,28)" fg:x="5437" fg:w="84"/><text x="23.4177%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (84 samples, 0.36%)</title><rect x="23.1677%" y="2693" width="0.3579%" height="15" fill="rgb(207,211,17)" fg:x="5437" fg:w="84"/><text x="23.4177%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (84 samples, 0.36%)</title><rect x="23.1677%" y="2677" width="0.3579%" height="15" fill="rgb(228,31,49)" fg:x="5437" fg:w="84"/><text x="23.4177%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (84 samples, 0.36%)</title><rect x="23.1677%" y="2661" width="0.3579%" height="15" fill="rgb(230,185,3)" fg:x="5437" fg:w="84"/><text x="23.4177%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (28 samples, 0.12%)</title><rect x="23.4063%" y="2645" width="0.1193%" height="15" fill="rgb(206,167,15)" fg:x="5493" fg:w="28"/><text x="23.6563%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.12%)</title><rect x="23.4063%" y="2629" width="0.1193%" height="15" fill="rgb(234,2,36)" fg:x="5493" fg:w="28"/><text x="23.6563%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (28 samples, 0.12%)</title><rect x="23.4063%" y="2613" width="0.1193%" height="15" fill="rgb(239,160,29)" fg:x="5493" fg:w="28"/><text x="23.6563%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="23.4532%" y="2597" width="0.0724%" height="15" fill="rgb(236,117,2)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="23.4532%" y="2581" width="0.0724%" height="15" fill="rgb(215,117,37)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2591.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="23.4532%" y="2565" width="0.0724%" height="15" fill="rgb(244,48,36)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="23.4532%" y="2549" width="0.0724%" height="15" fill="rgb(223,101,37)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="23.4532%" y="2533" width="0.0724%" height="15" fill="rgb(205,200,1)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="23.4532%" y="2517" width="0.0724%" height="15" fill="rgb(209,193,20)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="23.4532%" y="2501" width="0.0724%" height="15" fill="rgb(214,63,13)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="23.4532%" y="2485" width="0.0724%" height="15" fill="rgb(253,113,46)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (17 samples, 0.07%)</title><rect x="23.4532%" y="2469" width="0.0724%" height="15" fill="rgb(237,103,34)" fg:x="5504" fg:w="17"/><text x="23.7032%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="23.4916%" y="2453" width="0.0341%" height="15" fill="rgb(223,38,25)" fg:x="5513" fg:w="8"/><text x="23.7416%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="23.4916%" y="2437" width="0.0341%" height="15" fill="rgb(251,32,32)" fg:x="5513" fg:w="8"/><text x="23.7416%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="23.4916%" y="2421" width="0.0341%" height="15" fill="rgb(228,65,22)" fg:x="5513" fg:w="8"/><text x="23.7416%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="23.4916%" y="2405" width="0.0341%" height="15" fill="rgb(205,11,46)" fg:x="5513" fg:w="8"/><text x="23.7416%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="23.4916%" y="2389" width="0.0341%" height="15" fill="rgb(220,35,2)" fg:x="5513" fg:w="8"/><text x="23.7416%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="23.4916%" y="2373" width="0.0341%" height="15" fill="rgb(217,151,17)" fg:x="5513" fg:w="8"/><text x="23.7416%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="23.4958%" y="2357" width="0.0298%" height="15" fill="rgb(243,227,35)" fg:x="5514" fg:w="7"/><text x="23.7458%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="23.4958%" y="2341" width="0.0298%" height="15" fill="rgb(214,0,34)" fg:x="5514" fg:w="7"/><text x="23.7458%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="23.4958%" y="2325" width="0.0298%" height="15" fill="rgb(209,42,37)" fg:x="5514" fg:w="7"/><text x="23.7458%" y="2335.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="23.5257%" y="2453" width="0.0213%" height="15" fill="rgb(251,176,30)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="23.5257%" y="2437" width="0.0213%" height="15" fill="rgb(223,64,40)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="23.5257%" y="2421" width="0.0213%" height="15" fill="rgb(227,180,23)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="23.5257%" y="2405" width="0.0213%" height="15" fill="rgb(220,137,31)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="23.5257%" y="2389" width="0.0213%" height="15" fill="rgb(245,124,25)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="23.5257%" y="2373" width="0.0213%" height="15" fill="rgb(217,157,5)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5257%" y="2357" width="0.0213%" height="15" fill="rgb(225,59,2)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="23.5257%" y="2341" width="0.0213%" height="15" fill="rgb(220,182,9)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="23.5257%" y="2325" width="0.0213%" height="15" fill="rgb(249,54,24)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5257%" y="2309" width="0.0213%" height="15" fill="rgb(216,89,17)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="23.5257%" y="2293" width="0.0213%" height="15" fill="rgb(245,20,45)" fg:x="5521" fg:w="5"/><text x="23.7757%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="23.5257%" y="2469" width="0.0298%" height="15" fill="rgb(230,83,14)" fg:x="5521" fg:w="7"/><text x="23.7757%" y="2479.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="23.5683%" y="1845" width="0.0213%" height="15" fill="rgb(246,109,11)" fg:x="5531" fg:w="5"/><text x="23.8183%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5683%" y="1829" width="0.0213%" height="15" fill="rgb(235,85,23)" fg:x="5531" fg:w="5"/><text x="23.8183%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5683%" y="1813" width="0.0213%" height="15" fill="rgb(215,101,36)" fg:x="5531" fg:w="5"/><text x="23.8183%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.5683%" y="1797" width="0.0213%" height="15" fill="rgb(228,140,31)" fg:x="5531" fg:w="5"/><text x="23.8183%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.5683%" y="1781" width="0.0213%" height="15" fill="rgb(234,162,37)" fg:x="5531" fg:w="5"/><text x="23.8183%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.5683%" y="1765" width="0.0213%" height="15" fill="rgb(221,0,24)" fg:x="5531" fg:w="5"/><text x="23.8183%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5683%" y="1749" width="0.0213%" height="15" fill="rgb(230,161,41)" fg:x="5531" fg:w="5"/><text x="23.8183%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="23.5768%" y="1733" width="0.0128%" height="15" fill="rgb(224,46,24)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="23.5768%" y="1717" width="0.0128%" height="15" fill="rgb(205,59,32)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1727.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="23.5768%" y="1701" width="0.0128%" height="15" fill="rgb(239,31,20)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="23.5768%" y="1685" width="0.0128%" height="15" fill="rgb(233,149,44)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="23.5768%" y="1669" width="0.0128%" height="15" fill="rgb(243,47,26)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5768%" y="1653" width="0.0128%" height="15" fill="rgb(233,107,5)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5768%" y="1637" width="0.0128%" height="15" fill="rgb(248,140,33)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.5768%" y="1621" width="0.0128%" height="15" fill="rgb(228,178,19)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="23.5768%" y="1605" width="0.0128%" height="15" fill="rgb(224,39,49)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1615.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="23.5768%" y="1589" width="0.0128%" height="15" fill="rgb(246,56,47)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="23.5768%" y="1573" width="0.0128%" height="15" fill="rgb(220,73,27)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1583.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="23.5768%" y="1557" width="0.0128%" height="15" fill="rgb(239,112,21)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1567.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="23.5768%" y="1541" width="0.0128%" height="15" fill="rgb(253,14,51)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1551.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="23.5768%" y="1525" width="0.0128%" height="15" fill="rgb(215,58,12)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="23.5768%" y="1509" width="0.0128%" height="15" fill="rgb(207,181,19)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5768%" y="1493" width="0.0128%" height="15" fill="rgb(211,214,34)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="23.5768%" y="1477" width="0.0128%" height="15" fill="rgb(243,124,39)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1487.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="23.5768%" y="1461" width="0.0128%" height="15" fill="rgb(248,135,21)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5768%" y="1445" width="0.0128%" height="15" fill="rgb(245,218,3)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1455.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="23.5768%" y="1429" width="0.0128%" height="15" fill="rgb(225,144,22)" fg:x="5533" fg:w="3"/><text x="23.8268%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="23.5896%" y="1381" width="0.0213%" height="15" fill="rgb(250,90,15)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1391.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="23.5896%" y="1365" width="0.0213%" height="15" fill="rgb(224,64,29)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1375.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="23.5896%" y="1349" width="0.0213%" height="15" fill="rgb(217,50,47)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1359.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="23.5896%" y="1333" width="0.0213%" height="15" fill="rgb(231,159,47)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1343.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="23.5896%" y="1317" width="0.0213%" height="15" fill="rgb(213,89,29)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1327.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="23.5896%" y="1301" width="0.0213%" height="15" fill="rgb(243,90,23)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1311.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="23.5896%" y="1285" width="0.0213%" height="15" fill="rgb(213,21,6)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1295.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="23.5896%" y="1269" width="0.0213%" height="15" fill="rgb(237,139,17)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1279.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="23.5896%" y="1253" width="0.0213%" height="15" fill="rgb(250,147,17)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1263.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="23.5896%" y="1237" width="0.0213%" height="15" fill="rgb(212,208,42)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1247.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="23.5896%" y="1221" width="0.0213%" height="15" fill="rgb(215,229,40)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1231.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5896%" y="1205" width="0.0213%" height="15" fill="rgb(206,204,1)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5896%" y="1189" width="0.0213%" height="15" fill="rgb(230,62,32)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5896%" y="1173" width="0.0213%" height="15" fill="rgb(223,22,42)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.5896%" y="1157" width="0.0213%" height="15" fill="rgb(244,6,23)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.5896%" y="1141" width="0.0213%" height="15" fill="rgb(240,221,42)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.5896%" y="1125" width="0.0213%" height="15" fill="rgb(222,74,7)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5896%" y="1109" width="0.0213%" height="15" fill="rgb(227,191,38)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1119.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="23.5896%" y="1093" width="0.0213%" height="15" fill="rgb(227,89,34)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1103.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="23.5896%" y="1077" width="0.0213%" height="15" fill="rgb(215,153,25)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1087.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="23.5896%" y="1061" width="0.0213%" height="15" fill="rgb(215,153,46)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1071.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="23.5896%" y="1045" width="0.0213%" height="15" fill="rgb(242,38,52)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1055.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="23.5896%" y="1029" width="0.0213%" height="15" fill="rgb(218,112,4)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5896%" y="1013" width="0.0213%" height="15" fill="rgb(231,210,31)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5896%" y="997" width="0.0213%" height="15" fill="rgb(245,223,36)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.5896%" y="981" width="0.0213%" height="15" fill="rgb(246,41,2)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="991.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.5896%" y="965" width="0.0213%" height="15" fill="rgb(227,51,31)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.5896%" y="949" width="0.0213%" height="15" fill="rgb(222,95,26)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.5896%" y="933" width="0.0213%" height="15" fill="rgb(224,190,1)" fg:x="5536" fg:w="5"/><text x="23.8396%" y="943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="23.5981%" y="917" width="0.0128%" height="15" fill="rgb(209,90,42)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="927.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="23.5981%" y="901" width="0.0128%" height="15" fill="rgb(232,225,50)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="911.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="23.5981%" y="885" width="0.0128%" height="15" fill="rgb(239,89,47)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="895.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="23.5981%" y="869" width="0.0128%" height="15" fill="rgb(230,212,50)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="23.5981%" y="853" width="0.0128%" height="15" fill="rgb(252,1,27)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5981%" y="837" width="0.0128%" height="15" fill="rgb(237,179,41)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5981%" y="821" width="0.0128%" height="15" fill="rgb(214,151,37)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.5981%" y="805" width="0.0128%" height="15" fill="rgb(211,74,11)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="815.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="23.5981%" y="789" width="0.0128%" height="15" fill="rgb(242,21,21)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="799.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="23.5981%" y="773" width="0.0128%" height="15" fill="rgb(226,106,43)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="783.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="23.5981%" y="757" width="0.0128%" height="15" fill="rgb(229,162,39)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="767.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="23.5981%" y="741" width="0.0128%" height="15" fill="rgb(228,159,25)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="751.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="23.5981%" y="725" width="0.0128%" height="15" fill="rgb(237,32,23)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="735.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="23.5981%" y="709" width="0.0128%" height="15" fill="rgb(212,35,32)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="719.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="23.5981%" y="693" width="0.0128%" height="15" fill="rgb(215,199,1)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="703.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5981%" y="677" width="0.0128%" height="15" fill="rgb(215,67,13)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="23.5981%" y="661" width="0.0128%" height="15" fill="rgb(216,20,47)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="671.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="23.5981%" y="645" width="0.0128%" height="15" fill="rgb(249,183,48)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="23.5981%" y="629" width="0.0128%" height="15" fill="rgb(208,86,37)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="639.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="23.5981%" y="613" width="0.0128%" height="15" fill="rgb(251,192,7)" fg:x="5538" fg:w="3"/><text x="23.8481%" y="623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="23.6109%" y="1205" width="0.0128%" height="15" fill="rgb(234,196,3)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6109%" y="1189" width="0.0128%" height="15" fill="rgb(229,150,39)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6109%" y="1173" width="0.0128%" height="15" fill="rgb(226,19,29)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.6109%" y="1157" width="0.0128%" height="15" fill="rgb(226,222,2)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="23.6109%" y="1141" width="0.0128%" height="15" fill="rgb(235,85,29)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1151.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="23.6109%" y="1125" width="0.0128%" height="15" fill="rgb(237,194,43)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="23.6109%" y="1109" width="0.0128%" height="15" fill="rgb(211,4,42)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1119.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="23.6109%" y="1093" width="0.0128%" height="15" fill="rgb(221,80,37)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1103.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="23.6109%" y="1077" width="0.0128%" height="15" fill="rgb(222,47,31)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1087.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="23.6109%" y="1061" width="0.0128%" height="15" fill="rgb(249,82,52)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1071.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="23.6109%" y="1045" width="0.0128%" height="15" fill="rgb(218,203,2)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6109%" y="1029" width="0.0128%" height="15" fill="rgb(210,175,14)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1039.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="23.6109%" y="1013" width="0.0128%" height="15" fill="rgb(216,210,12)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1023.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="23.6109%" y="997" width="0.0128%" height="15" fill="rgb(229,120,18)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="1007.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6109%" y="981" width="0.0128%" height="15" fill="rgb(231,174,12)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="991.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="23.6109%" y="965" width="0.0128%" height="15" fill="rgb(214,101,53)" fg:x="5541" fg:w="3"/><text x="23.8609%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10 samples, 0.04%)</title><rect x="23.5896%" y="1845" width="0.0426%" height="15" fill="rgb(246,89,43)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="23.5896%" y="1829" width="0.0426%" height="15" fill="rgb(222,9,51)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (10 samples, 0.04%)</title><rect x="23.5896%" y="1813" width="0.0426%" height="15" fill="rgb(252,221,9)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (10 samples, 0.04%)</title><rect x="23.5896%" y="1797" width="0.0426%" height="15" fill="rgb(248,28,15)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (10 samples, 0.04%)</title><rect x="23.5896%" y="1781" width="0.0426%" height="15" fill="rgb(213,54,52)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (10 samples, 0.04%)</title><rect x="23.5896%" y="1765" width="0.0426%" height="15" fill="rgb(240,3,45)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="23.5896%" y="1749" width="0.0426%" height="15" fill="rgb(239,138,24)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="23.5896%" y="1733" width="0.0426%" height="15" fill="rgb(233,45,54)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1743.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="23.5896%" y="1717" width="0.0426%" height="15" fill="rgb(220,131,2)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="23.5896%" y="1701" width="0.0426%" height="15" fill="rgb(240,154,36)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="23.5896%" y="1685" width="0.0426%" height="15" fill="rgb(251,221,1)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (10 samples, 0.04%)</title><rect x="23.5896%" y="1669" width="0.0426%" height="15" fill="rgb(225,217,1)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="23.5896%" y="1653" width="0.0426%" height="15" fill="rgb(241,105,49)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="23.5896%" y="1637" width="0.0426%" height="15" fill="rgb(215,44,32)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="23.5896%" y="1621" width="0.0426%" height="15" fill="rgb(213,222,14)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="23.5896%" y="1605" width="0.0426%" height="15" fill="rgb(207,99,52)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="23.5896%" y="1589" width="0.0426%" height="15" fill="rgb(214,208,52)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="23.5896%" y="1573" width="0.0426%" height="15" fill="rgb(244,169,0)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="23.5896%" y="1557" width="0.0426%" height="15" fill="rgb(216,193,37)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="23.5896%" y="1541" width="0.0426%" height="15" fill="rgb(212,158,10)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1551.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="23.5896%" y="1525" width="0.0426%" height="15" fill="rgb(213,110,20)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="23.5896%" y="1509" width="0.0426%" height="15" fill="rgb(226,5,42)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="23.5896%" y="1493" width="0.0426%" height="15" fill="rgb(211,93,8)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="23.5896%" y="1477" width="0.0426%" height="15" fill="rgb(240,208,12)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="23.5896%" y="1461" width="0.0426%" height="15" fill="rgb(233,127,50)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="23.5896%" y="1445" width="0.0426%" height="15" fill="rgb(227,199,53)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="23.5896%" y="1429" width="0.0426%" height="15" fill="rgb(235,199,10)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="23.5896%" y="1413" width="0.0426%" height="15" fill="rgb(228,148,35)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="23.5896%" y="1397" width="0.0426%" height="15" fill="rgb(217,87,19)" fg:x="5536" fg:w="10"/><text x="23.8396%" y="1407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="23.6109%" y="1381" width="0.0213%" height="15" fill="rgb(239,9,32)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1391.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="23.6109%" y="1365" width="0.0213%" height="15" fill="rgb(229,101,29)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1375.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="23.6109%" y="1349" width="0.0213%" height="15" fill="rgb(208,143,26)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1359.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="23.6109%" y="1333" width="0.0213%" height="15" fill="rgb(214,10,2)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="23.6109%" y="1317" width="0.0213%" height="15" fill="rgb(254,203,30)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="23.6109%" y="1301" width="0.0213%" height="15" fill="rgb(242,45,3)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="23.6109%" y="1285" width="0.0213%" height="15" fill="rgb(209,146,51)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.6109%" y="1269" width="0.0213%" height="15" fill="rgb(222,80,5)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.6109%" y="1253" width="0.0213%" height="15" fill="rgb(252,80,35)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.6109%" y="1237" width="0.0213%" height="15" fill="rgb(246,125,28)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.6109%" y="1221" width="0.0213%" height="15" fill="rgb(224,143,51)" fg:x="5541" fg:w="5"/><text x="23.8609%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="23.6322%" y="1717" width="0.0128%" height="15" fill="rgb(205,24,17)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="23.6322%" y="1701" width="0.0128%" height="15" fill="rgb(253,128,30)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="23.6322%" y="1685" width="0.0128%" height="15" fill="rgb(214,153,25)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="23.6322%" y="1669" width="0.0128%" height="15" fill="rgb(214,4,28)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="23.6322%" y="1653" width="0.0128%" height="15" fill="rgb(235,179,52)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="23.6322%" y="1637" width="0.0128%" height="15" fill="rgb(233,27,42)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="23.6322%" y="1621" width="0.0128%" height="15" fill="rgb(238,35,25)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6322%" y="1605" width="0.0128%" height="15" fill="rgb(227,44,31)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="23.6322%" y="1589" width="0.0128%" height="15" fill="rgb(232,201,13)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="23.6322%" y="1573" width="0.0128%" height="15" fill="rgb(224,172,52)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6322%" y="1557" width="0.0128%" height="15" fill="rgb(214,27,26)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="23.6322%" y="1541" width="0.0128%" height="15" fill="rgb(210,185,52)" fg:x="5546" fg:w="3"/><text x="23.8822%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (23 samples, 0.10%)</title><rect x="23.5683%" y="2133" width="0.0980%" height="15" fill="rgb(249,59,32)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (23 samples, 0.10%)</title><rect x="23.5683%" y="2117" width="0.0980%" height="15" fill="rgb(242,209,18)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (23 samples, 0.10%)</title><rect x="23.5683%" y="2101" width="0.0980%" height="15" fill="rgb(229,0,18)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (23 samples, 0.10%)</title><rect x="23.5683%" y="2085" width="0.0980%" height="15" fill="rgb(217,138,29)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (23 samples, 0.10%)</title><rect x="23.5683%" y="2069" width="0.0980%" height="15" fill="rgb(215,72,42)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (23 samples, 0.10%)</title><rect x="23.5683%" y="2053" width="0.0980%" height="15" fill="rgb(254,115,11)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="23.5683%" y="2037" width="0.0980%" height="15" fill="rgb(205,133,39)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="23.5683%" y="2021" width="0.0980%" height="15" fill="rgb(211,36,27)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2031.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="23.5683%" y="2005" width="0.0980%" height="15" fill="rgb(221,48,10)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="23.5683%" y="1989" width="0.0980%" height="15" fill="rgb(230,172,50)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="23.5683%" y="1973" width="0.0980%" height="15" fill="rgb(249,72,18)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (23 samples, 0.10%)</title><rect x="23.5683%" y="1957" width="0.0980%" height="15" fill="rgb(237,58,48)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (23 samples, 0.10%)</title><rect x="23.5683%" y="1941" width="0.0980%" height="15" fill="rgb(242,123,3)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="23.5683%" y="1925" width="0.0980%" height="15" fill="rgb(232,111,32)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="23.5683%" y="1909" width="0.0980%" height="15" fill="rgb(229,108,3)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="23.5683%" y="1893" width="0.0980%" height="15" fill="rgb(222,158,10)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="23.5683%" y="1877" width="0.0980%" height="15" fill="rgb(205,34,49)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="23.5683%" y="1861" width="0.0980%" height="15" fill="rgb(232,21,14)" fg:x="5531" fg:w="23"/><text x="23.8183%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="23.6322%" y="1845" width="0.0341%" height="15" fill="rgb(229,127,44)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="23.6322%" y="1829" width="0.0341%" height="15" fill="rgb(232,171,4)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1839.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="23.6322%" y="1813" width="0.0341%" height="15" fill="rgb(250,92,16)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="23.6322%" y="1797" width="0.0341%" height="15" fill="rgb(230,103,38)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="23.6322%" y="1781" width="0.0341%" height="15" fill="rgb(253,167,9)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="23.6322%" y="1765" width="0.0341%" height="15" fill="rgb(222,118,11)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="23.6322%" y="1749" width="0.0341%" height="15" fill="rgb(240,202,0)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="23.6322%" y="1733" width="0.0341%" height="15" fill="rgb(236,124,4)" fg:x="5546" fg:w="8"/><text x="23.8822%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.6450%" y="1717" width="0.0213%" height="15" fill="rgb(244,128,18)" fg:x="5549" fg:w="5"/><text x="23.8950%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.6450%" y="1701" width="0.0213%" height="15" fill="rgb(231,206,5)" fg:x="5549" fg:w="5"/><text x="23.8950%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.6450%" y="1685" width="0.0213%" height="15" fill="rgb(237,111,8)" fg:x="5549" fg:w="5"/><text x="23.8950%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="23.6535%" y="1669" width="0.0128%" height="15" fill="rgb(225,127,3)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="23.6535%" y="1653" width="0.0128%" height="15" fill="rgb(222,85,48)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="23.6535%" y="1637" width="0.0128%" height="15" fill="rgb(221,108,37)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="23.6535%" y="1621" width="0.0128%" height="15" fill="rgb(226,169,36)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="23.6535%" y="1605" width="0.0128%" height="15" fill="rgb(237,76,12)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6535%" y="1589" width="0.0128%" height="15" fill="rgb(210,227,32)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6535%" y="1573" width="0.0128%" height="15" fill="rgb(214,117,20)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.6535%" y="1557" width="0.0128%" height="15" fill="rgb(234,119,41)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="23.6535%" y="1541" width="0.0128%" height="15" fill="rgb(230,130,47)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="23.6535%" y="1525" width="0.0128%" height="15" fill="rgb(215,21,41)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="23.6535%" y="1509" width="0.0128%" height="15" fill="rgb(226,26,53)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="23.6535%" y="1493" width="0.0128%" height="15" fill="rgb(221,92,23)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="23.6535%" y="1477" width="0.0128%" height="15" fill="rgb(213,156,21)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="23.6535%" y="1461" width="0.0128%" height="15" fill="rgb(254,166,29)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="23.6535%" y="1445" width="0.0128%" height="15" fill="rgb(213,71,1)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6535%" y="1429" width="0.0128%" height="15" fill="rgb(245,8,13)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="23.6535%" y="1413" width="0.0128%" height="15" fill="rgb(213,32,32)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="23.6535%" y="1397" width="0.0128%" height="15" fill="rgb(251,86,50)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="23.6535%" y="1381" width="0.0128%" height="15" fill="rgb(252,92,41)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="23.6535%" y="1365" width="0.0128%" height="15" fill="rgb(234,70,35)" fg:x="5551" fg:w="3"/><text x="23.9035%" y="1375.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="23.6663%" y="1813" width="0.0128%" height="15" fill="rgb(210,157,19)" fg:x="5554" fg:w="3"/><text x="23.9163%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="23.6663%" y="1797" width="0.0128%" height="15" fill="rgb(206,20,45)" fg:x="5554" fg:w="3"/><text x="23.9163%" y="1807.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.6663%" y="1781" width="0.0128%" height="15" fill="rgb(207,34,7)" fg:x="5554" fg:w="3"/><text x="23.9163%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (29 samples, 0.12%)</title><rect x="23.5597%" y="2389" width="0.1236%" height="15" fill="rgb(253,151,14)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (29 samples, 0.12%)</title><rect x="23.5597%" y="2373" width="0.1236%" height="15" fill="rgb(252,1,18)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (29 samples, 0.12%)</title><rect x="23.5597%" y="2357" width="0.1236%" height="15" fill="rgb(214,77,52)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (29 samples, 0.12%)</title><rect x="23.5597%" y="2341" width="0.1236%" height="15" fill="rgb(254,106,35)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29 samples, 0.12%)</title><rect x="23.5597%" y="2325" width="0.1236%" height="15" fill="rgb(212,67,40)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (29 samples, 0.12%)</title><rect x="23.5597%" y="2309" width="0.1236%" height="15" fill="rgb(228,76,23)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2319.50"></text></g><g><title>std::panicking::try (29 samples, 0.12%)</title><rect x="23.5597%" y="2293" width="0.1236%" height="15" fill="rgb(250,198,5)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (29 samples, 0.12%)</title><rect x="23.5597%" y="2277" width="0.1236%" height="15" fill="rgb(209,20,25)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (29 samples, 0.12%)</title><rect x="23.5597%" y="2261" width="0.1236%" height="15" fill="rgb(236,32,4)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (29 samples, 0.12%)</title><rect x="23.5597%" y="2245" width="0.1236%" height="15" fill="rgb(215,31,6)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (29 samples, 0.12%)</title><rect x="23.5597%" y="2229" width="0.1236%" height="15" fill="rgb(207,186,49)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="23.5597%" y="2213" width="0.1236%" height="15" fill="rgb(211,212,49)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="23.5597%" y="2197" width="0.1236%" height="15" fill="rgb(229,51,41)" fg:x="5529" fg:w="29"/><text x="23.8097%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="23.5683%" y="2181" width="0.1151%" height="15" fill="rgb(205,225,36)" fg:x="5531" fg:w="27"/><text x="23.8183%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="23.5683%" y="2165" width="0.1151%" height="15" fill="rgb(209,213,45)" fg:x="5531" fg:w="27"/><text x="23.8183%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="23.5683%" y="2149" width="0.1151%" height="15" fill="rgb(219,35,49)" fg:x="5531" fg:w="27"/><text x="23.8183%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="23.6663%" y="2133" width="0.0170%" height="15" fill="rgb(215,205,22)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="23.6663%" y="2117" width="0.0170%" height="15" fill="rgb(248,204,34)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="23.6663%" y="2101" width="0.0170%" height="15" fill="rgb(219,223,31)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="23.6663%" y="2085" width="0.0170%" height="15" fill="rgb(236,14,8)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="23.6663%" y="2069" width="0.0170%" height="15" fill="rgb(243,129,23)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="23.6663%" y="2053" width="0.0170%" height="15" fill="rgb(205,204,5)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="23.6663%" y="2037" width="0.0170%" height="15" fill="rgb(244,115,32)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.6663%" y="2021" width="0.0170%" height="15" fill="rgb(229,123,14)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="23.6663%" y="2005" width="0.0170%" height="15" fill="rgb(250,85,1)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="23.6663%" y="1989" width="0.0170%" height="15" fill="rgb(209,141,54)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="23.6663%" y="1973" width="0.0170%" height="15" fill="rgb(244,107,39)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="23.6663%" y="1957" width="0.0170%" height="15" fill="rgb(230,68,26)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="23.6663%" y="1941" width="0.0170%" height="15" fill="rgb(220,178,33)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="23.6663%" y="1925" width="0.0170%" height="15" fill="rgb(220,77,53)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="23.6663%" y="1909" width="0.0170%" height="15" fill="rgb(224,108,19)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="23.6663%" y="1893" width="0.0170%" height="15" fill="rgb(223,203,27)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="23.6663%" y="1877" width="0.0170%" height="15" fill="rgb(211,32,46)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="23.6663%" y="1861" width="0.0170%" height="15" fill="rgb(240,101,27)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="23.6663%" y="1845" width="0.0170%" height="15" fill="rgb(217,210,11)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="23.6663%" y="1829" width="0.0170%" height="15" fill="rgb(236,130,21)" fg:x="5554" fg:w="4"/><text x="23.9163%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (34 samples, 0.14%)</title><rect x="23.5597%" y="2421" width="0.1449%" height="15" fill="rgb(250,136,8)" fg:x="5529" fg:w="34"/><text x="23.8097%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34 samples, 0.14%)</title><rect x="23.5597%" y="2405" width="0.1449%" height="15" fill="rgb(243,223,36)" fg:x="5529" fg:w="34"/><text x="23.8097%" y="2415.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="23.6833%" y="2389" width="0.0213%" height="15" fill="rgb(246,184,8)" fg:x="5558" fg:w="5"/><text x="23.9333%" y="2399.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="23.6833%" y="2373" width="0.0213%" height="15" fill="rgb(222,158,36)" fg:x="5558" fg:w="5"/><text x="23.9333%" y="2383.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="23.6833%" y="2357" width="0.0213%" height="15" fill="rgb(210,220,19)" fg:x="5558" fg:w="5"/><text x="23.9333%" y="2367.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="23.6833%" y="2341" width="0.0213%" height="15" fill="rgb(246,44,38)" fg:x="5558" fg:w="5"/><text x="23.9333%" y="2351.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="23.6833%" y="2325" width="0.0213%" height="15" fill="rgb(246,186,14)" fg:x="5558" fg:w="5"/><text x="23.9333%" y="2335.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="23.6833%" y="2309" width="0.0213%" height="15" fill="rgb(233,193,20)" fg:x="5558" fg:w="5"/><text x="23.9333%" y="2319.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="23.6833%" y="2293" width="0.0213%" height="15" fill="rgb(215,60,5)" fg:x="5558" fg:w="5"/><text x="23.9333%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="23.7046%" y="2101" width="0.0128%" height="15" fill="rgb(207,128,10)" fg:x="5563" fg:w="3"/><text x="23.9546%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="23.7046%" y="2085" width="0.0128%" height="15" fill="rgb(238,84,54)" fg:x="5563" fg:w="3"/><text x="23.9546%" y="2095.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.7046%" y="2069" width="0.0128%" height="15" fill="rgb(213,130,11)" fg:x="5563" fg:w="3"/><text x="23.9546%" y="2079.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="23.7046%" y="2053" width="0.0128%" height="15" fill="rgb(235,62,9)" fg:x="5563" fg:w="3"/><text x="23.9546%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="23.7046%" y="2293" width="0.0213%" height="15" fill="rgb(222,64,24)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="23.7046%" y="2277" width="0.0213%" height="15" fill="rgb(238,193,42)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="23.7046%" y="2261" width="0.0213%" height="15" fill="rgb(243,204,46)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="23.7046%" y="2245" width="0.0213%" height="15" fill="rgb(243,196,11)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="23.7046%" y="2229" width="0.0213%" height="15" fill="rgb(232,77,22)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="23.7046%" y="2213" width="0.0213%" height="15" fill="rgb(215,80,25)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="23.7046%" y="2197" width="0.0213%" height="15" fill="rgb(210,173,7)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7046%" y="2181" width="0.0213%" height="15" fill="rgb(207,101,10)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="23.7046%" y="2165" width="0.0213%" height="15" fill="rgb(246,57,48)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="23.7046%" y="2149" width="0.0213%" height="15" fill="rgb(236,184,40)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7046%" y="2133" width="0.0213%" height="15" fill="rgb(210,205,13)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="23.7046%" y="2117" width="0.0213%" height="15" fill="rgb(231,129,42)" fg:x="5563" fg:w="5"/><text x="23.9546%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="23.7259%" y="2245" width="0.0298%" height="15" fill="rgb(220,229,54)" fg:x="5568" fg:w="7"/><text x="23.9759%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="23.7259%" y="2229" width="0.0298%" height="15" fill="rgb(230,192,26)" fg:x="5568" fg:w="7"/><text x="23.9759%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="23.7259%" y="2213" width="0.0298%" height="15" fill="rgb(253,18,30)" fg:x="5568" fg:w="7"/><text x="23.9759%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="23.7259%" y="2197" width="0.0298%" height="15" fill="rgb(216,62,53)" fg:x="5568" fg:w="7"/><text x="23.9759%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.7344%" y="2181" width="0.0213%" height="15" fill="rgb(230,79,29)" fg:x="5570" fg:w="5"/><text x="23.9844%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.7344%" y="2165" width="0.0213%" height="15" fill="rgb(242,26,26)" fg:x="5570" fg:w="5"/><text x="23.9844%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7344%" y="2149" width="0.0213%" height="15" fill="rgb(227,125,21)" fg:x="5570" fg:w="5"/><text x="23.9844%" y="2159.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="23.7558%" y="1669" width="0.0128%" height="15" fill="rgb(229,93,26)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="23.7558%" y="1653" width="0.0128%" height="15" fill="rgb(227,228,8)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="23.7558%" y="1637" width="0.0128%" height="15" fill="rgb(233,56,0)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1647.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="23.7558%" y="1621" width="0.0128%" height="15" fill="rgb(225,185,17)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1631.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="23.7558%" y="1605" width="0.0128%" height="15" fill="rgb(238,202,30)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1615.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="23.7558%" y="1589" width="0.0128%" height="15" fill="rgb(236,60,13)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1599.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="23.7558%" y="1573" width="0.0128%" height="15" fill="rgb(244,92,0)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1583.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="23.7558%" y="1557" width="0.0128%" height="15" fill="rgb(225,57,15)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1567.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="23.7558%" y="1541" width="0.0128%" height="15" fill="rgb(228,5,28)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1551.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="23.7558%" y="1525" width="0.0128%" height="15" fill="rgb(252,34,51)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1535.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="23.7558%" y="1509" width="0.0128%" height="15" fill="rgb(235,58,7)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1519.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7558%" y="1493" width="0.0128%" height="15" fill="rgb(250,132,20)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7558%" y="1477" width="0.0128%" height="15" fill="rgb(217,164,0)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7558%" y="1461" width="0.0128%" height="15" fill="rgb(208,220,35)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.7558%" y="1445" width="0.0128%" height="15" fill="rgb(227,42,51)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="23.7558%" y="1429" width="0.0128%" height="15" fill="rgb(225,146,38)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1439.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="23.7558%" y="1413" width="0.0128%" height="15" fill="rgb(252,108,37)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="23.7558%" y="1397" width="0.0128%" height="15" fill="rgb(244,101,24)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1407.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="23.7558%" y="1381" width="0.0128%" height="15" fill="rgb(213,161,50)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1391.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="23.7558%" y="1365" width="0.0128%" height="15" fill="rgb(248,159,19)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1375.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="23.7558%" y="1349" width="0.0128%" height="15" fill="rgb(233,179,15)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="23.7558%" y="1333" width="0.0128%" height="15" fill="rgb(248,178,3)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7558%" y="1317" width="0.0128%" height="15" fill="rgb(245,190,41)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="23.7558%" y="1301" width="0.0128%" height="15" fill="rgb(218,151,19)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="23.7558%" y="1285" width="0.0128%" height="15" fill="rgb(245,25,44)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1295.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7558%" y="1269" width="0.0128%" height="15" fill="rgb(235,172,47)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1279.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="23.7558%" y="1253" width="0.0128%" height="15" fill="rgb(246,33,12)" fg:x="5575" fg:w="3"/><text x="24.0058%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="23.7558%" y="1957" width="0.0213%" height="15" fill="rgb(214,124,7)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="23.7558%" y="1941" width="0.0213%" height="15" fill="rgb(246,186,18)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="23.7558%" y="1925" width="0.0213%" height="15" fill="rgb(231,94,1)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="23.7558%" y="1909" width="0.0213%" height="15" fill="rgb(208,33,48)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="23.7558%" y="1893" width="0.0213%" height="15" fill="rgb(208,195,44)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="23.7558%" y="1877" width="0.0213%" height="15" fill="rgb(226,13,52)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="23.7558%" y="1861" width="0.0213%" height="15" fill="rgb(217,219,45)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="23.7558%" y="1845" width="0.0213%" height="15" fill="rgb(223,45,25)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1855.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="23.7558%" y="1829" width="0.0213%" height="15" fill="rgb(241,163,0)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="23.7558%" y="1813" width="0.0213%" height="15" fill="rgb(216,68,47)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="23.7558%" y="1797" width="0.0213%" height="15" fill="rgb(236,119,45)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7558%" y="1781" width="0.0213%" height="15" fill="rgb(209,188,24)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7558%" y="1765" width="0.0213%" height="15" fill="rgb(221,118,7)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7558%" y="1749" width="0.0213%" height="15" fill="rgb(213,148,43)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.7558%" y="1733" width="0.0213%" height="15" fill="rgb(231,21,43)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.7558%" y="1717" width="0.0213%" height="15" fill="rgb(232,213,43)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.7558%" y="1701" width="0.0213%" height="15" fill="rgb(239,145,50)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7558%" y="1685" width="0.0213%" height="15" fill="rgb(222,131,18)" fg:x="5575" fg:w="5"/><text x="24.0058%" y="1695.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="23.7558%" y="2245" width="0.0469%" height="15" fill="rgb(243,181,13)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="23.7558%" y="2229" width="0.0469%" height="15" fill="rgb(212,74,41)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="23.7558%" y="2213" width="0.0469%" height="15" fill="rgb(237,143,34)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="23.7558%" y="2197" width="0.0469%" height="15" fill="rgb(228,139,0)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="23.7558%" y="2181" width="0.0469%" height="15" fill="rgb(227,214,11)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="23.7558%" y="2165" width="0.0469%" height="15" fill="rgb(228,118,39)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="23.7558%" y="2149" width="0.0469%" height="15" fill="rgb(207,117,22)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="23.7558%" y="2133" width="0.0469%" height="15" fill="rgb(225,91,8)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2143.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="23.7558%" y="2117" width="0.0469%" height="15" fill="rgb(230,219,48)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="23.7558%" y="2101" width="0.0469%" height="15" fill="rgb(244,0,23)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="23.7558%" y="2085" width="0.0469%" height="15" fill="rgb(206,212,23)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="23.7558%" y="2069" width="0.0469%" height="15" fill="rgb(254,62,10)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="23.7558%" y="2053" width="0.0469%" height="15" fill="rgb(236,58,8)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="23.7558%" y="2037" width="0.0469%" height="15" fill="rgb(232,212,17)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="23.7558%" y="2021" width="0.0469%" height="15" fill="rgb(206,132,9)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="23.7558%" y="2005" width="0.0469%" height="15" fill="rgb(234,97,28)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="23.7558%" y="1989" width="0.0469%" height="15" fill="rgb(254,144,9)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="23.7558%" y="1973" width="0.0469%" height="15" fill="rgb(244,204,43)" fg:x="5575" fg:w="11"/><text x="24.0058%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="23.7771%" y="1957" width="0.0256%" height="15" fill="rgb(248,177,16)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="23.7771%" y="1941" width="0.0256%" height="15" fill="rgb(219,110,15)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1951.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="23.7771%" y="1925" width="0.0256%" height="15" fill="rgb(212,203,25)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="23.7771%" y="1909" width="0.0256%" height="15" fill="rgb(205,50,1)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="23.7771%" y="1893" width="0.0256%" height="15" fill="rgb(222,152,41)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="23.7771%" y="1877" width="0.0256%" height="15" fill="rgb(236,83,3)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="23.7771%" y="1861" width="0.0256%" height="15" fill="rgb(214,30,54)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="23.7771%" y="1845" width="0.0256%" height="15" fill="rgb(250,117,31)" fg:x="5580" fg:w="6"/><text x="24.0271%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.7813%" y="1829" width="0.0213%" height="15" fill="rgb(228,77,14)" fg:x="5581" fg:w="5"/><text x="24.0313%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.7813%" y="1813" width="0.0213%" height="15" fill="rgb(241,3,28)" fg:x="5581" fg:w="5"/><text x="24.0313%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.7813%" y="1797" width="0.0213%" height="15" fill="rgb(221,175,52)" fg:x="5581" fg:w="5"/><text x="24.0313%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="23.7898%" y="1781" width="0.0128%" height="15" fill="rgb(237,91,6)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="23.7898%" y="1765" width="0.0128%" height="15" fill="rgb(246,46,42)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1775.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="23.7898%" y="1749" width="0.0128%" height="15" fill="rgb(235,199,0)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="23.7898%" y="1733" width="0.0128%" height="15" fill="rgb(224,44,40)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="23.7898%" y="1717" width="0.0128%" height="15" fill="rgb(209,24,35)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7898%" y="1701" width="0.0128%" height="15" fill="rgb(244,46,22)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7898%" y="1685" width="0.0128%" height="15" fill="rgb(235,99,8)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.7898%" y="1669" width="0.0128%" height="15" fill="rgb(218,127,36)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="23.7898%" y="1653" width="0.0128%" height="15" fill="rgb(238,47,46)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="23.7898%" y="1637" width="0.0128%" height="15" fill="rgb(233,65,17)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="23.7898%" y="1621" width="0.0128%" height="15" fill="rgb(239,22,33)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="23.7898%" y="1605" width="0.0128%" height="15" fill="rgb(243,66,43)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="23.7898%" y="1589" width="0.0128%" height="15" fill="rgb(235,210,28)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="23.7898%" y="1573" width="0.0128%" height="15" fill="rgb(205,191,50)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="23.7898%" y="1557" width="0.0128%" height="15" fill="rgb(251,217,19)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7898%" y="1541" width="0.0128%" height="15" fill="rgb(205,174,37)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="23.7898%" y="1525" width="0.0128%" height="15" fill="rgb(212,158,42)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="23.7898%" y="1509" width="0.0128%" height="15" fill="rgb(212,208,51)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="23.7898%" y="1493" width="0.0128%" height="15" fill="rgb(225,198,20)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="23.7898%" y="1477" width="0.0128%" height="15" fill="rgb(247,41,44)" fg:x="5583" fg:w="3"/><text x="24.0398%" y="1487.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="23.8026%" y="1925" width="0.0128%" height="15" fill="rgb(228,33,41)" fg:x="5586" fg:w="3"/><text x="24.0526%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="23.8026%" y="1909" width="0.0128%" height="15" fill="rgb(215,47,52)" fg:x="5586" fg:w="3"/><text x="24.0526%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="23.8026%" y="2117" width="0.0256%" height="15" fill="rgb(248,106,37)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="23.8026%" y="2101" width="0.0256%" height="15" fill="rgb(238,91,29)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="23.8026%" y="2085" width="0.0256%" height="15" fill="rgb(226,111,40)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="23.8026%" y="2069" width="0.0256%" height="15" fill="rgb(229,159,36)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="23.8026%" y="2053" width="0.0256%" height="15" fill="rgb(221,109,4)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="23.8026%" y="2037" width="0.0256%" height="15" fill="rgb(236,56,25)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="23.8026%" y="2021" width="0.0256%" height="15" fill="rgb(244,113,23)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="23.8026%" y="2005" width="0.0256%" height="15" fill="rgb(249,132,2)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="23.8026%" y="1989" width="0.0256%" height="15" fill="rgb(205,185,21)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="23.8026%" y="1973" width="0.0256%" height="15" fill="rgb(245,130,2)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="23.8026%" y="1957" width="0.0256%" height="15" fill="rgb(246,71,26)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="23.8026%" y="1941" width="0.0256%" height="15" fill="rgb(234,194,6)" fg:x="5586" fg:w="6"/><text x="24.0526%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="23.8282%" y="2069" width="0.0128%" height="15" fill="rgb(206,24,32)" fg:x="5592" fg:w="3"/><text x="24.0782%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="23.8282%" y="2053" width="0.0128%" height="15" fill="rgb(233,7,54)" fg:x="5592" fg:w="3"/><text x="24.0782%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="23.8282%" y="2037" width="0.0128%" height="15" fill="rgb(252,46,1)" fg:x="5592" fg:w="3"/><text x="24.0782%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.8282%" y="2021" width="0.0128%" height="15" fill="rgb(216,113,53)" fg:x="5592" fg:w="3"/><text x="24.0782%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (81 samples, 0.35%)</title><rect x="23.5257%" y="2709" width="0.3452%" height="15" fill="rgb(215,40,24)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (81 samples, 0.35%)</title><rect x="23.5257%" y="2693" width="0.3452%" height="15" fill="rgb(233,222,8)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (81 samples, 0.35%)</title><rect x="23.5257%" y="2677" width="0.3452%" height="15" fill="rgb(248,73,28)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (81 samples, 0.35%)</title><rect x="23.5257%" y="2661" width="0.3452%" height="15" fill="rgb(247,126,28)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (81 samples, 0.35%)</title><rect x="23.5257%" y="2645" width="0.3452%" height="15" fill="rgb(242,173,54)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (81 samples, 0.35%)</title><rect x="23.5257%" y="2629" width="0.3452%" height="15" fill="rgb(244,186,22)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (81 samples, 0.35%)</title><rect x="23.5257%" y="2613" width="0.3452%" height="15" fill="rgb(231,187,4)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (81 samples, 0.35%)</title><rect x="23.5257%" y="2597" width="0.3452%" height="15" fill="rgb(252,66,47)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2607.50"></text></g><g><title>std::panicking::try (81 samples, 0.35%)</title><rect x="23.5257%" y="2581" width="0.3452%" height="15" fill="rgb(240,228,28)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (81 samples, 0.35%)</title><rect x="23.5257%" y="2565" width="0.3452%" height="15" fill="rgb(237,63,43)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (81 samples, 0.35%)</title><rect x="23.5257%" y="2549" width="0.3452%" height="15" fill="rgb(214,1,44)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (81 samples, 0.35%)</title><rect x="23.5257%" y="2533" width="0.3452%" height="15" fill="rgb(212,2,46)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (81 samples, 0.35%)</title><rect x="23.5257%" y="2517" width="0.3452%" height="15" fill="rgb(213,142,5)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (81 samples, 0.35%)</title><rect x="23.5257%" y="2501" width="0.3452%" height="15" fill="rgb(229,135,1)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (81 samples, 0.35%)</title><rect x="23.5257%" y="2485" width="0.3452%" height="15" fill="rgb(252,98,38)" fg:x="5521" fg:w="81"/><text x="23.7757%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (74 samples, 0.32%)</title><rect x="23.5555%" y="2469" width="0.3153%" height="15" fill="rgb(206,89,40)" fg:x="5528" fg:w="74"/><text x="23.8055%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (74 samples, 0.32%)</title><rect x="23.5555%" y="2453" width="0.3153%" height="15" fill="rgb(219,73,36)" fg:x="5528" fg:w="74"/><text x="23.8055%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (74 samples, 0.32%)</title><rect x="23.5555%" y="2437" width="0.3153%" height="15" fill="rgb(207,168,32)" fg:x="5528" fg:w="74"/><text x="23.8055%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (39 samples, 0.17%)</title><rect x="23.7046%" y="2421" width="0.1662%" height="15" fill="rgb(215,113,21)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (39 samples, 0.17%)</title><rect x="23.7046%" y="2405" width="0.1662%" height="15" fill="rgb(217,144,43)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2415.50"></text></g><g><title>std::panicking::try (39 samples, 0.17%)</title><rect x="23.7046%" y="2389" width="0.1662%" height="15" fill="rgb(249,48,50)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (39 samples, 0.17%)</title><rect x="23.7046%" y="2373" width="0.1662%" height="15" fill="rgb(242,1,26)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (39 samples, 0.17%)</title><rect x="23.7046%" y="2357" width="0.1662%" height="15" fill="rgb(231,167,42)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (39 samples, 0.17%)</title><rect x="23.7046%" y="2341" width="0.1662%" height="15" fill="rgb(242,177,45)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (39 samples, 0.17%)</title><rect x="23.7046%" y="2325" width="0.1662%" height="15" fill="rgb(232,121,42)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.17%)</title><rect x="23.7046%" y="2309" width="0.1662%" height="15" fill="rgb(205,8,42)" fg:x="5563" fg:w="39"/><text x="23.9546%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (34 samples, 0.14%)</title><rect x="23.7259%" y="2293" width="0.1449%" height="15" fill="rgb(238,199,24)" fg:x="5568" fg:w="34"/><text x="23.9759%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.14%)</title><rect x="23.7259%" y="2277" width="0.1449%" height="15" fill="rgb(228,112,2)" fg:x="5568" fg:w="34"/><text x="23.9759%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34 samples, 0.14%)</title><rect x="23.7259%" y="2261" width="0.1449%" height="15" fill="rgb(215,115,33)" fg:x="5568" fg:w="34"/><text x="23.9759%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="23.8026%" y="2245" width="0.0682%" height="15" fill="rgb(230,209,34)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="23.8026%" y="2229" width="0.0682%" height="15" fill="rgb(246,76,12)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2239.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="23.8026%" y="2213" width="0.0682%" height="15" fill="rgb(240,110,9)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="23.8026%" y="2197" width="0.0682%" height="15" fill="rgb(224,94,46)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="23.8026%" y="2181" width="0.0682%" height="15" fill="rgb(247,150,22)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="23.8026%" y="2165" width="0.0682%" height="15" fill="rgb(249,85,13)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="23.8026%" y="2149" width="0.0682%" height="15" fill="rgb(208,77,41)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="23.8026%" y="2133" width="0.0682%" height="15" fill="rgb(240,42,44)" fg:x="5586" fg:w="16"/><text x="24.0526%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="23.8282%" y="2117" width="0.0426%" height="15" fill="rgb(222,10,51)" fg:x="5592" fg:w="10"/><text x="24.0782%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="23.8282%" y="2101" width="0.0426%" height="15" fill="rgb(208,146,53)" fg:x="5592" fg:w="10"/><text x="24.0782%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="23.8282%" y="2085" width="0.0426%" height="15" fill="rgb(236,162,23)" fg:x="5592" fg:w="10"/><text x="24.0782%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="23.8410%" y="2069" width="0.0298%" height="15" fill="rgb(218,66,21)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="23.8410%" y="2053" width="0.0298%" height="15" fill="rgb(233,6,47)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="2063.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="23.8410%" y="2037" width="0.0298%" height="15" fill="rgb(236,59,51)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="23.8410%" y="2021" width="0.0298%" height="15" fill="rgb(242,12,46)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="23.8410%" y="2005" width="0.0298%" height="15" fill="rgb(243,142,19)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="23.8410%" y="1989" width="0.0298%" height="15" fill="rgb(217,28,17)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="23.8410%" y="1973" width="0.0298%" height="15" fill="rgb(228,2,27)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="23.8410%" y="1957" width="0.0298%" height="15" fill="rgb(214,221,4)" fg:x="5595" fg:w="7"/><text x="24.0910%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="23.8495%" y="1941" width="0.0213%" height="15" fill="rgb(224,69,26)" fg:x="5597" fg:w="5"/><text x="24.0995%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.8495%" y="1925" width="0.0213%" height="15" fill="rgb(219,70,4)" fg:x="5597" fg:w="5"/><text x="24.0995%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="23.8495%" y="1909" width="0.0213%" height="15" fill="rgb(218,157,39)" fg:x="5597" fg:w="5"/><text x="24.0995%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="23.8538%" y="1893" width="0.0170%" height="15" fill="rgb(238,36,28)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="23.8538%" y="1877" width="0.0170%" height="15" fill="rgb(232,29,0)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1887.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="23.8538%" y="1861" width="0.0170%" height="15" fill="rgb(243,138,46)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="23.8538%" y="1845" width="0.0170%" height="15" fill="rgb(232,186,41)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="23.8538%" y="1829" width="0.0170%" height="15" fill="rgb(252,166,17)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="23.8538%" y="1813" width="0.0170%" height="15" fill="rgb(228,179,12)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="23.8538%" y="1797" width="0.0170%" height="15" fill="rgb(254,205,53)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.8538%" y="1781" width="0.0170%" height="15" fill="rgb(224,163,47)" fg:x="5598" fg:w="4"/><text x="24.1038%" y="1791.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (21 samples, 0.09%)</title><rect x="23.8878%" y="2389" width="0.0895%" height="15" fill="rgb(208,43,47)" fg:x="5606" fg:w="21"/><text x="24.1378%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (21 samples, 0.09%)</title><rect x="23.8878%" y="2373" width="0.0895%" height="15" fill="rgb(224,198,38)" fg:x="5606" fg:w="21"/><text x="24.1378%" y="2383.50"></text></g><g><title>exp (20 samples, 0.09%)</title><rect x="23.8921%" y="2357" width="0.0852%" height="15" fill="rgb(234,12,40)" fg:x="5607" fg:w="20"/><text x="24.1421%" y="2367.50"></text></g><g><title>[libm.so.6] (19 samples, 0.08%)</title><rect x="23.8964%" y="2341" width="0.0810%" height="15" fill="rgb(237,212,39)" fg:x="5608" fg:w="19"/><text x="24.1464%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (13 samples, 0.06%)</title><rect x="23.9773%" y="2389" width="0.0554%" height="15" fill="rgb(253,2,33)" fg:x="5627" fg:w="13"/><text x="24.2273%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (13 samples, 0.06%)</title><rect x="23.9773%" y="2373" width="0.0554%" height="15" fill="rgb(251,29,16)" fg:x="5627" fg:w="13"/><text x="24.2273%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (51 samples, 0.22%)</title><rect x="23.8793%" y="2405" width="0.2173%" height="15" fill="rgb(214,38,29)" fg:x="5604" fg:w="51"/><text x="24.1293%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (15 samples, 0.06%)</title><rect x="24.0327%" y="2389" width="0.0639%" height="15" fill="rgb(226,226,29)" fg:x="5640" fg:w="15"/><text x="24.2827%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (15 samples, 0.06%)</title><rect x="24.0327%" y="2373" width="0.0639%" height="15" fill="rgb(236,79,42)" fg:x="5640" fg:w="15"/><text x="24.2827%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (57 samples, 0.24%)</title><rect x="23.8708%" y="2565" width="0.2429%" height="15" fill="rgb(222,12,36)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (57 samples, 0.24%)</title><rect x="23.8708%" y="2549" width="0.2429%" height="15" fill="rgb(232,123,44)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (57 samples, 0.24%)</title><rect x="23.8708%" y="2533" width="0.2429%" height="15" fill="rgb(234,93,50)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (57 samples, 0.24%)</title><rect x="23.8708%" y="2517" width="0.2429%" height="15" fill="rgb(210,86,49)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (57 samples, 0.24%)</title><rect x="23.8708%" y="2501" width="0.2429%" height="15" fill="rgb(224,91,54)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (57 samples, 0.24%)</title><rect x="23.8708%" y="2485" width="0.2429%" height="15" fill="rgb(239,169,9)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (57 samples, 0.24%)</title><rect x="23.8708%" y="2469" width="0.2429%" height="15" fill="rgb(238,29,17)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (57 samples, 0.24%)</title><rect x="23.8708%" y="2453" width="0.2429%" height="15" fill="rgb(227,160,22)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (57 samples, 0.24%)</title><rect x="23.8708%" y="2437" width="0.2429%" height="15" fill="rgb(231,129,52)" fg:x="5602" fg:w="57"/><text x="24.1208%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (55 samples, 0.23%)</title><rect x="23.8793%" y="2421" width="0.2344%" height="15" fill="rgb(241,184,9)" fg:x="5604" fg:w="55"/><text x="24.1293%" y="2431.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="24.0966%" y="2405" width="0.0170%" height="15" fill="rgb(217,43,48)" fg:x="5655" fg:w="4"/><text x="24.3466%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (61 samples, 0.26%)</title><rect x="23.8708%" y="2581" width="0.2599%" height="15" fill="rgb(213,49,1)" fg:x="5602" fg:w="61"/><text x="24.1208%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.1137%" y="2565" width="0.0170%" height="15" fill="rgb(223,79,39)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2575.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.1137%" y="2549" width="0.0170%" height="15" fill="rgb(228,227,46)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="24.1137%" y="2533" width="0.0170%" height="15" fill="rgb(245,89,41)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="24.1137%" y="2517" width="0.0170%" height="15" fill="rgb(253,83,21)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="24.1137%" y="2501" width="0.0170%" height="15" fill="rgb(229,116,51)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="24.1137%" y="2485" width="0.0170%" height="15" fill="rgb(246,67,26)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="24.1137%" y="2469" width="0.0170%" height="15" fill="rgb(250,117,20)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2479.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="24.1137%" y="2453" width="0.0170%" height="15" fill="rgb(207,88,17)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="24.1137%" y="2437" width="0.0170%" height="15" fill="rgb(212,98,36)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2447.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="24.1137%" y="2421" width="0.0170%" height="15" fill="rgb(221,72,6)" fg:x="5659" fg:w="4"/><text x="24.3637%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="24.1179%" y="2405" width="0.0128%" height="15" fill="rgb(235,129,19)" fg:x="5660" fg:w="3"/><text x="24.3679%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="24.1179%" y="2389" width="0.0128%" height="15" fill="rgb(237,200,6)" fg:x="5660" fg:w="3"/><text x="24.3679%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="24.1179%" y="2373" width="0.0128%" height="15" fill="rgb(239,69,54)" fg:x="5660" fg:w="3"/><text x="24.3679%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="24.1179%" y="2357" width="0.0128%" height="15" fill="rgb(214,68,45)" fg:x="5660" fg:w="3"/><text x="24.3679%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (7 samples, 0.03%)</title><rect x="24.1307%" y="2277" width="0.0298%" height="15" fill="rgb(254,160,8)" fg:x="5663" fg:w="7"/><text x="24.3807%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (7 samples, 0.03%)</title><rect x="24.1307%" y="2261" width="0.0298%" height="15" fill="rgb(215,226,31)" fg:x="5663" fg:w="7"/><text x="24.3807%" y="2271.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="24.1350%" y="2245" width="0.0256%" height="15" fill="rgb(253,6,35)" fg:x="5664" fg:w="6"/><text x="24.3850%" y="2255.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="24.1435%" y="2229" width="0.0170%" height="15" fill="rgb(219,96,42)" fg:x="5666" fg:w="4"/><text x="24.3935%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="24.1606%" y="2277" width="0.0128%" height="15" fill="rgb(207,170,13)" fg:x="5670" fg:w="3"/><text x="24.4106%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="24.1606%" y="2261" width="0.0128%" height="15" fill="rgb(239,101,5)" fg:x="5670" fg:w="3"/><text x="24.4106%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (13 samples, 0.06%)</title><rect x="24.1307%" y="2293" width="0.0554%" height="15" fill="rgb(228,183,34)" fg:x="5663" fg:w="13"/><text x="24.3807%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="24.1733%" y="2277" width="0.0128%" height="15" fill="rgb(205,28,31)" fg:x="5673" fg:w="3"/><text x="24.4233%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="24.1733%" y="2261" width="0.0128%" height="15" fill="rgb(214,118,50)" fg:x="5673" fg:w="3"/><text x="24.4233%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (14 samples, 0.06%)</title><rect x="24.1307%" y="2453" width="0.0597%" height="15" fill="rgb(213,108,51)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (14 samples, 0.06%)</title><rect x="24.1307%" y="2437" width="0.0597%" height="15" fill="rgb(238,56,37)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (14 samples, 0.06%)</title><rect x="24.1307%" y="2421" width="0.0597%" height="15" fill="rgb(214,136,28)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (14 samples, 0.06%)</title><rect x="24.1307%" y="2405" width="0.0597%" height="15" fill="rgb(221,201,54)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (14 samples, 0.06%)</title><rect x="24.1307%" y="2389" width="0.0597%" height="15" fill="rgb(228,216,39)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (14 samples, 0.06%)</title><rect x="24.1307%" y="2373" width="0.0597%" height="15" fill="rgb(207,229,49)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (14 samples, 0.06%)</title><rect x="24.1307%" y="2357" width="0.0597%" height="15" fill="rgb(224,23,43)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (14 samples, 0.06%)</title><rect x="24.1307%" y="2341" width="0.0597%" height="15" fill="rgb(247,97,18)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (14 samples, 0.06%)</title><rect x="24.1307%" y="2325" width="0.0597%" height="15" fill="rgb(232,53,32)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (14 samples, 0.06%)</title><rect x="24.1307%" y="2309" width="0.0597%" height="15" fill="rgb(247,38,23)" fg:x="5663" fg:w="14"/><text x="24.3807%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="24.1307%" y="2533" width="0.0639%" height="15" fill="rgb(228,101,52)" fg:x="5663" fg:w="15"/><text x="24.3807%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="24.1307%" y="2517" width="0.0639%" height="15" fill="rgb(231,45,36)" fg:x="5663" fg:w="15"/><text x="24.3807%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="24.1307%" y="2501" width="0.0639%" height="15" fill="rgb(221,183,50)" fg:x="5663" fg:w="15"/><text x="24.3807%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="24.1307%" y="2485" width="0.0639%" height="15" fill="rgb(251,132,12)" fg:x="5663" fg:w="15"/><text x="24.3807%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="24.1307%" y="2469" width="0.0639%" height="15" fill="rgb(252,50,16)" fg:x="5663" fg:w="15"/><text x="24.3807%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (10 samples, 0.04%)</title><rect x="24.1946%" y="2213" width="0.0426%" height="15" fill="rgb(224,60,15)" fg:x="5678" fg:w="10"/><text x="24.4446%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (10 samples, 0.04%)</title><rect x="24.1946%" y="2197" width="0.0426%" height="15" fill="rgb(254,2,34)" fg:x="5678" fg:w="10"/><text x="24.4446%" y="2207.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="24.1946%" y="2181" width="0.0426%" height="15" fill="rgb(232,154,8)" fg:x="5678" fg:w="10"/><text x="24.4446%" y="2191.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="24.1989%" y="2165" width="0.0384%" height="15" fill="rgb(235,190,52)" fg:x="5679" fg:w="9"/><text x="24.4489%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="24.2373%" y="2213" width="0.0128%" height="15" fill="rgb(213,218,38)" fg:x="5688" fg:w="3"/><text x="24.4873%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="24.2373%" y="2197" width="0.0128%" height="15" fill="rgb(237,50,37)" fg:x="5688" fg:w="3"/><text x="24.4873%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (16 samples, 0.07%)</title><rect x="24.1946%" y="2389" width="0.0682%" height="15" fill="rgb(235,51,35)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (16 samples, 0.07%)</title><rect x="24.1946%" y="2373" width="0.0682%" height="15" fill="rgb(244,40,52)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (16 samples, 0.07%)</title><rect x="24.1946%" y="2357" width="0.0682%" height="15" fill="rgb(217,225,45)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (16 samples, 0.07%)</title><rect x="24.1946%" y="2341" width="0.0682%" height="15" fill="rgb(247,191,36)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (16 samples, 0.07%)</title><rect x="24.1946%" y="2325" width="0.0682%" height="15" fill="rgb(251,144,31)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (16 samples, 0.07%)</title><rect x="24.1946%" y="2309" width="0.0682%" height="15" fill="rgb(227,155,41)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (16 samples, 0.07%)</title><rect x="24.1946%" y="2293" width="0.0682%" height="15" fill="rgb(236,121,36)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (16 samples, 0.07%)</title><rect x="24.1946%" y="2277" width="0.0682%" height="15" fill="rgb(221,128,28)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (16 samples, 0.07%)</title><rect x="24.1946%" y="2261" width="0.0682%" height="15" fill="rgb(249,67,50)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (16 samples, 0.07%)</title><rect x="24.1946%" y="2245" width="0.0682%" height="15" fill="rgb(241,126,38)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (16 samples, 0.07%)</title><rect x="24.1946%" y="2229" width="0.0682%" height="15" fill="rgb(239,33,14)" fg:x="5678" fg:w="16"/><text x="24.4446%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="24.2500%" y="2213" width="0.0128%" height="15" fill="rgb(207,221,54)" fg:x="5691" fg:w="3"/><text x="24.5000%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="24.2500%" y="2197" width="0.0128%" height="15" fill="rgb(242,138,43)" fg:x="5691" fg:w="3"/><text x="24.5000%" y="2207.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (343 samples, 1.46%)</title><rect x="22.8183%" y="2821" width="1.4616%" height="15" fill="rgb(231,118,19)" fg:x="5355" fg:w="343"/><text x="23.0683%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (343 samples, 1.46%)</title><rect x="22.8183%" y="2805" width="1.4616%" height="15" fill="rgb(214,128,54)" fg:x="5355" fg:w="343"/><text x="23.0683%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (343 samples, 1.46%)</title><rect x="22.8183%" y="2789" width="1.4616%" height="15" fill="rgb(236,136,6)" fg:x="5355" fg:w="343"/><text x="23.0683%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (343 samples, 1.46%)</title><rect x="22.8183%" y="2773" width="1.4616%" height="15" fill="rgb(247,30,38)" fg:x="5355" fg:w="343"/><text x="23.0683%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (261 samples, 1.11%)</title><rect x="23.1677%" y="2757" width="1.1122%" height="15" fill="rgb(249,189,40)" fg:x="5437" fg:w="261"/><text x="23.4177%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (261 samples, 1.11%)</title><rect x="23.1677%" y="2741" width="1.1122%" height="15" fill="rgb(247,179,7)" fg:x="5437" fg:w="261"/><text x="23.4177%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (261 samples, 1.11%)</title><rect x="23.1677%" y="2725" width="1.1122%" height="15" fill="rgb(239,46,52)" fg:x="5437" fg:w="261"/><text x="23.4177%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (96 samples, 0.41%)</title><rect x="23.8708%" y="2709" width="0.4091%" height="15" fill="rgb(225,28,52)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (96 samples, 0.41%)</title><rect x="23.8708%" y="2693" width="0.4091%" height="15" fill="rgb(217,208,44)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2703.50"></text></g><g><title>std::panicking::try (96 samples, 0.41%)</title><rect x="23.8708%" y="2677" width="0.4091%" height="15" fill="rgb(224,11,34)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (96 samples, 0.41%)</title><rect x="23.8708%" y="2661" width="0.4091%" height="15" fill="rgb(205,134,17)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (96 samples, 0.41%)</title><rect x="23.8708%" y="2645" width="0.4091%" height="15" fill="rgb(237,125,9)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (96 samples, 0.41%)</title><rect x="23.8708%" y="2629" width="0.4091%" height="15" fill="rgb(208,139,47)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (96 samples, 0.41%)</title><rect x="23.8708%" y="2613" width="0.4091%" height="15" fill="rgb(242,5,5)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (96 samples, 0.41%)</title><rect x="23.8708%" y="2597" width="0.4091%" height="15" fill="rgb(218,78,2)" fg:x="5602" fg:w="96"/><text x="24.1208%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (35 samples, 0.15%)</title><rect x="24.1307%" y="2581" width="0.1491%" height="15" fill="rgb(217,75,16)" fg:x="5663" fg:w="35"/><text x="24.3807%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.15%)</title><rect x="24.1307%" y="2565" width="0.1491%" height="15" fill="rgb(212,56,17)" fg:x="5663" fg:w="35"/><text x="24.3807%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (35 samples, 0.15%)</title><rect x="24.1307%" y="2549" width="0.1491%" height="15" fill="rgb(228,61,29)" fg:x="5663" fg:w="35"/><text x="24.3807%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="24.1946%" y="2533" width="0.0852%" height="15" fill="rgb(247,202,38)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="24.1946%" y="2517" width="0.0852%" height="15" fill="rgb(211,216,43)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2527.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="24.1946%" y="2501" width="0.0852%" height="15" fill="rgb(220,7,49)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="24.1946%" y="2485" width="0.0852%" height="15" fill="rgb(219,158,7)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="24.1946%" y="2469" width="0.0852%" height="15" fill="rgb(206,127,9)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="24.1946%" y="2453" width="0.0852%" height="15" fill="rgb(206,103,43)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="24.1946%" y="2437" width="0.0852%" height="15" fill="rgb(240,108,41)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="24.1946%" y="2421" width="0.0852%" height="15" fill="rgb(252,212,6)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (20 samples, 0.09%)</title><rect x="24.1946%" y="2405" width="0.0852%" height="15" fill="rgb(248,105,31)" fg:x="5678" fg:w="20"/><text x="24.4446%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.2628%" y="2389" width="0.0170%" height="15" fill="rgb(241,123,4)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2399.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.2628%" y="2373" width="0.0170%" height="15" fill="rgb(223,74,37)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="24.2628%" y="2357" width="0.0170%" height="15" fill="rgb(251,219,28)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="24.2628%" y="2341" width="0.0170%" height="15" fill="rgb(218,36,31)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="24.2628%" y="2325" width="0.0170%" height="15" fill="rgb(229,40,15)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="24.2628%" y="2309" width="0.0170%" height="15" fill="rgb(208,138,37)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="24.2628%" y="2293" width="0.0170%" height="15" fill="rgb(208,40,52)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="24.2628%" y="2277" width="0.0170%" height="15" fill="rgb(246,181,48)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="24.2628%" y="2261" width="0.0170%" height="15" fill="rgb(253,178,36)" fg:x="5694" fg:w="4"/><text x="24.5128%" y="2271.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (39 samples, 0.17%)</title><rect x="24.2841%" y="2501" width="0.1662%" height="15" fill="rgb(210,170,6)" fg:x="5699" fg:w="39"/><text x="24.5341%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::exp (39 samples, 0.17%)</title><rect x="24.2841%" y="2485" width="0.1662%" height="15" fill="rgb(243,62,22)" fg:x="5699" fg:w="39"/><text x="24.5341%" y="2495.50"></text></g><g><title>exp (37 samples, 0.16%)</title><rect x="24.2927%" y="2469" width="0.1577%" height="15" fill="rgb(213,145,26)" fg:x="5701" fg:w="37"/><text x="24.5427%" y="2479.50"></text></g><g><title>[libm.so.6] (31 samples, 0.13%)</title><rect x="24.3182%" y="2453" width="0.1321%" height="15" fill="rgb(237,177,23)" fg:x="5707" fg:w="31"/><text x="24.5682%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (16 samples, 0.07%)</title><rect x="24.4503%" y="2501" width="0.0682%" height="15" fill="rgb(252,5,24)" fg:x="5738" fg:w="16"/><text x="24.7003%" y="2511.50"></text></g><g><title>core::f64::<impl f64>::recip (16 samples, 0.07%)</title><rect x="24.4503%" y="2485" width="0.0682%" height="15" fill="rgb(230,108,54)" fg:x="5738" fg:w="16"/><text x="24.7003%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (70 samples, 0.30%)</title><rect x="24.2841%" y="2517" width="0.2983%" height="15" fill="rgb(252,192,41)" fg:x="5699" fg:w="70"/><text x="24.5341%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (15 samples, 0.06%)</title><rect x="24.5185%" y="2501" width="0.0639%" height="15" fill="rgb(218,125,20)" fg:x="5754" fg:w="15"/><text x="24.7685%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::sqrt (15 samples, 0.06%)</title><rect x="24.5185%" y="2485" width="0.0639%" height="15" fill="rgb(230,223,15)" fg:x="5754" fg:w="15"/><text x="24.7685%" y="2495.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (77 samples, 0.33%)</title><rect x="24.2799%" y="2677" width="0.3281%" height="15" fill="rgb(239,99,47)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (77 samples, 0.33%)</title><rect x="24.2799%" y="2661" width="0.3281%" height="15" fill="rgb(222,214,23)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (77 samples, 0.33%)</title><rect x="24.2799%" y="2645" width="0.3281%" height="15" fill="rgb(250,98,43)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2655.50"></text></g><g><title>core::option::Option<T>::map (77 samples, 0.33%)</title><rect x="24.2799%" y="2629" width="0.3281%" height="15" fill="rgb(226,140,11)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (77 samples, 0.33%)</title><rect x="24.2799%" y="2613" width="0.3281%" height="15" fill="rgb(239,2,22)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (77 samples, 0.33%)</title><rect x="24.2799%" y="2597" width="0.3281%" height="15" fill="rgb(209,106,26)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (77 samples, 0.33%)</title><rect x="24.2799%" y="2581" width="0.3281%" height="15" fill="rgb(209,135,11)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2591.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (77 samples, 0.33%)</title><rect x="24.2799%" y="2565" width="0.3281%" height="15" fill="rgb(241,58,6)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2575.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (77 samples, 0.33%)</title><rect x="24.2799%" y="2549" width="0.3281%" height="15" fill="rgb(214,78,1)" fg:x="5698" fg:w="77"/><text x="24.5299%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (76 samples, 0.32%)</title><rect x="24.2841%" y="2533" width="0.3238%" height="15" fill="rgb(229,135,33)" fg:x="5699" fg:w="76"/><text x="24.5341%" y="2543.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="24.5824%" y="2517" width="0.0256%" height="15" fill="rgb(245,87,50)" fg:x="5769" fg:w="6"/><text x="24.8324%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="24.6080%" y="2549" width="0.0128%" height="15" fill="rgb(222,222,8)" fg:x="5775" fg:w="3"/><text x="24.8580%" y="2559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="24.6080%" y="2533" width="0.0128%" height="15" fill="rgb(214,97,50)" fg:x="5775" fg:w="3"/><text x="24.8580%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="24.6080%" y="2517" width="0.0128%" height="15" fill="rgb(244,161,51)" fg:x="5775" fg:w="3"/><text x="24.8580%" y="2527.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="24.6080%" y="2501" width="0.0128%" height="15" fill="rgb(225,17,4)" fg:x="5775" fg:w="3"/><text x="24.8580%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="24.6080%" y="2485" width="0.0128%" height="15" fill="rgb(238,10,13)" fg:x="5775" fg:w="3"/><text x="24.8580%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="24.6080%" y="2469" width="0.0128%" height="15" fill="rgb(239,169,14)" fg:x="5775" fg:w="3"/><text x="24.8580%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="24.6080%" y="2453" width="0.0128%" height="15" fill="rgb(213,105,25)" fg:x="5775" fg:w="3"/><text x="24.8580%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (81 samples, 0.35%)</title><rect x="24.2799%" y="2693" width="0.3452%" height="15" fill="rgb(233,4,17)" fg:x="5698" fg:w="81"/><text x="24.5299%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.6080%" y="2677" width="0.0170%" height="15" fill="rgb(212,5,35)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2687.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.6080%" y="2661" width="0.0170%" height="15" fill="rgb(216,3,14)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="24.6080%" y="2645" width="0.0170%" height="15" fill="rgb(240,105,33)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="24.6080%" y="2629" width="0.0170%" height="15" fill="rgb(216,73,0)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2639.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="24.6080%" y="2613" width="0.0170%" height="15" fill="rgb(217,153,48)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="24.6080%" y="2597" width="0.0170%" height="15" fill="rgb(218,180,8)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2607.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="24.6080%" y="2581" width="0.0170%" height="15" fill="rgb(252,168,2)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2591.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="24.6080%" y="2565" width="0.0170%" height="15" fill="rgb(224,116,33)" fg:x="5775" fg:w="4"/><text x="24.8580%" y="2575.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (25 samples, 0.11%)</title><rect x="24.6335%" y="2389" width="0.1065%" height="15" fill="rgb(229,205,17)" fg:x="5781" fg:w="25"/><text x="24.8835%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (25 samples, 0.11%)</title><rect x="24.6335%" y="2373" width="0.1065%" height="15" fill="rgb(234,1,41)" fg:x="5781" fg:w="25"/><text x="24.8835%" y="2383.50"></text></g><g><title>exp (24 samples, 0.10%)</title><rect x="24.6378%" y="2357" width="0.1023%" height="15" fill="rgb(244,185,8)" fg:x="5782" fg:w="24"/><text x="24.8878%" y="2367.50"></text></g><g><title>[libm.so.6] (18 samples, 0.08%)</title><rect x="24.6634%" y="2341" width="0.0767%" height="15" fill="rgb(248,51,21)" fg:x="5788" fg:w="18"/><text x="24.9134%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (17 samples, 0.07%)</title><rect x="24.7443%" y="2389" width="0.0724%" height="15" fill="rgb(248,157,31)" fg:x="5807" fg:w="17"/><text x="24.9943%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (17 samples, 0.07%)</title><rect x="24.7443%" y="2373" width="0.0724%" height="15" fill="rgb(210,34,47)" fg:x="5807" fg:w="17"/><text x="24.9943%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (51 samples, 0.22%)</title><rect x="24.6293%" y="2405" width="0.2173%" height="15" fill="rgb(227,139,53)" fg:x="5780" fg:w="51"/><text x="24.8793%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (7 samples, 0.03%)</title><rect x="24.8168%" y="2389" width="0.0298%" height="15" fill="rgb(232,211,37)" fg:x="5824" fg:w="7"/><text x="25.0668%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (7 samples, 0.03%)</title><rect x="24.8168%" y="2373" width="0.0298%" height="15" fill="rgb(236,133,10)" fg:x="5824" fg:w="7"/><text x="25.0668%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (58 samples, 0.25%)</title><rect x="24.6250%" y="2565" width="0.2471%" height="15" fill="rgb(243,202,25)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (58 samples, 0.25%)</title><rect x="24.6250%" y="2549" width="0.2471%" height="15" fill="rgb(224,59,9)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (58 samples, 0.25%)</title><rect x="24.6250%" y="2533" width="0.2471%" height="15" fill="rgb(206,146,16)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (58 samples, 0.25%)</title><rect x="24.6250%" y="2517" width="0.2471%" height="15" fill="rgb(220,47,2)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (58 samples, 0.25%)</title><rect x="24.6250%" y="2501" width="0.2471%" height="15" fill="rgb(225,124,51)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (58 samples, 0.25%)</title><rect x="24.6250%" y="2485" width="0.2471%" height="15" fill="rgb(241,220,50)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (58 samples, 0.25%)</title><rect x="24.6250%" y="2469" width="0.2471%" height="15" fill="rgb(232,168,5)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (58 samples, 0.25%)</title><rect x="24.6250%" y="2453" width="0.2471%" height="15" fill="rgb(243,90,22)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (58 samples, 0.25%)</title><rect x="24.6250%" y="2437" width="0.2471%" height="15" fill="rgb(223,153,32)" fg:x="5779" fg:w="58"/><text x="24.8750%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (57 samples, 0.24%)</title><rect x="24.6293%" y="2421" width="0.2429%" height="15" fill="rgb(243,124,20)" fg:x="5780" fg:w="57"/><text x="24.8793%" y="2431.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="24.8466%" y="2405" width="0.0256%" height="15" fill="rgb(246,168,39)" fg:x="5831" fg:w="6"/><text x="25.0966%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (62 samples, 0.26%)</title><rect x="24.6250%" y="2581" width="0.2642%" height="15" fill="rgb(222,165,54)" fg:x="5779" fg:w="62"/><text x="24.8750%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.8722%" y="2565" width="0.0170%" height="15" fill="rgb(251,142,27)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2575.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.8722%" y="2549" width="0.0170%" height="15" fill="rgb(207,168,50)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="24.8722%" y="2533" width="0.0170%" height="15" fill="rgb(250,139,25)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="24.8722%" y="2517" width="0.0170%" height="15" fill="rgb(214,194,48)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="24.8722%" y="2501" width="0.0170%" height="15" fill="rgb(227,138,47)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="24.8722%" y="2485" width="0.0170%" height="15" fill="rgb(250,162,5)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="24.8722%" y="2469" width="0.0170%" height="15" fill="rgb(229,74,25)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2479.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="24.8722%" y="2453" width="0.0170%" height="15" fill="rgb(221,124,34)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="24.8722%" y="2437" width="0.0170%" height="15" fill="rgb(225,94,25)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2447.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="24.8722%" y="2421" width="0.0170%" height="15" fill="rgb(210,100,12)" fg:x="5837" fg:w="4"/><text x="25.1222%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="24.8764%" y="2405" width="0.0128%" height="15" fill="rgb(206,62,48)" fg:x="5838" fg:w="3"/><text x="25.1264%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="24.8764%" y="2389" width="0.0128%" height="15" fill="rgb(222,181,9)" fg:x="5838" fg:w="3"/><text x="25.1264%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="24.8764%" y="2373" width="0.0128%" height="15" fill="rgb(248,42,38)" fg:x="5838" fg:w="3"/><text x="25.1264%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="24.8764%" y="2357" width="0.0128%" height="15" fill="rgb(213,40,6)" fg:x="5838" fg:w="3"/><text x="25.1264%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="24.8892%" y="2277" width="0.0213%" height="15" fill="rgb(211,108,15)" fg:x="5841" fg:w="5"/><text x="25.1392%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="24.8892%" y="2261" width="0.0213%" height="15" fill="rgb(249,62,9)" fg:x="5841" fg:w="5"/><text x="25.1392%" y="2271.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="24.8892%" y="2245" width="0.0213%" height="15" fill="rgb(233,26,54)" fg:x="5841" fg:w="5"/><text x="25.1392%" y="2255.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="24.8892%" y="2229" width="0.0213%" height="15" fill="rgb(210,175,26)" fg:x="5841" fg:w="5"/><text x="25.1392%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="24.9105%" y="2277" width="0.0213%" height="15" fill="rgb(210,43,33)" fg:x="5846" fg:w="5"/><text x="25.1605%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="24.9105%" y="2261" width="0.0213%" height="15" fill="rgb(224,46,17)" fg:x="5846" fg:w="5"/><text x="25.1605%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (13 samples, 0.06%)</title><rect x="24.8892%" y="2293" width="0.0554%" height="15" fill="rgb(254,24,38)" fg:x="5841" fg:w="13"/><text x="25.1392%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="24.9318%" y="2277" width="0.0128%" height="15" fill="rgb(248,32,0)" fg:x="5851" fg:w="3"/><text x="25.1818%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="24.9318%" y="2261" width="0.0128%" height="15" fill="rgb(224,37,41)" fg:x="5851" fg:w="3"/><text x="25.1818%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (16 samples, 0.07%)</title><rect x="24.8892%" y="2453" width="0.0682%" height="15" fill="rgb(252,70,22)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (16 samples, 0.07%)</title><rect x="24.8892%" y="2437" width="0.0682%" height="15" fill="rgb(241,123,50)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (16 samples, 0.07%)</title><rect x="24.8892%" y="2421" width="0.0682%" height="15" fill="rgb(246,138,33)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (16 samples, 0.07%)</title><rect x="24.8892%" y="2405" width="0.0682%" height="15" fill="rgb(218,39,32)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (16 samples, 0.07%)</title><rect x="24.8892%" y="2389" width="0.0682%" height="15" fill="rgb(241,229,10)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (16 samples, 0.07%)</title><rect x="24.8892%" y="2373" width="0.0682%" height="15" fill="rgb(212,160,10)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (16 samples, 0.07%)</title><rect x="24.8892%" y="2357" width="0.0682%" height="15" fill="rgb(227,48,51)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (16 samples, 0.07%)</title><rect x="24.8892%" y="2341" width="0.0682%" height="15" fill="rgb(238,159,21)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (16 samples, 0.07%)</title><rect x="24.8892%" y="2325" width="0.0682%" height="15" fill="rgb(216,1,10)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (16 samples, 0.07%)</title><rect x="24.8892%" y="2309" width="0.0682%" height="15" fill="rgb(209,228,25)" fg:x="5841" fg:w="16"/><text x="25.1392%" y="2319.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="24.9446%" y="2293" width="0.0128%" height="15" fill="rgb(234,160,10)" fg:x="5854" fg:w="3"/><text x="25.1946%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="24.8892%" y="2533" width="0.0852%" height="15" fill="rgb(212,66,25)" fg:x="5841" fg:w="20"/><text x="25.1392%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="24.8892%" y="2517" width="0.0852%" height="15" fill="rgb(254,121,18)" fg:x="5841" fg:w="20"/><text x="25.1392%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="24.8892%" y="2501" width="0.0852%" height="15" fill="rgb(219,127,1)" fg:x="5841" fg:w="20"/><text x="25.1392%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="24.8892%" y="2485" width="0.0852%" height="15" fill="rgb(219,224,42)" fg:x="5841" fg:w="20"/><text x="25.1392%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (20 samples, 0.09%)</title><rect x="24.8892%" y="2469" width="0.0852%" height="15" fill="rgb(253,130,22)" fg:x="5841" fg:w="20"/><text x="25.1392%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.9574%" y="2453" width="0.0170%" height="15" fill="rgb(253,39,28)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="24.9574%" y="2437" width="0.0170%" height="15" fill="rgb(231,126,37)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="24.9574%" y="2421" width="0.0170%" height="15" fill="rgb(251,145,14)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="24.9574%" y="2405" width="0.0170%" height="15" fill="rgb(229,164,30)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="24.9574%" y="2389" width="0.0170%" height="15" fill="rgb(233,227,54)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="24.9574%" y="2373" width="0.0170%" height="15" fill="rgb(240,94,22)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="24.9574%" y="2357" width="0.0170%" height="15" fill="rgb(217,56,16)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="24.9574%" y="2341" width="0.0170%" height="15" fill="rgb(229,133,38)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="24.9574%" y="2325" width="0.0170%" height="15" fill="rgb(225,139,35)" fg:x="5857" fg:w="4"/><text x="25.2074%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="24.9616%" y="2309" width="0.0128%" height="15" fill="rgb(223,100,16)" fg:x="5858" fg:w="3"/><text x="25.2116%" y="2319.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="24.9744%" y="2213" width="0.0170%" height="15" fill="rgb(207,43,50)" fg:x="5861" fg:w="4"/><text x="25.2244%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="24.9744%" y="2197" width="0.0170%" height="15" fill="rgb(237,221,9)" fg:x="5861" fg:w="4"/><text x="25.2244%" y="2207.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="24.9744%" y="2181" width="0.0170%" height="15" fill="rgb(236,134,24)" fg:x="5861" fg:w="4"/><text x="25.2244%" y="2191.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="24.9744%" y="2165" width="0.0170%" height="15" fill="rgb(222,173,4)" fg:x="5861" fg:w="4"/><text x="25.2244%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (6 samples, 0.03%)</title><rect x="24.9915%" y="2213" width="0.0256%" height="15" fill="rgb(234,144,52)" fg:x="5865" fg:w="6"/><text x="25.2415%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (6 samples, 0.03%)</title><rect x="24.9915%" y="2197" width="0.0256%" height="15" fill="rgb(223,41,7)" fg:x="5865" fg:w="6"/><text x="25.2415%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (11 samples, 0.05%)</title><rect x="24.9744%" y="2229" width="0.0469%" height="15" fill="rgb(226,143,9)" fg:x="5861" fg:w="11"/><text x="25.2244%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (14 samples, 0.06%)</title><rect x="24.9744%" y="2389" width="0.0597%" height="15" fill="rgb(234,43,37)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (14 samples, 0.06%)</title><rect x="24.9744%" y="2373" width="0.0597%" height="15" fill="rgb(224,188,11)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (14 samples, 0.06%)</title><rect x="24.9744%" y="2357" width="0.0597%" height="15" fill="rgb(233,113,28)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (14 samples, 0.06%)</title><rect x="24.9744%" y="2341" width="0.0597%" height="15" fill="rgb(215,16,1)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (14 samples, 0.06%)</title><rect x="24.9744%" y="2325" width="0.0597%" height="15" fill="rgb(238,74,38)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (14 samples, 0.06%)</title><rect x="24.9744%" y="2309" width="0.0597%" height="15" fill="rgb(221,66,35)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (14 samples, 0.06%)</title><rect x="24.9744%" y="2293" width="0.0597%" height="15" fill="rgb(251,225,2)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (14 samples, 0.06%)</title><rect x="24.9744%" y="2277" width="0.0597%" height="15" fill="rgb(240,169,18)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (14 samples, 0.06%)</title><rect x="24.9744%" y="2261" width="0.0597%" height="15" fill="rgb(243,130,50)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (14 samples, 0.06%)</title><rect x="24.9744%" y="2245" width="0.0597%" height="15" fill="rgb(228,75,13)" fg:x="5861" fg:w="14"/><text x="25.2244%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="25.0213%" y="2229" width="0.0128%" height="15" fill="rgb(252,95,35)" fg:x="5872" fg:w="3"/><text x="25.2713%" y="2239.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="25.0341%" y="2229" width="0.0128%" height="15" fill="rgb(222,180,54)" fg:x="5875" fg:w="3"/><text x="25.2841%" y="2239.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="25.0341%" y="2213" width="0.0128%" height="15" fill="rgb(250,110,34)" fg:x="5875" fg:w="3"/><text x="25.2841%" y="2223.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="25.0341%" y="2245" width="0.0170%" height="15" fill="rgb(208,100,21)" fg:x="5875" fg:w="4"/><text x="25.2841%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (102 samples, 0.43%)</title><rect x="24.6250%" y="2645" width="0.4346%" height="15" fill="rgb(209,123,47)" fg:x="5779" fg:w="102"/><text x="24.8750%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (102 samples, 0.43%)</title><rect x="24.6250%" y="2629" width="0.4346%" height="15" fill="rgb(237,147,9)" fg:x="5779" fg:w="102"/><text x="24.8750%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (102 samples, 0.43%)</title><rect x="24.6250%" y="2613" width="0.4346%" height="15" fill="rgb(228,206,23)" fg:x="5779" fg:w="102"/><text x="24.8750%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (102 samples, 0.43%)</title><rect x="24.6250%" y="2597" width="0.4346%" height="15" fill="rgb(217,174,46)" fg:x="5779" fg:w="102"/><text x="24.8750%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (40 samples, 0.17%)</title><rect x="24.8892%" y="2581" width="0.1704%" height="15" fill="rgb(231,126,21)" fg:x="5841" fg:w="40"/><text x="25.1392%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.17%)</title><rect x="24.8892%" y="2565" width="0.1704%" height="15" fill="rgb(245,26,1)" fg:x="5841" fg:w="40"/><text x="25.1392%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (40 samples, 0.17%)</title><rect x="24.8892%" y="2549" width="0.1704%" height="15" fill="rgb(224,138,39)" fg:x="5841" fg:w="40"/><text x="25.1392%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="24.9744%" y="2533" width="0.0852%" height="15" fill="rgb(208,97,3)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="24.9744%" y="2517" width="0.0852%" height="15" fill="rgb(222,77,29)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2527.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="24.9744%" y="2501" width="0.0852%" height="15" fill="rgb(243,188,36)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="24.9744%" y="2485" width="0.0852%" height="15" fill="rgb(218,214,3)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="24.9744%" y="2469" width="0.0852%" height="15" fill="rgb(211,183,45)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="24.9744%" y="2453" width="0.0852%" height="15" fill="rgb(230,218,25)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="24.9744%" y="2437" width="0.0852%" height="15" fill="rgb(233,86,6)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="24.9744%" y="2421" width="0.0852%" height="15" fill="rgb(220,59,24)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (20 samples, 0.09%)</title><rect x="24.9744%" y="2405" width="0.0852%" height="15" fill="rgb(227,60,1)" fg:x="5861" fg:w="20"/><text x="25.2244%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="25.0341%" y="2389" width="0.0256%" height="15" fill="rgb(216,212,54)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2399.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="25.0341%" y="2373" width="0.0256%" height="15" fill="rgb(227,81,54)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="25.0341%" y="2357" width="0.0256%" height="15" fill="rgb(206,204,43)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="25.0341%" y="2341" width="0.0256%" height="15" fill="rgb(219,29,26)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="25.0341%" y="2325" width="0.0256%" height="15" fill="rgb(252,40,36)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="25.0341%" y="2309" width="0.0256%" height="15" fill="rgb(224,205,39)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="25.0341%" y="2293" width="0.0256%" height="15" fill="rgb(222,13,21)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="25.0341%" y="2277" width="0.0256%" height="15" fill="rgb(243,139,6)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="25.0341%" y="2261" width="0.0256%" height="15" fill="rgb(237,101,11)" fg:x="5875" fg:w="6"/><text x="25.2841%" y="2271.50"></text></g><g><title><f64 as core::ops::arith::Mul>::mul (3 samples, 0.01%)</title><rect x="25.0597%" y="2325" width="0.0128%" height="15" fill="rgb(254,49,28)" fg:x="5881" fg:w="3"/><text x="25.3097%" y="2335.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (21 samples, 0.09%)</title><rect x="25.0724%" y="2325" width="0.0895%" height="15" fill="rgb(223,41,21)" fg:x="5884" fg:w="21"/><text x="25.3224%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::exp (21 samples, 0.09%)</title><rect x="25.0724%" y="2309" width="0.0895%" height="15" fill="rgb(225,103,29)" fg:x="5884" fg:w="21"/><text x="25.3224%" y="2319.50"></text></g><g><title>exp (21 samples, 0.09%)</title><rect x="25.0724%" y="2293" width="0.0895%" height="15" fill="rgb(244,82,43)" fg:x="5884" fg:w="21"/><text x="25.3224%" y="2303.50"></text></g><g><title>[libm.so.6] (15 samples, 0.06%)</title><rect x="25.0980%" y="2277" width="0.0639%" height="15" fill="rgb(217,39,3)" fg:x="5890" fg:w="15"/><text x="25.3480%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="25.1619%" y="2325" width="0.0426%" height="15" fill="rgb(239,128,25)" fg:x="5905" fg:w="10"/><text x="25.4119%" y="2335.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="25.1619%" y="2309" width="0.0426%" height="15" fill="rgb(210,192,37)" fg:x="5905" fg:w="10"/><text x="25.4119%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (51 samples, 0.22%)</title><rect x="25.0597%" y="2341" width="0.2173%" height="15" fill="rgb(219,98,18)" fg:x="5881" fg:w="51"/><text x="25.3097%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (17 samples, 0.07%)</title><rect x="25.2045%" y="2325" width="0.0724%" height="15" fill="rgb(224,228,38)" fg:x="5915" fg:w="17"/><text x="25.4545%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::sqrt (17 samples, 0.07%)</title><rect x="25.2045%" y="2309" width="0.0724%" height="15" fill="rgb(241,129,43)" fg:x="5915" fg:w="17"/><text x="25.4545%" y="2319.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (58 samples, 0.25%)</title><rect x="25.0597%" y="2501" width="0.2471%" height="15" fill="rgb(223,8,51)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (58 samples, 0.25%)</title><rect x="25.0597%" y="2485" width="0.2471%" height="15" fill="rgb(233,76,24)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (58 samples, 0.25%)</title><rect x="25.0597%" y="2469" width="0.2471%" height="15" fill="rgb(219,115,10)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (58 samples, 0.25%)</title><rect x="25.0597%" y="2453" width="0.2471%" height="15" fill="rgb(222,137,12)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (58 samples, 0.25%)</title><rect x="25.0597%" y="2437" width="0.2471%" height="15" fill="rgb(216,192,16)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (58 samples, 0.25%)</title><rect x="25.0597%" y="2421" width="0.2471%" height="15" fill="rgb(247,6,27)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (58 samples, 0.25%)</title><rect x="25.0597%" y="2405" width="0.2471%" height="15" fill="rgb(254,39,44)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (58 samples, 0.25%)</title><rect x="25.0597%" y="2389" width="0.2471%" height="15" fill="rgb(251,116,35)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (58 samples, 0.25%)</title><rect x="25.0597%" y="2373" width="0.2471%" height="15" fill="rgb(208,61,44)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (58 samples, 0.25%)</title><rect x="25.0597%" y="2357" width="0.2471%" height="15" fill="rgb(250,34,5)" fg:x="5881" fg:w="58"/><text x="25.3097%" y="2367.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="25.2770%" y="2341" width="0.0298%" height="15" fill="rgb(241,40,15)" fg:x="5932" fg:w="7"/><text x="25.5270%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="25.3068%" y="2277" width="0.0128%" height="15" fill="rgb(229,182,2)" fg:x="5939" fg:w="3"/><text x="25.5568%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (63 samples, 0.27%)</title><rect x="25.0597%" y="2517" width="0.2685%" height="15" fill="rgb(244,148,52)" fg:x="5881" fg:w="63"/><text x="25.3097%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="25.3068%" y="2501" width="0.0213%" height="15" fill="rgb(225,211,4)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2511.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="25.3068%" y="2485" width="0.0213%" height="15" fill="rgb(208,222,47)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="25.3068%" y="2469" width="0.0213%" height="15" fill="rgb(233,162,0)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (5 samples, 0.02%)</title><rect x="25.3068%" y="2453" width="0.0213%" height="15" fill="rgb(241,54,13)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2463.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="25.3068%" y="2437" width="0.0213%" height="15" fill="rgb(213,89,18)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2447.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="25.3068%" y="2421" width="0.0213%" height="15" fill="rgb(215,170,37)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="25.3068%" y="2405" width="0.0213%" height="15" fill="rgb(216,133,15)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2415.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="25.3068%" y="2389" width="0.0213%" height="15" fill="rgb(230,42,19)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2399.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="25.3068%" y="2373" width="0.0213%" height="15" fill="rgb(221,103,41)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2383.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="25.3068%" y="2357" width="0.0213%" height="15" fill="rgb(220,142,31)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="25.3068%" y="2341" width="0.0213%" height="15" fill="rgb(239,218,4)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2351.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="25.3068%" y="2325" width="0.0213%" height="15" fill="rgb(232,16,4)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="25.3068%" y="2309" width="0.0213%" height="15" fill="rgb(226,213,25)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="25.3068%" y="2293" width="0.0213%" height="15" fill="rgb(235,135,19)" fg:x="5939" fg:w="5"/><text x="25.5568%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (7 samples, 0.03%)</title><rect x="25.3324%" y="2213" width="0.0298%" height="15" fill="rgb(240,107,29)" fg:x="5945" fg:w="7"/><text x="25.5824%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (7 samples, 0.03%)</title><rect x="25.3324%" y="2197" width="0.0298%" height="15" fill="rgb(206,164,44)" fg:x="5945" fg:w="7"/><text x="25.5824%" y="2207.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="25.3324%" y="2181" width="0.0298%" height="15" fill="rgb(210,23,48)" fg:x="5945" fg:w="7"/><text x="25.5824%" y="2191.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="25.3366%" y="2165" width="0.0256%" height="15" fill="rgb(212,138,25)" fg:x="5946" fg:w="6"/><text x="25.5866%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="25.3622%" y="2213" width="0.0128%" height="15" fill="rgb(224,152,3)" fg:x="5952" fg:w="3"/><text x="25.6122%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="25.3622%" y="2197" width="0.0128%" height="15" fill="rgb(214,38,23)" fg:x="5952" fg:w="3"/><text x="25.6122%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (14 samples, 0.06%)</title><rect x="25.3281%" y="2229" width="0.0597%" height="15" fill="rgb(215,161,10)" fg:x="5944" fg:w="14"/><text x="25.5781%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="25.3750%" y="2213" width="0.0128%" height="15" fill="rgb(240,185,7)" fg:x="5955" fg:w="3"/><text x="25.6250%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="25.3750%" y="2197" width="0.0128%" height="15" fill="rgb(244,104,25)" fg:x="5955" fg:w="3"/><text x="25.6250%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (17 samples, 0.07%)</title><rect x="25.3281%" y="2389" width="0.0724%" height="15" fill="rgb(242,140,44)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (17 samples, 0.07%)</title><rect x="25.3281%" y="2373" width="0.0724%" height="15" fill="rgb(245,30,19)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (17 samples, 0.07%)</title><rect x="25.3281%" y="2357" width="0.0724%" height="15" fill="rgb(219,208,35)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (17 samples, 0.07%)</title><rect x="25.3281%" y="2341" width="0.0724%" height="15" fill="rgb(235,200,7)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (17 samples, 0.07%)</title><rect x="25.3281%" y="2325" width="0.0724%" height="15" fill="rgb(220,193,10)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (17 samples, 0.07%)</title><rect x="25.3281%" y="2309" width="0.0724%" height="15" fill="rgb(212,216,39)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (17 samples, 0.07%)</title><rect x="25.3281%" y="2293" width="0.0724%" height="15" fill="rgb(212,134,19)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (17 samples, 0.07%)</title><rect x="25.3281%" y="2277" width="0.0724%" height="15" fill="rgb(230,57,24)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (17 samples, 0.07%)</title><rect x="25.3281%" y="2261" width="0.0724%" height="15" fill="rgb(238,209,37)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (17 samples, 0.07%)</title><rect x="25.3281%" y="2245" width="0.0724%" height="15" fill="rgb(247,11,45)" fg:x="5944" fg:w="17"/><text x="25.5781%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="25.3878%" y="2229" width="0.0128%" height="15" fill="rgb(222,126,6)" fg:x="5958" fg:w="3"/><text x="25.6378%" y="2239.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="25.4005%" y="2245" width="0.0128%" height="15" fill="rgb(245,77,24)" fg:x="5961" fg:w="3"/><text x="25.6505%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="25.4005%" y="2229" width="0.0128%" height="15" fill="rgb(227,14,24)" fg:x="5961" fg:w="3"/><text x="25.6505%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="25.3281%" y="2469" width="0.0937%" height="15" fill="rgb(211,112,42)" fg:x="5944" fg:w="22"/><text x="25.5781%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="25.3281%" y="2453" width="0.0937%" height="15" fill="rgb(230,103,42)" fg:x="5944" fg:w="22"/><text x="25.5781%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="25.3281%" y="2437" width="0.0937%" height="15" fill="rgb(228,125,42)" fg:x="5944" fg:w="22"/><text x="25.5781%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="25.3281%" y="2421" width="0.0937%" height="15" fill="rgb(243,33,6)" fg:x="5944" fg:w="22"/><text x="25.5781%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (22 samples, 0.09%)</title><rect x="25.3281%" y="2405" width="0.0937%" height="15" fill="rgb(231,2,40)" fg:x="5944" fg:w="22"/><text x="25.5781%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="25.4005%" y="2389" width="0.0213%" height="15" fill="rgb(224,200,53)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2399.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="25.4005%" y="2373" width="0.0213%" height="15" fill="rgb(215,116,36)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="25.4005%" y="2357" width="0.0213%" height="15" fill="rgb(240,23,51)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="25.4005%" y="2341" width="0.0213%" height="15" fill="rgb(221,72,5)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="25.4005%" y="2325" width="0.0213%" height="15" fill="rgb(245,142,9)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="25.4005%" y="2309" width="0.0213%" height="15" fill="rgb(207,34,16)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="25.4005%" y="2293" width="0.0213%" height="15" fill="rgb(252,101,12)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="25.4005%" y="2277" width="0.0213%" height="15" fill="rgb(239,89,37)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="25.4005%" y="2261" width="0.0213%" height="15" fill="rgb(252,227,37)" fg:x="5961" fg:w="5"/><text x="25.6505%" y="2271.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="25.4219%" y="2149" width="0.0256%" height="15" fill="rgb(212,164,17)" fg:x="5966" fg:w="6"/><text x="25.6719%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="25.4219%" y="2133" width="0.0256%" height="15" fill="rgb(240,86,13)" fg:x="5966" fg:w="6"/><text x="25.6719%" y="2143.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="25.4304%" y="2117" width="0.0170%" height="15" fill="rgb(233,183,32)" fg:x="5968" fg:w="4"/><text x="25.6804%" y="2127.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="25.4304%" y="2101" width="0.0170%" height="15" fill="rgb(205,201,38)" fg:x="5968" fg:w="4"/><text x="25.6804%" y="2111.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (12 samples, 0.05%)</title><rect x="25.4219%" y="2165" width="0.0511%" height="15" fill="rgb(210,122,38)" fg:x="5966" fg:w="12"/><text x="25.6719%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="25.4559%" y="2149" width="0.0170%" height="15" fill="rgb(241,174,26)" fg:x="5974" fg:w="4"/><text x="25.7059%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="25.4559%" y="2133" width="0.0170%" height="15" fill="rgb(219,89,7)" fg:x="5974" fg:w="4"/><text x="25.7059%" y="2143.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="25.4219%" y="2325" width="0.0554%" height="15" fill="rgb(246,9,24)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (13 samples, 0.06%)</title><rect x="25.4219%" y="2309" width="0.0554%" height="15" fill="rgb(205,132,21)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (13 samples, 0.06%)</title><rect x="25.4219%" y="2293" width="0.0554%" height="15" fill="rgb(210,11,17)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (13 samples, 0.06%)</title><rect x="25.4219%" y="2277" width="0.0554%" height="15" fill="rgb(226,138,14)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (13 samples, 0.06%)</title><rect x="25.4219%" y="2261" width="0.0554%" height="15" fill="rgb(224,108,44)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (13 samples, 0.06%)</title><rect x="25.4219%" y="2245" width="0.0554%" height="15" fill="rgb(247,114,36)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (13 samples, 0.06%)</title><rect x="25.4219%" y="2229" width="0.0554%" height="15" fill="rgb(231,183,14)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (13 samples, 0.06%)</title><rect x="25.4219%" y="2213" width="0.0554%" height="15" fill="rgb(218,168,4)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="25.4219%" y="2197" width="0.0554%" height="15" fill="rgb(210,8,3)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (13 samples, 0.06%)</title><rect x="25.4219%" y="2181" width="0.0554%" height="15" fill="rgb(216,165,0)" fg:x="5966" fg:w="13"/><text x="25.6719%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (1,923 samples, 8.19%)</title><rect x="17.2959%" y="3109" width="8.1941%" height="15" fill="rgb(245,120,5)" fg:x="4059" fg:w="1923"/><text x="17.5459%" y="3119.50">rayon_core:..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (1,923 samples, 8.19%)</title><rect x="17.2959%" y="3093" width="8.1941%" height="15" fill="rgb(249,121,32)" fg:x="4059" fg:w="1923"/><text x="17.5459%" y="3103.50">rayon_core:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (1,923 samples, 8.19%)</title><rect x="17.2959%" y="3077" width="8.1941%" height="15" fill="rgb(211,55,33)" fg:x="4059" fg:w="1923"/><text x="17.5459%" y="3087.50">rayon::iter..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,923 samples, 8.19%)</title><rect x="17.2959%" y="3061" width="8.1941%" height="15" fill="rgb(254,46,35)" fg:x="4059" fg:w="1923"/><text x="17.5459%" y="3071.50">rayon::iter..</text></g><g><title>rayon_core::join::join_context (1,854 samples, 7.90%)</title><rect x="17.5899%" y="3045" width="7.9001%" height="15" fill="rgb(213,213,19)" fg:x="4128" fg:w="1854"/><text x="17.8399%" y="3055.50">rayon_core:..</text></g><g><title>rayon_core::registry::in_worker (1,854 samples, 7.90%)</title><rect x="17.5899%" y="3029" width="7.9001%" height="15" fill="rgb(207,152,44)" fg:x="4128" fg:w="1854"/><text x="17.8399%" y="3039.50">rayon_core:..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,854 samples, 7.90%)</title><rect x="17.5899%" y="3013" width="7.9001%" height="15" fill="rgb(227,195,36)" fg:x="4128" fg:w="1854"/><text x="17.8399%" y="3023.50">rayon_core:..</text></g><g><title>rayon_core::unwind::halt_unwinding (720 samples, 3.07%)</title><rect x="22.4220%" y="2997" width="3.0680%" height="15" fill="rgb(210,137,36)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="3007.50">ray..</text></g><g><title>std::panic::catch_unwind (720 samples, 3.07%)</title><rect x="22.4220%" y="2981" width="3.0680%" height="15" fill="rgb(253,47,47)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="2991.50">std..</text></g><g><title>std::panicking::try (720 samples, 3.07%)</title><rect x="22.4220%" y="2965" width="3.0680%" height="15" fill="rgb(230,147,18)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="2975.50">std..</text></g><g><title>std::panicking::try::do_call (720 samples, 3.07%)</title><rect x="22.4220%" y="2949" width="3.0680%" height="15" fill="rgb(247,33,49)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="2959.50">std..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (720 samples, 3.07%)</title><rect x="22.4220%" y="2933" width="3.0680%" height="15" fill="rgb(239,26,29)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="2943.50"><co..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (720 samples, 3.07%)</title><rect x="22.4220%" y="2917" width="3.0680%" height="15" fill="rgb(245,145,52)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="2927.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (720 samples, 3.07%)</title><rect x="22.4220%" y="2901" width="3.0680%" height="15" fill="rgb(224,139,32)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="2911.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (720 samples, 3.07%)</title><rect x="22.4220%" y="2885" width="3.0680%" height="15" fill="rgb(238,202,19)" fg:x="5262" fg:w="720"/><text x="22.6720%" y="2895.50">ray..</text></g><g><title>rayon_core::join::join_context (627 samples, 2.67%)</title><rect x="22.8183%" y="2869" width="2.6717%" height="15" fill="rgb(249,211,53)" fg:x="5355" fg:w="627"/><text x="23.0683%" y="2879.50">ra..</text></g><g><title>rayon_core::registry::in_worker (627 samples, 2.67%)</title><rect x="22.8183%" y="2853" width="2.6717%" height="15" fill="rgb(237,229,33)" fg:x="5355" fg:w="627"/><text x="23.0683%" y="2863.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (627 samples, 2.67%)</title><rect x="22.8183%" y="2837" width="2.6717%" height="15" fill="rgb(208,97,40)" fg:x="5355" fg:w="627"/><text x="23.0683%" y="2847.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (284 samples, 1.21%)</title><rect x="24.2799%" y="2821" width="1.2102%" height="15" fill="rgb(254,36,16)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (284 samples, 1.21%)</title><rect x="24.2799%" y="2805" width="1.2102%" height="15" fill="rgb(221,7,12)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2815.50"></text></g><g><title>std::panicking::try (284 samples, 1.21%)</title><rect x="24.2799%" y="2789" width="1.2102%" height="15" fill="rgb(205,11,12)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (284 samples, 1.21%)</title><rect x="24.2799%" y="2773" width="1.2102%" height="15" fill="rgb(227,72,28)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (284 samples, 1.21%)</title><rect x="24.2799%" y="2757" width="1.2102%" height="15" fill="rgb(228,7,34)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (284 samples, 1.21%)</title><rect x="24.2799%" y="2741" width="1.2102%" height="15" fill="rgb(230,52,42)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (284 samples, 1.21%)</title><rect x="24.2799%" y="2725" width="1.2102%" height="15" fill="rgb(219,177,53)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (284 samples, 1.21%)</title><rect x="24.2799%" y="2709" width="1.2102%" height="15" fill="rgb(243,196,34)" fg:x="5698" fg:w="284"/><text x="24.5299%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (203 samples, 0.87%)</title><rect x="24.6250%" y="2693" width="0.8650%" height="15" fill="rgb(213,66,49)" fg:x="5779" fg:w="203"/><text x="24.8750%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (203 samples, 0.87%)</title><rect x="24.6250%" y="2677" width="0.8650%" height="15" fill="rgb(233,11,50)" fg:x="5779" fg:w="203"/><text x="24.8750%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (203 samples, 0.87%)</title><rect x="24.6250%" y="2661" width="0.8650%" height="15" fill="rgb(235,190,6)" fg:x="5779" fg:w="203"/><text x="24.8750%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (101 samples, 0.43%)</title><rect x="25.0597%" y="2645" width="0.4304%" height="15" fill="rgb(212,64,44)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (101 samples, 0.43%)</title><rect x="25.0597%" y="2629" width="0.4304%" height="15" fill="rgb(206,95,44)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2639.50"></text></g><g><title>std::panicking::try (101 samples, 0.43%)</title><rect x="25.0597%" y="2613" width="0.4304%" height="15" fill="rgb(227,136,25)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (101 samples, 0.43%)</title><rect x="25.0597%" y="2597" width="0.4304%" height="15" fill="rgb(206,178,17)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (101 samples, 0.43%)</title><rect x="25.0597%" y="2581" width="0.4304%" height="15" fill="rgb(208,168,35)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (101 samples, 0.43%)</title><rect x="25.0597%" y="2565" width="0.4304%" height="15" fill="rgb(213,210,40)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (101 samples, 0.43%)</title><rect x="25.0597%" y="2549" width="0.4304%" height="15" fill="rgb(236,60,6)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (101 samples, 0.43%)</title><rect x="25.0597%" y="2533" width="0.4304%" height="15" fill="rgb(220,186,36)" fg:x="5881" fg:w="101"/><text x="25.3097%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (38 samples, 0.16%)</title><rect x="25.3281%" y="2517" width="0.1619%" height="15" fill="rgb(225,120,49)" fg:x="5944" fg:w="38"/><text x="25.5781%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.16%)</title><rect x="25.3281%" y="2501" width="0.1619%" height="15" fill="rgb(250,115,20)" fg:x="5944" fg:w="38"/><text x="25.5781%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38 samples, 0.16%)</title><rect x="25.3281%" y="2485" width="0.1619%" height="15" fill="rgb(207,214,23)" fg:x="5944" fg:w="38"/><text x="25.5781%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="25.4219%" y="2469" width="0.0682%" height="15" fill="rgb(240,9,18)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="25.4219%" y="2453" width="0.0682%" height="15" fill="rgb(232,170,48)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2463.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="25.4219%" y="2437" width="0.0682%" height="15" fill="rgb(236,149,23)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="25.4219%" y="2421" width="0.0682%" height="15" fill="rgb(210,125,42)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="25.4219%" y="2405" width="0.0682%" height="15" fill="rgb(207,201,52)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="25.4219%" y="2389" width="0.0682%" height="15" fill="rgb(250,187,37)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="25.4219%" y="2373" width="0.0682%" height="15" fill="rgb(214,186,2)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="25.4219%" y="2357" width="0.0682%" height="15" fill="rgb(207,189,15)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (16 samples, 0.07%)</title><rect x="25.4219%" y="2341" width="0.0682%" height="15" fill="rgb(221,99,21)" fg:x="5966" fg:w="16"/><text x="25.6719%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.4772%" y="2325" width="0.0128%" height="15" fill="rgb(212,67,18)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2335.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.4772%" y="2309" width="0.0128%" height="15" fill="rgb(226,24,24)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="25.4772%" y="2293" width="0.0128%" height="15" fill="rgb(252,123,31)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="25.4772%" y="2277" width="0.0128%" height="15" fill="rgb(251,227,47)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="25.4772%" y="2261" width="0.0128%" height="15" fill="rgb(233,84,53)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="25.4772%" y="2245" width="0.0128%" height="15" fill="rgb(228,57,19)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="25.4772%" y="2229" width="0.0128%" height="15" fill="rgb(251,81,5)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="25.4772%" y="2213" width="0.0128%" height="15" fill="rgb(236,211,27)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="25.4772%" y="2197" width="0.0128%" height="15" fill="rgb(218,21,6)" fg:x="5979" fg:w="3"/><text x="25.7272%" y="2207.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="25.4943%" y="2981" width="0.0213%" height="15" fill="rgb(239,104,19)" fg:x="5983" fg:w="5"/><text x="25.7443%" y="2991.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="25.4986%" y="2965" width="0.0170%" height="15" fill="rgb(234,179,27)" fg:x="5984" fg:w="4"/><text x="25.7486%" y="2975.50"></text></g><g><title>rayon_core::registry::WorkerThread::push (8 samples, 0.03%)</title><rect x="25.4900%" y="3109" width="0.0341%" height="15" fill="rgb(221,154,39)" fg:x="5982" fg:w="8"/><text x="25.7400%" y="3119.50"></text></g><g><title>rayon_core::sleep::Sleep::new_internal_jobs (7 samples, 0.03%)</title><rect x="25.4943%" y="3093" width="0.0298%" height="15" fill="rgb(228,190,1)" fg:x="5983" fg:w="7"/><text x="25.7443%" y="3103.50"></text></g><g><title>rayon_core::sleep::Sleep::new_jobs (7 samples, 0.03%)</title><rect x="25.4943%" y="3077" width="0.0298%" height="15" fill="rgb(244,122,33)" fg:x="5983" fg:w="7"/><text x="25.7443%" y="3087.50"></text></g><g><title>rayon_core::sleep::Sleep::wake_any_threads (7 samples, 0.03%)</title><rect x="25.4943%" y="3061" width="0.0298%" height="15" fill="rgb(227,56,37)" fg:x="5983" fg:w="7"/><text x="25.7443%" y="3071.50"></text></g><g><title>rayon_core::sleep::Sleep::wake_specific_thread (7 samples, 0.03%)</title><rect x="25.4943%" y="3045" width="0.0298%" height="15" fill="rgb(207,158,16)" fg:x="5983" fg:w="7"/><text x="25.7443%" y="3055.50"></text></g><g><title>std::sync::mutex::Mutex<T>::lock (7 samples, 0.03%)</title><rect x="25.4943%" y="3029" width="0.0298%" height="15" fill="rgb(251,222,30)" fg:x="5983" fg:w="7"/><text x="25.7443%" y="3039.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock (7 samples, 0.03%)</title><rect x="25.4943%" y="3013" width="0.0298%" height="15" fill="rgb(240,22,49)" fg:x="5983" fg:w="7"/><text x="25.7443%" y="3023.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (7 samples, 0.03%)</title><rect x="25.4943%" y="2997" width="0.0298%" height="15" fill="rgb(224,207,37)" fg:x="5983" fg:w="7"/><text x="25.7443%" y="3007.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (15 samples, 0.06%)</title><rect x="25.5241%" y="2677" width="0.0639%" height="15" fill="rgb(249,188,40)" fg:x="5990" fg:w="15"/><text x="25.7741%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::exp (15 samples, 0.06%)</title><rect x="25.5241%" y="2661" width="0.0639%" height="15" fill="rgb(254,141,11)" fg:x="5990" fg:w="15"/><text x="25.7741%" y="2671.50"></text></g><g><title>exp (15 samples, 0.06%)</title><rect x="25.5241%" y="2645" width="0.0639%" height="15" fill="rgb(231,177,6)" fg:x="5990" fg:w="15"/><text x="25.7741%" y="2655.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="25.5369%" y="2629" width="0.0511%" height="15" fill="rgb(241,6,16)" fg:x="5993" fg:w="12"/><text x="25.7869%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (6 samples, 0.03%)</title><rect x="25.5923%" y="2677" width="0.0256%" height="15" fill="rgb(230,50,14)" fg:x="6006" fg:w="6"/><text x="25.8423%" y="2687.50"></text></g><g><title>core::f64::<impl f64>::recip (6 samples, 0.03%)</title><rect x="25.5923%" y="2661" width="0.0256%" height="15" fill="rgb(254,36,3)" fg:x="6006" fg:w="6"/><text x="25.8423%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (25 samples, 0.11%)</title><rect x="25.5241%" y="2693" width="0.1065%" height="15" fill="rgb(226,149,37)" fg:x="5990" fg:w="25"/><text x="25.7741%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="25.6179%" y="2677" width="0.0128%" height="15" fill="rgb(253,49,27)" fg:x="6012" fg:w="3"/><text x="25.8679%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="25.6179%" y="2661" width="0.0128%" height="15" fill="rgb(249,182,52)" fg:x="6012" fg:w="3"/><text x="25.8679%" y="2671.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (26 samples, 0.11%)</title><rect x="25.5241%" y="2853" width="0.1108%" height="15" fill="rgb(223,42,15)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (26 samples, 0.11%)</title><rect x="25.5241%" y="2837" width="0.1108%" height="15" fill="rgb(232,31,42)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (26 samples, 0.11%)</title><rect x="25.5241%" y="2821" width="0.1108%" height="15" fill="rgb(233,56,46)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2831.50"></text></g><g><title>core::option::Option<T>::map (26 samples, 0.11%)</title><rect x="25.5241%" y="2805" width="0.1108%" height="15" fill="rgb(241,143,21)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2815.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (26 samples, 0.11%)</title><rect x="25.5241%" y="2789" width="0.1108%" height="15" fill="rgb(251,222,15)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2799.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (26 samples, 0.11%)</title><rect x="25.5241%" y="2773" width="0.1108%" height="15" fill="rgb(242,101,40)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (26 samples, 0.11%)</title><rect x="25.5241%" y="2757" width="0.1108%" height="15" fill="rgb(247,60,44)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2767.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (26 samples, 0.11%)</title><rect x="25.5241%" y="2741" width="0.1108%" height="15" fill="rgb(254,48,47)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2751.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (26 samples, 0.11%)</title><rect x="25.5241%" y="2725" width="0.1108%" height="15" fill="rgb(253,30,33)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (26 samples, 0.11%)</title><rect x="25.5241%" y="2709" width="0.1108%" height="15" fill="rgb(253,214,47)" fg:x="5990" fg:w="26"/><text x="25.7741%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (32 samples, 0.14%)</title><rect x="25.5241%" y="2869" width="0.1364%" height="15" fill="rgb(241,108,29)" fg:x="5990" fg:w="32"/><text x="25.7741%" y="2879.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="25.6349%" y="2853" width="0.0256%" height="15" fill="rgb(240,36,2)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2863.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="25.6349%" y="2837" width="0.0256%" height="15" fill="rgb(243,198,24)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="25.6349%" y="2821" width="0.0256%" height="15" fill="rgb(225,98,27)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (6 samples, 0.03%)</title><rect x="25.6349%" y="2805" width="0.0256%" height="15" fill="rgb(208,86,30)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2815.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="25.6349%" y="2789" width="0.0256%" height="15" fill="rgb(242,157,11)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2799.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="25.6349%" y="2773" width="0.0256%" height="15" fill="rgb(244,84,16)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2783.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="25.6349%" y="2757" width="0.0256%" height="15" fill="rgb(247,20,46)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2767.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="25.6349%" y="2741" width="0.0256%" height="15" fill="rgb(240,157,20)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2751.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="25.6349%" y="2725" width="0.0256%" height="15" fill="rgb(212,151,38)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="25.6349%" y="2709" width="0.0256%" height="15" fill="rgb(233,197,14)" fg:x="6016" fg:w="6"/><text x="25.8849%" y="2719.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="25.6392%" y="2693" width="0.0213%" height="15" fill="rgb(226,148,28)" fg:x="6017" fg:w="5"/><text x="25.8892%" y="2703.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="25.6392%" y="2677" width="0.0213%" height="15" fill="rgb(244,141,30)" fg:x="6017" fg:w="5"/><text x="25.8892%" y="2687.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="25.6392%" y="2661" width="0.0213%" height="15" fill="rgb(215,73,38)" fg:x="6017" fg:w="5"/><text x="25.8892%" y="2671.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="25.6392%" y="2645" width="0.0213%" height="15" fill="rgb(230,148,29)" fg:x="6017" fg:w="5"/><text x="25.8892%" y="2655.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (9 samples, 0.04%)</title><rect x="25.6605%" y="2565" width="0.0384%" height="15" fill="rgb(250,41,52)" fg:x="6022" fg:w="9"/><text x="25.9105%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (9 samples, 0.04%)</title><rect x="25.6605%" y="2549" width="0.0384%" height="15" fill="rgb(215,48,1)" fg:x="6022" fg:w="9"/><text x="25.9105%" y="2559.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="25.6605%" y="2533" width="0.0384%" height="15" fill="rgb(205,223,38)" fg:x="6022" fg:w="9"/><text x="25.9105%" y="2543.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="25.6605%" y="2517" width="0.0384%" height="15" fill="rgb(213,51,8)" fg:x="6022" fg:w="9"/><text x="25.9105%" y="2527.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="25.6605%" y="2741" width="0.0554%" height="15" fill="rgb(248,53,11)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (13 samples, 0.06%)</title><rect x="25.6605%" y="2725" width="0.0554%" height="15" fill="rgb(218,140,4)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (13 samples, 0.06%)</title><rect x="25.6605%" y="2709" width="0.0554%" height="15" fill="rgb(248,161,31)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (13 samples, 0.06%)</title><rect x="25.6605%" y="2693" width="0.0554%" height="15" fill="rgb(239,88,32)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (13 samples, 0.06%)</title><rect x="25.6605%" y="2677" width="0.0554%" height="15" fill="rgb(234,14,28)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (13 samples, 0.06%)</title><rect x="25.6605%" y="2661" width="0.0554%" height="15" fill="rgb(235,173,11)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (13 samples, 0.06%)</title><rect x="25.6605%" y="2645" width="0.0554%" height="15" fill="rgb(222,70,2)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (13 samples, 0.06%)</title><rect x="25.6605%" y="2629" width="0.0554%" height="15" fill="rgb(228,196,41)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="25.6605%" y="2613" width="0.0554%" height="15" fill="rgb(249,19,9)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (13 samples, 0.06%)</title><rect x="25.6605%" y="2597" width="0.0554%" height="15" fill="rgb(221,16,43)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2607.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (13 samples, 0.06%)</title><rect x="25.6605%" y="2581" width="0.0554%" height="15" fill="rgb(225,207,6)" fg:x="6022" fg:w="13"/><text x="25.9105%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="25.7031%" y="2565" width="0.0128%" height="15" fill="rgb(249,32,32)" fg:x="6032" fg:w="3"/><text x="25.9531%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="25.7031%" y="2549" width="0.0128%" height="15" fill="rgb(232,163,43)" fg:x="6032" fg:w="3"/><text x="25.9531%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="25.6605%" y="2757" width="0.0639%" height="15" fill="rgb(236,158,54)" fg:x="6022" fg:w="15"/><text x="25.9105%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="25.7244%" y="2645" width="0.0170%" height="15" fill="rgb(205,126,44)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2655.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="25.7244%" y="2629" width="0.0170%" height="15" fill="rgb(210,162,12)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="25.7244%" y="2613" width="0.0170%" height="15" fill="rgb(218,156,48)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="25.7244%" y="2597" width="0.0170%" height="15" fill="rgb(248,210,3)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="25.7244%" y="2581" width="0.0170%" height="15" fill="rgb(212,43,27)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="25.7244%" y="2565" width="0.0170%" height="15" fill="rgb(241,52,6)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="25.7244%" y="2549" width="0.0170%" height="15" fill="rgb(222,178,35)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="25.7244%" y="2533" width="0.0170%" height="15" fill="rgb(205,121,46)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="25.7244%" y="2517" width="0.0170%" height="15" fill="rgb(249,67,1)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="25.7244%" y="2501" width="0.0170%" height="15" fill="rgb(238,168,42)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="25.7244%" y="2485" width="0.0170%" height="15" fill="rgb(205,36,48)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="25.7244%" y="2469" width="0.0170%" height="15" fill="rgb(240,85,12)" fg:x="6037" fg:w="4"/><text x="25.9744%" y="2479.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="25.7414%" y="2597" width="0.0298%" height="15" fill="rgb(245,27,39)" fg:x="6041" fg:w="7"/><text x="25.9914%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="25.7414%" y="2581" width="0.0298%" height="15" fill="rgb(218,129,34)" fg:x="6041" fg:w="7"/><text x="25.9914%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="25.7414%" y="2565" width="0.0298%" height="15" fill="rgb(221,157,12)" fg:x="6041" fg:w="7"/><text x="25.9914%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="25.7414%" y="2549" width="0.0298%" height="15" fill="rgb(213,206,20)" fg:x="6041" fg:w="7"/><text x="25.9914%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="25.7500%" y="2533" width="0.0213%" height="15" fill="rgb(227,115,30)" fg:x="6043" fg:w="5"/><text x="26.0000%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="25.7500%" y="2517" width="0.0213%" height="15" fill="rgb(221,40,47)" fg:x="6043" fg:w="5"/><text x="26.0000%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="25.7500%" y="2501" width="0.0213%" height="15" fill="rgb(239,96,49)" fg:x="6043" fg:w="5"/><text x="26.0000%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="25.7585%" y="2485" width="0.0128%" height="15" fill="rgb(223,24,38)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="25.7585%" y="2469" width="0.0128%" height="15" fill="rgb(242,35,45)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2479.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="25.7585%" y="2453" width="0.0128%" height="15" fill="rgb(236,20,9)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="25.7585%" y="2437" width="0.0128%" height="15" fill="rgb(239,124,8)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="25.7585%" y="2421" width="0.0128%" height="15" fill="rgb(228,92,29)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="25.7585%" y="2405" width="0.0128%" height="15" fill="rgb(251,53,39)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="25.7585%" y="2389" width="0.0128%" height="15" fill="rgb(224,44,10)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.7585%" y="2373" width="0.0128%" height="15" fill="rgb(254,10,15)" fg:x="6045" fg:w="3"/><text x="26.0085%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="25.7244%" y="2709" width="0.0682%" height="15" fill="rgb(245,173,6)" fg:x="6037" fg:w="16"/><text x="25.9744%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="25.7244%" y="2693" width="0.0682%" height="15" fill="rgb(228,74,0)" fg:x="6037" fg:w="16"/><text x="25.9744%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="25.7244%" y="2677" width="0.0682%" height="15" fill="rgb(206,138,29)" fg:x="6037" fg:w="16"/><text x="25.9744%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="25.7244%" y="2661" width="0.0682%" height="15" fill="rgb(253,27,43)" fg:x="6037" fg:w="16"/><text x="25.9744%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="25.7414%" y="2645" width="0.0511%" height="15" fill="rgb(231,73,0)" fg:x="6041" fg:w="12"/><text x="25.9914%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="25.7414%" y="2629" width="0.0511%" height="15" fill="rgb(218,9,23)" fg:x="6041" fg:w="12"/><text x="25.9914%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="25.7414%" y="2613" width="0.0511%" height="15" fill="rgb(251,55,29)" fg:x="6041" fg:w="12"/><text x="25.9914%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="25.7713%" y="2597" width="0.0213%" height="15" fill="rgb(223,180,22)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="25.7713%" y="2581" width="0.0213%" height="15" fill="rgb(223,29,21)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2591.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="25.7713%" y="2565" width="0.0213%" height="15" fill="rgb(251,103,37)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="25.7713%" y="2549" width="0.0213%" height="15" fill="rgb(214,11,21)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="25.7713%" y="2533" width="0.0213%" height="15" fill="rgb(205,137,13)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="25.7713%" y="2517" width="0.0213%" height="15" fill="rgb(225,58,47)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="25.7713%" y="2501" width="0.0213%" height="15" fill="rgb(222,197,14)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="25.7713%" y="2485" width="0.0213%" height="15" fill="rgb(215,210,33)" fg:x="6048" fg:w="5"/><text x="26.0213%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="25.7798%" y="2469" width="0.0128%" height="15" fill="rgb(242,13,9)" fg:x="6050" fg:w="3"/><text x="26.0298%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="25.7798%" y="2453" width="0.0128%" height="15" fill="rgb(218,31,39)" fg:x="6050" fg:w="3"/><text x="26.0298%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="25.7798%" y="2437" width="0.0128%" height="15" fill="rgb(211,214,23)" fg:x="6050" fg:w="3"/><text x="26.0298%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="25.8011%" y="2421" width="0.0170%" height="15" fill="rgb(237,92,14)" fg:x="6055" fg:w="4"/><text x="26.0511%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="25.8011%" y="2405" width="0.0170%" height="15" fill="rgb(220,78,5)" fg:x="6055" fg:w="4"/><text x="26.0511%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="25.8011%" y="2389" width="0.0170%" height="15" fill="rgb(237,23,21)" fg:x="6055" fg:w="4"/><text x="26.0511%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="25.8011%" y="2373" width="0.0170%" height="15" fill="rgb(251,207,51)" fg:x="6055" fg:w="4"/><text x="26.0511%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="25.8011%" y="2357" width="0.0170%" height="15" fill="rgb(249,206,18)" fg:x="6055" fg:w="4"/><text x="26.0511%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="25.8011%" y="2341" width="0.0170%" height="15" fill="rgb(236,20,19)" fg:x="6055" fg:w="4"/><text x="26.0511%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="25.8011%" y="2325" width="0.0170%" height="15" fill="rgb(214,227,29)" fg:x="6055" fg:w="4"/><text x="26.0511%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="25.8267%" y="1845" width="0.0128%" height="15" fill="rgb(209,183,4)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8267%" y="1829" width="0.0128%" height="15" fill="rgb(233,111,23)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8267%" y="1813" width="0.0128%" height="15" fill="rgb(238,121,27)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.8267%" y="1797" width="0.0128%" height="15" fill="rgb(236,120,41)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="25.8267%" y="1781" width="0.0128%" height="15" fill="rgb(241,143,10)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1791.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.8267%" y="1765" width="0.0128%" height="15" fill="rgb(224,86,31)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="25.8267%" y="1749" width="0.0128%" height="15" fill="rgb(236,212,27)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="25.8267%" y="1733" width="0.0128%" height="15" fill="rgb(219,43,51)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1743.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="25.8267%" y="1717" width="0.0128%" height="15" fill="rgb(232,216,8)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1727.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="25.8267%" y="1701" width="0.0128%" height="15" fill="rgb(206,222,39)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="25.8267%" y="1685" width="0.0128%" height="15" fill="rgb(209,149,48)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8267%" y="1669" width="0.0128%" height="15" fill="rgb(229,155,21)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="25.8267%" y="1653" width="0.0128%" height="15" fill="rgb(246,152,26)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1663.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="25.8267%" y="1637" width="0.0128%" height="15" fill="rgb(206,70,42)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1647.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8267%" y="1621" width="0.0128%" height="15" fill="rgb(236,9,11)" fg:x="6061" fg:w="3"/><text x="26.0767%" y="1631.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="25.8181%" y="2133" width="0.0341%" height="15" fill="rgb(238,145,47)" fg:x="6059" fg:w="8"/><text x="26.0681%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="25.8181%" y="2117" width="0.0341%" height="15" fill="rgb(252,189,7)" fg:x="6059" fg:w="8"/><text x="26.0681%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="25.8181%" y="2101" width="0.0341%" height="15" fill="rgb(254,168,51)" fg:x="6059" fg:w="8"/><text x="26.0681%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="25.8181%" y="2085" width="0.0341%" height="15" fill="rgb(227,105,46)" fg:x="6059" fg:w="8"/><text x="26.0681%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="25.8181%" y="2069" width="0.0341%" height="15" fill="rgb(227,74,30)" fg:x="6059" fg:w="8"/><text x="26.0681%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="25.8181%" y="2053" width="0.0341%" height="15" fill="rgb(206,212,44)" fg:x="6059" fg:w="8"/><text x="26.0681%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="25.8181%" y="2037" width="0.0341%" height="15" fill="rgb(252,69,11)" fg:x="6059" fg:w="8"/><text x="26.0681%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="25.8267%" y="2021" width="0.0256%" height="15" fill="rgb(239,116,0)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="25.8267%" y="2005" width="0.0256%" height="15" fill="rgb(246,189,23)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="2015.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="25.8267%" y="1989" width="0.0256%" height="15" fill="rgb(229,50,41)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="25.8267%" y="1973" width="0.0256%" height="15" fill="rgb(214,66,37)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="25.8267%" y="1957" width="0.0256%" height="15" fill="rgb(226,28,6)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="25.8267%" y="1941" width="0.0256%" height="15" fill="rgb(239,154,0)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="25.8267%" y="1925" width="0.0256%" height="15" fill="rgb(233,97,11)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="25.8267%" y="1909" width="0.0256%" height="15" fill="rgb(236,215,16)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="25.8267%" y="1893" width="0.0256%" height="15" fill="rgb(246,188,29)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="25.8267%" y="1877" width="0.0256%" height="15" fill="rgb(207,7,29)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="25.8267%" y="1861" width="0.0256%" height="15" fill="rgb(238,112,43)" fg:x="6061" fg:w="6"/><text x="26.0767%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="25.8394%" y="1845" width="0.0128%" height="15" fill="rgb(230,110,32)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="25.8394%" y="1829" width="0.0128%" height="15" fill="rgb(218,197,32)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1839.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="25.8394%" y="1813" width="0.0128%" height="15" fill="rgb(252,61,9)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="25.8394%" y="1797" width="0.0128%" height="15" fill="rgb(244,140,14)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="25.8394%" y="1781" width="0.0128%" height="15" fill="rgb(216,14,47)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8394%" y="1765" width="0.0128%" height="15" fill="rgb(224,130,52)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8394%" y="1749" width="0.0128%" height="15" fill="rgb(210,229,51)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.8394%" y="1733" width="0.0128%" height="15" fill="rgb(242,13,9)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="25.8394%" y="1717" width="0.0128%" height="15" fill="rgb(252,71,50)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.8394%" y="1701" width="0.0128%" height="15" fill="rgb(218,225,6)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="25.8394%" y="1685" width="0.0128%" height="15" fill="rgb(219,27,35)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="25.8394%" y="1669" width="0.0128%" height="15" fill="rgb(226,30,1)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="25.8394%" y="1653" width="0.0128%" height="15" fill="rgb(227,164,34)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="25.8394%" y="1637" width="0.0128%" height="15" fill="rgb(206,103,4)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="25.8394%" y="1621" width="0.0128%" height="15" fill="rgb(214,166,19)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8394%" y="1605" width="0.0128%" height="15" fill="rgb(240,56,20)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="25.8394%" y="1589" width="0.0128%" height="15" fill="rgb(224,25,3)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="25.8394%" y="1573" width="0.0128%" height="15" fill="rgb(216,206,54)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8394%" y="1557" width="0.0128%" height="15" fill="rgb(225,142,10)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="25.8394%" y="1541" width="0.0128%" height="15" fill="rgb(246,9,18)" fg:x="6064" fg:w="3"/><text x="26.0894%" y="1551.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="25.8522%" y="1845" width="0.0128%" height="15" fill="rgb(247,140,18)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8522%" y="1829" width="0.0128%" height="15" fill="rgb(239,184,22)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8522%" y="1813" width="0.0128%" height="15" fill="rgb(227,94,44)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.8522%" y="1797" width="0.0128%" height="15" fill="rgb(219,43,3)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="25.8522%" y="1781" width="0.0128%" height="15" fill="rgb(210,76,31)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1791.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.8522%" y="1765" width="0.0128%" height="15" fill="rgb(225,85,12)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="25.8522%" y="1749" width="0.0128%" height="15" fill="rgb(214,191,28)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="25.8522%" y="1733" width="0.0128%" height="15" fill="rgb(214,43,14)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1743.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="25.8522%" y="1717" width="0.0128%" height="15" fill="rgb(253,117,5)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1727.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="25.8522%" y="1701" width="0.0128%" height="15" fill="rgb(208,124,26)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="25.8522%" y="1685" width="0.0128%" height="15" fill="rgb(228,208,39)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8522%" y="1669" width="0.0128%" height="15" fill="rgb(206,180,39)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="25.8522%" y="1653" width="0.0128%" height="15" fill="rgb(205,111,37)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1663.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="25.8522%" y="1637" width="0.0128%" height="15" fill="rgb(208,121,24)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1647.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8522%" y="1621" width="0.0128%" height="15" fill="rgb(218,215,32)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1631.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="25.8522%" y="1605" width="0.0128%" height="15" fill="rgb(244,168,53)" fg:x="6067" fg:w="3"/><text x="26.1022%" y="1615.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="25.8522%" y="1957" width="0.0256%" height="15" fill="rgb(214,9,36)" fg:x="6067" fg:w="6"/><text x="26.1022%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="25.8522%" y="1941" width="0.0256%" height="15" fill="rgb(231,4,34)" fg:x="6067" fg:w="6"/><text x="26.1022%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="25.8522%" y="1925" width="0.0256%" height="15" fill="rgb(210,83,51)" fg:x="6067" fg:w="6"/><text x="26.1022%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="25.8522%" y="1909" width="0.0256%" height="15" fill="rgb(224,112,1)" fg:x="6067" fg:w="6"/><text x="26.1022%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="25.8522%" y="1893" width="0.0256%" height="15" fill="rgb(216,33,41)" fg:x="6067" fg:w="6"/><text x="26.1022%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="25.8522%" y="1877" width="0.0256%" height="15" fill="rgb(215,179,42)" fg:x="6067" fg:w="6"/><text x="26.1022%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="25.8522%" y="1861" width="0.0256%" height="15" fill="rgb(205,81,48)" fg:x="6067" fg:w="6"/><text x="26.1022%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="25.8650%" y="1845" width="0.0128%" height="15" fill="rgb(246,17,30)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="25.8650%" y="1829" width="0.0128%" height="15" fill="rgb(226,19,16)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1839.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="25.8650%" y="1813" width="0.0128%" height="15" fill="rgb(207,3,14)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="25.8650%" y="1797" width="0.0128%" height="15" fill="rgb(226,77,12)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="25.8650%" y="1781" width="0.0128%" height="15" fill="rgb(226,76,25)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8650%" y="1765" width="0.0128%" height="15" fill="rgb(217,216,25)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8650%" y="1749" width="0.0128%" height="15" fill="rgb(247,127,42)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.8650%" y="1733" width="0.0128%" height="15" fill="rgb(226,10,34)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="25.8650%" y="1717" width="0.0128%" height="15" fill="rgb(249,78,0)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.8650%" y="1701" width="0.0128%" height="15" fill="rgb(226,218,38)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="25.8650%" y="1685" width="0.0128%" height="15" fill="rgb(240,92,1)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="25.8650%" y="1669" width="0.0128%" height="15" fill="rgb(237,224,33)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="25.8650%" y="1653" width="0.0128%" height="15" fill="rgb(211,46,1)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="25.8650%" y="1637" width="0.0128%" height="15" fill="rgb(239,190,4)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="25.8650%" y="1621" width="0.0128%" height="15" fill="rgb(221,50,22)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8650%" y="1605" width="0.0128%" height="15" fill="rgb(207,176,8)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="25.8650%" y="1589" width="0.0128%" height="15" fill="rgb(244,114,50)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="25.8650%" y="1573" width="0.0128%" height="15" fill="rgb(226,206,19)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8650%" y="1557" width="0.0128%" height="15" fill="rgb(208,199,16)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="25.8650%" y="1541" width="0.0128%" height="15" fill="rgb(208,38,14)" fg:x="6070" fg:w="3"/><text x="26.1150%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (18 samples, 0.08%)</title><rect x="25.8181%" y="2421" width="0.0767%" height="15" fill="rgb(221,211,49)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.08%)</title><rect x="25.8181%" y="2405" width="0.0767%" height="15" fill="rgb(227,214,34)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (18 samples, 0.08%)</title><rect x="25.8181%" y="2389" width="0.0767%" height="15" fill="rgb(234,5,54)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (18 samples, 0.08%)</title><rect x="25.8181%" y="2373" width="0.0767%" height="15" fill="rgb(236,215,22)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (18 samples, 0.08%)</title><rect x="25.8181%" y="2357" width="0.0767%" height="15" fill="rgb(244,0,11)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (18 samples, 0.08%)</title><rect x="25.8181%" y="2341" width="0.0767%" height="15" fill="rgb(212,140,16)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="25.8181%" y="2325" width="0.0767%" height="15" fill="rgb(238,101,37)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="25.8181%" y="2309" width="0.0767%" height="15" fill="rgb(247,46,3)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2319.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="25.8181%" y="2293" width="0.0767%" height="15" fill="rgb(208,106,19)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="25.8181%" y="2277" width="0.0767%" height="15" fill="rgb(240,227,15)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="25.8181%" y="2261" width="0.0767%" height="15" fill="rgb(226,173,6)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (18 samples, 0.08%)</title><rect x="25.8181%" y="2245" width="0.0767%" height="15" fill="rgb(213,191,1)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="25.8181%" y="2229" width="0.0767%" height="15" fill="rgb(246,51,36)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="25.8181%" y="2213" width="0.0767%" height="15" fill="rgb(238,40,32)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="25.8181%" y="2197" width="0.0767%" height="15" fill="rgb(208,126,27)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="25.8181%" y="2181" width="0.0767%" height="15" fill="rgb(227,117,38)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="25.8181%" y="2165" width="0.0767%" height="15" fill="rgb(232,16,1)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="25.8181%" y="2149" width="0.0767%" height="15" fill="rgb(212,111,31)" fg:x="6059" fg:w="18"/><text x="26.0681%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="25.8522%" y="2133" width="0.0426%" height="15" fill="rgb(253,227,2)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="25.8522%" y="2117" width="0.0426%" height="15" fill="rgb(216,122,17)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2127.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="25.8522%" y="2101" width="0.0426%" height="15" fill="rgb(227,37,2)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="25.8522%" y="2085" width="0.0426%" height="15" fill="rgb(244,113,40)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="25.8522%" y="2069" width="0.0426%" height="15" fill="rgb(217,193,34)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="25.8522%" y="2053" width="0.0426%" height="15" fill="rgb(212,223,15)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="25.8522%" y="2037" width="0.0426%" height="15" fill="rgb(238,143,18)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="25.8522%" y="2021" width="0.0426%" height="15" fill="rgb(231,18,49)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="25.8522%" y="2005" width="0.0426%" height="15" fill="rgb(249,122,4)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="25.8522%" y="1989" width="0.0426%" height="15" fill="rgb(245,138,54)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="25.8522%" y="1973" width="0.0426%" height="15" fill="rgb(218,130,18)" fg:x="6067" fg:w="10"/><text x="26.1022%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="25.8778%" y="1957" width="0.0170%" height="15" fill="rgb(235,94,13)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="25.8778%" y="1941" width="0.0170%" height="15" fill="rgb(247,143,5)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1951.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="25.8778%" y="1925" width="0.0170%" height="15" fill="rgb(212,59,54)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="25.8778%" y="1909" width="0.0170%" height="15" fill="rgb(206,121,24)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="25.8778%" y="1893" width="0.0170%" height="15" fill="rgb(235,38,8)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="25.8778%" y="1877" width="0.0170%" height="15" fill="rgb(227,102,26)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="25.8778%" y="1861" width="0.0170%" height="15" fill="rgb(240,183,46)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="25.8778%" y="1845" width="0.0170%" height="15" fill="rgb(208,177,23)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="25.8778%" y="1829" width="0.0170%" height="15" fill="rgb(216,152,5)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="25.8778%" y="1813" width="0.0170%" height="15" fill="rgb(238,199,2)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="25.8778%" y="1797" width="0.0170%" height="15" fill="rgb(235,142,28)" fg:x="6073" fg:w="4"/><text x="26.1278%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="25.8948%" y="2293" width="0.0128%" height="15" fill="rgb(225,97,25)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.8948%" y="2277" width="0.0128%" height="15" fill="rgb(208,75,46)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2287.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="25.8948%" y="2261" width="0.0128%" height="15" fill="rgb(240,136,15)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="25.8948%" y="2245" width="0.0128%" height="15" fill="rgb(235,36,27)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2255.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="25.8948%" y="2229" width="0.0128%" height="15" fill="rgb(231,132,23)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2239.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8948%" y="2213" width="0.0128%" height="15" fill="rgb(205,208,20)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2223.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8948%" y="2197" width="0.0128%" height="15" fill="rgb(215,26,40)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2207.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="25.8948%" y="2181" width="0.0128%" height="15" fill="rgb(238,183,34)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2191.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="25.8948%" y="2165" width="0.0128%" height="15" fill="rgb(207,96,10)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2175.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="25.8948%" y="2149" width="0.0128%" height="15" fill="rgb(218,88,6)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2159.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="25.8948%" y="2133" width="0.0128%" height="15" fill="rgb(217,22,49)" fg:x="6077" fg:w="3"/><text x="26.1448%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (32 samples, 0.14%)</title><rect x="25.7926%" y="2709" width="0.1364%" height="15" fill="rgb(240,195,14)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32 samples, 0.14%)</title><rect x="25.7926%" y="2693" width="0.1364%" height="15" fill="rgb(229,48,27)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (32 samples, 0.14%)</title><rect x="25.7926%" y="2677" width="0.1364%" height="15" fill="rgb(220,194,45)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (32 samples, 0.14%)</title><rect x="25.7926%" y="2661" width="0.1364%" height="15" fill="rgb(252,60,20)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (32 samples, 0.14%)</title><rect x="25.7926%" y="2645" width="0.1364%" height="15" fill="rgb(244,169,33)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (32 samples, 0.14%)</title><rect x="25.7926%" y="2629" width="0.1364%" height="15" fill="rgb(234,141,34)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="25.7926%" y="2613" width="0.1364%" height="15" fill="rgb(241,141,9)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="25.7926%" y="2597" width="0.1364%" height="15" fill="rgb(246,27,36)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2607.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="25.7926%" y="2581" width="0.1364%" height="15" fill="rgb(216,188,42)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="25.7926%" y="2565" width="0.1364%" height="15" fill="rgb(234,205,22)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="25.7926%" y="2549" width="0.1364%" height="15" fill="rgb(210,202,32)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (32 samples, 0.14%)</title><rect x="25.7926%" y="2533" width="0.1364%" height="15" fill="rgb(217,0,48)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="25.7926%" y="2517" width="0.1364%" height="15" fill="rgb(207,115,37)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="25.7926%" y="2501" width="0.1364%" height="15" fill="rgb(237,221,44)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="25.7926%" y="2485" width="0.1364%" height="15" fill="rgb(249,78,2)" fg:x="6053" fg:w="32"/><text x="26.0426%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (30 samples, 0.13%)</title><rect x="25.8011%" y="2469" width="0.1278%" height="15" fill="rgb(211,169,23)" fg:x="6055" fg:w="30"/><text x="26.0511%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.13%)</title><rect x="25.8011%" y="2453" width="0.1278%" height="15" fill="rgb(207,116,29)" fg:x="6055" fg:w="30"/><text x="26.0511%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30 samples, 0.13%)</title><rect x="25.8011%" y="2437" width="0.1278%" height="15" fill="rgb(240,84,33)" fg:x="6055" fg:w="30"/><text x="26.0511%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="25.8948%" y="2421" width="0.0341%" height="15" fill="rgb(229,224,31)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="25.8948%" y="2405" width="0.0341%" height="15" fill="rgb(227,90,31)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2415.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="25.8948%" y="2389" width="0.0341%" height="15" fill="rgb(249,22,41)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="25.8948%" y="2373" width="0.0341%" height="15" fill="rgb(239,65,11)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="25.8948%" y="2357" width="0.0341%" height="15" fill="rgb(205,5,23)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="25.8948%" y="2341" width="0.0341%" height="15" fill="rgb(254,78,52)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="25.8948%" y="2325" width="0.0341%" height="15" fill="rgb(214,156,33)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="25.8948%" y="2309" width="0.0341%" height="15" fill="rgb(208,20,30)" fg:x="6077" fg:w="8"/><text x="26.1448%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="25.9076%" y="2293" width="0.0213%" height="15" fill="rgb(223,133,18)" fg:x="6080" fg:w="5"/><text x="26.1576%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="25.9076%" y="2277" width="0.0213%" height="15" fill="rgb(222,91,41)" fg:x="6080" fg:w="5"/><text x="26.1576%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="25.9076%" y="2261" width="0.0213%" height="15" fill="rgb(247,137,48)" fg:x="6080" fg:w="5"/><text x="26.1576%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="25.9161%" y="2245" width="0.0128%" height="15" fill="rgb(239,156,11)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="25.9161%" y="2229" width="0.0128%" height="15" fill="rgb(244,56,26)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2239.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="25.9161%" y="2213" width="0.0128%" height="15" fill="rgb(205,131,49)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="25.9161%" y="2197" width="0.0128%" height="15" fill="rgb(224,0,2)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="25.9161%" y="2181" width="0.0128%" height="15" fill="rgb(247,59,36)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="25.9161%" y="2165" width="0.0128%" height="15" fill="rgb(215,4,47)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="25.9161%" y="2149" width="0.0128%" height="15" fill="rgb(242,72,42)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.9161%" y="2133" width="0.0128%" height="15" fill="rgb(232,145,44)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="25.9161%" y="2117" width="0.0128%" height="15" fill="rgb(205,108,43)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="25.9161%" y="2101" width="0.0128%" height="15" fill="rgb(215,190,17)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="25.9161%" y="2085" width="0.0128%" height="15" fill="rgb(223,90,34)" fg:x="6082" fg:w="3"/><text x="26.1661%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="25.9289%" y="2389" width="0.0128%" height="15" fill="rgb(216,25,0)" fg:x="6085" fg:w="3"/><text x="26.1789%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="25.9289%" y="2373" width="0.0128%" height="15" fill="rgb(223,51,28)" fg:x="6085" fg:w="3"/><text x="26.1789%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="25.9289%" y="2565" width="0.0170%" height="15" fill="rgb(227,131,7)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="25.9289%" y="2549" width="0.0170%" height="15" fill="rgb(216,72,36)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="25.9289%" y="2533" width="0.0170%" height="15" fill="rgb(243,158,40)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="25.9289%" y="2517" width="0.0170%" height="15" fill="rgb(218,60,54)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="25.9289%" y="2501" width="0.0170%" height="15" fill="rgb(230,15,46)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="25.9289%" y="2485" width="0.0170%" height="15" fill="rgb(250,22,26)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9289%" y="2469" width="0.0170%" height="15" fill="rgb(239,194,40)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="25.9289%" y="2453" width="0.0170%" height="15" fill="rgb(219,62,9)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="25.9289%" y="2437" width="0.0170%" height="15" fill="rgb(228,45,21)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9289%" y="2421" width="0.0170%" height="15" fill="rgb(242,56,44)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="25.9289%" y="2405" width="0.0170%" height="15" fill="rgb(239,170,14)" fg:x="6085" fg:w="4"/><text x="26.1789%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="25.9289%" y="2581" width="0.0256%" height="15" fill="rgb(236,150,13)" fg:x="6085" fg:w="6"/><text x="26.1789%" y="2591.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="25.9545%" y="2293" width="0.0128%" height="15" fill="rgb(228,15,30)" fg:x="6091" fg:w="3"/><text x="26.2045%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="25.9545%" y="2469" width="0.0170%" height="15" fill="rgb(217,43,28)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="25.9545%" y="2453" width="0.0170%" height="15" fill="rgb(246,223,1)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="25.9545%" y="2437" width="0.0170%" height="15" fill="rgb(247,103,7)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="25.9545%" y="2421" width="0.0170%" height="15" fill="rgb(205,105,39)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="25.9545%" y="2405" width="0.0170%" height="15" fill="rgb(216,134,18)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="25.9545%" y="2389" width="0.0170%" height="15" fill="rgb(226,139,50)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="25.9545%" y="2373" width="0.0170%" height="15" fill="rgb(251,152,38)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9545%" y="2357" width="0.0170%" height="15" fill="rgb(222,63,15)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="25.9545%" y="2341" width="0.0170%" height="15" fill="rgb(212,198,28)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="25.9545%" y="2325" width="0.0170%" height="15" fill="rgb(216,93,38)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9545%" y="2309" width="0.0170%" height="15" fill="rgb(247,202,44)" fg:x="6091" fg:w="4"/><text x="26.2045%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="25.9715%" y="2421" width="0.0256%" height="15" fill="rgb(237,204,46)" fg:x="6095" fg:w="6"/><text x="26.2215%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="25.9715%" y="2405" width="0.0256%" height="15" fill="rgb(224,98,48)" fg:x="6095" fg:w="6"/><text x="26.2215%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="25.9715%" y="2389" width="0.0256%" height="15" fill="rgb(247,105,21)" fg:x="6095" fg:w="6"/><text x="26.2215%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="25.9715%" y="2373" width="0.0256%" height="15" fill="rgb(212,137,52)" fg:x="6095" fg:w="6"/><text x="26.2215%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="25.9758%" y="2357" width="0.0213%" height="15" fill="rgb(223,76,33)" fg:x="6096" fg:w="5"/><text x="26.2258%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="25.9758%" y="2341" width="0.0213%" height="15" fill="rgb(209,156,27)" fg:x="6096" fg:w="5"/><text x="26.2258%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="25.9758%" y="2325" width="0.0213%" height="15" fill="rgb(249,81,54)" fg:x="6096" fg:w="5"/><text x="26.2258%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="25.9843%" y="2309" width="0.0128%" height="15" fill="rgb(241,46,29)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="25.9843%" y="2293" width="0.0128%" height="15" fill="rgb(213,193,39)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2303.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="25.9843%" y="2277" width="0.0128%" height="15" fill="rgb(214,85,16)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="25.9843%" y="2261" width="0.0128%" height="15" fill="rgb(216,184,17)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="25.9843%" y="2245" width="0.0128%" height="15" fill="rgb(254,219,29)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="25.9843%" y="2229" width="0.0128%" height="15" fill="rgb(209,148,34)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="25.9843%" y="2213" width="0.0128%" height="15" fill="rgb(253,215,11)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.9843%" y="2197" width="0.0128%" height="15" fill="rgb(232,126,20)" fg:x="6098" fg:w="3"/><text x="26.2343%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="25.9971%" y="2133" width="0.0170%" height="15" fill="rgb(248,118,51)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="25.9971%" y="2117" width="0.0170%" height="15" fill="rgb(226,121,21)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="25.9971%" y="2101" width="0.0170%" height="15" fill="rgb(216,128,16)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="25.9971%" y="2085" width="0.0170%" height="15" fill="rgb(205,17,9)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="25.9971%" y="2069" width="0.0170%" height="15" fill="rgb(206,197,21)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="25.9971%" y="2053" width="0.0170%" height="15" fill="rgb(212,202,9)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="25.9971%" y="2037" width="0.0170%" height="15" fill="rgb(241,131,50)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="25.9971%" y="2021" width="0.0170%" height="15" fill="rgb(228,115,51)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2031.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="25.9971%" y="2005" width="0.0170%" height="15" fill="rgb(237,209,8)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="25.9971%" y="1989" width="0.0170%" height="15" fill="rgb(241,121,28)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="25.9971%" y="1973" width="0.0170%" height="15" fill="rgb(238,194,51)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9971%" y="1957" width="0.0170%" height="15" fill="rgb(208,41,39)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9971%" y="1941" width="0.0170%" height="15" fill="rgb(223,95,44)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9971%" y="1925" width="0.0170%" height="15" fill="rgb(253,98,40)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="25.9971%" y="1909" width="0.0170%" height="15" fill="rgb(210,5,12)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="25.9971%" y="1893" width="0.0170%" height="15" fill="rgb(233,201,23)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="25.9971%" y="1877" width="0.0170%" height="15" fill="rgb(251,68,15)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="25.9971%" y="1861" width="0.0170%" height="15" fill="rgb(243,10,46)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="25.9971%" y="1845" width="0.0170%" height="15" fill="rgb(253,130,44)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="25.9971%" y="1829" width="0.0170%" height="15" fill="rgb(244,5,26)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="25.9971%" y="1813" width="0.0170%" height="15" fill="rgb(220,126,20)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="25.9971%" y="1797" width="0.0170%" height="15" fill="rgb(212,188,29)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9971%" y="1781" width="0.0170%" height="15" fill="rgb(227,194,48)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="25.9971%" y="1765" width="0.0170%" height="15" fill="rgb(245,64,28)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="25.9971%" y="1749" width="0.0170%" height="15" fill="rgb(205,44,7)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="25.9971%" y="1733" width="0.0170%" height="15" fill="rgb(213,193,11)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="25.9971%" y="1717" width="0.0170%" height="15" fill="rgb(238,157,6)" fg:x="6101" fg:w="4"/><text x="26.2471%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="25.9971%" y="2421" width="0.0213%" height="15" fill="rgb(222,73,7)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="25.9971%" y="2405" width="0.0213%" height="15" fill="rgb(224,78,15)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="25.9971%" y="2389" width="0.0213%" height="15" fill="rgb(218,149,46)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="25.9971%" y="2373" width="0.0213%" height="15" fill="rgb(218,175,44)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="25.9971%" y="2357" width="0.0213%" height="15" fill="rgb(215,183,45)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="25.9971%" y="2341" width="0.0213%" height="15" fill="rgb(226,116,37)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="25.9971%" y="2325" width="0.0213%" height="15" fill="rgb(252,224,12)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="25.9971%" y="2309" width="0.0213%" height="15" fill="rgb(232,212,21)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2319.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="25.9971%" y="2293" width="0.0213%" height="15" fill="rgb(226,191,16)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="25.9971%" y="2277" width="0.0213%" height="15" fill="rgb(231,156,11)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="25.9971%" y="2261" width="0.0213%" height="15" fill="rgb(225,134,49)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="25.9971%" y="2245" width="0.0213%" height="15" fill="rgb(254,55,32)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="25.9971%" y="2229" width="0.0213%" height="15" fill="rgb(242,195,29)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="25.9971%" y="2213" width="0.0213%" height="15" fill="rgb(210,155,20)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="25.9971%" y="2197" width="0.0213%" height="15" fill="rgb(243,170,23)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="25.9971%" y="2181" width="0.0213%" height="15" fill="rgb(242,197,51)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="25.9971%" y="2165" width="0.0213%" height="15" fill="rgb(248,48,13)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="25.9971%" y="2149" width="0.0213%" height="15" fill="rgb(221,185,15)" fg:x="6101" fg:w="5"/><text x="26.2471%" y="2159.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="26.0269%" y="1989" width="0.0128%" height="15" fill="rgb(244,49,7)" fg:x="6108" fg:w="3"/><text x="26.2769%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="26.0269%" y="1973" width="0.0128%" height="15" fill="rgb(213,182,52)" fg:x="6108" fg:w="3"/><text x="26.2769%" y="1983.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="26.0269%" y="1957" width="0.0128%" height="15" fill="rgb(209,15,45)" fg:x="6108" fg:w="3"/><text x="26.2769%" y="1967.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="26.0269%" y="1941" width="0.0128%" height="15" fill="rgb(233,23,44)" fg:x="6108" fg:w="3"/><text x="26.2769%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="26.0269%" y="2245" width="0.0170%" height="15" fill="rgb(220,182,30)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0269%" y="2229" width="0.0170%" height="15" fill="rgb(219,116,33)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0269%" y="2213" width="0.0170%" height="15" fill="rgb(231,15,21)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.0269%" y="2197" width="0.0170%" height="15" fill="rgb(238,119,25)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.0269%" y="2181" width="0.0170%" height="15" fill="rgb(232,30,39)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="26.0269%" y="2165" width="0.0170%" height="15" fill="rgb(241,26,30)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="26.0269%" y="2149" width="0.0170%" height="15" fill="rgb(234,154,4)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="26.0269%" y="2133" width="0.0170%" height="15" fill="rgb(229,199,39)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="26.0269%" y="2117" width="0.0170%" height="15" fill="rgb(236,213,10)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="26.0269%" y="2101" width="0.0170%" height="15" fill="rgb(247,28,19)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="26.0269%" y="2085" width="0.0170%" height="15" fill="rgb(239,199,24)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0269%" y="2069" width="0.0170%" height="15" fill="rgb(246,122,13)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="26.0269%" y="2053" width="0.0170%" height="15" fill="rgb(210,203,29)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="26.0269%" y="2037" width="0.0170%" height="15" fill="rgb(218,4,50)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0269%" y="2021" width="0.0170%" height="15" fill="rgb(236,142,48)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="26.0269%" y="2005" width="0.0170%" height="15" fill="rgb(245,173,2)" fg:x="6108" fg:w="4"/><text x="26.2769%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (24 samples, 0.10%)</title><rect x="25.9545%" y="2533" width="0.1023%" height="15" fill="rgb(244,196,18)" fg:x="6091" fg:w="24"/><text x="26.2045%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (24 samples, 0.10%)</title><rect x="25.9545%" y="2517" width="0.1023%" height="15" fill="rgb(221,27,33)" fg:x="6091" fg:w="24"/><text x="26.2045%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="25.9545%" y="2501" width="0.1023%" height="15" fill="rgb(210,206,16)" fg:x="6091" fg:w="24"/><text x="26.2045%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="25.9545%" y="2485" width="0.1023%" height="15" fill="rgb(238,161,34)" fg:x="6091" fg:w="24"/><text x="26.2045%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="25.9715%" y="2469" width="0.0852%" height="15" fill="rgb(243,118,39)" fg:x="6095" fg:w="20"/><text x="26.2215%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="25.9715%" y="2453" width="0.0852%" height="15" fill="rgb(234,126,9)" fg:x="6095" fg:w="20"/><text x="26.2215%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="25.9715%" y="2437" width="0.0852%" height="15" fill="rgb(234,167,42)" fg:x="6095" fg:w="20"/><text x="26.2215%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="26.0184%" y="2421" width="0.0384%" height="15" fill="rgb(238,54,48)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="26.0184%" y="2405" width="0.0384%" height="15" fill="rgb(226,105,2)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2415.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="26.0184%" y="2389" width="0.0384%" height="15" fill="rgb(223,95,23)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="26.0184%" y="2373" width="0.0384%" height="15" fill="rgb(249,212,19)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="26.0184%" y="2357" width="0.0384%" height="15" fill="rgb(234,158,54)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="26.0184%" y="2341" width="0.0384%" height="15" fill="rgb(247,114,32)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="26.0184%" y="2325" width="0.0384%" height="15" fill="rgb(250,68,44)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="26.0184%" y="2309" width="0.0384%" height="15" fill="rgb(242,3,15)" fg:x="6106" fg:w="9"/><text x="26.2684%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="26.0269%" y="2293" width="0.0298%" height="15" fill="rgb(223,110,32)" fg:x="6108" fg:w="7"/><text x="26.2769%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="26.0269%" y="2277" width="0.0298%" height="15" fill="rgb(216,26,54)" fg:x="6108" fg:w="7"/><text x="26.2769%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="26.0269%" y="2261" width="0.0298%" height="15" fill="rgb(209,145,42)" fg:x="6108" fg:w="7"/><text x="26.2769%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="26.0440%" y="2245" width="0.0128%" height="15" fill="rgb(240,111,53)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="26.0440%" y="2229" width="0.0128%" height="15" fill="rgb(209,101,4)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2239.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="26.0440%" y="2213" width="0.0128%" height="15" fill="rgb(231,74,29)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="26.0440%" y="2197" width="0.0128%" height="15" fill="rgb(223,12,12)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="26.0440%" y="2181" width="0.0128%" height="15" fill="rgb(207,162,2)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="26.0440%" y="2165" width="0.0128%" height="15" fill="rgb(230,152,0)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.0440%" y="2149" width="0.0128%" height="15" fill="rgb(254,156,19)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.0440%" y="2133" width="0.0128%" height="15" fill="rgb(250,28,0)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.0440%" y="2117" width="0.0128%" height="15" fill="rgb(253,27,5)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.0440%" y="2101" width="0.0128%" height="15" fill="rgb(244,154,7)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.0440%" y="2085" width="0.0128%" height="15" fill="rgb(242,108,21)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.0440%" y="2069" width="0.0128%" height="15" fill="rgb(254,200,38)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.0440%" y="2053" width="0.0128%" height="15" fill="rgb(250,145,41)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.0440%" y="2037" width="0.0128%" height="15" fill="rgb(235,136,31)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.0440%" y="2021" width="0.0128%" height="15" fill="rgb(215,13,18)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.0440%" y="2005" width="0.0128%" height="15" fill="rgb(238,199,12)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.0440%" y="1989" width="0.0128%" height="15" fill="rgb(242,179,49)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.0440%" y="1973" width="0.0128%" height="15" fill="rgb(214,10,44)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.0440%" y="1957" width="0.0128%" height="15" fill="rgb(229,181,11)" fg:x="6112" fg:w="3"/><text x="26.2940%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.0568%" y="2405" width="0.0128%" height="15" fill="rgb(244,155,10)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.0568%" y="2389" width="0.0128%" height="15" fill="rgb(254,13,48)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.0568%" y="2373" width="0.0128%" height="15" fill="rgb(210,164,6)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.0568%" y="2357" width="0.0128%" height="15" fill="rgb(216,187,40)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.0568%" y="2341" width="0.0128%" height="15" fill="rgb(208,143,21)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.0568%" y="2325" width="0.0128%" height="15" fill="rgb(211,73,41)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.0568%" y="2309" width="0.0128%" height="15" fill="rgb(244,69,21)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.0568%" y="2293" width="0.0128%" height="15" fill="rgb(230,152,32)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.0568%" y="2277" width="0.0128%" height="15" fill="rgb(208,110,18)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.0568%" y="2261" width="0.0128%" height="15" fill="rgb(214,201,49)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.0568%" y="2245" width="0.0128%" height="15" fill="rgb(253,153,27)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="26.0568%" y="2229" width="0.0128%" height="15" fill="rgb(238,61,11)" fg:x="6115" fg:w="3"/><text x="26.3068%" y="2239.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="26.0738%" y="2005" width="0.0128%" height="15" fill="rgb(227,84,2)" fg:x="6119" fg:w="3"/><text x="26.3238%" y="2015.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="26.0738%" y="2245" width="0.0170%" height="15" fill="rgb(233,52,8)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0738%" y="2229" width="0.0170%" height="15" fill="rgb(209,136,13)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0738%" y="2213" width="0.0170%" height="15" fill="rgb(229,86,25)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.0738%" y="2197" width="0.0170%" height="15" fill="rgb(235,47,16)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.0738%" y="2181" width="0.0170%" height="15" fill="rgb(231,186,4)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="26.0738%" y="2165" width="0.0170%" height="15" fill="rgb(209,213,23)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="26.0738%" y="2149" width="0.0170%" height="15" fill="rgb(212,142,47)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="26.0738%" y="2133" width="0.0170%" height="15" fill="rgb(251,86,24)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="26.0738%" y="2117" width="0.0170%" height="15" fill="rgb(206,217,17)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="26.0738%" y="2101" width="0.0170%" height="15" fill="rgb(248,92,38)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="26.0738%" y="2085" width="0.0170%" height="15" fill="rgb(214,25,29)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0738%" y="2069" width="0.0170%" height="15" fill="rgb(245,117,13)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="26.0738%" y="2053" width="0.0170%" height="15" fill="rgb(205,169,9)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="26.0738%" y="2037" width="0.0170%" height="15" fill="rgb(223,134,38)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0738%" y="2021" width="0.0170%" height="15" fill="rgb(249,129,49)" fg:x="6119" fg:w="4"/><text x="26.3238%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="26.0695%" y="2357" width="0.0384%" height="15" fill="rgb(229,157,45)" fg:x="6118" fg:w="9"/><text x="26.3195%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="26.0695%" y="2341" width="0.0384%" height="15" fill="rgb(232,159,11)" fg:x="6118" fg:w="9"/><text x="26.3195%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="26.0695%" y="2325" width="0.0384%" height="15" fill="rgb(230,134,26)" fg:x="6118" fg:w="9"/><text x="26.3195%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="26.0695%" y="2309" width="0.0384%" height="15" fill="rgb(234,149,40)" fg:x="6118" fg:w="9"/><text x="26.3195%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="26.0738%" y="2293" width="0.0341%" height="15" fill="rgb(221,122,15)" fg:x="6119" fg:w="8"/><text x="26.3238%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="26.0738%" y="2277" width="0.0341%" height="15" fill="rgb(228,127,0)" fg:x="6119" fg:w="8"/><text x="26.3238%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="26.0738%" y="2261" width="0.0341%" height="15" fill="rgb(248,37,7)" fg:x="6119" fg:w="8"/><text x="26.3238%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.0908%" y="2245" width="0.0170%" height="15" fill="rgb(215,140,49)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.0908%" y="2229" width="0.0170%" height="15" fill="rgb(236,65,39)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2239.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.0908%" y="2213" width="0.0170%" height="15" fill="rgb(253,102,38)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.0908%" y="2197" width="0.0170%" height="15" fill="rgb(244,100,34)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.0908%" y="2181" width="0.0170%" height="15" fill="rgb(210,179,47)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0908%" y="2165" width="0.0170%" height="15" fill="rgb(231,41,37)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0908%" y="2149" width="0.0170%" height="15" fill="rgb(226,209,17)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.0908%" y="2133" width="0.0170%" height="15" fill="rgb(231,154,20)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.0908%" y="2117" width="0.0170%" height="15" fill="rgb(216,134,24)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="26.0908%" y="2101" width="0.0170%" height="15" fill="rgb(224,71,42)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="26.0908%" y="2085" width="0.0170%" height="15" fill="rgb(250,65,23)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="26.0908%" y="2069" width="0.0170%" height="15" fill="rgb(209,160,35)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="26.0908%" y="2053" width="0.0170%" height="15" fill="rgb(215,8,11)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="26.0908%" y="2037" width="0.0170%" height="15" fill="rgb(227,27,12)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="26.0908%" y="2021" width="0.0170%" height="15" fill="rgb(226,111,41)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0908%" y="2005" width="0.0170%" height="15" fill="rgb(212,195,15)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="26.0908%" y="1989" width="0.0170%" height="15" fill="rgb(216,191,17)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="26.0908%" y="1973" width="0.0170%" height="15" fill="rgb(215,57,44)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="26.0908%" y="1957" width="0.0170%" height="15" fill="rgb(209,38,4)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="26.0908%" y="1941" width="0.0170%" height="15" fill="rgb(238,49,31)" fg:x="6123" fg:w="4"/><text x="26.3408%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="26.1164%" y="2181" width="0.0128%" height="15" fill="rgb(219,48,39)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.1164%" y="2165" width="0.0128%" height="15" fill="rgb(252,223,43)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.1164%" y="2149" width="0.0128%" height="15" fill="rgb(247,205,46)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.1164%" y="2133" width="0.0128%" height="15" fill="rgb(231,16,40)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.1164%" y="2117" width="0.0128%" height="15" fill="rgb(231,115,5)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.1164%" y="2101" width="0.0128%" height="15" fill="rgb(206,127,43)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.1164%" y="2085" width="0.0128%" height="15" fill="rgb(218,101,9)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.1164%" y="2069" width="0.0128%" height="15" fill="rgb(235,138,50)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.1164%" y="2053" width="0.0128%" height="15" fill="rgb(214,197,52)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.1164%" y="2037" width="0.0128%" height="15" fill="rgb(230,80,19)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.1164%" y="2021" width="0.0128%" height="15" fill="rgb(224,77,16)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.1164%" y="2005" width="0.0128%" height="15" fill="rgb(246,4,13)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.1164%" y="1989" width="0.0128%" height="15" fill="rgb(220,177,26)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.1164%" y="1973" width="0.0128%" height="15" fill="rgb(215,114,45)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.1164%" y="1957" width="0.0128%" height="15" fill="rgb(215,71,54)" fg:x="6129" fg:w="3"/><text x="26.3664%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (114 samples, 0.49%)</title><rect x="25.6605%" y="2821" width="0.4858%" height="15" fill="rgb(211,155,22)" fg:x="6022" fg:w="114"/><text x="25.9105%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (114 samples, 0.49%)</title><rect x="25.6605%" y="2805" width="0.4858%" height="15" fill="rgb(245,206,18)" fg:x="6022" fg:w="114"/><text x="25.9105%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (114 samples, 0.49%)</title><rect x="25.6605%" y="2789" width="0.4858%" height="15" fill="rgb(248,216,48)" fg:x="6022" fg:w="114"/><text x="25.9105%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (114 samples, 0.49%)</title><rect x="25.6605%" y="2773" width="0.4858%" height="15" fill="rgb(244,84,45)" fg:x="6022" fg:w="114"/><text x="25.9105%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (99 samples, 0.42%)</title><rect x="25.7244%" y="2757" width="0.4219%" height="15" fill="rgb(245,13,45)" fg:x="6037" fg:w="99"/><text x="25.9744%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (99 samples, 0.42%)</title><rect x="25.7244%" y="2741" width="0.4219%" height="15" fill="rgb(247,163,2)" fg:x="6037" fg:w="99"/><text x="25.9744%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (99 samples, 0.42%)</title><rect x="25.7244%" y="2725" width="0.4219%" height="15" fill="rgb(211,175,10)" fg:x="6037" fg:w="99"/><text x="25.9744%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (51 samples, 0.22%)</title><rect x="25.9289%" y="2709" width="0.2173%" height="15" fill="rgb(215,186,31)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (51 samples, 0.22%)</title><rect x="25.9289%" y="2693" width="0.2173%" height="15" fill="rgb(207,42,11)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2703.50"></text></g><g><title>std::panicking::try (51 samples, 0.22%)</title><rect x="25.9289%" y="2677" width="0.2173%" height="15" fill="rgb(224,197,20)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (51 samples, 0.22%)</title><rect x="25.9289%" y="2661" width="0.2173%" height="15" fill="rgb(244,119,36)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (51 samples, 0.22%)</title><rect x="25.9289%" y="2645" width="0.2173%" height="15" fill="rgb(250,60,27)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (51 samples, 0.22%)</title><rect x="25.9289%" y="2629" width="0.2173%" height="15" fill="rgb(252,202,1)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (51 samples, 0.22%)</title><rect x="25.9289%" y="2613" width="0.2173%" height="15" fill="rgb(206,53,25)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.22%)</title><rect x="25.9289%" y="2597" width="0.2173%" height="15" fill="rgb(210,88,4)" fg:x="6085" fg:w="51"/><text x="26.1789%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (45 samples, 0.19%)</title><rect x="25.9545%" y="2581" width="0.1918%" height="15" fill="rgb(211,144,28)" fg:x="6091" fg:w="45"/><text x="26.2045%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (45 samples, 0.19%)</title><rect x="25.9545%" y="2565" width="0.1918%" height="15" fill="rgb(247,81,32)" fg:x="6091" fg:w="45"/><text x="26.2045%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (45 samples, 0.19%)</title><rect x="25.9545%" y="2549" width="0.1918%" height="15" fill="rgb(225,192,11)" fg:x="6091" fg:w="45"/><text x="26.2045%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="26.0568%" y="2533" width="0.0895%" height="15" fill="rgb(232,212,27)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="26.0568%" y="2517" width="0.0895%" height="15" fill="rgb(239,3,29)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2527.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="26.0568%" y="2501" width="0.0895%" height="15" fill="rgb(252,225,29)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="26.0568%" y="2485" width="0.0895%" height="15" fill="rgb(205,151,9)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="26.0568%" y="2469" width="0.0895%" height="15" fill="rgb(216,171,47)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="26.0568%" y="2453" width="0.0895%" height="15" fill="rgb(206,181,1)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="26.0568%" y="2437" width="0.0895%" height="15" fill="rgb(232,218,10)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="26.0568%" y="2421" width="0.0895%" height="15" fill="rgb(244,222,51)" fg:x="6115" fg:w="21"/><text x="26.3068%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="26.0695%" y="2405" width="0.0767%" height="15" fill="rgb(252,215,16)" fg:x="6118" fg:w="18"/><text x="26.3195%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="26.0695%" y="2389" width="0.0767%" height="15" fill="rgb(212,130,13)" fg:x="6118" fg:w="18"/><text x="26.3195%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="26.0695%" y="2373" width="0.0767%" height="15" fill="rgb(227,103,37)" fg:x="6118" fg:w="18"/><text x="26.3195%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="26.1079%" y="2357" width="0.0384%" height="15" fill="rgb(249,48,15)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="26.1079%" y="2341" width="0.0384%" height="15" fill="rgb(225,96,9)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2351.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="26.1079%" y="2325" width="0.0384%" height="15" fill="rgb(213,81,41)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="26.1079%" y="2309" width="0.0384%" height="15" fill="rgb(230,15,12)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="26.1079%" y="2293" width="0.0384%" height="15" fill="rgb(218,106,37)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="26.1079%" y="2277" width="0.0384%" height="15" fill="rgb(223,172,47)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="26.1079%" y="2261" width="0.0384%" height="15" fill="rgb(246,180,49)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="26.1079%" y="2245" width="0.0384%" height="15" fill="rgb(231,63,37)" fg:x="6127" fg:w="9"/><text x="26.3579%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="26.1164%" y="2229" width="0.0298%" height="15" fill="rgb(235,70,40)" fg:x="6129" fg:w="7"/><text x="26.3664%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="26.1164%" y="2213" width="0.0298%" height="15" fill="rgb(250,54,26)" fg:x="6129" fg:w="7"/><text x="26.3664%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="26.1164%" y="2197" width="0.0298%" height="15" fill="rgb(214,190,1)" fg:x="6129" fg:w="7"/><text x="26.3664%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.1292%" y="2181" width="0.0170%" height="15" fill="rgb(212,40,35)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.1292%" y="2165" width="0.0170%" height="15" fill="rgb(239,183,47)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2175.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.1292%" y="2149" width="0.0170%" height="15" fill="rgb(211,171,49)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.1292%" y="2133" width="0.0170%" height="15" fill="rgb(249,186,27)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.1292%" y="2117" width="0.0170%" height="15" fill="rgb(223,23,48)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.1292%" y="2101" width="0.0170%" height="15" fill="rgb(209,203,21)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.1292%" y="2085" width="0.0170%" height="15" fill="rgb(229,33,27)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.1292%" y="2069" width="0.0170%" height="15" fill="rgb(207,8,53)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.1292%" y="2053" width="0.0170%" height="15" fill="rgb(221,42,0)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="26.1292%" y="2037" width="0.0170%" height="15" fill="rgb(223,115,3)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="26.1292%" y="2021" width="0.0170%" height="15" fill="rgb(239,35,26)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="26.1292%" y="2005" width="0.0170%" height="15" fill="rgb(233,22,9)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="26.1292%" y="1989" width="0.0170%" height="15" fill="rgb(236,221,48)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="26.1292%" y="1973" width="0.0170%" height="15" fill="rgb(235,52,30)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="26.1292%" y="1957" width="0.0170%" height="15" fill="rgb(238,133,51)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="26.1292%" y="1941" width="0.0170%" height="15" fill="rgb(213,122,23)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="26.1292%" y="1925" width="0.0170%" height="15" fill="rgb(225,8,15)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="26.1292%" y="1909" width="0.0170%" height="15" fill="rgb(219,126,35)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="26.1292%" y="1893" width="0.0170%" height="15" fill="rgb(246,113,21)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="26.1292%" y="1877" width="0.0170%" height="15" fill="rgb(241,193,32)" fg:x="6132" fg:w="4"/><text x="26.3792%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="26.1505%" y="2389" width="0.0256%" height="15" fill="rgb(218,99,18)" fg:x="6137" fg:w="6"/><text x="26.4005%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="26.1505%" y="2373" width="0.0256%" height="15" fill="rgb(225,114,4)" fg:x="6137" fg:w="6"/><text x="26.4005%" y="2383.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="26.1505%" y="2357" width="0.0256%" height="15" fill="rgb(235,0,15)" fg:x="6137" fg:w="6"/><text x="26.4005%" y="2367.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="26.1548%" y="2341" width="0.0213%" height="15" fill="rgb(247,45,27)" fg:x="6138" fg:w="5"/><text x="26.4048%" y="2351.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (11 samples, 0.05%)</title><rect x="26.1462%" y="2405" width="0.0469%" height="15" fill="rgb(249,88,53)" fg:x="6136" fg:w="11"/><text x="26.3962%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="26.1462%" y="2581" width="0.0511%" height="15" fill="rgb(207,58,45)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="26.1462%" y="2565" width="0.0511%" height="15" fill="rgb(216,7,11)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (12 samples, 0.05%)</title><rect x="26.1462%" y="2549" width="0.0511%" height="15" fill="rgb(230,40,33)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (12 samples, 0.05%)</title><rect x="26.1462%" y="2533" width="0.0511%" height="15" fill="rgb(232,24,46)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (12 samples, 0.05%)</title><rect x="26.1462%" y="2517" width="0.0511%" height="15" fill="rgb(219,222,45)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (12 samples, 0.05%)</title><rect x="26.1462%" y="2501" width="0.0511%" height="15" fill="rgb(229,85,44)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (12 samples, 0.05%)</title><rect x="26.1462%" y="2485" width="0.0511%" height="15" fill="rgb(243,71,36)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (12 samples, 0.05%)</title><rect x="26.1462%" y="2469" width="0.0511%" height="15" fill="rgb(230,203,45)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (12 samples, 0.05%)</title><rect x="26.1462%" y="2453" width="0.0511%" height="15" fill="rgb(224,77,49)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="26.1462%" y="2437" width="0.0511%" height="15" fill="rgb(210,186,47)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (12 samples, 0.05%)</title><rect x="26.1462%" y="2421" width="0.0511%" height="15" fill="rgb(232,146,10)" fg:x="6136" fg:w="12"/><text x="26.3962%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="26.2102%" y="2421" width="0.0170%" height="15" fill="rgb(236,185,51)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="26.2102%" y="2405" width="0.0170%" height="15" fill="rgb(223,206,43)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="26.2102%" y="2389" width="0.0170%" height="15" fill="rgb(227,212,9)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="26.2102%" y="2373" width="0.0170%" height="15" fill="rgb(205,82,3)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="26.2102%" y="2357" width="0.0170%" height="15" fill="rgb(214,2,27)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="26.2102%" y="2341" width="0.0170%" height="15" fill="rgb(241,37,22)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.2102%" y="2325" width="0.0170%" height="15" fill="rgb(219,182,1)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.2102%" y="2309" width="0.0170%" height="15" fill="rgb(208,224,23)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2319.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.2102%" y="2293" width="0.0170%" height="15" fill="rgb(219,121,32)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.2102%" y="2277" width="0.0170%" height="15" fill="rgb(253,13,40)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.2102%" y="2261" width="0.0170%" height="15" fill="rgb(233,6,28)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="26.2102%" y="2245" width="0.0170%" height="15" fill="rgb(233,73,8)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="26.2102%" y="2229" width="0.0170%" height="15" fill="rgb(223,48,27)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.2102%" y="2213" width="0.0170%" height="15" fill="rgb(231,98,37)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.2102%" y="2197" width="0.0170%" height="15" fill="rgb(249,43,32)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.2102%" y="2181" width="0.0170%" height="15" fill="rgb(246,184,20)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="26.2102%" y="2165" width="0.0170%" height="15" fill="rgb(251,216,0)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="26.2102%" y="2149" width="0.0170%" height="15" fill="rgb(238,41,42)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="26.2102%" y="2133" width="0.0170%" height="15" fill="rgb(227,224,50)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="26.2102%" y="2117" width="0.0170%" height="15" fill="rgb(237,189,18)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="26.2102%" y="2101" width="0.0170%" height="15" fill="rgb(238,108,6)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="26.2102%" y="2085" width="0.0170%" height="15" fill="rgb(214,197,53)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="26.2102%" y="2069" width="0.0170%" height="15" fill="rgb(206,183,15)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="26.2102%" y="2053" width="0.0170%" height="15" fill="rgb(208,130,32)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="26.2102%" y="2037" width="0.0170%" height="15" fill="rgb(226,128,52)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="26.2102%" y="2021" width="0.0170%" height="15" fill="rgb(231,183,21)" fg:x="6151" fg:w="4"/><text x="26.4602%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="26.1974%" y="2533" width="0.0597%" height="15" fill="rgb(216,8,35)" fg:x="6148" fg:w="14"/><text x="26.4474%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="26.1974%" y="2517" width="0.0597%" height="15" fill="rgb(224,221,8)" fg:x="6148" fg:w="14"/><text x="26.4474%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="26.1974%" y="2501" width="0.0597%" height="15" fill="rgb(210,111,33)" fg:x="6148" fg:w="14"/><text x="26.4474%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="26.1974%" y="2485" width="0.0597%" height="15" fill="rgb(232,211,38)" fg:x="6148" fg:w="14"/><text x="26.4474%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="26.2016%" y="2469" width="0.0554%" height="15" fill="rgb(216,190,27)" fg:x="6149" fg:w="13"/><text x="26.4516%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="26.2016%" y="2453" width="0.0554%" height="15" fill="rgb(237,215,27)" fg:x="6149" fg:w="13"/><text x="26.4516%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="26.2016%" y="2437" width="0.0554%" height="15" fill="rgb(251,121,39)" fg:x="6149" fg:w="13"/><text x="26.4516%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="26.2272%" y="2421" width="0.0298%" height="15" fill="rgb(244,21,14)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="26.2272%" y="2405" width="0.0298%" height="15" fill="rgb(221,192,22)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2415.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="26.2272%" y="2389" width="0.0298%" height="15" fill="rgb(251,190,28)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="26.2272%" y="2373" width="0.0298%" height="15" fill="rgb(217,4,51)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="26.2272%" y="2357" width="0.0298%" height="15" fill="rgb(215,183,49)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="26.2272%" y="2341" width="0.0298%" height="15" fill="rgb(249,28,49)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="26.2272%" y="2325" width="0.0298%" height="15" fill="rgb(214,42,20)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="26.2272%" y="2309" width="0.0298%" height="15" fill="rgb(222,77,27)" fg:x="6155" fg:w="7"/><text x="26.4772%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="26.2357%" y="2293" width="0.0213%" height="15" fill="rgb(252,198,32)" fg:x="6157" fg:w="5"/><text x="26.4857%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="26.2357%" y="2277" width="0.0213%" height="15" fill="rgb(207,140,50)" fg:x="6157" fg:w="5"/><text x="26.4857%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="26.2357%" y="2261" width="0.0213%" height="15" fill="rgb(251,170,16)" fg:x="6157" fg:w="5"/><text x="26.4857%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="26.2442%" y="2245" width="0.0128%" height="15" fill="rgb(249,111,45)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="26.2442%" y="2229" width="0.0128%" height="15" fill="rgb(241,99,35)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2239.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="26.2442%" y="2213" width="0.0128%" height="15" fill="rgb(216,188,17)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="26.2442%" y="2197" width="0.0128%" height="15" fill="rgb(254,209,53)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="26.2442%" y="2181" width="0.0128%" height="15" fill="rgb(231,105,41)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2442%" y="2165" width="0.0128%" height="15" fill="rgb(242,93,23)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2442%" y="2149" width="0.0128%" height="15" fill="rgb(218,159,11)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.2442%" y="2133" width="0.0128%" height="15" fill="rgb(209,90,32)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.2442%" y="2117" width="0.0128%" height="15" fill="rgb(253,118,46)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.2442%" y="2101" width="0.0128%" height="15" fill="rgb(219,121,2)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.2442%" y="2085" width="0.0128%" height="15" fill="rgb(207,57,47)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.2442%" y="2069" width="0.0128%" height="15" fill="rgb(235,113,43)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.2442%" y="2053" width="0.0128%" height="15" fill="rgb(238,30,50)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.2442%" y="2037" width="0.0128%" height="15" fill="rgb(237,47,29)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.2442%" y="2021" width="0.0128%" height="15" fill="rgb(245,102,24)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2442%" y="2005" width="0.0128%" height="15" fill="rgb(245,152,9)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.2442%" y="1989" width="0.0128%" height="15" fill="rgb(223,213,17)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.2442%" y="1973" width="0.0128%" height="15" fill="rgb(241,164,4)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2442%" y="1957" width="0.0128%" height="15" fill="rgb(205,209,31)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="26.2442%" y="1941" width="0.0128%" height="15" fill="rgb(248,173,2)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="26.2442%" y="1925" width="0.0128%" height="15" fill="rgb(207,67,32)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="26.2442%" y="1909" width="0.0128%" height="15" fill="rgb(239,109,13)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1919.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="26.2442%" y="1893" width="0.0128%" height="15" fill="rgb(233,123,24)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1903.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="26.2442%" y="1877" width="0.0128%" height="15" fill="rgb(232,120,19)" fg:x="6159" fg:w="3"/><text x="26.4942%" y="1887.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="26.2698%" y="1957" width="0.0128%" height="15" fill="rgb(225,17,50)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="26.2698%" y="1941" width="0.0128%" height="15" fill="rgb(239,216,13)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="26.2698%" y="1925" width="0.0128%" height="15" fill="rgb(232,213,26)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="26.2698%" y="1909" width="0.0128%" height="15" fill="rgb(244,59,39)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="26.2698%" y="1893" width="0.0128%" height="15" fill="rgb(234,61,35)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="26.2698%" y="1877" width="0.0128%" height="15" fill="rgb(245,94,24)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="26.2698%" y="1861" width="0.0128%" height="15" fill="rgb(238,190,44)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="26.2698%" y="1845" width="0.0128%" height="15" fill="rgb(205,145,25)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1855.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="26.2698%" y="1829" width="0.0128%" height="15" fill="rgb(229,158,41)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="26.2698%" y="1813" width="0.0128%" height="15" fill="rgb(224,121,5)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="26.2698%" y="1797" width="0.0128%" height="15" fill="rgb(238,168,35)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2698%" y="1781" width="0.0128%" height="15" fill="rgb(231,11,42)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2698%" y="1765" width="0.0128%" height="15" fill="rgb(241,105,19)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2698%" y="1749" width="0.0128%" height="15" fill="rgb(253,210,20)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.2698%" y="1733" width="0.0128%" height="15" fill="rgb(215,72,52)" fg:x="6165" fg:w="3"/><text x="26.5198%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.2826%" y="1829" width="0.0128%" height="15" fill="rgb(223,225,30)" fg:x="6168" fg:w="3"/><text x="26.5326%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="26.2613%" y="2245" width="0.0469%" height="15" fill="rgb(220,138,44)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="26.2613%" y="2229" width="0.0469%" height="15" fill="rgb(206,128,12)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="26.2613%" y="2213" width="0.0469%" height="15" fill="rgb(245,194,0)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="26.2613%" y="2197" width="0.0469%" height="15" fill="rgb(235,175,41)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="26.2613%" y="2181" width="0.0469%" height="15" fill="rgb(216,15,48)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="26.2613%" y="2165" width="0.0469%" height="15" fill="rgb(223,179,5)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="26.2613%" y="2149" width="0.0469%" height="15" fill="rgb(220,80,15)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="26.2613%" y="2133" width="0.0469%" height="15" fill="rgb(228,20,30)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2143.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="26.2613%" y="2117" width="0.0469%" height="15" fill="rgb(229,194,27)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="26.2613%" y="2101" width="0.0469%" height="15" fill="rgb(238,202,32)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="26.2613%" y="2085" width="0.0469%" height="15" fill="rgb(207,82,27)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="26.2613%" y="2069" width="0.0469%" height="15" fill="rgb(246,122,46)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="26.2613%" y="2053" width="0.0469%" height="15" fill="rgb(220,101,26)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="26.2613%" y="2037" width="0.0469%" height="15" fill="rgb(251,63,9)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="26.2613%" y="2021" width="0.0469%" height="15" fill="rgb(235,186,5)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="26.2613%" y="2005" width="0.0469%" height="15" fill="rgb(241,139,37)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="26.2613%" y="1989" width="0.0469%" height="15" fill="rgb(252,177,51)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="26.2613%" y="1973" width="0.0469%" height="15" fill="rgb(214,131,22)" fg:x="6163" fg:w="11"/><text x="26.5113%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="26.2826%" y="1957" width="0.0256%" height="15" fill="rgb(246,53,19)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="26.2826%" y="1941" width="0.0256%" height="15" fill="rgb(231,158,27)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1951.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="26.2826%" y="1925" width="0.0256%" height="15" fill="rgb(226,166,46)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="26.2826%" y="1909" width="0.0256%" height="15" fill="rgb(218,178,26)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="26.2826%" y="1893" width="0.0256%" height="15" fill="rgb(206,25,39)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="26.2826%" y="1877" width="0.0256%" height="15" fill="rgb(232,218,41)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="26.2826%" y="1861" width="0.0256%" height="15" fill="rgb(212,151,15)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="26.2826%" y="1845" width="0.0256%" height="15" fill="rgb(213,49,22)" fg:x="6168" fg:w="6"/><text x="26.5326%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="26.2954%" y="1829" width="0.0128%" height="15" fill="rgb(247,116,21)" fg:x="6171" fg:w="3"/><text x="26.5454%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="26.2954%" y="1813" width="0.0128%" height="15" fill="rgb(248,98,14)" fg:x="6171" fg:w="3"/><text x="26.5454%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="26.2954%" y="1797" width="0.0128%" height="15" fill="rgb(247,72,6)" fg:x="6171" fg:w="3"/><text x="26.5454%" y="1807.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="26.3082%" y="1925" width="0.0170%" height="15" fill="rgb(213,9,22)" fg:x="6174" fg:w="4"/><text x="26.5582%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="26.3082%" y="1909" width="0.0170%" height="15" fill="rgb(213,122,30)" fg:x="6174" fg:w="4"/><text x="26.5582%" y="1919.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="26.3124%" y="1893" width="0.0128%" height="15" fill="rgb(244,11,30)" fg:x="6175" fg:w="3"/><text x="26.5624%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="26.3082%" y="2117" width="0.0213%" height="15" fill="rgb(236,102,26)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="26.3082%" y="2101" width="0.0213%" height="15" fill="rgb(231,166,37)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="26.3082%" y="2085" width="0.0213%" height="15" fill="rgb(220,224,29)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="26.3082%" y="2069" width="0.0213%" height="15" fill="rgb(227,30,40)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="26.3082%" y="2053" width="0.0213%" height="15" fill="rgb(235,8,36)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="26.3082%" y="2037" width="0.0213%" height="15" fill="rgb(232,175,19)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="26.3082%" y="2021" width="0.0213%" height="15" fill="rgb(217,114,10)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="26.3082%" y="2005" width="0.0213%" height="15" fill="rgb(214,112,41)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="26.3082%" y="1989" width="0.0213%" height="15" fill="rgb(226,69,34)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="26.3082%" y="1973" width="0.0213%" height="15" fill="rgb(219,23,46)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="26.3082%" y="1957" width="0.0213%" height="15" fill="rgb(233,3,8)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="26.3082%" y="1941" width="0.0213%" height="15" fill="rgb(251,34,42)" fg:x="6174" fg:w="5"/><text x="26.5582%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="26.3337%" y="1957" width="0.0128%" height="15" fill="rgb(215,84,9)" fg:x="6180" fg:w="3"/><text x="26.5837%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.3337%" y="1941" width="0.0128%" height="15" fill="rgb(231,75,52)" fg:x="6180" fg:w="3"/><text x="26.5837%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.3337%" y="1925" width="0.0128%" height="15" fill="rgb(247,201,31)" fg:x="6180" fg:w="3"/><text x="26.5837%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.3337%" y="1909" width="0.0128%" height="15" fill="rgb(215,171,37)" fg:x="6180" fg:w="3"/><text x="26.5837%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="26.3337%" y="1893" width="0.0128%" height="15" fill="rgb(208,208,44)" fg:x="6180" fg:w="3"/><text x="26.5837%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="26.3337%" y="1877" width="0.0128%" height="15" fill="rgb(247,146,54)" fg:x="6180" fg:w="3"/><text x="26.5837%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="26.3337%" y="1861" width="0.0128%" height="15" fill="rgb(209,0,40)" fg:x="6180" fg:w="3"/><text x="26.5837%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="26.3295%" y="2069" width="0.0213%" height="15" fill="rgb(221,59,4)" fg:x="6179" fg:w="5"/><text x="26.5795%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="26.3295%" y="2053" width="0.0213%" height="15" fill="rgb(227,153,47)" fg:x="6179" fg:w="5"/><text x="26.5795%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="26.3295%" y="2037" width="0.0213%" height="15" fill="rgb(253,225,10)" fg:x="6179" fg:w="5"/><text x="26.5795%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="26.3295%" y="2021" width="0.0213%" height="15" fill="rgb(237,201,24)" fg:x="6179" fg:w="5"/><text x="26.5795%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.3337%" y="2005" width="0.0170%" height="15" fill="rgb(238,23,27)" fg:x="6180" fg:w="4"/><text x="26.5837%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.3337%" y="1989" width="0.0170%" height="15" fill="rgb(236,54,50)" fg:x="6180" fg:w="4"/><text x="26.5837%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.3337%" y="1973" width="0.0170%" height="15" fill="rgb(216,106,0)" fg:x="6180" fg:w="4"/><text x="26.5837%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (27 samples, 0.12%)</title><rect x="26.2570%" y="2501" width="0.1151%" height="15" fill="rgb(234,179,35)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (27 samples, 0.12%)</title><rect x="26.2570%" y="2485" width="0.1151%" height="15" fill="rgb(210,35,8)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (27 samples, 0.12%)</title><rect x="26.2570%" y="2469" width="0.1151%" height="15" fill="rgb(238,144,16)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (27 samples, 0.12%)</title><rect x="26.2570%" y="2453" width="0.1151%" height="15" fill="rgb(244,54,7)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (27 samples, 0.12%)</title><rect x="26.2570%" y="2437" width="0.1151%" height="15" fill="rgb(233,225,40)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (27 samples, 0.12%)</title><rect x="26.2570%" y="2421" width="0.1151%" height="15" fill="rgb(249,227,23)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2431.50"></text></g><g><title>std::panicking::try (27 samples, 0.12%)</title><rect x="26.2570%" y="2405" width="0.1151%" height="15" fill="rgb(215,42,44)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (27 samples, 0.12%)</title><rect x="26.2570%" y="2389" width="0.1151%" height="15" fill="rgb(220,145,40)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (27 samples, 0.12%)</title><rect x="26.2570%" y="2373" width="0.1151%" height="15" fill="rgb(228,218,40)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (27 samples, 0.12%)</title><rect x="26.2570%" y="2357" width="0.1151%" height="15" fill="rgb(217,52,54)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (27 samples, 0.12%)</title><rect x="26.2570%" y="2341" width="0.1151%" height="15" fill="rgb(223,90,22)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="26.2570%" y="2325" width="0.1151%" height="15" fill="rgb(232,114,35)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="26.2570%" y="2309" width="0.1151%" height="15" fill="rgb(227,223,50)" fg:x="6162" fg:w="27"/><text x="26.5070%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="26.2613%" y="2293" width="0.1108%" height="15" fill="rgb(249,175,7)" fg:x="6163" fg:w="26"/><text x="26.5113%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="26.2613%" y="2277" width="0.1108%" height="15" fill="rgb(249,173,15)" fg:x="6163" fg:w="26"/><text x="26.5113%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="26.2613%" y="2261" width="0.1108%" height="15" fill="rgb(240,131,6)" fg:x="6163" fg:w="26"/><text x="26.5113%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="26.3082%" y="2245" width="0.0639%" height="15" fill="rgb(246,117,16)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="26.3082%" y="2229" width="0.0639%" height="15" fill="rgb(209,32,16)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2239.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="26.3082%" y="2213" width="0.0639%" height="15" fill="rgb(207,45,44)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="26.3082%" y="2197" width="0.0639%" height="15" fill="rgb(210,66,3)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="26.3082%" y="2181" width="0.0639%" height="15" fill="rgb(246,133,30)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="26.3082%" y="2165" width="0.0639%" height="15" fill="rgb(224,37,17)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="26.3082%" y="2149" width="0.0639%" height="15" fill="rgb(237,218,18)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="26.3082%" y="2133" width="0.0639%" height="15" fill="rgb(240,57,8)" fg:x="6174" fg:w="15"/><text x="26.5582%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="26.3295%" y="2117" width="0.0426%" height="15" fill="rgb(231,51,38)" fg:x="6179" fg:w="10"/><text x="26.5795%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="26.3295%" y="2101" width="0.0426%" height="15" fill="rgb(230,89,50)" fg:x="6179" fg:w="10"/><text x="26.5795%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="26.3295%" y="2085" width="0.0426%" height="15" fill="rgb(234,103,34)" fg:x="6179" fg:w="10"/><text x="26.5795%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="26.3508%" y="2069" width="0.0213%" height="15" fill="rgb(220,45,48)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="26.3508%" y="2053" width="0.0213%" height="15" fill="rgb(250,210,3)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="2063.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="26.3508%" y="2037" width="0.0213%" height="15" fill="rgb(210,118,12)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="26.3508%" y="2021" width="0.0213%" height="15" fill="rgb(238,154,21)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="26.3508%" y="2005" width="0.0213%" height="15" fill="rgb(227,220,4)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="26.3508%" y="1989" width="0.0213%" height="15" fill="rgb(207,179,27)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="26.3508%" y="1973" width="0.0213%" height="15" fill="rgb(240,111,30)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="26.3508%" y="1957" width="0.0213%" height="15" fill="rgb(251,29,1)" fg:x="6184" fg:w="5"/><text x="26.6008%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="26.3593%" y="1941" width="0.0128%" height="15" fill="rgb(224,141,39)" fg:x="6186" fg:w="3"/><text x="26.6093%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="26.3593%" y="1925" width="0.0128%" height="15" fill="rgb(207,98,26)" fg:x="6186" fg:w="3"/><text x="26.6093%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="26.3593%" y="1909" width="0.0128%" height="15" fill="rgb(221,37,6)" fg:x="6186" fg:w="3"/><text x="26.6093%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (28 samples, 0.12%)</title><rect x="26.2570%" y="2533" width="0.1193%" height="15" fill="rgb(217,32,44)" fg:x="6162" fg:w="28"/><text x="26.5070%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (28 samples, 0.12%)</title><rect x="26.2570%" y="2517" width="0.1193%" height="15" fill="rgb(253,149,2)" fg:x="6162" fg:w="28"/><text x="26.5070%" y="2527.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="26.3763%" y="2389" width="0.0384%" height="15" fill="rgb(220,165,39)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="26.3763%" y="2373" width="0.0384%" height="15" fill="rgb(235,33,48)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="26.3763%" y="2357" width="0.0384%" height="15" fill="rgb(221,89,6)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="26.3763%" y="2341" width="0.0384%" height="15" fill="rgb(215,214,6)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="26.3763%" y="2325" width="0.0384%" height="15" fill="rgb(241,1,30)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="26.3763%" y="2309" width="0.0384%" height="15" fill="rgb(211,140,32)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="26.3763%" y="2293" width="0.0384%" height="15" fill="rgb(232,48,21)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="26.3763%" y="2277" width="0.0384%" height="15" fill="rgb(252,217,9)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="26.3763%" y="2261" width="0.0384%" height="15" fill="rgb(206,123,34)" fg:x="6190" fg:w="9"/><text x="26.6263%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="26.3806%" y="2245" width="0.0341%" height="15" fill="rgb(245,161,38)" fg:x="6191" fg:w="8"/><text x="26.6306%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="26.3806%" y="2229" width="0.0341%" height="15" fill="rgb(233,205,7)" fg:x="6191" fg:w="8"/><text x="26.6306%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="26.3976%" y="2213" width="0.0170%" height="15" fill="rgb(217,119,18)" fg:x="6195" fg:w="4"/><text x="26.6476%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="26.3976%" y="2197" width="0.0170%" height="15" fill="rgb(252,126,3)" fg:x="6195" fg:w="4"/><text x="26.6476%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="26.3763%" y="2405" width="0.0426%" height="15" fill="rgb(252,188,15)" fg:x="6190" fg:w="10"/><text x="26.6263%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="26.4360%" y="2133" width="0.0128%" height="15" fill="rgb(228,1,48)" fg:x="6204" fg:w="3"/><text x="26.6860%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4360%" y="2117" width="0.0128%" height="15" fill="rgb(205,187,8)" fg:x="6204" fg:w="3"/><text x="26.6860%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4360%" y="2101" width="0.0128%" height="15" fill="rgb(205,105,50)" fg:x="6204" fg:w="3"/><text x="26.6860%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.4360%" y="2085" width="0.0128%" height="15" fill="rgb(211,31,46)" fg:x="6204" fg:w="3"/><text x="26.6860%" y="2095.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="26.4275%" y="2245" width="0.0256%" height="15" fill="rgb(213,126,5)" fg:x="6202" fg:w="6"/><text x="26.6775%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4275%" y="2229" width="0.0256%" height="15" fill="rgb(231,87,9)" fg:x="6202" fg:w="6"/><text x="26.6775%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4275%" y="2213" width="0.0256%" height="15" fill="rgb(219,224,20)" fg:x="6202" fg:w="6"/><text x="26.6775%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="26.4275%" y="2197" width="0.0256%" height="15" fill="rgb(230,84,21)" fg:x="6202" fg:w="6"/><text x="26.6775%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.4360%" y="2181" width="0.0170%" height="15" fill="rgb(224,169,42)" fg:x="6204" fg:w="4"/><text x="26.6860%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.4360%" y="2165" width="0.0170%" height="15" fill="rgb(227,182,13)" fg:x="6204" fg:w="4"/><text x="26.6860%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4360%" y="2149" width="0.0170%" height="15" fill="rgb(249,57,41)" fg:x="6204" fg:w="4"/><text x="26.6860%" y="2159.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="26.4616%" y="853" width="0.0128%" height="15" fill="rgb(214,93,52)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4616%" y="837" width="0.0128%" height="15" fill="rgb(229,161,34)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4616%" y="821" width="0.0128%" height="15" fill="rgb(227,193,17)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.4616%" y="805" width="0.0128%" height="15" fill="rgb(242,164,46)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="815.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.4616%" y="789" width="0.0128%" height="15" fill="rgb(242,142,47)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="799.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.4616%" y="773" width="0.0128%" height="15" fill="rgb(208,23,18)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="783.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.4616%" y="757" width="0.0128%" height="15" fill="rgb(219,54,38)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="767.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.4616%" y="741" width="0.0128%" height="15" fill="rgb(206,97,35)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="751.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.4616%" y="725" width="0.0128%" height="15" fill="rgb(208,76,8)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="735.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.4616%" y="709" width="0.0128%" height="15" fill="rgb(220,92,28)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="719.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.4616%" y="693" width="0.0128%" height="15" fill="rgb(209,158,39)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="703.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4616%" y="677" width="0.0128%" height="15" fill="rgb(238,175,9)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="687.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.4616%" y="661" width="0.0128%" height="15" fill="rgb(240,116,17)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="671.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.4616%" y="645" width="0.0128%" height="15" fill="rgb(208,7,2)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4616%" y="629" width="0.0128%" height="15" fill="rgb(252,52,4)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="639.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="26.4616%" y="613" width="0.0128%" height="15" fill="rgb(222,68,34)" fg:x="6210" fg:w="3"/><text x="26.7116%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="26.4530%" y="1669" width="0.0256%" height="15" fill="rgb(242,154,35)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="26.4530%" y="1653" width="0.0256%" height="15" fill="rgb(210,125,54)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="26.4530%" y="1637" width="0.0256%" height="15" fill="rgb(247,121,18)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1647.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="26.4530%" y="1621" width="0.0256%" height="15" fill="rgb(223,48,51)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1631.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="26.4530%" y="1605" width="0.0256%" height="15" fill="rgb(211,156,48)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1615.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="26.4530%" y="1589" width="0.0256%" height="15" fill="rgb(236,56,31)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1599.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="26.4530%" y="1573" width="0.0256%" height="15" fill="rgb(247,157,52)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1583.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="26.4530%" y="1557" width="0.0256%" height="15" fill="rgb(244,121,39)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1567.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="26.4530%" y="1541" width="0.0256%" height="15" fill="rgb(239,4,40)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1551.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="26.4530%" y="1525" width="0.0256%" height="15" fill="rgb(213,204,45)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1535.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="26.4530%" y="1509" width="0.0256%" height="15" fill="rgb(242,107,0)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1519.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4530%" y="1493" width="0.0256%" height="15" fill="rgb(215,152,25)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4530%" y="1477" width="0.0256%" height="15" fill="rgb(233,151,6)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4530%" y="1461" width="0.0256%" height="15" fill="rgb(206,126,44)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="26.4530%" y="1445" width="0.0256%" height="15" fill="rgb(209,145,15)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="26.4530%" y="1429" width="0.0256%" height="15" fill="rgb(235,214,8)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="26.4530%" y="1413" width="0.0256%" height="15" fill="rgb(216,140,51)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4530%" y="1397" width="0.0256%" height="15" fill="rgb(213,83,34)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="26.4530%" y="1381" width="0.0256%" height="15" fill="rgb(218,186,44)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1391.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="26.4530%" y="1365" width="0.0256%" height="15" fill="rgb(225,147,10)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1375.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="26.4530%" y="1349" width="0.0256%" height="15" fill="rgb(209,214,20)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1359.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="26.4530%" y="1333" width="0.0256%" height="15" fill="rgb(252,61,32)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="26.4530%" y="1317" width="0.0256%" height="15" fill="rgb(237,204,10)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4530%" y="1301" width="0.0256%" height="15" fill="rgb(246,118,16)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4530%" y="1285" width="0.0256%" height="15" fill="rgb(214,50,9)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="26.4530%" y="1269" width="0.0256%" height="15" fill="rgb(212,41,1)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="26.4530%" y="1253" width="0.0256%" height="15" fill="rgb(228,172,32)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="26.4530%" y="1237" width="0.0256%" height="15" fill="rgb(231,85,38)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="26.4530%" y="1221" width="0.0256%" height="15" fill="rgb(223,120,31)" fg:x="6208" fg:w="6"/><text x="26.7030%" y="1231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.4616%" y="1205" width="0.0170%" height="15" fill="rgb(254,174,9)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1215.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.4616%" y="1189" width="0.0170%" height="15" fill="rgb(243,197,0)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1199.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.4616%" y="1173" width="0.0170%" height="15" fill="rgb(226,186,17)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1183.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.4616%" y="1157" width="0.0170%" height="15" fill="rgb(229,38,38)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.4616%" y="1141" width="0.0170%" height="15" fill="rgb(238,82,14)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4616%" y="1125" width="0.0170%" height="15" fill="rgb(230,154,54)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4616%" y="1109" width="0.0170%" height="15" fill="rgb(243,84,17)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.4616%" y="1093" width="0.0170%" height="15" fill="rgb(226,41,37)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.4616%" y="1077" width="0.0170%" height="15" fill="rgb(219,20,18)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.4616%" y="1061" width="0.0170%" height="15" fill="rgb(243,173,39)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4616%" y="1045" width="0.0170%" height="15" fill="rgb(245,79,20)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.4616%" y="1029" width="0.0170%" height="15" fill="rgb(229,101,45)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1039.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.4616%" y="1013" width="0.0170%" height="15" fill="rgb(215,123,52)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1023.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.4616%" y="997" width="0.0170%" height="15" fill="rgb(215,11,33)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="1007.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.4616%" y="981" width="0.0170%" height="15" fill="rgb(245,105,20)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.4616%" y="965" width="0.0170%" height="15" fill="rgb(231,132,30)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4616%" y="949" width="0.0170%" height="15" fill="rgb(224,62,21)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4616%" y="933" width="0.0170%" height="15" fill="rgb(209,221,38)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.4616%" y="917" width="0.0170%" height="15" fill="rgb(229,200,30)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="927.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.4616%" y="901" width="0.0170%" height="15" fill="rgb(237,142,41)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.4616%" y="885" width="0.0170%" height="15" fill="rgb(238,37,22)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4616%" y="869" width="0.0170%" height="15" fill="rgb(234,182,17)" fg:x="6210" fg:w="4"/><text x="26.7116%" y="879.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="26.4530%" y="1781" width="0.0298%" height="15" fill="rgb(237,58,48)" fg:x="6208" fg:w="7"/><text x="26.7030%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="26.4530%" y="1765" width="0.0298%" height="15" fill="rgb(226,112,37)" fg:x="6208" fg:w="7"/><text x="26.7030%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="26.4530%" y="1749" width="0.0298%" height="15" fill="rgb(230,201,20)" fg:x="6208" fg:w="7"/><text x="26.7030%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="26.4530%" y="1733" width="0.0298%" height="15" fill="rgb(252,95,39)" fg:x="6208" fg:w="7"/><text x="26.7030%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="26.4530%" y="1717" width="0.0298%" height="15" fill="rgb(240,150,33)" fg:x="6208" fg:w="7"/><text x="26.7030%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="26.4530%" y="1701" width="0.0298%" height="15" fill="rgb(208,202,37)" fg:x="6208" fg:w="7"/><text x="26.7030%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="26.4530%" y="1685" width="0.0298%" height="15" fill="rgb(251,37,12)" fg:x="6208" fg:w="7"/><text x="26.7030%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="26.4829%" y="1605" width="0.0128%" height="15" fill="rgb(247,150,26)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4829%" y="1589" width="0.0128%" height="15" fill="rgb(232,28,8)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4829%" y="1573" width="0.0128%" height="15" fill="rgb(226,121,34)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.4829%" y="1557" width="0.0128%" height="15" fill="rgb(237,23,13)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.4829%" y="1541" width="0.0128%" height="15" fill="rgb(214,42,29)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.4829%" y="1525" width="0.0128%" height="15" fill="rgb(246,204,29)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.4829%" y="1509" width="0.0128%" height="15" fill="rgb(242,28,40)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.4829%" y="1493" width="0.0128%" height="15" fill="rgb(243,64,49)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.4829%" y="1477" width="0.0128%" height="15" fill="rgb(226,93,13)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.4829%" y="1461" width="0.0128%" height="15" fill="rgb(241,113,26)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.4829%" y="1445" width="0.0128%" height="15" fill="rgb(209,209,0)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4829%" y="1429" width="0.0128%" height="15" fill="rgb(251,183,50)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.4829%" y="1413" width="0.0128%" height="15" fill="rgb(248,24,43)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.4829%" y="1397" width="0.0128%" height="15" fill="rgb(218,102,9)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.4829%" y="1381" width="0.0128%" height="15" fill="rgb(249,209,39)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="26.4829%" y="1365" width="0.0128%" height="15" fill="rgb(210,37,6)" fg:x="6215" fg:w="3"/><text x="26.7329%" y="1375.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="26.4530%" y="2245" width="0.0469%" height="15" fill="rgb(212,99,4)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="26.4530%" y="2229" width="0.0469%" height="15" fill="rgb(253,59,46)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="26.4530%" y="2213" width="0.0469%" height="15" fill="rgb(229,96,9)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="26.4530%" y="2197" width="0.0469%" height="15" fill="rgb(207,103,49)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="26.4530%" y="2181" width="0.0469%" height="15" fill="rgb(250,226,20)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="26.4530%" y="2165" width="0.0469%" height="15" fill="rgb(238,220,11)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="26.4530%" y="2149" width="0.0469%" height="15" fill="rgb(236,74,15)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="26.4530%" y="2133" width="0.0469%" height="15" fill="rgb(218,43,40)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2143.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="26.4530%" y="2117" width="0.0469%" height="15" fill="rgb(245,206,37)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="26.4530%" y="2101" width="0.0469%" height="15" fill="rgb(206,30,3)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="26.4530%" y="2085" width="0.0469%" height="15" fill="rgb(211,29,35)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="26.4530%" y="2069" width="0.0469%" height="15" fill="rgb(218,49,50)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="26.4530%" y="2053" width="0.0469%" height="15" fill="rgb(211,114,30)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="26.4530%" y="2037" width="0.0469%" height="15" fill="rgb(238,70,33)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="26.4530%" y="2021" width="0.0469%" height="15" fill="rgb(238,141,50)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="26.4530%" y="2005" width="0.0469%" height="15" fill="rgb(205,69,6)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="26.4530%" y="1989" width="0.0469%" height="15" fill="rgb(229,65,0)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="26.4530%" y="1973" width="0.0469%" height="15" fill="rgb(211,3,37)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="26.4530%" y="1957" width="0.0469%" height="15" fill="rgb(223,196,42)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="26.4530%" y="1941" width="0.0469%" height="15" fill="rgb(227,191,15)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1951.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="26.4530%" y="1925" width="0.0469%" height="15" fill="rgb(229,210,53)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="26.4530%" y="1909" width="0.0469%" height="15" fill="rgb(250,203,10)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="26.4530%" y="1893" width="0.0469%" height="15" fill="rgb(247,8,37)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="26.4530%" y="1877" width="0.0469%" height="15" fill="rgb(240,52,9)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="26.4530%" y="1861" width="0.0469%" height="15" fill="rgb(243,100,52)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="26.4530%" y="1845" width="0.0469%" height="15" fill="rgb(224,149,30)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="26.4530%" y="1829" width="0.0469%" height="15" fill="rgb(232,27,45)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="26.4530%" y="1813" width="0.0469%" height="15" fill="rgb(242,161,36)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="26.4530%" y="1797" width="0.0469%" height="15" fill="rgb(235,223,32)" fg:x="6208" fg:w="11"/><text x="26.7030%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.4829%" y="1781" width="0.0170%" height="15" fill="rgb(242,78,19)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.4829%" y="1765" width="0.0170%" height="15" fill="rgb(233,157,47)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.4829%" y="1749" width="0.0170%" height="15" fill="rgb(251,213,5)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.4829%" y="1733" width="0.0170%" height="15" fill="rgb(215,223,5)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.4829%" y="1717" width="0.0170%" height="15" fill="rgb(230,14,7)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4829%" y="1701" width="0.0170%" height="15" fill="rgb(249,179,20)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4829%" y="1685" width="0.0170%" height="15" fill="rgb(230,204,44)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.4829%" y="1669" width="0.0170%" height="15" fill="rgb(233,229,46)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.4829%" y="1653" width="0.0170%" height="15" fill="rgb(210,154,35)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.4829%" y="1637" width="0.0170%" height="15" fill="rgb(220,178,16)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.4829%" y="1621" width="0.0170%" height="15" fill="rgb(243,0,53)" fg:x="6215" fg:w="4"/><text x="26.7329%" y="1631.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="26.4999%" y="1925" width="0.0213%" height="15" fill="rgb(223,221,47)" fg:x="6219" fg:w="5"/><text x="26.7499%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="26.4999%" y="1909" width="0.0213%" height="15" fill="rgb(233,82,15)" fg:x="6219" fg:w="5"/><text x="26.7499%" y="1919.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="26.4999%" y="1893" width="0.0213%" height="15" fill="rgb(222,8,38)" fg:x="6219" fg:w="5"/><text x="26.7499%" y="1903.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="26.5042%" y="1877" width="0.0170%" height="15" fill="rgb(241,28,48)" fg:x="6220" fg:w="4"/><text x="26.7542%" y="1887.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="26.4999%" y="1941" width="0.0256%" height="15" fill="rgb(209,227,15)" fg:x="6219" fg:w="6"/><text x="26.7499%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="26.4999%" y="2101" width="0.0298%" height="15" fill="rgb(234,189,48)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="26.4999%" y="2085" width="0.0298%" height="15" fill="rgb(212,27,44)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="26.4999%" y="2069" width="0.0298%" height="15" fill="rgb(249,55,42)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="26.4999%" y="2053" width="0.0298%" height="15" fill="rgb(215,211,28)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="26.4999%" y="2037" width="0.0298%" height="15" fill="rgb(221,155,16)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="26.4999%" y="2021" width="0.0298%" height="15" fill="rgb(247,106,30)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="26.4999%" y="2005" width="0.0298%" height="15" fill="rgb(230,76,31)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="26.4999%" y="1989" width="0.0298%" height="15" fill="rgb(222,6,48)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="26.4999%" y="1973" width="0.0298%" height="15" fill="rgb(228,82,3)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="26.4999%" y="1957" width="0.0298%" height="15" fill="rgb(245,208,52)" fg:x="6219" fg:w="7"/><text x="26.7499%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (27 samples, 0.12%)</title><rect x="26.4190%" y="2357" width="0.1151%" height="15" fill="rgb(218,65,17)" fg:x="6200" fg:w="27"/><text x="26.6690%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (27 samples, 0.12%)</title><rect x="26.4190%" y="2341" width="0.1151%" height="15" fill="rgb(242,63,26)" fg:x="6200" fg:w="27"/><text x="26.6690%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="26.4190%" y="2325" width="0.1151%" height="15" fill="rgb(224,119,39)" fg:x="6200" fg:w="27"/><text x="26.6690%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="26.4190%" y="2309" width="0.1151%" height="15" fill="rgb(229,106,3)" fg:x="6200" fg:w="27"/><text x="26.6690%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="26.4275%" y="2293" width="0.1065%" height="15" fill="rgb(248,6,33)" fg:x="6202" fg:w="25"/><text x="26.6775%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="26.4275%" y="2277" width="0.1065%" height="15" fill="rgb(226,3,49)" fg:x="6202" fg:w="25"/><text x="26.6775%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="26.4275%" y="2261" width="0.1065%" height="15" fill="rgb(228,142,14)" fg:x="6202" fg:w="25"/><text x="26.6775%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="26.4999%" y="2245" width="0.0341%" height="15" fill="rgb(241,141,54)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="26.4999%" y="2229" width="0.0341%" height="15" fill="rgb(252,17,50)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2239.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="26.4999%" y="2213" width="0.0341%" height="15" fill="rgb(221,120,48)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="26.4999%" y="2197" width="0.0341%" height="15" fill="rgb(229,171,33)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="26.4999%" y="2181" width="0.0341%" height="15" fill="rgb(236,207,21)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="26.4999%" y="2165" width="0.0341%" height="15" fill="rgb(218,93,35)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="26.4999%" y="2149" width="0.0341%" height="15" fill="rgb(207,101,8)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="26.4999%" y="2133" width="0.0341%" height="15" fill="rgb(237,67,44)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="26.4999%" y="2117" width="0.0341%" height="15" fill="rgb(236,218,7)" fg:x="6219" fg:w="8"/><text x="26.7499%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.5340%" y="2117" width="0.0170%" height="15" fill="rgb(252,207,10)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="26.5340%" y="2101" width="0.0170%" height="15" fill="rgb(221,175,6)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="26.5340%" y="2085" width="0.0170%" height="15" fill="rgb(230,105,53)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="26.5340%" y="2069" width="0.0170%" height="15" fill="rgb(253,83,6)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="26.5340%" y="2053" width="0.0170%" height="15" fill="rgb(206,198,44)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="26.5340%" y="2037" width="0.0170%" height="15" fill="rgb(206,164,29)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="26.5340%" y="2021" width="0.0170%" height="15" fill="rgb(215,2,50)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="26.5340%" y="2005" width="0.0170%" height="15" fill="rgb(246,127,18)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="26.5340%" y="1989" width="0.0170%" height="15" fill="rgb(232,6,21)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="26.5340%" y="1973" width="0.0170%" height="15" fill="rgb(224,154,1)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="26.5340%" y="1957" width="0.0170%" height="15" fill="rgb(248,135,32)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="26.5340%" y="1941" width="0.0170%" height="15" fill="rgb(253,129,38)" fg:x="6227" fg:w="4"/><text x="26.7840%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="26.5510%" y="1781" width="0.0128%" height="15" fill="rgb(214,110,11)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="26.5510%" y="1765" width="0.0128%" height="15" fill="rgb(246,150,22)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="26.5510%" y="1749" width="0.0128%" height="15" fill="rgb(219,170,39)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="26.5510%" y="1733" width="0.0128%" height="15" fill="rgb(221,143,52)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="26.5510%" y="1717" width="0.0128%" height="15" fill="rgb(237,122,11)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="26.5510%" y="1701" width="0.0128%" height="15" fill="rgb(217,114,13)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="26.5510%" y="1685" width="0.0128%" height="15" fill="rgb(218,184,28)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="26.5510%" y="1669" width="0.0128%" height="15" fill="rgb(237,33,22)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1679.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="26.5510%" y="1653" width="0.0128%" height="15" fill="rgb(224,56,42)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="26.5510%" y="1637" width="0.0128%" height="15" fill="rgb(216,138,53)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="26.5510%" y="1621" width="0.0128%" height="15" fill="rgb(233,229,40)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="26.5510%" y="1605" width="0.0128%" height="15" fill="rgb(252,105,0)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.5510%" y="1589" width="0.0128%" height="15" fill="rgb(212,75,24)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.5510%" y="1573" width="0.0128%" height="15" fill="rgb(235,168,50)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.5510%" y="1557" width="0.0128%" height="15" fill="rgb(247,204,12)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="26.5510%" y="1541" width="0.0128%" height="15" fill="rgb(250,203,27)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="26.5510%" y="1525" width="0.0128%" height="15" fill="rgb(221,215,2)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="26.5510%" y="1509" width="0.0128%" height="15" fill="rgb(242,163,47)" fg:x="6231" fg:w="3"/><text x="26.8010%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="26.5510%" y="2069" width="0.0256%" height="15" fill="rgb(237,136,50)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="26.5510%" y="2053" width="0.0256%" height="15" fill="rgb(217,201,47)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="26.5510%" y="2037" width="0.0256%" height="15" fill="rgb(212,38,47)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="26.5510%" y="2021" width="0.0256%" height="15" fill="rgb(254,113,41)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="26.5510%" y="2005" width="0.0256%" height="15" fill="rgb(236,7,22)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="26.5510%" y="1989" width="0.0256%" height="15" fill="rgb(235,81,25)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="26.5510%" y="1973" width="0.0256%" height="15" fill="rgb(216,41,31)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="26.5510%" y="1957" width="0.0256%" height="15" fill="rgb(249,219,15)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1967.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="26.5510%" y="1941" width="0.0256%" height="15" fill="rgb(248,201,3)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="26.5510%" y="1925" width="0.0256%" height="15" fill="rgb(249,141,18)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="26.5510%" y="1909" width="0.0256%" height="15" fill="rgb(222,32,39)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="26.5510%" y="1893" width="0.0256%" height="15" fill="rgb(237,139,51)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="26.5510%" y="1877" width="0.0256%" height="15" fill="rgb(218,210,4)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="26.5510%" y="1861" width="0.0256%" height="15" fill="rgb(217,199,13)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="26.5510%" y="1845" width="0.0256%" height="15" fill="rgb(222,118,25)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="26.5510%" y="1829" width="0.0256%" height="15" fill="rgb(241,70,28)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="26.5510%" y="1813" width="0.0256%" height="15" fill="rgb(205,51,41)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="26.5510%" y="1797" width="0.0256%" height="15" fill="rgb(237,165,49)" fg:x="6231" fg:w="6"/><text x="26.8010%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="26.5638%" y="1781" width="0.0128%" height="15" fill="rgb(213,10,51)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="26.5638%" y="1765" width="0.0128%" height="15" fill="rgb(245,89,32)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1775.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="26.5638%" y="1749" width="0.0128%" height="15" fill="rgb(249,81,54)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="26.5638%" y="1733" width="0.0128%" height="15" fill="rgb(223,134,14)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="26.5638%" y="1717" width="0.0128%" height="15" fill="rgb(233,62,37)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="26.5638%" y="1701" width="0.0128%" height="15" fill="rgb(219,117,42)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.5638%" y="1685" width="0.0128%" height="15" fill="rgb(248,40,28)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.5638%" y="1669" width="0.0128%" height="15" fill="rgb(246,66,35)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="26.5638%" y="1653" width="0.0128%" height="15" fill="rgb(250,229,22)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="26.5638%" y="1637" width="0.0128%" height="15" fill="rgb(213,89,18)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="26.5638%" y="1621" width="0.0128%" height="15" fill="rgb(213,122,9)" fg:x="6234" fg:w="3"/><text x="26.8138%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (14 samples, 0.06%)</title><rect x="26.5340%" y="2357" width="0.0597%" height="15" fill="rgb(220,213,48)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="26.5340%" y="2341" width="0.0597%" height="15" fill="rgb(244,109,54)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (14 samples, 0.06%)</title><rect x="26.5340%" y="2325" width="0.0597%" height="15" fill="rgb(254,104,49)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (14 samples, 0.06%)</title><rect x="26.5340%" y="2309" width="0.0597%" height="15" fill="rgb(219,28,32)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (14 samples, 0.06%)</title><rect x="26.5340%" y="2293" width="0.0597%" height="15" fill="rgb(249,153,33)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (14 samples, 0.06%)</title><rect x="26.5340%" y="2277" width="0.0597%" height="15" fill="rgb(230,116,21)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="26.5340%" y="2261" width="0.0597%" height="15" fill="rgb(247,110,3)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="26.5340%" y="2245" width="0.0597%" height="15" fill="rgb(227,128,3)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2255.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="26.5340%" y="2229" width="0.0597%" height="15" fill="rgb(208,21,1)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="26.5340%" y="2213" width="0.0597%" height="15" fill="rgb(225,24,20)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="26.5340%" y="2197" width="0.0597%" height="15" fill="rgb(250,159,24)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (14 samples, 0.06%)</title><rect x="26.5340%" y="2181" width="0.0597%" height="15" fill="rgb(214,30,53)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="26.5340%" y="2165" width="0.0597%" height="15" fill="rgb(243,198,11)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="26.5340%" y="2149" width="0.0597%" height="15" fill="rgb(232,33,1)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="26.5340%" y="2133" width="0.0597%" height="15" fill="rgb(242,60,11)" fg:x="6227" fg:w="14"/><text x="26.7840%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="26.5510%" y="2117" width="0.0426%" height="15" fill="rgb(241,229,34)" fg:x="6231" fg:w="10"/><text x="26.8010%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="26.5510%" y="2101" width="0.0426%" height="15" fill="rgb(230,92,51)" fg:x="6231" fg:w="10"/><text x="26.8010%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="26.5510%" y="2085" width="0.0426%" height="15" fill="rgb(212,209,8)" fg:x="6231" fg:w="10"/><text x="26.8010%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.5766%" y="2069" width="0.0170%" height="15" fill="rgb(241,55,35)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.5766%" y="2053" width="0.0170%" height="15" fill="rgb(208,187,52)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.5766%" y="2037" width="0.0170%" height="15" fill="rgb(251,110,17)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.5766%" y="2021" width="0.0170%" height="15" fill="rgb(246,225,54)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.5766%" y="2005" width="0.0170%" height="15" fill="rgb(220,109,6)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.5766%" y="1989" width="0.0170%" height="15" fill="rgb(228,56,50)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.5766%" y="1973" width="0.0170%" height="15" fill="rgb(230,34,30)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.5766%" y="1957" width="0.0170%" height="15" fill="rgb(205,28,42)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.5766%" y="1941" width="0.0170%" height="15" fill="rgb(215,68,0)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.5766%" y="1925" width="0.0170%" height="15" fill="rgb(206,91,47)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.5766%" y="1909" width="0.0170%" height="15" fill="rgb(241,159,43)" fg:x="6237" fg:w="4"/><text x="26.8266%" y="1919.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="26.6022%" y="1925" width="0.0213%" height="15" fill="rgb(232,191,38)" fg:x="6243" fg:w="5"/><text x="26.8522%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="26.6022%" y="1909" width="0.0213%" height="15" fill="rgb(212,180,41)" fg:x="6243" fg:w="5"/><text x="26.8522%" y="1919.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="26.6022%" y="1893" width="0.0213%" height="15" fill="rgb(236,134,49)" fg:x="6243" fg:w="5"/><text x="26.8522%" y="1903.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="26.6064%" y="1877" width="0.0170%" height="15" fill="rgb(221,83,26)" fg:x="6244" fg:w="4"/><text x="26.8564%" y="1887.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="26.6022%" y="1941" width="0.0341%" height="15" fill="rgb(215,87,39)" fg:x="6243" fg:w="8"/><text x="26.8522%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="26.6022%" y="2101" width="0.0384%" height="15" fill="rgb(242,28,29)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="26.6022%" y="2085" width="0.0384%" height="15" fill="rgb(212,219,47)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="26.6022%" y="2069" width="0.0384%" height="15" fill="rgb(221,35,20)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="26.6022%" y="2053" width="0.0384%" height="15" fill="rgb(234,144,13)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="26.6022%" y="2037" width="0.0384%" height="15" fill="rgb(237,41,27)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="26.6022%" y="2021" width="0.0384%" height="15" fill="rgb(253,175,5)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="26.6022%" y="2005" width="0.0384%" height="15" fill="rgb(235,210,51)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="26.6022%" y="1989" width="0.0384%" height="15" fill="rgb(241,180,35)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="26.6022%" y="1973" width="0.0384%" height="15" fill="rgb(219,45,16)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="26.6022%" y="1957" width="0.0384%" height="15" fill="rgb(247,212,4)" fg:x="6243" fg:w="9"/><text x="26.8522%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="26.6022%" y="2117" width="0.0469%" height="15" fill="rgb(224,211,1)" fg:x="6243" fg:w="11"/><text x="26.8522%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="26.6576%" y="1845" width="0.0256%" height="15" fill="rgb(210,193,36)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="26.6576%" y="1829" width="0.0256%" height="15" fill="rgb(215,121,20)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="26.6576%" y="1813" width="0.0256%" height="15" fill="rgb(238,146,2)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="26.6576%" y="1797" width="0.0256%" height="15" fill="rgb(254,123,45)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="26.6576%" y="1781" width="0.0256%" height="15" fill="rgb(225,126,11)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="26.6576%" y="1765" width="0.0256%" height="15" fill="rgb(239,12,5)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="26.6576%" y="1749" width="0.0256%" height="15" fill="rgb(241,207,14)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="26.6576%" y="1733" width="0.0256%" height="15" fill="rgb(227,134,33)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1743.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="26.6576%" y="1717" width="0.0256%" height="15" fill="rgb(221,40,52)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="26.6576%" y="1701" width="0.0256%" height="15" fill="rgb(206,93,8)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="26.6576%" y="1685" width="0.0256%" height="15" fill="rgb(242,160,22)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="26.6576%" y="1669" width="0.0256%" height="15" fill="rgb(232,204,40)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="26.6576%" y="1653" width="0.0256%" height="15" fill="rgb(247,210,47)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="26.6576%" y="1637" width="0.0256%" height="15" fill="rgb(211,91,7)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="26.6576%" y="1621" width="0.0256%" height="15" fill="rgb(252,160,34)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="26.6576%" y="1605" width="0.0256%" height="15" fill="rgb(220,34,39)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="26.6576%" y="1589" width="0.0256%" height="15" fill="rgb(247,49,38)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="26.6576%" y="1573" width="0.0256%" height="15" fill="rgb(228,175,44)" fg:x="6256" fg:w="6"/><text x="26.9076%" y="1583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.6661%" y="1557" width="0.0170%" height="15" fill="rgb(218,214,32)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1567.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.6661%" y="1541" width="0.0170%" height="15" fill="rgb(213,50,12)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1551.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.6661%" y="1525" width="0.0170%" height="15" fill="rgb(219,35,41)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1535.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.6661%" y="1509" width="0.0170%" height="15" fill="rgb(219,18,38)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.6661%" y="1493" width="0.0170%" height="15" fill="rgb(223,217,6)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.6661%" y="1477" width="0.0170%" height="15" fill="rgb(208,193,35)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.6661%" y="1461" width="0.0170%" height="15" fill="rgb(254,212,54)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.6661%" y="1445" width="0.0170%" height="15" fill="rgb(205,10,2)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.6661%" y="1429" width="0.0170%" height="15" fill="rgb(230,133,29)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.6661%" y="1413" width="0.0170%" height="15" fill="rgb(226,14,15)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.6661%" y="1397" width="0.0170%" height="15" fill="rgb(226,140,54)" fg:x="6258" fg:w="4"/><text x="26.9161%" y="1407.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="26.6491%" y="1957" width="0.0426%" height="15" fill="rgb(250,47,41)" fg:x="6254" fg:w="10"/><text x="26.8991%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="26.6491%" y="1941" width="0.0426%" height="15" fill="rgb(227,218,41)" fg:x="6254" fg:w="10"/><text x="26.8991%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="26.6491%" y="1925" width="0.0426%" height="15" fill="rgb(254,183,7)" fg:x="6254" fg:w="10"/><text x="26.8991%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="26.6491%" y="1909" width="0.0426%" height="15" fill="rgb(206,84,53)" fg:x="6254" fg:w="10"/><text x="26.8991%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="26.6576%" y="1893" width="0.0341%" height="15" fill="rgb(213,177,2)" fg:x="6256" fg:w="8"/><text x="26.9076%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="26.6576%" y="1877" width="0.0341%" height="15" fill="rgb(234,28,29)" fg:x="6256" fg:w="8"/><text x="26.9076%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="26.6576%" y="1861" width="0.0341%" height="15" fill="rgb(248,211,38)" fg:x="6256" fg:w="8"/><text x="26.9076%" y="1871.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.7087%" y="1637" width="0.0128%" height="15" fill="rgb(246,30,0)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.7087%" y="1621" width="0.0128%" height="15" fill="rgb(244,115,24)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.7087%" y="1605" width="0.0128%" height="15" fill="rgb(226,193,14)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.7087%" y="1589" width="0.0128%" height="15" fill="rgb(211,196,48)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.7087%" y="1573" width="0.0128%" height="15" fill="rgb(235,32,20)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.7087%" y="1557" width="0.0128%" height="15" fill="rgb(251,151,49)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.7087%" y="1541" width="0.0128%" height="15" fill="rgb(254,141,38)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.7087%" y="1525" width="0.0128%" height="15" fill="rgb(209,118,44)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.7087%" y="1509" width="0.0128%" height="15" fill="rgb(205,81,4)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.7087%" y="1493" width="0.0128%" height="15" fill="rgb(241,25,6)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="26.7087%" y="1477" width="0.0128%" height="15" fill="rgb(212,179,29)" fg:x="6268" fg:w="3"/><text x="26.9587%" y="1487.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (18 samples, 0.08%)</title><rect x="26.6491%" y="2069" width="0.0767%" height="15" fill="rgb(241,40,32)" fg:x="6254" fg:w="18"/><text x="26.8991%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="26.6491%" y="2053" width="0.0767%" height="15" fill="rgb(223,35,2)" fg:x="6254" fg:w="18"/><text x="26.8991%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="26.6491%" y="2037" width="0.0767%" height="15" fill="rgb(221,125,54)" fg:x="6254" fg:w="18"/><text x="26.8991%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="26.6491%" y="2021" width="0.0767%" height="15" fill="rgb(230,5,49)" fg:x="6254" fg:w="18"/><text x="26.8991%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="26.6491%" y="2005" width="0.0767%" height="15" fill="rgb(221,157,7)" fg:x="6254" fg:w="18"/><text x="26.8991%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="26.6491%" y="1989" width="0.0767%" height="15" fill="rgb(242,163,10)" fg:x="6254" fg:w="18"/><text x="26.8991%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="26.6491%" y="1973" width="0.0767%" height="15" fill="rgb(232,30,2)" fg:x="6254" fg:w="18"/><text x="26.8991%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="26.6917%" y="1957" width="0.0341%" height="15" fill="rgb(245,102,40)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="26.6917%" y="1941" width="0.0341%" height="15" fill="rgb(242,10,41)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1951.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="26.6917%" y="1925" width="0.0341%" height="15" fill="rgb(236,184,36)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="26.6917%" y="1909" width="0.0341%" height="15" fill="rgb(247,147,48)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="26.6917%" y="1893" width="0.0341%" height="15" fill="rgb(226,166,2)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="26.6917%" y="1877" width="0.0341%" height="15" fill="rgb(251,196,7)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="26.6917%" y="1861" width="0.0341%" height="15" fill="rgb(241,40,13)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="26.6917%" y="1845" width="0.0341%" height="15" fill="rgb(254,4,12)" fg:x="6264" fg:w="8"/><text x="26.9417%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="26.7002%" y="1829" width="0.0256%" height="15" fill="rgb(244,139,49)" fg:x="6266" fg:w="6"/><text x="26.9502%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="26.7002%" y="1813" width="0.0256%" height="15" fill="rgb(227,28,42)" fg:x="6266" fg:w="6"/><text x="26.9502%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="26.7002%" y="1797" width="0.0256%" height="15" fill="rgb(231,135,32)" fg:x="6266" fg:w="6"/><text x="26.9502%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.7087%" y="1781" width="0.0170%" height="15" fill="rgb(244,182,3)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.7087%" y="1765" width="0.0170%" height="15" fill="rgb(247,46,19)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.7087%" y="1749" width="0.0170%" height="15" fill="rgb(251,179,10)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.7087%" y="1733" width="0.0170%" height="15" fill="rgb(229,222,18)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.7087%" y="1717" width="0.0170%" height="15" fill="rgb(251,107,20)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.7087%" y="1701" width="0.0170%" height="15" fill="rgb(233,193,19)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.7087%" y="1685" width="0.0170%" height="15" fill="rgb(229,146,53)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.7087%" y="1669" width="0.0170%" height="15" fill="rgb(244,52,11)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.7087%" y="1653" width="0.0170%" height="15" fill="rgb(245,211,46)" fg:x="6268" fg:w="4"/><text x="26.9587%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="26.7258%" y="1893" width="0.0213%" height="15" fill="rgb(213,8,31)" fg:x="6272" fg:w="5"/><text x="26.9758%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="26.7258%" y="1877" width="0.0213%" height="15" fill="rgb(205,101,39)" fg:x="6272" fg:w="5"/><text x="26.9758%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="26.7258%" y="1861" width="0.0213%" height="15" fill="rgb(212,157,1)" fg:x="6272" fg:w="5"/><text x="26.9758%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="26.7258%" y="1845" width="0.0213%" height="15" fill="rgb(232,30,46)" fg:x="6272" fg:w="5"/><text x="26.9758%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="26.7343%" y="1829" width="0.0128%" height="15" fill="rgb(216,201,6)" fg:x="6274" fg:w="3"/><text x="26.9843%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="26.7343%" y="1813" width="0.0128%" height="15" fill="rgb(209,18,6)" fg:x="6274" fg:w="3"/><text x="26.9843%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="26.7343%" y="1797" width="0.0128%" height="15" fill="rgb(219,138,3)" fg:x="6274" fg:w="3"/><text x="26.9843%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (41 samples, 0.17%)</title><rect x="26.6022%" y="2181" width="0.1747%" height="15" fill="rgb(210,91,46)" fg:x="6243" fg:w="41"/><text x="26.8522%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (41 samples, 0.17%)</title><rect x="26.6022%" y="2165" width="0.1747%" height="15" fill="rgb(241,80,44)" fg:x="6243" fg:w="41"/><text x="26.8522%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (41 samples, 0.17%)</title><rect x="26.6022%" y="2149" width="0.1747%" height="15" fill="rgb(236,205,36)" fg:x="6243" fg:w="41"/><text x="26.8522%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.17%)</title><rect x="26.6022%" y="2133" width="0.1747%" height="15" fill="rgb(205,59,37)" fg:x="6243" fg:w="41"/><text x="26.8522%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (30 samples, 0.13%)</title><rect x="26.6491%" y="2117" width="0.1278%" height="15" fill="rgb(239,166,39)" fg:x="6254" fg:w="30"/><text x="26.8991%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.13%)</title><rect x="26.6491%" y="2101" width="0.1278%" height="15" fill="rgb(239,146,40)" fg:x="6254" fg:w="30"/><text x="26.8991%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30 samples, 0.13%)</title><rect x="26.6491%" y="2085" width="0.1278%" height="15" fill="rgb(231,11,52)" fg:x="6254" fg:w="30"/><text x="26.8991%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="26.7258%" y="2069" width="0.0511%" height="15" fill="rgb(253,21,37)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="26.7258%" y="2053" width="0.0511%" height="15" fill="rgb(224,87,39)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="2063.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="26.7258%" y="2037" width="0.0511%" height="15" fill="rgb(249,15,46)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="26.7258%" y="2021" width="0.0511%" height="15" fill="rgb(250,37,51)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="26.7258%" y="2005" width="0.0511%" height="15" fill="rgb(205,185,43)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="26.7258%" y="1989" width="0.0511%" height="15" fill="rgb(206,65,41)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="26.7258%" y="1973" width="0.0511%" height="15" fill="rgb(236,159,32)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="26.7258%" y="1957" width="0.0511%" height="15" fill="rgb(228,199,27)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="26.7258%" y="1941" width="0.0511%" height="15" fill="rgb(212,0,37)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="26.7258%" y="1925" width="0.0511%" height="15" fill="rgb(248,50,11)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="26.7258%" y="1909" width="0.0511%" height="15" fill="rgb(231,164,25)" fg:x="6272" fg:w="12"/><text x="26.9758%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="26.7471%" y="1893" width="0.0298%" height="15" fill="rgb(238,38,39)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="26.7471%" y="1877" width="0.0298%" height="15" fill="rgb(210,15,50)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1887.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="26.7471%" y="1861" width="0.0298%" height="15" fill="rgb(251,126,36)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="26.7471%" y="1845" width="0.0298%" height="15" fill="rgb(243,59,26)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="26.7471%" y="1829" width="0.0298%" height="15" fill="rgb(215,24,30)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="26.7471%" y="1813" width="0.0298%" height="15" fill="rgb(253,50,51)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="26.7471%" y="1797" width="0.0298%" height="15" fill="rgb(252,2,16)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="26.7471%" y="1781" width="0.0298%" height="15" fill="rgb(209,123,36)" fg:x="6277" fg:w="7"/><text x="26.9971%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="26.7556%" y="1765" width="0.0213%" height="15" fill="rgb(245,60,15)" fg:x="6279" fg:w="5"/><text x="27.0056%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="26.7556%" y="1749" width="0.0213%" height="15" fill="rgb(246,4,13)" fg:x="6279" fg:w="5"/><text x="27.0056%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="26.7556%" y="1733" width="0.0213%" height="15" fill="rgb(210,223,46)" fg:x="6279" fg:w="5"/><text x="27.0056%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="26.7641%" y="1717" width="0.0128%" height="15" fill="rgb(248,1,9)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="26.7641%" y="1701" width="0.0128%" height="15" fill="rgb(254,2,34)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1711.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="26.7641%" y="1685" width="0.0128%" height="15" fill="rgb(239,176,1)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="26.7641%" y="1669" width="0.0128%" height="15" fill="rgb(250,25,32)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="26.7641%" y="1653" width="0.0128%" height="15" fill="rgb(225,28,39)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="26.7641%" y="1637" width="0.0128%" height="15" fill="rgb(230,166,37)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.7641%" y="1621" width="0.0128%" height="15" fill="rgb(246,220,4)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.7641%" y="1605" width="0.0128%" height="15" fill="rgb(219,119,33)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.7641%" y="1589" width="0.0128%" height="15" fill="rgb(221,207,38)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1599.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.7641%" y="1573" width="0.0128%" height="15" fill="rgb(214,153,5)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.7641%" y="1557" width="0.0128%" height="15" fill="rgb(223,50,16)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1567.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.7641%" y="1541" width="0.0128%" height="15" fill="rgb(209,207,12)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1551.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.7641%" y="1525" width="0.0128%" height="15" fill="rgb(207,3,46)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.7641%" y="1509" width="0.0128%" height="15" fill="rgb(232,45,53)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1519.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.7641%" y="1493" width="0.0128%" height="15" fill="rgb(206,140,15)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.7641%" y="1477" width="0.0128%" height="15" fill="rgb(245,66,17)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1487.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.7641%" y="1461" width="0.0128%" height="15" fill="rgb(221,25,37)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1471.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.7641%" y="1445" width="0.0128%" height="15" fill="rgb(215,99,47)" fg:x="6281" fg:w="3"/><text x="27.0141%" y="1455.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="26.7769%" y="2037" width="0.0213%" height="15" fill="rgb(219,154,44)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="26.7769%" y="2021" width="0.0213%" height="15" fill="rgb(210,197,36)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="26.7769%" y="2005" width="0.0213%" height="15" fill="rgb(217,137,10)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="26.7769%" y="1989" width="0.0213%" height="15" fill="rgb(240,216,26)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="26.7769%" y="1973" width="0.0213%" height="15" fill="rgb(242,76,17)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="26.7769%" y="1957" width="0.0213%" height="15" fill="rgb(243,142,51)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="26.7769%" y="1941" width="0.0213%" height="15" fill="rgb(233,109,46)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="26.7769%" y="1925" width="0.0213%" height="15" fill="rgb(252,45,32)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="26.7769%" y="1909" width="0.0213%" height="15" fill="rgb(210,69,52)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="26.7769%" y="1893" width="0.0213%" height="15" fill="rgb(242,30,2)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="26.7769%" y="1877" width="0.0213%" height="15" fill="rgb(246,137,1)" fg:x="6284" fg:w="5"/><text x="27.0269%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="26.7769%" y="2053" width="0.0256%" height="15" fill="rgb(221,205,25)" fg:x="6284" fg:w="6"/><text x="27.0269%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="26.8025%" y="1893" width="0.0256%" height="15" fill="rgb(224,44,43)" fg:x="6290" fg:w="6"/><text x="27.0525%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="26.8025%" y="1877" width="0.0256%" height="15" fill="rgb(209,81,13)" fg:x="6290" fg:w="6"/><text x="27.0525%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="26.8025%" y="1861" width="0.0256%" height="15" fill="rgb(227,88,4)" fg:x="6290" fg:w="6"/><text x="27.0525%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="26.8025%" y="1845" width="0.0256%" height="15" fill="rgb(228,118,49)" fg:x="6290" fg:w="6"/><text x="27.0525%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="26.8110%" y="1829" width="0.0170%" height="15" fill="rgb(225,215,27)" fg:x="6292" fg:w="4"/><text x="27.0610%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="26.8110%" y="1813" width="0.0170%" height="15" fill="rgb(235,226,1)" fg:x="6292" fg:w="4"/><text x="27.0610%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="26.8110%" y="1797" width="0.0170%" height="15" fill="rgb(205,107,17)" fg:x="6292" fg:w="4"/><text x="27.0610%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="26.8365%" y="1717" width="0.0128%" height="15" fill="rgb(247,85,8)" fg:x="6298" fg:w="3"/><text x="27.0865%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8365%" y="1701" width="0.0128%" height="15" fill="rgb(230,220,20)" fg:x="6298" fg:w="3"/><text x="27.0865%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8365%" y="1685" width="0.0128%" height="15" fill="rgb(237,22,6)" fg:x="6298" fg:w="3"/><text x="27.0865%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.8365%" y="1669" width="0.0128%" height="15" fill="rgb(253,39,1)" fg:x="6298" fg:w="3"/><text x="27.0865%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.8365%" y="1653" width="0.0128%" height="15" fill="rgb(251,206,50)" fg:x="6298" fg:w="3"/><text x="27.0865%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="26.8025%" y="2005" width="0.0554%" height="15" fill="rgb(239,162,11)" fg:x="6290" fg:w="13"/><text x="27.0525%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="26.8025%" y="1989" width="0.0554%" height="15" fill="rgb(234,164,6)" fg:x="6290" fg:w="13"/><text x="27.0525%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="26.8025%" y="1973" width="0.0554%" height="15" fill="rgb(238,112,10)" fg:x="6290" fg:w="13"/><text x="27.0525%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="26.8025%" y="1957" width="0.0554%" height="15" fill="rgb(232,78,29)" fg:x="6290" fg:w="13"/><text x="27.0525%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="26.8025%" y="1941" width="0.0554%" height="15" fill="rgb(232,20,13)" fg:x="6290" fg:w="13"/><text x="27.0525%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="26.8025%" y="1925" width="0.0554%" height="15" fill="rgb(222,175,9)" fg:x="6290" fg:w="13"/><text x="27.0525%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="26.8025%" y="1909" width="0.0554%" height="15" fill="rgb(233,61,14)" fg:x="6290" fg:w="13"/><text x="27.0525%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="26.8280%" y="1893" width="0.0298%" height="15" fill="rgb(224,152,29)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="26.8280%" y="1877" width="0.0298%" height="15" fill="rgb(232,26,6)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1887.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="26.8280%" y="1861" width="0.0298%" height="15" fill="rgb(210,116,11)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="26.8280%" y="1845" width="0.0298%" height="15" fill="rgb(238,213,15)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="26.8280%" y="1829" width="0.0298%" height="15" fill="rgb(236,177,32)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="26.8280%" y="1813" width="0.0298%" height="15" fill="rgb(230,36,43)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="26.8280%" y="1797" width="0.0298%" height="15" fill="rgb(212,76,23)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="26.8280%" y="1781" width="0.0298%" height="15" fill="rgb(225,168,24)" fg:x="6296" fg:w="7"/><text x="27.0780%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="26.8365%" y="1765" width="0.0213%" height="15" fill="rgb(206,40,44)" fg:x="6298" fg:w="5"/><text x="27.0865%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="26.8365%" y="1749" width="0.0213%" height="15" fill="rgb(251,213,6)" fg:x="6298" fg:w="5"/><text x="27.0865%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="26.8365%" y="1733" width="0.0213%" height="15" fill="rgb(220,7,47)" fg:x="6298" fg:w="5"/><text x="27.0865%" y="1743.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="26.8664%" y="1717" width="0.0128%" height="15" fill="rgb(254,130,53)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8664%" y="1701" width="0.0128%" height="15" fill="rgb(240,2,46)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8664%" y="1685" width="0.0128%" height="15" fill="rgb(252,144,40)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.8664%" y="1669" width="0.0128%" height="15" fill="rgb(226,23,10)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.8664%" y="1653" width="0.0128%" height="15" fill="rgb(212,204,35)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="26.8664%" y="1637" width="0.0128%" height="15" fill="rgb(218,201,15)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="26.8664%" y="1621" width="0.0128%" height="15" fill="rgb(224,197,5)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="26.8664%" y="1605" width="0.0128%" height="15" fill="rgb(224,185,18)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="26.8664%" y="1589" width="0.0128%" height="15" fill="rgb(251,71,45)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="26.8664%" y="1573" width="0.0128%" height="15" fill="rgb(216,74,24)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="26.8664%" y="1557" width="0.0128%" height="15" fill="rgb(250,36,51)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8664%" y="1541" width="0.0128%" height="15" fill="rgb(209,224,28)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="26.8664%" y="1525" width="0.0128%" height="15" fill="rgb(228,5,10)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="26.8664%" y="1509" width="0.0128%" height="15" fill="rgb(250,57,40)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8664%" y="1493" width="0.0128%" height="15" fill="rgb(228,194,41)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="26.8664%" y="1477" width="0.0128%" height="15" fill="rgb(206,68,23)" fg:x="6305" fg:w="3"/><text x="27.1164%" y="1487.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="26.8578%" y="1829" width="0.0341%" height="15" fill="rgb(230,33,29)" fg:x="6303" fg:w="8"/><text x="27.1078%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="26.8578%" y="1813" width="0.0341%" height="15" fill="rgb(210,39,32)" fg:x="6303" fg:w="8"/><text x="27.1078%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="26.8578%" y="1797" width="0.0341%" height="15" fill="rgb(236,89,23)" fg:x="6303" fg:w="8"/><text x="27.1078%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="26.8578%" y="1781" width="0.0341%" height="15" fill="rgb(218,52,52)" fg:x="6303" fg:w="8"/><text x="27.1078%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="26.8664%" y="1765" width="0.0256%" height="15" fill="rgb(235,154,5)" fg:x="6305" fg:w="6"/><text x="27.1164%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="26.8664%" y="1749" width="0.0256%" height="15" fill="rgb(223,168,9)" fg:x="6305" fg:w="6"/><text x="27.1164%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="26.8664%" y="1733" width="0.0256%" height="15" fill="rgb(220,8,33)" fg:x="6305" fg:w="6"/><text x="27.1164%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="26.8792%" y="1717" width="0.0128%" height="15" fill="rgb(216,176,3)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="26.8792%" y="1701" width="0.0128%" height="15" fill="rgb(254,150,22)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1711.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="26.8792%" y="1685" width="0.0128%" height="15" fill="rgb(231,61,53)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="26.8792%" y="1669" width="0.0128%" height="15" fill="rgb(249,177,41)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="26.8792%" y="1653" width="0.0128%" height="15" fill="rgb(221,122,7)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8792%" y="1637" width="0.0128%" height="15" fill="rgb(215,115,7)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="26.8792%" y="1621" width="0.0128%" height="15" fill="rgb(218,108,33)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.8792%" y="1605" width="0.0128%" height="15" fill="rgb(221,205,39)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="26.8792%" y="1589" width="0.0128%" height="15" fill="rgb(220,171,18)" fg:x="6308" fg:w="3"/><text x="27.1292%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (179 samples, 0.76%)</title><rect x="26.1462%" y="2789" width="0.7627%" height="15" fill="rgb(236,188,29)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2799.50"></text></g><g><title>rayon_core::job::JobRef::execute (179 samples, 0.76%)</title><rect x="26.1462%" y="2773" width="0.7627%" height="15" fill="rgb(239,29,5)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2783.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (179 samples, 0.76%)</title><rect x="26.1462%" y="2757" width="0.7627%" height="15" fill="rgb(236,114,44)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (179 samples, 0.76%)</title><rect x="26.1462%" y="2741" width="0.7627%" height="15" fill="rgb(239,214,48)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (179 samples, 0.76%)</title><rect x="26.1462%" y="2725" width="0.7627%" height="15" fill="rgb(241,56,8)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (179 samples, 0.76%)</title><rect x="26.1462%" y="2709" width="0.7627%" height="15" fill="rgb(228,201,0)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2719.50"></text></g><g><title>std::panicking::try (179 samples, 0.76%)</title><rect x="26.1462%" y="2693" width="0.7627%" height="15" fill="rgb(226,219,34)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (179 samples, 0.76%)</title><rect x="26.1462%" y="2677" width="0.7627%" height="15" fill="rgb(209,204,54)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (179 samples, 0.76%)</title><rect x="26.1462%" y="2661" width="0.7627%" height="15" fill="rgb(251,160,17)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2671.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (179 samples, 0.76%)</title><rect x="26.1462%" y="2645" width="0.7627%" height="15" fill="rgb(235,15,25)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (179 samples, 0.76%)</title><rect x="26.1462%" y="2629" width="0.7627%" height="15" fill="rgb(216,209,28)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (179 samples, 0.76%)</title><rect x="26.1462%" y="2613" width="0.7627%" height="15" fill="rgb(248,123,21)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (179 samples, 0.76%)</title><rect x="26.1462%" y="2597" width="0.7627%" height="15" fill="rgb(226,138,44)" fg:x="6136" fg:w="179"/><text x="26.3962%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (167 samples, 0.71%)</title><rect x="26.1974%" y="2581" width="0.7116%" height="15" fill="rgb(211,104,54)" fg:x="6148" fg:w="167"/><text x="26.4474%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (167 samples, 0.71%)</title><rect x="26.1974%" y="2565" width="0.7116%" height="15" fill="rgb(241,198,15)" fg:x="6148" fg:w="167"/><text x="26.4474%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (167 samples, 0.71%)</title><rect x="26.1974%" y="2549" width="0.7116%" height="15" fill="rgb(227,155,54)" fg:x="6148" fg:w="167"/><text x="26.4474%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (125 samples, 0.53%)</title><rect x="26.3763%" y="2533" width="0.5326%" height="15" fill="rgb(225,131,31)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (125 samples, 0.53%)</title><rect x="26.3763%" y="2517" width="0.5326%" height="15" fill="rgb(242,40,17)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2527.50"></text></g><g><title>std::panicking::try (125 samples, 0.53%)</title><rect x="26.3763%" y="2501" width="0.5326%" height="15" fill="rgb(254,57,35)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (125 samples, 0.53%)</title><rect x="26.3763%" y="2485" width="0.5326%" height="15" fill="rgb(240,64,32)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (125 samples, 0.53%)</title><rect x="26.3763%" y="2469" width="0.5326%" height="15" fill="rgb(251,136,26)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (125 samples, 0.53%)</title><rect x="26.3763%" y="2453" width="0.5326%" height="15" fill="rgb(208,60,54)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (125 samples, 0.53%)</title><rect x="26.3763%" y="2437" width="0.5326%" height="15" fill="rgb(220,13,12)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (125 samples, 0.53%)</title><rect x="26.3763%" y="2421" width="0.5326%" height="15" fill="rgb(213,149,1)" fg:x="6190" fg:w="125"/><text x="26.6263%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (115 samples, 0.49%)</title><rect x="26.4190%" y="2405" width="0.4900%" height="15" fill="rgb(212,191,39)" fg:x="6200" fg:w="115"/><text x="26.6690%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (115 samples, 0.49%)</title><rect x="26.4190%" y="2389" width="0.4900%" height="15" fill="rgb(215,221,42)" fg:x="6200" fg:w="115"/><text x="26.6690%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (115 samples, 0.49%)</title><rect x="26.4190%" y="2373" width="0.4900%" height="15" fill="rgb(244,79,23)" fg:x="6200" fg:w="115"/><text x="26.6690%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (74 samples, 0.32%)</title><rect x="26.5937%" y="2357" width="0.3153%" height="15" fill="rgb(247,17,29)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (74 samples, 0.32%)</title><rect x="26.5937%" y="2341" width="0.3153%" height="15" fill="rgb(251,221,21)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2351.50"></text></g><g><title>std::panicking::try (74 samples, 0.32%)</title><rect x="26.5937%" y="2325" width="0.3153%" height="15" fill="rgb(207,202,34)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (74 samples, 0.32%)</title><rect x="26.5937%" y="2309" width="0.3153%" height="15" fill="rgb(217,4,34)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (74 samples, 0.32%)</title><rect x="26.5937%" y="2293" width="0.3153%" height="15" fill="rgb(253,17,16)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (74 samples, 0.32%)</title><rect x="26.5937%" y="2277" width="0.3153%" height="15" fill="rgb(223,91,48)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (74 samples, 0.32%)</title><rect x="26.5937%" y="2261" width="0.3153%" height="15" fill="rgb(244,191,22)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.32%)</title><rect x="26.5937%" y="2245" width="0.3153%" height="15" fill="rgb(211,107,14)" fg:x="6241" fg:w="74"/><text x="26.8437%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (72 samples, 0.31%)</title><rect x="26.6022%" y="2229" width="0.3068%" height="15" fill="rgb(232,81,23)" fg:x="6243" fg:w="72"/><text x="26.8522%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (72 samples, 0.31%)</title><rect x="26.6022%" y="2213" width="0.3068%" height="15" fill="rgb(237,126,14)" fg:x="6243" fg:w="72"/><text x="26.8522%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (72 samples, 0.31%)</title><rect x="26.6022%" y="2197" width="0.3068%" height="15" fill="rgb(230,65,39)" fg:x="6243" fg:w="72"/><text x="26.8522%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (31 samples, 0.13%)</title><rect x="26.7769%" y="2181" width="0.1321%" height="15" fill="rgb(208,106,41)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (31 samples, 0.13%)</title><rect x="26.7769%" y="2165" width="0.1321%" height="15" fill="rgb(206,125,25)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2175.50"></text></g><g><title>std::panicking::try (31 samples, 0.13%)</title><rect x="26.7769%" y="2149" width="0.1321%" height="15" fill="rgb(250,24,29)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (31 samples, 0.13%)</title><rect x="26.7769%" y="2133" width="0.1321%" height="15" fill="rgb(226,49,32)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (31 samples, 0.13%)</title><rect x="26.7769%" y="2117" width="0.1321%" height="15" fill="rgb(217,110,16)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (31 samples, 0.13%)</title><rect x="26.7769%" y="2101" width="0.1321%" height="15" fill="rgb(252,16,53)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (31 samples, 0.13%)</title><rect x="26.7769%" y="2085" width="0.1321%" height="15" fill="rgb(238,163,11)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.13%)</title><rect x="26.7769%" y="2069" width="0.1321%" height="15" fill="rgb(206,210,1)" fg:x="6284" fg:w="31"/><text x="27.0269%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="26.8025%" y="2053" width="0.1065%" height="15" fill="rgb(229,8,25)" fg:x="6290" fg:w="25"/><text x="27.0525%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="26.8025%" y="2037" width="0.1065%" height="15" fill="rgb(247,155,23)" fg:x="6290" fg:w="25"/><text x="27.0525%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="26.8025%" y="2021" width="0.1065%" height="15" fill="rgb(207,26,7)" fg:x="6290" fg:w="25"/><text x="27.0525%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="26.8578%" y="2005" width="0.0511%" height="15" fill="rgb(215,179,12)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="26.8578%" y="1989" width="0.0511%" height="15" fill="rgb(238,208,11)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1999.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="26.8578%" y="1973" width="0.0511%" height="15" fill="rgb(238,102,42)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="26.8578%" y="1957" width="0.0511%" height="15" fill="rgb(239,35,9)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="26.8578%" y="1941" width="0.0511%" height="15" fill="rgb(244,182,30)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="26.8578%" y="1925" width="0.0511%" height="15" fill="rgb(232,181,23)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="26.8578%" y="1909" width="0.0511%" height="15" fill="rgb(242,154,29)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="26.8578%" y="1893" width="0.0511%" height="15" fill="rgb(219,23,2)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="26.8578%" y="1877" width="0.0511%" height="15" fill="rgb(234,94,43)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="26.8578%" y="1861" width="0.0511%" height="15" fill="rgb(223,55,45)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="26.8578%" y="1845" width="0.0511%" height="15" fill="rgb(241,215,54)" fg:x="6303" fg:w="12"/><text x="27.1078%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="26.8919%" y="1829" width="0.0170%" height="15" fill="rgb(247,63,53)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="26.8919%" y="1813" width="0.0170%" height="15" fill="rgb(220,166,7)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1823.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="26.8919%" y="1797" width="0.0170%" height="15" fill="rgb(248,53,45)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="26.8919%" y="1781" width="0.0170%" height="15" fill="rgb(224,207,20)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="26.8919%" y="1765" width="0.0170%" height="15" fill="rgb(244,185,11)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="26.8919%" y="1749" width="0.0170%" height="15" fill="rgb(230,13,42)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="26.8919%" y="1733" width="0.0170%" height="15" fill="rgb(243,191,18)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="26.8919%" y="1717" width="0.0170%" height="15" fill="rgb(249,135,15)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="26.8919%" y="1701" width="0.0170%" height="15" fill="rgb(229,26,35)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1711.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="26.8919%" y="1685" width="0.0170%" height="15" fill="rgb(216,191,16)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="26.8919%" y="1669" width="0.0170%" height="15" fill="rgb(242,18,7)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1679.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="26.8919%" y="1653" width="0.0170%" height="15" fill="rgb(205,128,17)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1663.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="26.8919%" y="1637" width="0.0170%" height="15" fill="rgb(229,199,44)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="26.8919%" y="1621" width="0.0170%" height="15" fill="rgb(234,222,3)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1631.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="26.8919%" y="1605" width="0.0170%" height="15" fill="rgb(220,170,20)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="26.8919%" y="1589" width="0.0170%" height="15" fill="rgb(207,138,8)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1599.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="26.8919%" y="1573" width="0.0170%" height="15" fill="rgb(244,130,36)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1583.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="26.8919%" y="1557" width="0.0170%" height="15" fill="rgb(207,197,52)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="26.8919%" y="1541" width="0.0170%" height="15" fill="rgb(206,9,21)" fg:x="6311" fg:w="4"/><text x="27.1419%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (180 samples, 0.77%)</title><rect x="26.1462%" y="2821" width="0.7670%" height="15" fill="rgb(250,15,47)" fg:x="6136" fg:w="180"/><text x="26.3962%" y="2831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (180 samples, 0.77%)</title><rect x="26.1462%" y="2805" width="0.7670%" height="15" fill="rgb(235,202,14)" fg:x="6136" fg:w="180"/><text x="26.3962%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="26.9132%" y="2501" width="0.0469%" height="15" fill="rgb(211,180,47)" fg:x="6316" fg:w="11"/><text x="27.1632%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="26.9132%" y="2485" width="0.0469%" height="15" fill="rgb(209,61,11)" fg:x="6316" fg:w="11"/><text x="27.1632%" y="2495.50"></text></g><g><title>exp (11 samples, 0.05%)</title><rect x="26.9132%" y="2469" width="0.0469%" height="15" fill="rgb(243,197,29)" fg:x="6316" fg:w="11"/><text x="27.1632%" y="2479.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="26.9218%" y="2453" width="0.0384%" height="15" fill="rgb(216,185,16)" fg:x="6318" fg:w="9"/><text x="27.1718%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="26.9644%" y="2501" width="0.0170%" height="15" fill="rgb(248,5,15)" fg:x="6328" fg:w="4"/><text x="27.2144%" y="2511.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="26.9644%" y="2485" width="0.0170%" height="15" fill="rgb(240,39,41)" fg:x="6328" fg:w="4"/><text x="27.2144%" y="2495.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (17 samples, 0.07%)</title><rect x="26.9132%" y="2677" width="0.0724%" height="15" fill="rgb(224,220,43)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (17 samples, 0.07%)</title><rect x="26.9132%" y="2661" width="0.0724%" height="15" fill="rgb(215,21,24)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (17 samples, 0.07%)</title><rect x="26.9132%" y="2645" width="0.0724%" height="15" fill="rgb(220,102,8)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2655.50"></text></g><g><title>core::option::Option<T>::map (17 samples, 0.07%)</title><rect x="26.9132%" y="2629" width="0.0724%" height="15" fill="rgb(225,185,10)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (17 samples, 0.07%)</title><rect x="26.9132%" y="2613" width="0.0724%" height="15" fill="rgb(212,108,24)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (17 samples, 0.07%)</title><rect x="26.9132%" y="2597" width="0.0724%" height="15" fill="rgb(237,27,0)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (17 samples, 0.07%)</title><rect x="26.9132%" y="2581" width="0.0724%" height="15" fill="rgb(212,106,38)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2591.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (17 samples, 0.07%)</title><rect x="26.9132%" y="2565" width="0.0724%" height="15" fill="rgb(210,125,30)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2575.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (17 samples, 0.07%)</title><rect x="26.9132%" y="2549" width="0.0724%" height="15" fill="rgb(215,219,1)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (17 samples, 0.07%)</title><rect x="26.9132%" y="2533" width="0.0724%" height="15" fill="rgb(223,10,12)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2543.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (17 samples, 0.07%)</title><rect x="26.9132%" y="2517" width="0.0724%" height="15" fill="rgb(245,40,34)" fg:x="6316" fg:w="17"/><text x="27.1632%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (19 samples, 0.08%)</title><rect x="26.9132%" y="2693" width="0.0810%" height="15" fill="rgb(211,185,19)" fg:x="6316" fg:w="19"/><text x="27.1632%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="26.9942%" y="2389" width="0.0256%" height="15" fill="rgb(243,190,43)" fg:x="6335" fg:w="6"/><text x="27.2442%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="26.9942%" y="2373" width="0.0256%" height="15" fill="rgb(232,208,29)" fg:x="6335" fg:w="6"/><text x="27.2442%" y="2383.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="26.9985%" y="2357" width="0.0213%" height="15" fill="rgb(234,134,27)" fg:x="6336" fg:w="5"/><text x="27.2485%" y="2367.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="27.0070%" y="2341" width="0.0128%" height="15" fill="rgb(225,41,29)" fg:x="6338" fg:w="3"/><text x="27.2570%" y="2351.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="26.9942%" y="2405" width="0.0426%" height="15" fill="rgb(241,214,44)" fg:x="6335" fg:w="10"/><text x="27.2442%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="26.9942%" y="2565" width="0.0469%" height="15" fill="rgb(205,219,41)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (11 samples, 0.05%)</title><rect x="26.9942%" y="2549" width="0.0469%" height="15" fill="rgb(226,15,26)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (11 samples, 0.05%)</title><rect x="26.9942%" y="2533" width="0.0469%" height="15" fill="rgb(210,83,41)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (11 samples, 0.05%)</title><rect x="26.9942%" y="2517" width="0.0469%" height="15" fill="rgb(247,9,39)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (11 samples, 0.05%)</title><rect x="26.9942%" y="2501" width="0.0469%" height="15" fill="rgb(209,37,30)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (11 samples, 0.05%)</title><rect x="26.9942%" y="2485" width="0.0469%" height="15" fill="rgb(248,170,46)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (11 samples, 0.05%)</title><rect x="26.9942%" y="2469" width="0.0469%" height="15" fill="rgb(237,129,44)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (11 samples, 0.05%)</title><rect x="26.9942%" y="2453" width="0.0469%" height="15" fill="rgb(225,117,51)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="26.9942%" y="2437" width="0.0469%" height="15" fill="rgb(212,165,2)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (11 samples, 0.05%)</title><rect x="26.9942%" y="2421" width="0.0469%" height="15" fill="rgb(213,53,45)" fg:x="6335" fg:w="11"/><text x="27.2442%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="26.9942%" y="2581" width="0.0639%" height="15" fill="rgb(220,148,3)" fg:x="6335" fg:w="15"/><text x="27.2442%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="27.0411%" y="2565" width="0.0170%" height="15" fill="rgb(228,37,29)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2575.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="27.0411%" y="2549" width="0.0170%" height="15" fill="rgb(209,76,29)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="27.0411%" y="2533" width="0.0170%" height="15" fill="rgb(215,90,5)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="27.0411%" y="2517" width="0.0170%" height="15" fill="rgb(227,207,32)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="27.0411%" y="2501" width="0.0170%" height="15" fill="rgb(251,218,44)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="27.0411%" y="2485" width="0.0170%" height="15" fill="rgb(211,44,16)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="27.0411%" y="2469" width="0.0170%" height="15" fill="rgb(242,170,37)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2479.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="27.0411%" y="2453" width="0.0170%" height="15" fill="rgb(205,181,22)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="27.0411%" y="2437" width="0.0170%" height="15" fill="rgb(228,130,19)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2447.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="27.0411%" y="2421" width="0.0170%" height="15" fill="rgb(228,9,15)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="27.0411%" y="2405" width="0.0170%" height="15" fill="rgb(219,66,48)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="27.0411%" y="2389" width="0.0170%" height="15" fill="rgb(234,203,10)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="27.0411%" y="2373" width="0.0170%" height="15" fill="rgb(219,209,1)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="27.0411%" y="2357" width="0.0170%" height="15" fill="rgb(206,167,9)" fg:x="6346" fg:w="4"/><text x="27.2911%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="27.0453%" y="2341" width="0.0128%" height="15" fill="rgb(210,11,39)" fg:x="6347" fg:w="3"/><text x="27.2953%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="27.0581%" y="2277" width="0.0128%" height="15" fill="rgb(251,90,47)" fg:x="6350" fg:w="3"/><text x="27.3081%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="27.0581%" y="2261" width="0.0128%" height="15" fill="rgb(237,7,4)" fg:x="6350" fg:w="3"/><text x="27.3081%" y="2271.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="27.0581%" y="2245" width="0.0128%" height="15" fill="rgb(232,205,47)" fg:x="6350" fg:w="3"/><text x="27.3081%" y="2255.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="27.0581%" y="2229" width="0.0128%" height="15" fill="rgb(215,86,48)" fg:x="6350" fg:w="3"/><text x="27.3081%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="27.0752%" y="2277" width="0.0128%" height="15" fill="rgb(232,14,47)" fg:x="6354" fg:w="3"/><text x="27.3252%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="27.0752%" y="2261" width="0.0128%" height="15" fill="rgb(240,28,46)" fg:x="6354" fg:w="3"/><text x="27.3252%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (11 samples, 0.05%)</title><rect x="27.0581%" y="2293" width="0.0469%" height="15" fill="rgb(224,85,5)" fg:x="6350" fg:w="11"/><text x="27.3081%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="27.0879%" y="2277" width="0.0170%" height="15" fill="rgb(219,34,25)" fg:x="6357" fg:w="4"/><text x="27.3379%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="27.0879%" y="2261" width="0.0170%" height="15" fill="rgb(247,137,45)" fg:x="6357" fg:w="4"/><text x="27.3379%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="27.0581%" y="2469" width="0.0511%" height="15" fill="rgb(237,121,47)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="27.0581%" y="2453" width="0.0511%" height="15" fill="rgb(247,148,27)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (12 samples, 0.05%)</title><rect x="27.0581%" y="2437" width="0.0511%" height="15" fill="rgb(220,44,0)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (12 samples, 0.05%)</title><rect x="27.0581%" y="2421" width="0.0511%" height="15" fill="rgb(236,61,29)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (12 samples, 0.05%)</title><rect x="27.0581%" y="2405" width="0.0511%" height="15" fill="rgb(244,180,35)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (12 samples, 0.05%)</title><rect x="27.0581%" y="2389" width="0.0511%" height="15" fill="rgb(242,14,54)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (12 samples, 0.05%)</title><rect x="27.0581%" y="2373" width="0.0511%" height="15" fill="rgb(206,24,45)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (12 samples, 0.05%)</title><rect x="27.0581%" y="2357" width="0.0511%" height="15" fill="rgb(215,211,6)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (12 samples, 0.05%)</title><rect x="27.0581%" y="2341" width="0.0511%" height="15" fill="rgb(207,56,2)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="27.0581%" y="2325" width="0.0511%" height="15" fill="rgb(220,135,9)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (12 samples, 0.05%)</title><rect x="27.0581%" y="2309" width="0.0511%" height="15" fill="rgb(214,145,52)" fg:x="6350" fg:w="12"/><text x="27.3081%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.1093%" y="2357" width="0.0128%" height="15" fill="rgb(241,83,53)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2367.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="27.1093%" y="2341" width="0.0128%" height="15" fill="rgb(222,66,13)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="27.1093%" y="2325" width="0.0128%" height="15" fill="rgb(239,164,54)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2335.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="27.1093%" y="2309" width="0.0128%" height="15" fill="rgb(216,189,13)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2319.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="27.1093%" y="2293" width="0.0128%" height="15" fill="rgb(228,212,51)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="27.1093%" y="2277" width="0.0128%" height="15" fill="rgb(207,190,21)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="27.1093%" y="2261" width="0.0128%" height="15" fill="rgb(245,28,35)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="27.1093%" y="2245" width="0.0128%" height="15" fill="rgb(239,23,40)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="27.1093%" y="2229" width="0.0128%" height="15" fill="rgb(242,10,51)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2239.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="27.1093%" y="2213" width="0.0128%" height="15" fill="rgb(207,186,5)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2223.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="27.1093%" y="2197" width="0.0128%" height="15" fill="rgb(242,21,16)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="27.1093%" y="2181" width="0.0128%" height="15" fill="rgb(237,0,53)" fg:x="6362" fg:w="3"/><text x="27.3593%" y="2191.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="27.1220%" y="2069" width="0.0256%" height="15" fill="rgb(215,8,52)" fg:x="6365" fg:w="6"/><text x="27.3720%" y="2079.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="27.1306%" y="2053" width="0.0170%" height="15" fill="rgb(248,62,44)" fg:x="6367" fg:w="4"/><text x="27.3806%" y="2063.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="27.1306%" y="2037" width="0.0170%" height="15" fill="rgb(224,83,15)" fg:x="6367" fg:w="4"/><text x="27.3806%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="27.1220%" y="2309" width="0.0298%" height="15" fill="rgb(249,100,46)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="27.1220%" y="2293" width="0.0298%" height="15" fill="rgb(213,35,48)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="27.1220%" y="2277" width="0.0298%" height="15" fill="rgb(251,2,13)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="27.1220%" y="2261" width="0.0298%" height="15" fill="rgb(212,132,21)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="27.1220%" y="2245" width="0.0298%" height="15" fill="rgb(247,17,21)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2255.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="27.1220%" y="2229" width="0.0298%" height="15" fill="rgb(220,177,38)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="27.1220%" y="2213" width="0.0298%" height="15" fill="rgb(233,219,21)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2223.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="27.1220%" y="2197" width="0.0298%" height="15" fill="rgb(246,17,7)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2207.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="27.1220%" y="2181" width="0.0298%" height="15" fill="rgb(212,4,22)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2191.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="27.1220%" y="2165" width="0.0298%" height="15" fill="rgb(243,85,21)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="27.1220%" y="2149" width="0.0298%" height="15" fill="rgb(232,218,2)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="27.1220%" y="2133" width="0.0298%" height="15" fill="rgb(253,168,47)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="27.1220%" y="2117" width="0.0298%" height="15" fill="rgb(238,101,25)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2127.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="27.1220%" y="2101" width="0.0298%" height="15" fill="rgb(251,86,12)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2111.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="27.1220%" y="2085" width="0.0298%" height="15" fill="rgb(241,112,44)" fg:x="6365" fg:w="7"/><text x="27.3720%" y="2095.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="27.1519%" y="2005" width="0.0213%" height="15" fill="rgb(224,28,25)" fg:x="6372" fg:w="5"/><text x="27.4019%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="27.1561%" y="1989" width="0.0170%" height="15" fill="rgb(209,201,1)" fg:x="6373" fg:w="4"/><text x="27.4061%" y="1999.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="27.1561%" y="1973" width="0.0170%" height="15" fill="rgb(231,30,22)" fg:x="6373" fg:w="4"/><text x="27.4061%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="27.1093%" y="2421" width="0.0682%" height="15" fill="rgb(247,96,31)" fg:x="6362" fg:w="16"/><text x="27.3593%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="27.1093%" y="2405" width="0.0682%" height="15" fill="rgb(251,100,12)" fg:x="6362" fg:w="16"/><text x="27.3593%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="27.1093%" y="2389" width="0.0682%" height="15" fill="rgb(224,174,7)" fg:x="6362" fg:w="16"/><text x="27.3593%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="27.1093%" y="2373" width="0.0682%" height="15" fill="rgb(231,168,19)" fg:x="6362" fg:w="16"/><text x="27.3593%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="27.1220%" y="2357" width="0.0554%" height="15" fill="rgb(226,85,5)" fg:x="6365" fg:w="13"/><text x="27.3720%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="27.1220%" y="2341" width="0.0554%" height="15" fill="rgb(210,215,5)" fg:x="6365" fg:w="13"/><text x="27.3720%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="27.1220%" y="2325" width="0.0554%" height="15" fill="rgb(233,70,8)" fg:x="6365" fg:w="13"/><text x="27.3720%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="27.1519%" y="2309" width="0.0256%" height="15" fill="rgb(229,109,53)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="27.1519%" y="2293" width="0.0256%" height="15" fill="rgb(213,125,35)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2303.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="27.1519%" y="2277" width="0.0256%" height="15" fill="rgb(215,12,48)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="27.1519%" y="2261" width="0.0256%" height="15" fill="rgb(207,12,38)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="27.1519%" y="2245" width="0.0256%" height="15" fill="rgb(216,229,2)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="27.1519%" y="2229" width="0.0256%" height="15" fill="rgb(229,209,31)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="27.1519%" y="2213" width="0.0256%" height="15" fill="rgb(239,57,22)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="27.1519%" y="2197" width="0.0256%" height="15" fill="rgb(239,119,54)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="27.1519%" y="2181" width="0.0256%" height="15" fill="rgb(231,80,45)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="27.1519%" y="2165" width="0.0256%" height="15" fill="rgb(219,138,19)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="27.1519%" y="2149" width="0.0256%" height="15" fill="rgb(216,53,26)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="27.1519%" y="2133" width="0.0256%" height="15" fill="rgb(224,30,16)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="27.1519%" y="2117" width="0.0256%" height="15" fill="rgb(224,151,24)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="27.1519%" y="2101" width="0.0256%" height="15" fill="rgb(236,75,7)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="27.1519%" y="2085" width="0.0256%" height="15" fill="rgb(248,106,42)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="27.1519%" y="2069" width="0.0256%" height="15" fill="rgb(222,217,11)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="27.1519%" y="2053" width="0.0256%" height="15" fill="rgb(234,143,31)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="27.1519%" y="2037" width="0.0256%" height="15" fill="rgb(237,148,28)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="27.1519%" y="2021" width="0.0256%" height="15" fill="rgb(241,151,6)" fg:x="6372" fg:w="6"/><text x="27.4019%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="27.1774%" y="2293" width="0.0170%" height="15" fill="rgb(226,55,18)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="27.1774%" y="2277" width="0.0170%" height="15" fill="rgb(226,196,6)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="27.1774%" y="2261" width="0.0170%" height="15" fill="rgb(251,228,11)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="27.1774%" y="2245" width="0.0170%" height="15" fill="rgb(219,197,15)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="27.1774%" y="2229" width="0.0170%" height="15" fill="rgb(243,105,44)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="27.1774%" y="2213" width="0.0170%" height="15" fill="rgb(205,183,40)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="27.1774%" y="2197" width="0.0170%" height="15" fill="rgb(232,138,46)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="27.1774%" y="2181" width="0.0170%" height="15" fill="rgb(234,161,14)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="27.1774%" y="2165" width="0.0170%" height="15" fill="rgb(238,211,18)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="27.1774%" y="2149" width="0.0170%" height="15" fill="rgb(217,130,2)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="27.1774%" y="2133" width="0.0170%" height="15" fill="rgb(251,17,29)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="27.1774%" y="2117" width="0.0170%" height="15" fill="rgb(243,18,0)" fg:x="6378" fg:w="4"/><text x="27.4274%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="27.1817%" y="2101" width="0.0128%" height="15" fill="rgb(227,220,45)" fg:x="6379" fg:w="3"/><text x="27.4317%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="27.1817%" y="2085" width="0.0128%" height="15" fill="rgb(212,34,2)" fg:x="6379" fg:w="3"/><text x="27.4317%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="27.1945%" y="1989" width="0.0128%" height="15" fill="rgb(236,23,8)" fg:x="6382" fg:w="3"/><text x="27.4445%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="27.1945%" y="1973" width="0.0128%" height="15" fill="rgb(210,113,39)" fg:x="6382" fg:w="3"/><text x="27.4445%" y="1983.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="27.1945%" y="1957" width="0.0128%" height="15" fill="rgb(243,123,48)" fg:x="6382" fg:w="3"/><text x="27.4445%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="27.1945%" y="2245" width="0.0170%" height="15" fill="rgb(223,175,36)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="27.1945%" y="2229" width="0.0170%" height="15" fill="rgb(226,100,30)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="27.1945%" y="2213" width="0.0170%" height="15" fill="rgb(221,225,39)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="27.1945%" y="2197" width="0.0170%" height="15" fill="rgb(224,222,42)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="27.1945%" y="2181" width="0.0170%" height="15" fill="rgb(221,53,1)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="27.1945%" y="2165" width="0.0170%" height="15" fill="rgb(216,187,48)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="27.1945%" y="2149" width="0.0170%" height="15" fill="rgb(220,108,2)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="27.1945%" y="2133" width="0.0170%" height="15" fill="rgb(216,13,42)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="27.1945%" y="2117" width="0.0170%" height="15" fill="rgb(205,14,29)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="27.1945%" y="2101" width="0.0170%" height="15" fill="rgb(217,168,30)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="27.1945%" y="2085" width="0.0170%" height="15" fill="rgb(246,173,54)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="27.1945%" y="2069" width="0.0170%" height="15" fill="rgb(227,177,11)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="27.1945%" y="2053" width="0.0170%" height="15" fill="rgb(223,215,51)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="27.1945%" y="2037" width="0.0170%" height="15" fill="rgb(253,4,17)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="27.1945%" y="2021" width="0.0170%" height="15" fill="rgb(206,150,43)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="27.1945%" y="2005" width="0.0170%" height="15" fill="rgb(241,100,52)" fg:x="6382" fg:w="4"/><text x="27.4445%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="27.2115%" y="1925" width="0.0128%" height="15" fill="rgb(234,120,21)" fg:x="6386" fg:w="3"/><text x="27.4615%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="27.2115%" y="1909" width="0.0128%" height="15" fill="rgb(231,60,11)" fg:x="6386" fg:w="3"/><text x="27.4615%" y="1919.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="27.2115%" y="1893" width="0.0128%" height="15" fill="rgb(247,77,50)" fg:x="6386" fg:w="3"/><text x="27.4615%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="27.2115%" y="2117" width="0.0213%" height="15" fill="rgb(251,199,54)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="27.2115%" y="2101" width="0.0213%" height="15" fill="rgb(212,120,38)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="27.2115%" y="2085" width="0.0213%" height="15" fill="rgb(250,161,37)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="27.2115%" y="2069" width="0.0213%" height="15" fill="rgb(232,158,45)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="27.2115%" y="2053" width="0.0213%" height="15" fill="rgb(233,114,2)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="27.2115%" y="2037" width="0.0213%" height="15" fill="rgb(248,139,0)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="27.2115%" y="2021" width="0.0213%" height="15" fill="rgb(222,164,18)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="27.2115%" y="2005" width="0.0213%" height="15" fill="rgb(221,140,42)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="27.2115%" y="1989" width="0.0213%" height="15" fill="rgb(209,186,11)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="27.2115%" y="1973" width="0.0213%" height="15" fill="rgb(254,212,38)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="27.2115%" y="1957" width="0.0213%" height="15" fill="rgb(219,156,31)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="27.2115%" y="1941" width="0.0213%" height="15" fill="rgb(222,148,42)" fg:x="6386" fg:w="5"/><text x="27.4615%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (42 samples, 0.18%)</title><rect x="27.0581%" y="2533" width="0.1790%" height="15" fill="rgb(225,65,5)" fg:x="6350" fg:w="42"/><text x="27.3081%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (42 samples, 0.18%)</title><rect x="27.0581%" y="2517" width="0.1790%" height="15" fill="rgb(235,28,12)" fg:x="6350" fg:w="42"/><text x="27.3081%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42 samples, 0.18%)</title><rect x="27.0581%" y="2501" width="0.1790%" height="15" fill="rgb(245,58,4)" fg:x="6350" fg:w="42"/><text x="27.3081%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.18%)</title><rect x="27.0581%" y="2485" width="0.1790%" height="15" fill="rgb(235,118,5)" fg:x="6350" fg:w="42"/><text x="27.3081%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (30 samples, 0.13%)</title><rect x="27.1093%" y="2469" width="0.1278%" height="15" fill="rgb(253,196,3)" fg:x="6362" fg:w="30"/><text x="27.3593%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.13%)</title><rect x="27.1093%" y="2453" width="0.1278%" height="15" fill="rgb(238,90,28)" fg:x="6362" fg:w="30"/><text x="27.3593%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30 samples, 0.13%)</title><rect x="27.1093%" y="2437" width="0.1278%" height="15" fill="rgb(254,227,4)" fg:x="6362" fg:w="30"/><text x="27.3593%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="27.1774%" y="2421" width="0.0597%" height="15" fill="rgb(237,114,35)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="27.1774%" y="2405" width="0.0597%" height="15" fill="rgb(221,147,29)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2415.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="27.1774%" y="2389" width="0.0597%" height="15" fill="rgb(216,201,17)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="27.1774%" y="2373" width="0.0597%" height="15" fill="rgb(251,46,50)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="27.1774%" y="2357" width="0.0597%" height="15" fill="rgb(216,143,48)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="27.1774%" y="2341" width="0.0597%" height="15" fill="rgb(224,62,51)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="27.1774%" y="2325" width="0.0597%" height="15" fill="rgb(232,152,20)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="27.1774%" y="2309" width="0.0597%" height="15" fill="rgb(233,194,7)" fg:x="6378" fg:w="14"/><text x="27.4274%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="27.1945%" y="2293" width="0.0426%" height="15" fill="rgb(207,33,22)" fg:x="6382" fg:w="10"/><text x="27.4445%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="27.1945%" y="2277" width="0.0426%" height="15" fill="rgb(226,54,34)" fg:x="6382" fg:w="10"/><text x="27.4445%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="27.1945%" y="2261" width="0.0426%" height="15" fill="rgb(227,161,47)" fg:x="6382" fg:w="10"/><text x="27.4445%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="27.2115%" y="2245" width="0.0256%" height="15" fill="rgb(218,58,37)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="27.2115%" y="2229" width="0.0256%" height="15" fill="rgb(208,173,18)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2239.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="27.2115%" y="2213" width="0.0256%" height="15" fill="rgb(230,159,11)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="27.2115%" y="2197" width="0.0256%" height="15" fill="rgb(238,90,51)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="27.2115%" y="2181" width="0.0256%" height="15" fill="rgb(225,97,36)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="27.2115%" y="2165" width="0.0256%" height="15" fill="rgb(211,205,42)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="27.2115%" y="2149" width="0.0256%" height="15" fill="rgb(219,152,7)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="27.2115%" y="2133" width="0.0256%" height="15" fill="rgb(222,79,10)" fg:x="6386" fg:w="6"/><text x="27.4615%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="27.2371%" y="2533" width="0.0256%" height="15" fill="rgb(242,13,11)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="27.2371%" y="2517" width="0.0256%" height="15" fill="rgb(231,143,41)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="27.2371%" y="2501" width="0.0256%" height="15" fill="rgb(222,147,19)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="27.2371%" y="2485" width="0.0256%" height="15" fill="rgb(235,5,39)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="27.2371%" y="2469" width="0.0256%" height="15" fill="rgb(246,155,51)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="27.2371%" y="2453" width="0.0256%" height="15" fill="rgb(218,157,4)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="27.2371%" y="2437" width="0.0256%" height="15" fill="rgb(226,184,4)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="27.2371%" y="2421" width="0.0256%" height="15" fill="rgb(210,103,26)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2431.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="27.2371%" y="2405" width="0.0256%" height="15" fill="rgb(228,23,31)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="27.2371%" y="2389" width="0.0256%" height="15" fill="rgb(205,176,34)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="27.2371%" y="2373" width="0.0256%" height="15" fill="rgb(246,213,37)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="27.2371%" y="2357" width="0.0256%" height="15" fill="rgb(213,52,45)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="27.2371%" y="2341" width="0.0256%" height="15" fill="rgb(249,9,52)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="27.2371%" y="2325" width="0.0256%" height="15" fill="rgb(205,97,16)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="27.2371%" y="2309" width="0.0256%" height="15" fill="rgb(214,11,46)" fg:x="6392" fg:w="6"/><text x="27.4871%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="27.2456%" y="2293" width="0.0170%" height="15" fill="rgb(221,66,18)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="27.2456%" y="2277" width="0.0170%" height="15" fill="rgb(213,49,1)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="27.2456%" y="2261" width="0.0170%" height="15" fill="rgb(232,75,51)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="27.2456%" y="2245" width="0.0170%" height="15" fill="rgb(208,218,40)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="27.2456%" y="2229" width="0.0170%" height="15" fill="rgb(206,144,50)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2239.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="27.2456%" y="2213" width="0.0170%" height="15" fill="rgb(216,9,51)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="27.2456%" y="2197" width="0.0170%" height="15" fill="rgb(226,6,53)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="27.2456%" y="2181" width="0.0170%" height="15" fill="rgb(216,9,50)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="27.2456%" y="2165" width="0.0170%" height="15" fill="rgb(214,101,31)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="27.2456%" y="2149" width="0.0170%" height="15" fill="rgb(247,85,17)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="27.2456%" y="2133" width="0.0170%" height="15" fill="rgb(248,138,25)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="27.2456%" y="2117" width="0.0170%" height="15" fill="rgb(225,146,20)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="27.2456%" y="2101" width="0.0170%" height="15" fill="rgb(224,184,17)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="27.2456%" y="2085" width="0.0170%" height="15" fill="rgb(231,10,20)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="27.2456%" y="2069" width="0.0170%" height="15" fill="rgb(210,93,37)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="27.2456%" y="2053" width="0.0170%" height="15" fill="rgb(226,84,42)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="27.2456%" y="2037" width="0.0170%" height="15" fill="rgb(253,192,7)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="27.2456%" y="2021" width="0.0170%" height="15" fill="rgb(214,107,27)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="27.2456%" y="2005" width="0.0170%" height="15" fill="rgb(238,146,21)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="27.2456%" y="1989" width="0.0170%" height="15" fill="rgb(209,136,30)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="27.2456%" y="1973" width="0.0170%" height="15" fill="rgb(226,60,22)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="27.2456%" y="1957" width="0.0170%" height="15" fill="rgb(243,92,26)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="27.2456%" y="1941" width="0.0170%" height="15" fill="rgb(211,85,33)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="27.2456%" y="1925" width="0.0170%" height="15" fill="rgb(243,187,44)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="27.2456%" y="1909" width="0.0170%" height="15" fill="rgb(251,172,23)" fg:x="6394" fg:w="4"/><text x="27.4956%" y="1919.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="27.2627%" y="2213" width="0.0213%" height="15" fill="rgb(254,162,50)" fg:x="6398" fg:w="5"/><text x="27.5127%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="27.2627%" y="2197" width="0.0213%" height="15" fill="rgb(239,14,53)" fg:x="6398" fg:w="5"/><text x="27.5127%" y="2207.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="27.2627%" y="2181" width="0.0213%" height="15" fill="rgb(242,208,8)" fg:x="6398" fg:w="5"/><text x="27.5127%" y="2191.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="27.2669%" y="2165" width="0.0170%" height="15" fill="rgb(225,61,41)" fg:x="6399" fg:w="4"/><text x="27.5169%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="27.2882%" y="2213" width="0.0128%" height="15" fill="rgb(219,154,6)" fg:x="6404" fg:w="3"/><text x="27.5382%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="27.2882%" y="2197" width="0.0128%" height="15" fill="rgb(227,223,44)" fg:x="6404" fg:w="3"/><text x="27.5382%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (15 samples, 0.06%)</title><rect x="27.2627%" y="2229" width="0.0639%" height="15" fill="rgb(220,188,6)" fg:x="6398" fg:w="15"/><text x="27.5127%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (6 samples, 0.03%)</title><rect x="27.3010%" y="2213" width="0.0256%" height="15" fill="rgb(216,65,22)" fg:x="6407" fg:w="6"/><text x="27.5510%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (6 samples, 0.03%)</title><rect x="27.3010%" y="2197" width="0.0256%" height="15" fill="rgb(236,66,46)" fg:x="6407" fg:w="6"/><text x="27.5510%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (16 samples, 0.07%)</title><rect x="27.2627%" y="2405" width="0.0682%" height="15" fill="rgb(211,150,52)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (16 samples, 0.07%)</title><rect x="27.2627%" y="2389" width="0.0682%" height="15" fill="rgb(253,89,19)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (16 samples, 0.07%)</title><rect x="27.2627%" y="2373" width="0.0682%" height="15" fill="rgb(245,4,1)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (16 samples, 0.07%)</title><rect x="27.2627%" y="2357" width="0.0682%" height="15" fill="rgb(230,109,16)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (16 samples, 0.07%)</title><rect x="27.2627%" y="2341" width="0.0682%" height="15" fill="rgb(213,7,47)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (16 samples, 0.07%)</title><rect x="27.2627%" y="2325" width="0.0682%" height="15" fill="rgb(242,148,14)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (16 samples, 0.07%)</title><rect x="27.2627%" y="2309" width="0.0682%" height="15" fill="rgb(238,51,34)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (16 samples, 0.07%)</title><rect x="27.2627%" y="2293" width="0.0682%" height="15" fill="rgb(222,49,22)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (16 samples, 0.07%)</title><rect x="27.2627%" y="2277" width="0.0682%" height="15" fill="rgb(237,102,50)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (16 samples, 0.07%)</title><rect x="27.2627%" y="2261" width="0.0682%" height="15" fill="rgb(237,195,8)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (16 samples, 0.07%)</title><rect x="27.2627%" y="2245" width="0.0682%" height="15" fill="rgb(245,60,18)" fg:x="6398" fg:w="16"/><text x="27.5127%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.3308%" y="2293" width="0.0128%" height="15" fill="rgb(253,74,32)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="27.3308%" y="2277" width="0.0128%" height="15" fill="rgb(240,91,39)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="27.3308%" y="2261" width="0.0128%" height="15" fill="rgb(221,162,34)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="27.3308%" y="2245" width="0.0128%" height="15" fill="rgb(223,32,2)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="27.3308%" y="2229" width="0.0128%" height="15" fill="rgb(245,220,46)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="27.3308%" y="2213" width="0.0128%" height="15" fill="rgb(216,38,33)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="27.3308%" y="2197" width="0.0128%" height="15" fill="rgb(210,123,14)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="27.3308%" y="2181" width="0.0128%" height="15" fill="rgb(214,38,47)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="27.3308%" y="2165" width="0.0128%" height="15" fill="rgb(244,180,16)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="27.3308%" y="2149" width="0.0128%" height="15" fill="rgb(252,21,32)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="27.3308%" y="2133" width="0.0128%" height="15" fill="rgb(245,218,31)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="27.3308%" y="2117" width="0.0128%" height="15" fill="rgb(247,81,18)" fg:x="6414" fg:w="3"/><text x="27.5808%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="27.3436%" y="2181" width="0.0256%" height="15" fill="rgb(220,151,1)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="27.3436%" y="2165" width="0.0256%" height="15" fill="rgb(211,157,11)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="27.3436%" y="2149" width="0.0256%" height="15" fill="rgb(239,46,30)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="27.3436%" y="2133" width="0.0256%" height="15" fill="rgb(236,144,43)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="27.3436%" y="2117" width="0.0256%" height="15" fill="rgb(206,71,45)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="27.3436%" y="2101" width="0.0256%" height="15" fill="rgb(240,85,31)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="27.3436%" y="2085" width="0.0256%" height="15" fill="rgb(221,43,52)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="27.3436%" y="2069" width="0.0256%" height="15" fill="rgb(243,106,22)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="27.3436%" y="2053" width="0.0256%" height="15" fill="rgb(209,138,38)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="27.3436%" y="2037" width="0.0256%" height="15" fill="rgb(216,63,40)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="27.3436%" y="2021" width="0.0256%" height="15" fill="rgb(206,115,21)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="27.3436%" y="2005" width="0.0256%" height="15" fill="rgb(235,53,44)" fg:x="6417" fg:w="6"/><text x="27.5936%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="27.3564%" y="1989" width="0.0128%" height="15" fill="rgb(244,160,14)" fg:x="6420" fg:w="3"/><text x="27.6064%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="27.3564%" y="1973" width="0.0128%" height="15" fill="rgb(223,16,19)" fg:x="6420" fg:w="3"/><text x="27.6064%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="27.3692%" y="2133" width="0.0213%" height="15" fill="rgb(242,63,42)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="27.3692%" y="2117" width="0.0213%" height="15" fill="rgb(209,66,49)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="27.3692%" y="2101" width="0.0213%" height="15" fill="rgb(207,126,46)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="27.3692%" y="2085" width="0.0213%" height="15" fill="rgb(218,160,41)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="27.3692%" y="2069" width="0.0213%" height="15" fill="rgb(234,125,46)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="27.3692%" y="2053" width="0.0213%" height="15" fill="rgb(205,66,36)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="27.3692%" y="2037" width="0.0213%" height="15" fill="rgb(220,135,16)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="27.3692%" y="2021" width="0.0213%" height="15" fill="rgb(214,217,54)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2031.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="27.3692%" y="2005" width="0.0213%" height="15" fill="rgb(206,30,9)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="27.3692%" y="1989" width="0.0213%" height="15" fill="rgb(207,196,5)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="27.3692%" y="1973" width="0.0213%" height="15" fill="rgb(227,116,12)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="27.3692%" y="1957" width="0.0213%" height="15" fill="rgb(235,227,13)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="27.3692%" y="1941" width="0.0213%" height="15" fill="rgb(238,212,29)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="27.3692%" y="1925" width="0.0213%" height="15" fill="rgb(230,152,17)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="27.3692%" y="1909" width="0.0213%" height="15" fill="rgb(220,197,1)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="27.3692%" y="1893" width="0.0213%" height="15" fill="rgb(229,227,40)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="27.3692%" y="1877" width="0.0213%" height="15" fill="rgb(227,179,16)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="27.3692%" y="1861" width="0.0213%" height="15" fill="rgb(246,116,44)" fg:x="6423" fg:w="5"/><text x="27.6192%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="27.3777%" y="1845" width="0.0128%" height="15" fill="rgb(205,191,4)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="27.3777%" y="1829" width="0.0128%" height="15" fill="rgb(245,69,19)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1839.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="27.3777%" y="1813" width="0.0128%" height="15" fill="rgb(230,29,26)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="27.3777%" y="1797" width="0.0128%" height="15" fill="rgb(239,192,26)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="27.3777%" y="1781" width="0.0128%" height="15" fill="rgb(219,92,16)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="27.3777%" y="1765" width="0.0128%" height="15" fill="rgb(246,147,43)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="27.3777%" y="1749" width="0.0128%" height="15" fill="rgb(222,147,11)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="27.3777%" y="1733" width="0.0128%" height="15" fill="rgb(243,71,8)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.3777%" y="1717" width="0.0128%" height="15" fill="rgb(250,36,12)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="27.3777%" y="1701" width="0.0128%" height="15" fill="rgb(207,168,14)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="27.3777%" y="1685" width="0.0128%" height="15" fill="rgb(254,210,51)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="27.3777%" y="1669" width="0.0128%" height="15" fill="rgb(236,152,38)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="27.3777%" y="1653" width="0.0128%" height="15" fill="rgb(240,164,36)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="27.3777%" y="1637" width="0.0128%" height="15" fill="rgb(210,171,36)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="27.3777%" y="1621" width="0.0128%" height="15" fill="rgb(254,156,34)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="27.3777%" y="1605" width="0.0128%" height="15" fill="rgb(216,204,23)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="27.3777%" y="1589" width="0.0128%" height="15" fill="rgb(230,75,38)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="27.3777%" y="1573" width="0.0128%" height="15" fill="rgb(248,197,25)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="27.3777%" y="1557" width="0.0128%" height="15" fill="rgb(234,121,26)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1567.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="27.3777%" y="1541" width="0.0128%" height="15" fill="rgb(220,41,36)" fg:x="6425" fg:w="3"/><text x="27.6277%" y="1551.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="27.3436%" y="2245" width="0.0511%" height="15" fill="rgb(227,33,32)" fg:x="6417" fg:w="12"/><text x="27.5936%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="27.3436%" y="2229" width="0.0511%" height="15" fill="rgb(208,214,54)" fg:x="6417" fg:w="12"/><text x="27.5936%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="27.3436%" y="2213" width="0.0511%" height="15" fill="rgb(205,37,38)" fg:x="6417" fg:w="12"/><text x="27.5936%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="27.3436%" y="2197" width="0.0511%" height="15" fill="rgb(252,2,0)" fg:x="6417" fg:w="12"/><text x="27.5936%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="27.3692%" y="2181" width="0.0256%" height="15" fill="rgb(212,171,10)" fg:x="6423" fg:w="6"/><text x="27.6192%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="27.3692%" y="2165" width="0.0256%" height="15" fill="rgb(239,35,46)" fg:x="6423" fg:w="6"/><text x="27.6192%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="27.3692%" y="2149" width="0.0256%" height="15" fill="rgb(209,34,42)" fg:x="6423" fg:w="6"/><text x="27.6192%" y="2159.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="27.3948%" y="1941" width="0.0213%" height="15" fill="rgb(237,9,4)" fg:x="6429" fg:w="5"/><text x="27.6448%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="27.3990%" y="1925" width="0.0170%" height="15" fill="rgb(254,55,38)" fg:x="6430" fg:w="4"/><text x="27.6490%" y="1935.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="27.3990%" y="1909" width="0.0170%" height="15" fill="rgb(222,95,29)" fg:x="6430" fg:w="4"/><text x="27.6490%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="27.3948%" y="2117" width="0.0256%" height="15" fill="rgb(241,218,37)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="27.3948%" y="2101" width="0.0256%" height="15" fill="rgb(225,89,28)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="27.3948%" y="2085" width="0.0256%" height="15" fill="rgb(231,17,25)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="27.3948%" y="2069" width="0.0256%" height="15" fill="rgb(206,216,48)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="27.3948%" y="2053" width="0.0256%" height="15" fill="rgb(247,190,28)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="27.3948%" y="2037" width="0.0256%" height="15" fill="rgb(216,196,12)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="27.3948%" y="2021" width="0.0256%" height="15" fill="rgb(232,114,19)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="27.3948%" y="2005" width="0.0256%" height="15" fill="rgb(240,60,14)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="27.3948%" y="1989" width="0.0256%" height="15" fill="rgb(250,108,9)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="27.3948%" y="1973" width="0.0256%" height="15" fill="rgb(227,228,21)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="27.3948%" y="1957" width="0.0256%" height="15" fill="rgb(254,16,52)" fg:x="6429" fg:w="6"/><text x="27.6448%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (24 samples, 0.10%)</title><rect x="27.3308%" y="2357" width="0.1023%" height="15" fill="rgb(222,58,2)" fg:x="6414" fg:w="24"/><text x="27.5808%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (24 samples, 0.10%)</title><rect x="27.3308%" y="2341" width="0.1023%" height="15" fill="rgb(253,68,14)" fg:x="6414" fg:w="24"/><text x="27.5808%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="27.3308%" y="2325" width="0.1023%" height="15" fill="rgb(226,96,17)" fg:x="6414" fg:w="24"/><text x="27.5808%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="27.3308%" y="2309" width="0.1023%" height="15" fill="rgb(227,199,2)" fg:x="6414" fg:w="24"/><text x="27.5808%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="27.3436%" y="2293" width="0.0895%" height="15" fill="rgb(228,227,48)" fg:x="6417" fg:w="21"/><text x="27.5936%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="27.3436%" y="2277" width="0.0895%" height="15" fill="rgb(249,183,0)" fg:x="6417" fg:w="21"/><text x="27.5936%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="27.3436%" y="2261" width="0.0895%" height="15" fill="rgb(250,89,38)" fg:x="6417" fg:w="21"/><text x="27.5936%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="27.3948%" y="2245" width="0.0384%" height="15" fill="rgb(240,227,8)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="27.3948%" y="2229" width="0.0384%" height="15" fill="rgb(242,197,35)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2239.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="27.3948%" y="2213" width="0.0384%" height="15" fill="rgb(224,37,41)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="27.3948%" y="2197" width="0.0384%" height="15" fill="rgb(236,127,7)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="27.3948%" y="2181" width="0.0384%" height="15" fill="rgb(230,62,52)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="27.3948%" y="2165" width="0.0384%" height="15" fill="rgb(235,114,23)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="27.3948%" y="2149" width="0.0384%" height="15" fill="rgb(211,55,40)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="27.3948%" y="2133" width="0.0384%" height="15" fill="rgb(228,123,1)" fg:x="6429" fg:w="9"/><text x="27.6448%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="27.4203%" y="2117" width="0.0128%" height="15" fill="rgb(244,208,8)" fg:x="6435" fg:w="3"/><text x="27.6703%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="27.4203%" y="2101" width="0.0128%" height="15" fill="rgb(237,118,14)" fg:x="6435" fg:w="3"/><text x="27.6703%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="27.4203%" y="2085" width="0.0128%" height="15" fill="rgb(219,170,13)" fg:x="6435" fg:w="3"/><text x="27.6703%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.4331%" y="2229" width="0.0128%" height="15" fill="rgb(212,39,43)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="27.4331%" y="2213" width="0.0128%" height="15" fill="rgb(244,191,2)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="27.4331%" y="2197" width="0.0128%" height="15" fill="rgb(219,201,46)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="27.4331%" y="2181" width="0.0128%" height="15" fill="rgb(218,82,7)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="27.4331%" y="2165" width="0.0128%" height="15" fill="rgb(208,192,8)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="27.4331%" y="2149" width="0.0128%" height="15" fill="rgb(244,54,32)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="27.4331%" y="2133" width="0.0128%" height="15" fill="rgb(240,43,52)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="27.4331%" y="2117" width="0.0128%" height="15" fill="rgb(233,134,29)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="27.4331%" y="2101" width="0.0128%" height="15" fill="rgb(236,128,10)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="27.4331%" y="2085" width="0.0128%" height="15" fill="rgb(207,46,54)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="27.4331%" y="2069" width="0.0128%" height="15" fill="rgb(248,140,35)" fg:x="6438" fg:w="3"/><text x="27.6831%" y="2079.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="27.4501%" y="1925" width="0.0128%" height="15" fill="rgb(241,103,35)" fg:x="6442" fg:w="3"/><text x="27.7001%" y="1935.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="27.4501%" y="1909" width="0.0128%" height="15" fill="rgb(223,19,48)" fg:x="6442" fg:w="3"/><text x="27.7001%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="27.4459%" y="2117" width="0.0213%" height="15" fill="rgb(238,177,46)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="27.4459%" y="2101" width="0.0213%" height="15" fill="rgb(213,102,15)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="27.4459%" y="2085" width="0.0213%" height="15" fill="rgb(254,135,52)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="27.4459%" y="2069" width="0.0213%" height="15" fill="rgb(240,59,6)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="27.4459%" y="2053" width="0.0213%" height="15" fill="rgb(207,226,5)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="27.4459%" y="2037" width="0.0213%" height="15" fill="rgb(208,167,17)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="27.4459%" y="2021" width="0.0213%" height="15" fill="rgb(254,94,10)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="27.4459%" y="2005" width="0.0213%" height="15" fill="rgb(229,33,11)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="27.4459%" y="1989" width="0.0213%" height="15" fill="rgb(249,145,48)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="27.4459%" y="1973" width="0.0213%" height="15" fill="rgb(253,68,54)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="27.4459%" y="1957" width="0.0213%" height="15" fill="rgb(223,27,42)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="27.4459%" y="1941" width="0.0213%" height="15" fill="rgb(235,123,13)" fg:x="6441" fg:w="5"/><text x="27.6959%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="27.4459%" y="2181" width="0.0426%" height="15" fill="rgb(244,154,7)" fg:x="6441" fg:w="10"/><text x="27.6959%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="27.4459%" y="2165" width="0.0426%" height="15" fill="rgb(214,30,25)" fg:x="6441" fg:w="10"/><text x="27.6959%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="27.4459%" y="2149" width="0.0426%" height="15" fill="rgb(252,189,13)" fg:x="6441" fg:w="10"/><text x="27.6959%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="27.4459%" y="2133" width="0.0426%" height="15" fill="rgb(234,27,40)" fg:x="6441" fg:w="10"/><text x="27.6959%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="27.4672%" y="2117" width="0.0213%" height="15" fill="rgb(252,199,25)" fg:x="6446" fg:w="5"/><text x="27.7172%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="27.4672%" y="2101" width="0.0213%" height="15" fill="rgb(234,207,20)" fg:x="6446" fg:w="5"/><text x="27.7172%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="27.4672%" y="2085" width="0.0213%" height="15" fill="rgb(244,220,10)" fg:x="6446" fg:w="5"/><text x="27.7172%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="27.4757%" y="2069" width="0.0128%" height="15" fill="rgb(247,68,23)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="27.4757%" y="2053" width="0.0128%" height="15" fill="rgb(254,61,4)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="2063.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="27.4757%" y="2037" width="0.0128%" height="15" fill="rgb(245,208,35)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="27.4757%" y="2021" width="0.0128%" height="15" fill="rgb(235,90,11)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="27.4757%" y="2005" width="0.0128%" height="15" fill="rgb(239,139,43)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="27.4757%" y="1989" width="0.0128%" height="15" fill="rgb(209,187,9)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="27.4757%" y="1973" width="0.0128%" height="15" fill="rgb(241,30,6)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="27.4757%" y="1957" width="0.0128%" height="15" fill="rgb(216,104,1)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.4757%" y="1941" width="0.0128%" height="15" fill="rgb(238,55,39)" fg:x="6448" fg:w="3"/><text x="27.7257%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="27.4885%" y="2053" width="0.0213%" height="15" fill="rgb(226,151,41)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="27.4885%" y="2037" width="0.0213%" height="15" fill="rgb(228,73,40)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="27.4885%" y="2021" width="0.0213%" height="15" fill="rgb(215,81,0)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="27.4885%" y="2005" width="0.0213%" height="15" fill="rgb(209,52,39)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="27.4885%" y="1989" width="0.0213%" height="15" fill="rgb(221,127,5)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="27.4885%" y="1973" width="0.0213%" height="15" fill="rgb(213,215,6)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="27.4885%" y="1957" width="0.0213%" height="15" fill="rgb(214,118,13)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="27.4885%" y="1941" width="0.0213%" height="15" fill="rgb(207,205,41)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="27.4885%" y="1925" width="0.0213%" height="15" fill="rgb(218,208,45)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="27.4885%" y="1909" width="0.0213%" height="15" fill="rgb(244,81,54)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="27.4885%" y="1893" width="0.0213%" height="15" fill="rgb(244,175,1)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="27.4885%" y="1877" width="0.0213%" height="15" fill="rgb(232,128,28)" fg:x="6451" fg:w="5"/><text x="27.7385%" y="1887.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="27.5098%" y="2005" width="0.0128%" height="15" fill="rgb(234,83,13)" fg:x="6456" fg:w="3"/><text x="27.7598%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="27.5098%" y="1989" width="0.0128%" height="15" fill="rgb(233,222,35)" fg:x="6456" fg:w="3"/><text x="27.7598%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="27.5098%" y="1973" width="0.0128%" height="15" fill="rgb(244,204,21)" fg:x="6456" fg:w="3"/><text x="27.7598%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="27.5098%" y="1957" width="0.0128%" height="15" fill="rgb(225,121,40)" fg:x="6456" fg:w="3"/><text x="27.7598%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.5098%" y="1941" width="0.0128%" height="15" fill="rgb(231,89,18)" fg:x="6456" fg:w="3"/><text x="27.7598%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (126 samples, 0.54%)</title><rect x="26.9942%" y="2645" width="0.5369%" height="15" fill="rgb(205,41,50)" fg:x="6335" fg:w="126"/><text x="27.2442%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (126 samples, 0.54%)</title><rect x="26.9942%" y="2629" width="0.5369%" height="15" fill="rgb(254,25,22)" fg:x="6335" fg:w="126"/><text x="27.2442%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (126 samples, 0.54%)</title><rect x="26.9942%" y="2613" width="0.5369%" height="15" fill="rgb(208,44,21)" fg:x="6335" fg:w="126"/><text x="27.2442%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (126 samples, 0.54%)</title><rect x="26.9942%" y="2597" width="0.5369%" height="15" fill="rgb(237,59,53)" fg:x="6335" fg:w="126"/><text x="27.2442%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (111 samples, 0.47%)</title><rect x="27.0581%" y="2581" width="0.4730%" height="15" fill="rgb(233,24,36)" fg:x="6350" fg:w="111"/><text x="27.3081%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (111 samples, 0.47%)</title><rect x="27.0581%" y="2565" width="0.4730%" height="15" fill="rgb(216,92,41)" fg:x="6350" fg:w="111"/><text x="27.3081%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (111 samples, 0.47%)</title><rect x="27.0581%" y="2549" width="0.4730%" height="15" fill="rgb(225,158,49)" fg:x="6350" fg:w="111"/><text x="27.3081%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (63 samples, 0.27%)</title><rect x="27.2627%" y="2533" width="0.2685%" height="15" fill="rgb(244,11,16)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (63 samples, 0.27%)</title><rect x="27.2627%" y="2517" width="0.2685%" height="15" fill="rgb(208,215,38)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2527.50"></text></g><g><title>std::panicking::try (63 samples, 0.27%)</title><rect x="27.2627%" y="2501" width="0.2685%" height="15" fill="rgb(250,69,53)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (63 samples, 0.27%)</title><rect x="27.2627%" y="2485" width="0.2685%" height="15" fill="rgb(240,187,52)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (63 samples, 0.27%)</title><rect x="27.2627%" y="2469" width="0.2685%" height="15" fill="rgb(235,22,25)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (63 samples, 0.27%)</title><rect x="27.2627%" y="2453" width="0.2685%" height="15" fill="rgb(213,173,22)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (63 samples, 0.27%)</title><rect x="27.2627%" y="2437" width="0.2685%" height="15" fill="rgb(218,47,0)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (63 samples, 0.27%)</title><rect x="27.2627%" y="2421" width="0.2685%" height="15" fill="rgb(254,157,11)" fg:x="6398" fg:w="63"/><text x="27.5127%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (47 samples, 0.20%)</title><rect x="27.3308%" y="2405" width="0.2003%" height="15" fill="rgb(233,154,6)" fg:x="6414" fg:w="47"/><text x="27.5808%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (47 samples, 0.20%)</title><rect x="27.3308%" y="2389" width="0.2003%" height="15" fill="rgb(233,207,47)" fg:x="6414" fg:w="47"/><text x="27.5808%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (47 samples, 0.20%)</title><rect x="27.3308%" y="2373" width="0.2003%" height="15" fill="rgb(249,128,18)" fg:x="6414" fg:w="47"/><text x="27.5808%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="27.4331%" y="2357" width="0.0980%" height="15" fill="rgb(211,27,42)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="27.4331%" y="2341" width="0.0980%" height="15" fill="rgb(240,163,26)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2351.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="27.4331%" y="2325" width="0.0980%" height="15" fill="rgb(232,118,46)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="27.4331%" y="2309" width="0.0980%" height="15" fill="rgb(238,158,34)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="27.4331%" y="2293" width="0.0980%" height="15" fill="rgb(254,99,45)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (23 samples, 0.10%)</title><rect x="27.4331%" y="2277" width="0.0980%" height="15" fill="rgb(247,205,20)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="27.4331%" y="2261" width="0.0980%" height="15" fill="rgb(240,20,41)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="27.4331%" y="2245" width="0.0980%" height="15" fill="rgb(231,22,43)" fg:x="6438" fg:w="23"/><text x="27.6831%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="27.4459%" y="2229" width="0.0852%" height="15" fill="rgb(207,86,33)" fg:x="6441" fg:w="20"/><text x="27.6959%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="27.4459%" y="2213" width="0.0852%" height="15" fill="rgb(231,148,5)" fg:x="6441" fg:w="20"/><text x="27.6959%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="27.4459%" y="2197" width="0.0852%" height="15" fill="rgb(253,77,28)" fg:x="6441" fg:w="20"/><text x="27.6959%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="27.4885%" y="2181" width="0.0426%" height="15" fill="rgb(253,227,9)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="27.4885%" y="2165" width="0.0426%" height="15" fill="rgb(235,4,18)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2175.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="27.4885%" y="2149" width="0.0426%" height="15" fill="rgb(205,206,45)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="27.4885%" y="2133" width="0.0426%" height="15" fill="rgb(252,34,0)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="27.4885%" y="2117" width="0.0426%" height="15" fill="rgb(213,56,7)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="27.4885%" y="2101" width="0.0426%" height="15" fill="rgb(227,74,29)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="27.4885%" y="2085" width="0.0426%" height="15" fill="rgb(221,32,48)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="27.4885%" y="2069" width="0.0426%" height="15" fill="rgb(230,205,25)" fg:x="6451" fg:w="10"/><text x="27.7385%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="27.5098%" y="2053" width="0.0213%" height="15" fill="rgb(215,110,9)" fg:x="6456" fg:w="5"/><text x="27.7598%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="27.5098%" y="2037" width="0.0213%" height="15" fill="rgb(245,220,47)" fg:x="6456" fg:w="5"/><text x="27.7598%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="27.5098%" y="2021" width="0.0213%" height="15" fill="rgb(224,117,5)" fg:x="6456" fg:w="5"/><text x="27.7598%" y="2031.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="27.5311%" y="2101" width="0.0128%" height="15" fill="rgb(242,208,25)" fg:x="6461" fg:w="3"/><text x="27.7811%" y="2111.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="27.5311%" y="2085" width="0.0128%" height="15" fill="rgb(226,12,37)" fg:x="6461" fg:w="3"/><text x="27.7811%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="27.5311%" y="2293" width="0.0170%" height="15" fill="rgb(224,221,22)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="27.5311%" y="2277" width="0.0170%" height="15" fill="rgb(239,38,44)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="27.5311%" y="2261" width="0.0170%" height="15" fill="rgb(218,25,46)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="27.5311%" y="2245" width="0.0170%" height="15" fill="rgb(206,137,51)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="27.5311%" y="2229" width="0.0170%" height="15" fill="rgb(233,174,3)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="27.5311%" y="2213" width="0.0170%" height="15" fill="rgb(207,224,43)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="27.5311%" y="2197" width="0.0170%" height="15" fill="rgb(230,46,27)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5311%" y="2181" width="0.0170%" height="15" fill="rgb(251,215,32)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="27.5311%" y="2165" width="0.0170%" height="15" fill="rgb(244,219,19)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="27.5311%" y="2149" width="0.0170%" height="15" fill="rgb(242,125,36)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5311%" y="2133" width="0.0170%" height="15" fill="rgb(251,211,12)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="27.5311%" y="2117" width="0.0170%" height="15" fill="rgb(209,179,33)" fg:x="6461" fg:w="4"/><text x="27.7811%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="27.5482%" y="2245" width="0.0170%" height="15" fill="rgb(205,161,48)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="27.5482%" y="2229" width="0.0170%" height="15" fill="rgb(241,139,8)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="27.5482%" y="2213" width="0.0170%" height="15" fill="rgb(246,159,53)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="27.5482%" y="2197" width="0.0170%" height="15" fill="rgb(212,62,27)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="27.5482%" y="2181" width="0.0170%" height="15" fill="rgb(216,168,18)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="27.5482%" y="2165" width="0.0170%" height="15" fill="rgb(228,136,50)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="27.5482%" y="2149" width="0.0170%" height="15" fill="rgb(237,19,45)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="27.5482%" y="2133" width="0.0170%" height="15" fill="rgb(249,150,28)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2143.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="27.5482%" y="2117" width="0.0170%" height="15" fill="rgb(236,179,39)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="27.5482%" y="2101" width="0.0170%" height="15" fill="rgb(250,113,27)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="27.5482%" y="2085" width="0.0170%" height="15" fill="rgb(223,13,14)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5482%" y="2069" width="0.0170%" height="15" fill="rgb(226,68,24)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5482%" y="2053" width="0.0170%" height="15" fill="rgb(239,40,50)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5482%" y="2037" width="0.0170%" height="15" fill="rgb(209,187,0)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="27.5482%" y="2021" width="0.0170%" height="15" fill="rgb(240,61,8)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="27.5482%" y="2005" width="0.0170%" height="15" fill="rgb(236,137,5)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="27.5482%" y="1989" width="0.0170%" height="15" fill="rgb(247,214,21)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5482%" y="1973" width="0.0170%" height="15" fill="rgb(244,115,25)" fg:x="6465" fg:w="4"/><text x="27.7982%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="27.5311%" y="2357" width="0.0511%" height="15" fill="rgb(230,58,38)" fg:x="6461" fg:w="12"/><text x="27.7811%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="27.5311%" y="2341" width="0.0511%" height="15" fill="rgb(206,122,6)" fg:x="6461" fg:w="12"/><text x="27.7811%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="27.5311%" y="2325" width="0.0511%" height="15" fill="rgb(217,135,53)" fg:x="6461" fg:w="12"/><text x="27.7811%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="27.5311%" y="2309" width="0.0511%" height="15" fill="rgb(225,120,8)" fg:x="6461" fg:w="12"/><text x="27.7811%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="27.5482%" y="2293" width="0.0341%" height="15" fill="rgb(226,3,30)" fg:x="6465" fg:w="8"/><text x="27.7982%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="27.5482%" y="2277" width="0.0341%" height="15" fill="rgb(214,159,38)" fg:x="6465" fg:w="8"/><text x="27.7982%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="27.5482%" y="2261" width="0.0341%" height="15" fill="rgb(242,182,47)" fg:x="6465" fg:w="8"/><text x="27.7982%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="27.5652%" y="2245" width="0.0170%" height="15" fill="rgb(245,202,26)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="27.5652%" y="2229" width="0.0170%" height="15" fill="rgb(226,163,3)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2239.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="27.5652%" y="2213" width="0.0170%" height="15" fill="rgb(219,4,4)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="27.5652%" y="2197" width="0.0170%" height="15" fill="rgb(223,85,4)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="27.5652%" y="2181" width="0.0170%" height="15" fill="rgb(242,170,11)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5652%" y="2165" width="0.0170%" height="15" fill="rgb(221,97,42)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5652%" y="2149" width="0.0170%" height="15" fill="rgb(231,206,45)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="27.5652%" y="2133" width="0.0170%" height="15" fill="rgb(216,23,48)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="27.5652%" y="2117" width="0.0170%" height="15" fill="rgb(225,49,9)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="27.5652%" y="2101" width="0.0170%" height="15" fill="rgb(247,24,47)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="27.5652%" y="2085" width="0.0170%" height="15" fill="rgb(253,145,10)" fg:x="6469" fg:w="4"/><text x="27.8152%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="27.5822%" y="1813" width="0.0170%" height="15" fill="rgb(206,62,10)" fg:x="6473" fg:w="4"/><text x="27.8322%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="27.5822%" y="1797" width="0.0170%" height="15" fill="rgb(224,159,31)" fg:x="6473" fg:w="4"/><text x="27.8322%" y="1807.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="27.5822%" y="1781" width="0.0170%" height="15" fill="rgb(234,184,15)" fg:x="6473" fg:w="4"/><text x="27.8322%" y="1791.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="27.5865%" y="1765" width="0.0128%" height="15" fill="rgb(237,101,1)" fg:x="6474" fg:w="3"/><text x="27.8365%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="27.5822%" y="2069" width="0.0213%" height="15" fill="rgb(211,99,29)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="27.5822%" y="2053" width="0.0213%" height="15" fill="rgb(250,167,3)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="27.5822%" y="2037" width="0.0213%" height="15" fill="rgb(225,58,6)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="27.5822%" y="2021" width="0.0213%" height="15" fill="rgb(251,161,21)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="27.5822%" y="2005" width="0.0213%" height="15" fill="rgb(253,203,35)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="27.5822%" y="1989" width="0.0213%" height="15" fill="rgb(214,220,52)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="27.5822%" y="1973" width="0.0213%" height="15" fill="rgb(235,216,33)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="27.5822%" y="1957" width="0.0213%" height="15" fill="rgb(231,79,26)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="27.5822%" y="1941" width="0.0213%" height="15" fill="rgb(244,218,10)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="27.5822%" y="1925" width="0.0213%" height="15" fill="rgb(238,15,9)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="27.5822%" y="1909" width="0.0213%" height="15" fill="rgb(235,112,15)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="27.5822%" y="1893" width="0.0213%" height="15" fill="rgb(239,126,18)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="27.5822%" y="1877" width="0.0213%" height="15" fill="rgb(253,171,19)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="27.5822%" y="1861" width="0.0213%" height="15" fill="rgb(237,218,25)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="27.5822%" y="1845" width="0.0213%" height="15" fill="rgb(213,88,46)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="27.5822%" y="1829" width="0.0213%" height="15" fill="rgb(222,124,54)" fg:x="6473" fg:w="5"/><text x="27.8322%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="27.5822%" y="2357" width="0.0469%" height="15" fill="rgb(209,206,42)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="27.5822%" y="2341" width="0.0469%" height="15" fill="rgb(219,25,49)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="27.5822%" y="2325" width="0.0469%" height="15" fill="rgb(228,207,53)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="27.5822%" y="2309" width="0.0469%" height="15" fill="rgb(224,3,4)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="27.5822%" y="2293" width="0.0469%" height="15" fill="rgb(254,206,26)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="27.5822%" y="2277" width="0.0469%" height="15" fill="rgb(209,4,26)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="27.5822%" y="2261" width="0.0469%" height="15" fill="rgb(243,193,32)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="27.5822%" y="2245" width="0.0469%" height="15" fill="rgb(225,150,36)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2255.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="27.5822%" y="2229" width="0.0469%" height="15" fill="rgb(225,131,26)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="27.5822%" y="2213" width="0.0469%" height="15" fill="rgb(236,126,12)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="27.5822%" y="2197" width="0.0469%" height="15" fill="rgb(238,167,44)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="27.5822%" y="2181" width="0.0469%" height="15" fill="rgb(238,153,31)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="27.5822%" y="2165" width="0.0469%" height="15" fill="rgb(254,41,51)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="27.5822%" y="2149" width="0.0469%" height="15" fill="rgb(224,100,52)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="27.5822%" y="2133" width="0.0469%" height="15" fill="rgb(246,226,38)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="27.5822%" y="2117" width="0.0469%" height="15" fill="rgb(252,21,43)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="27.5822%" y="2101" width="0.0469%" height="15" fill="rgb(250,44,8)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="27.5822%" y="2085" width="0.0469%" height="15" fill="rgb(224,200,45)" fg:x="6473" fg:w="11"/><text x="27.8322%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="27.6035%" y="2069" width="0.0256%" height="15" fill="rgb(208,75,52)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="27.6035%" y="2053" width="0.0256%" height="15" fill="rgb(213,167,20)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="2063.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="27.6035%" y="2037" width="0.0256%" height="15" fill="rgb(236,163,42)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="27.6035%" y="2021" width="0.0256%" height="15" fill="rgb(210,98,31)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="27.6035%" y="2005" width="0.0256%" height="15" fill="rgb(246,166,15)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="27.6035%" y="1989" width="0.0256%" height="15" fill="rgb(214,114,7)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="27.6035%" y="1973" width="0.0256%" height="15" fill="rgb(217,202,34)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="27.6035%" y="1957" width="0.0256%" height="15" fill="rgb(227,226,29)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="27.6035%" y="1941" width="0.0256%" height="15" fill="rgb(254,65,44)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="27.6035%" y="1925" width="0.0256%" height="15" fill="rgb(213,150,32)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="27.6035%" y="1909" width="0.0256%" height="15" fill="rgb(208,86,46)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="27.6035%" y="1893" width="0.0256%" height="15" fill="rgb(222,75,3)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="27.6035%" y="1877" width="0.0256%" height="15" fill="rgb(225,213,9)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="27.6035%" y="1861" width="0.0256%" height="15" fill="rgb(209,199,10)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="27.6035%" y="1845" width="0.0256%" height="15" fill="rgb(213,18,17)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="27.6035%" y="1829" width="0.0256%" height="15" fill="rgb(243,79,44)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="27.6035%" y="1813" width="0.0256%" height="15" fill="rgb(226,20,5)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="27.6035%" y="1797" width="0.0256%" height="15" fill="rgb(217,52,31)" fg:x="6478" fg:w="6"/><text x="27.8535%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="27.6078%" y="1781" width="0.0213%" height="15" fill="rgb(229,42,7)" fg:x="6479" fg:w="5"/><text x="27.8578%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="27.6078%" y="1765" width="0.0213%" height="15" fill="rgb(206,118,29)" fg:x="6479" fg:w="5"/><text x="27.8578%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="27.6291%" y="2037" width="0.0170%" height="15" fill="rgb(248,132,44)" fg:x="6484" fg:w="4"/><text x="27.8791%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="27.6291%" y="2021" width="0.0170%" height="15" fill="rgb(231,56,33)" fg:x="6484" fg:w="4"/><text x="27.8791%" y="2031.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="27.6291%" y="2005" width="0.0170%" height="15" fill="rgb(208,31,11)" fg:x="6484" fg:w="4"/><text x="27.8791%" y="2015.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="27.6334%" y="1989" width="0.0128%" height="15" fill="rgb(216,56,33)" fg:x="6485" fg:w="3"/><text x="27.8834%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="27.6291%" y="2229" width="0.0256%" height="15" fill="rgb(213,100,0)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="27.6291%" y="2213" width="0.0256%" height="15" fill="rgb(236,166,18)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="27.6291%" y="2197" width="0.0256%" height="15" fill="rgb(251,132,12)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="27.6291%" y="2181" width="0.0256%" height="15" fill="rgb(216,117,7)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="27.6291%" y="2165" width="0.0256%" height="15" fill="rgb(243,184,8)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="27.6291%" y="2149" width="0.0256%" height="15" fill="rgb(212,91,32)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="27.6291%" y="2133" width="0.0256%" height="15" fill="rgb(224,147,15)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="27.6291%" y="2117" width="0.0256%" height="15" fill="rgb(228,84,10)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="27.6291%" y="2101" width="0.0256%" height="15" fill="rgb(221,161,22)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="27.6291%" y="2085" width="0.0256%" height="15" fill="rgb(250,132,20)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="27.6291%" y="2069" width="0.0256%" height="15" fill="rgb(209,161,12)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="27.6291%" y="2053" width="0.0256%" height="15" fill="rgb(232,142,42)" fg:x="6484" fg:w="6"/><text x="27.8791%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="27.6547%" y="2181" width="0.0170%" height="15" fill="rgb(240,228,27)" fg:x="6490" fg:w="4"/><text x="27.9047%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="27.6547%" y="2165" width="0.0170%" height="15" fill="rgb(243,0,31)" fg:x="6490" fg:w="4"/><text x="27.9047%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="27.6547%" y="2149" width="0.0170%" height="15" fill="rgb(237,100,15)" fg:x="6490" fg:w="4"/><text x="27.9047%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="27.6547%" y="2133" width="0.0170%" height="15" fill="rgb(230,26,48)" fg:x="6490" fg:w="4"/><text x="27.9047%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="27.6589%" y="2117" width="0.0128%" height="15" fill="rgb(215,7,13)" fg:x="6491" fg:w="3"/><text x="27.9089%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="27.6589%" y="2101" width="0.0128%" height="15" fill="rgb(227,172,5)" fg:x="6491" fg:w="3"/><text x="27.9089%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="27.6589%" y="2085" width="0.0128%" height="15" fill="rgb(248,206,14)" fg:x="6491" fg:w="3"/><text x="27.9089%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (39 samples, 0.17%)</title><rect x="27.5311%" y="2613" width="0.1662%" height="15" fill="rgb(231,62,54)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (39 samples, 0.17%)</title><rect x="27.5311%" y="2597" width="0.1662%" height="15" fill="rgb(222,136,26)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (39 samples, 0.17%)</title><rect x="27.5311%" y="2581" width="0.1662%" height="15" fill="rgb(211,115,42)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (39 samples, 0.17%)</title><rect x="27.5311%" y="2565" width="0.1662%" height="15" fill="rgb(234,5,17)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (39 samples, 0.17%)</title><rect x="27.5311%" y="2549" width="0.1662%" height="15" fill="rgb(233,67,14)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (39 samples, 0.17%)</title><rect x="27.5311%" y="2533" width="0.1662%" height="15" fill="rgb(225,133,51)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2543.50"></text></g><g><title>std::panicking::try (39 samples, 0.17%)</title><rect x="27.5311%" y="2517" width="0.1662%" height="15" fill="rgb(206,107,40)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (39 samples, 0.17%)</title><rect x="27.5311%" y="2501" width="0.1662%" height="15" fill="rgb(210,56,9)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (39 samples, 0.17%)</title><rect x="27.5311%" y="2485" width="0.1662%" height="15" fill="rgb(222,204,4)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (39 samples, 0.17%)</title><rect x="27.5311%" y="2469" width="0.1662%" height="15" fill="rgb(210,168,3)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (39 samples, 0.17%)</title><rect x="27.5311%" y="2453" width="0.1662%" height="15" fill="rgb(246,183,26)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (39 samples, 0.17%)</title><rect x="27.5311%" y="2437" width="0.1662%" height="15" fill="rgb(228,27,31)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.17%)</title><rect x="27.5311%" y="2421" width="0.1662%" height="15" fill="rgb(206,8,2)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (39 samples, 0.17%)</title><rect x="27.5311%" y="2405" width="0.1662%" height="15" fill="rgb(251,229,16)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.17%)</title><rect x="27.5311%" y="2389" width="0.1662%" height="15" fill="rgb(208,84,44)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39 samples, 0.17%)</title><rect x="27.5311%" y="2373" width="0.1662%" height="15" fill="rgb(221,228,13)" fg:x="6461" fg:w="39"/><text x="27.7811%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="27.6291%" y="2357" width="0.0682%" height="15" fill="rgb(248,42,47)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="27.6291%" y="2341" width="0.0682%" height="15" fill="rgb(222,124,41)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2351.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="27.6291%" y="2325" width="0.0682%" height="15" fill="rgb(244,191,35)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="27.6291%" y="2309" width="0.0682%" height="15" fill="rgb(222,223,54)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="27.6291%" y="2293" width="0.0682%" height="15" fill="rgb(248,178,42)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="27.6291%" y="2277" width="0.0682%" height="15" fill="rgb(238,21,24)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="27.6291%" y="2261" width="0.0682%" height="15" fill="rgb(227,134,7)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="27.6291%" y="2245" width="0.0682%" height="15" fill="rgb(205,191,1)" fg:x="6484" fg:w="16"/><text x="27.8791%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="27.6547%" y="2229" width="0.0426%" height="15" fill="rgb(222,166,30)" fg:x="6490" fg:w="10"/><text x="27.9047%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="27.6547%" y="2213" width="0.0426%" height="15" fill="rgb(229,94,26)" fg:x="6490" fg:w="10"/><text x="27.9047%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="27.6547%" y="2197" width="0.0426%" height="15" fill="rgb(246,97,2)" fg:x="6490" fg:w="10"/><text x="27.9047%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="27.6717%" y="2181" width="0.0256%" height="15" fill="rgb(252,112,53)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="27.6717%" y="2165" width="0.0256%" height="15" fill="rgb(225,52,38)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2175.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="27.6717%" y="2149" width="0.0256%" height="15" fill="rgb(215,203,24)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="27.6717%" y="2133" width="0.0256%" height="15" fill="rgb(210,122,52)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="27.6717%" y="2117" width="0.0256%" height="15" fill="rgb(209,161,44)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="27.6717%" y="2101" width="0.0256%" height="15" fill="rgb(221,97,16)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="27.6717%" y="2085" width="0.0256%" height="15" fill="rgb(209,87,13)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="27.6717%" y="2069" width="0.0256%" height="15" fill="rgb(242,1,21)" fg:x="6494" fg:w="6"/><text x="27.9217%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="27.6802%" y="2053" width="0.0170%" height="15" fill="rgb(251,170,41)" fg:x="6496" fg:w="4"/><text x="27.9302%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="27.6802%" y="2037" width="0.0170%" height="15" fill="rgb(227,201,10)" fg:x="6496" fg:w="4"/><text x="27.9302%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="27.6802%" y="2021" width="0.0170%" height="15" fill="rgb(231,100,29)" fg:x="6496" fg:w="4"/><text x="27.9302%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (45 samples, 0.19%)</title><rect x="27.5311%" y="2645" width="0.1918%" height="15" fill="rgb(226,31,35)" fg:x="6461" fg:w="45"/><text x="27.7811%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (45 samples, 0.19%)</title><rect x="27.5311%" y="2629" width="0.1918%" height="15" fill="rgb(254,99,26)" fg:x="6461" fg:w="45"/><text x="27.7811%" y="2639.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="27.7016%" y="2613" width="0.0213%" height="15" fill="rgb(217,228,17)" fg:x="6501" fg:w="5"/><text x="27.9516%" y="2623.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="27.7016%" y="2597" width="0.0213%" height="15" fill="rgb(226,132,8)" fg:x="6501" fg:w="5"/><text x="27.9516%" y="2607.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="27.7016%" y="2581" width="0.0213%" height="15" fill="rgb(220,202,47)" fg:x="6501" fg:w="5"/><text x="27.9516%" y="2591.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="27.7016%" y="2565" width="0.0213%" height="15" fill="rgb(245,194,10)" fg:x="6501" fg:w="5"/><text x="27.9516%" y="2575.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="27.7016%" y="2549" width="0.0213%" height="15" fill="rgb(225,44,52)" fg:x="6501" fg:w="5"/><text x="27.9516%" y="2559.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="27.7016%" y="2533" width="0.0213%" height="15" fill="rgb(235,10,4)" fg:x="6501" fg:w="5"/><text x="27.9516%" y="2543.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="27.7058%" y="2517" width="0.0170%" height="15" fill="rgb(244,32,23)" fg:x="6502" fg:w="4"/><text x="27.9558%" y="2527.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="27.7229%" y="2341" width="0.0298%" height="15" fill="rgb(210,115,0)" fg:x="6506" fg:w="7"/><text x="27.9729%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="27.7399%" y="2325" width="0.0128%" height="15" fill="rgb(246,72,16)" fg:x="6510" fg:w="3"/><text x="27.9899%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="27.7399%" y="2309" width="0.0128%" height="15" fill="rgb(223,32,10)" fg:x="6510" fg:w="3"/><text x="27.9899%" y="2319.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="27.7229%" y="2501" width="0.0511%" height="15" fill="rgb(223,97,52)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (12 samples, 0.05%)</title><rect x="27.7229%" y="2485" width="0.0511%" height="15" fill="rgb(238,69,38)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (12 samples, 0.05%)</title><rect x="27.7229%" y="2469" width="0.0511%" height="15" fill="rgb(226,61,1)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (12 samples, 0.05%)</title><rect x="27.7229%" y="2453" width="0.0511%" height="15" fill="rgb(244,56,14)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (12 samples, 0.05%)</title><rect x="27.7229%" y="2437" width="0.0511%" height="15" fill="rgb(242,164,18)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (12 samples, 0.05%)</title><rect x="27.7229%" y="2421" width="0.0511%" height="15" fill="rgb(217,130,28)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (12 samples, 0.05%)</title><rect x="27.7229%" y="2405" width="0.0511%" height="15" fill="rgb(218,118,52)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (12 samples, 0.05%)</title><rect x="27.7229%" y="2389" width="0.0511%" height="15" fill="rgb(251,112,38)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="27.7229%" y="2373" width="0.0511%" height="15" fill="rgb(239,14,50)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (12 samples, 0.05%)</title><rect x="27.7229%" y="2357" width="0.0511%" height="15" fill="rgb(228,141,54)" fg:x="6506" fg:w="12"/><text x="27.9729%" y="2367.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (5 samples, 0.02%)</title><rect x="27.7527%" y="2341" width="0.0213%" height="15" fill="rgb(236,128,15)" fg:x="6513" fg:w="5"/><text x="28.0027%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (16 samples, 0.07%)</title><rect x="27.7229%" y="2517" width="0.0682%" height="15" fill="rgb(206,140,54)" fg:x="6506" fg:w="16"/><text x="27.9729%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="27.7740%" y="2501" width="0.0170%" height="15" fill="rgb(240,0,44)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2511.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="27.7740%" y="2485" width="0.0170%" height="15" fill="rgb(243,207,23)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="27.7740%" y="2469" width="0.0170%" height="15" fill="rgb(247,202,1)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="27.7740%" y="2453" width="0.0170%" height="15" fill="rgb(239,83,27)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2463.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="27.7740%" y="2437" width="0.0170%" height="15" fill="rgb(219,205,7)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2447.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="27.7740%" y="2421" width="0.0170%" height="15" fill="rgb(249,184,22)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="27.7740%" y="2405" width="0.0170%" height="15" fill="rgb(230,150,14)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2415.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="27.7740%" y="2389" width="0.0170%" height="15" fill="rgb(240,118,34)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2399.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="27.7740%" y="2373" width="0.0170%" height="15" fill="rgb(227,162,21)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2383.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="27.7740%" y="2357" width="0.0170%" height="15" fill="rgb(219,14,9)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="27.7740%" y="2341" width="0.0170%" height="15" fill="rgb(223,226,16)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2351.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="27.7740%" y="2325" width="0.0170%" height="15" fill="rgb(246,161,37)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="27.7740%" y="2309" width="0.0170%" height="15" fill="rgb(205,221,43)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="27.7740%" y="2293" width="0.0170%" height="15" fill="rgb(228,216,26)" fg:x="6518" fg:w="4"/><text x="28.0240%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="27.7783%" y="2277" width="0.0128%" height="15" fill="rgb(251,33,17)" fg:x="6519" fg:w="3"/><text x="28.0283%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (9 samples, 0.04%)</title><rect x="27.7910%" y="2213" width="0.0384%" height="15" fill="rgb(246,126,36)" fg:x="6522" fg:w="9"/><text x="28.0410%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (9 samples, 0.04%)</title><rect x="27.7910%" y="2197" width="0.0384%" height="15" fill="rgb(217,160,24)" fg:x="6522" fg:w="9"/><text x="28.0410%" y="2207.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="27.8038%" y="2181" width="0.0256%" height="15" fill="rgb(211,64,12)" fg:x="6525" fg:w="6"/><text x="28.0538%" y="2191.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="27.8038%" y="2165" width="0.0256%" height="15" fill="rgb(238,47,36)" fg:x="6525" fg:w="6"/><text x="28.0538%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="27.8294%" y="2213" width="0.0213%" height="15" fill="rgb(210,157,42)" fg:x="6531" fg:w="5"/><text x="28.0794%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="27.8294%" y="2197" width="0.0213%" height="15" fill="rgb(242,84,39)" fg:x="6531" fg:w="5"/><text x="28.0794%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (19 samples, 0.08%)</title><rect x="27.7910%" y="2229" width="0.0810%" height="15" fill="rgb(207,65,41)" fg:x="6522" fg:w="19"/><text x="28.0410%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="27.8507%" y="2213" width="0.0213%" height="15" fill="rgb(246,97,27)" fg:x="6536" fg:w="5"/><text x="28.1007%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="27.8507%" y="2197" width="0.0213%" height="15" fill="rgb(229,9,43)" fg:x="6536" fg:w="5"/><text x="28.1007%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (20 samples, 0.09%)</title><rect x="27.7910%" y="2405" width="0.0852%" height="15" fill="rgb(211,82,44)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (20 samples, 0.09%)</title><rect x="27.7910%" y="2389" width="0.0852%" height="15" fill="rgb(253,45,54)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (20 samples, 0.09%)</title><rect x="27.7910%" y="2373" width="0.0852%" height="15" fill="rgb(235,94,32)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (20 samples, 0.09%)</title><rect x="27.7910%" y="2357" width="0.0852%" height="15" fill="rgb(252,143,1)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (20 samples, 0.09%)</title><rect x="27.7910%" y="2341" width="0.0852%" height="15" fill="rgb(239,164,4)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (20 samples, 0.09%)</title><rect x="27.7910%" y="2325" width="0.0852%" height="15" fill="rgb(222,25,39)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (20 samples, 0.09%)</title><rect x="27.7910%" y="2309" width="0.0852%" height="15" fill="rgb(234,175,9)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (20 samples, 0.09%)</title><rect x="27.7910%" y="2293" width="0.0852%" height="15" fill="rgb(247,200,41)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (20 samples, 0.09%)</title><rect x="27.7910%" y="2277" width="0.0852%" height="15" fill="rgb(245,101,27)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (20 samples, 0.09%)</title><rect x="27.7910%" y="2261" width="0.0852%" height="15" fill="rgb(221,29,7)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (20 samples, 0.09%)</title><rect x="27.7910%" y="2245" width="0.0852%" height="15" fill="rgb(240,184,10)" fg:x="6522" fg:w="20"/><text x="28.0410%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.8763%" y="2293" width="0.0128%" height="15" fill="rgb(251,85,15)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="27.8763%" y="2277" width="0.0128%" height="15" fill="rgb(252,84,16)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="27.8763%" y="2261" width="0.0128%" height="15" fill="rgb(233,136,6)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="27.8763%" y="2245" width="0.0128%" height="15" fill="rgb(226,169,30)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="27.8763%" y="2229" width="0.0128%" height="15" fill="rgb(241,83,18)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="27.8763%" y="2213" width="0.0128%" height="15" fill="rgb(239,151,5)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="27.8763%" y="2197" width="0.0128%" height="15" fill="rgb(238,56,13)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="27.8763%" y="2181" width="0.0128%" height="15" fill="rgb(224,100,0)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="27.8763%" y="2165" width="0.0128%" height="15" fill="rgb(231,168,26)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="27.8763%" y="2149" width="0.0128%" height="15" fill="rgb(238,110,3)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="27.8763%" y="2133" width="0.0128%" height="15" fill="rgb(216,190,1)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="27.8763%" y="2117" width="0.0128%" height="15" fill="rgb(208,130,52)" fg:x="6542" fg:w="3"/><text x="28.1263%" y="2127.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="27.8890%" y="2005" width="0.0298%" height="15" fill="rgb(233,74,12)" fg:x="6545" fg:w="7"/><text x="28.1390%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="27.9018%" y="1989" width="0.0170%" height="15" fill="rgb(248,12,15)" fg:x="6548" fg:w="4"/><text x="28.1518%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="27.9018%" y="1973" width="0.0170%" height="15" fill="rgb(228,18,29)" fg:x="6548" fg:w="4"/><text x="28.1518%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="27.8890%" y="2181" width="0.0341%" height="15" fill="rgb(206,153,11)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="27.8890%" y="2165" width="0.0341%" height="15" fill="rgb(216,50,30)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="27.8890%" y="2149" width="0.0341%" height="15" fill="rgb(217,20,39)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="27.8890%" y="2133" width="0.0341%" height="15" fill="rgb(232,130,46)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="27.8890%" y="2117" width="0.0341%" height="15" fill="rgb(233,141,43)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="27.8890%" y="2101" width="0.0341%" height="15" fill="rgb(240,64,34)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="27.8890%" y="2085" width="0.0341%" height="15" fill="rgb(230,28,31)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="27.8890%" y="2069" width="0.0341%" height="15" fill="rgb(223,56,30)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="27.8890%" y="2053" width="0.0341%" height="15" fill="rgb(248,134,16)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="27.8890%" y="2037" width="0.0341%" height="15" fill="rgb(206,202,4)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="27.8890%" y="2021" width="0.0341%" height="15" fill="rgb(219,116,48)" fg:x="6545" fg:w="8"/><text x="28.1390%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="27.8890%" y="2245" width="0.0469%" height="15" fill="rgb(224,122,46)" fg:x="6545" fg:w="11"/><text x="28.1390%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="27.8890%" y="2229" width="0.0469%" height="15" fill="rgb(219,114,47)" fg:x="6545" fg:w="11"/><text x="28.1390%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="27.8890%" y="2213" width="0.0469%" height="15" fill="rgb(244,60,44)" fg:x="6545" fg:w="11"/><text x="28.1390%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="27.8890%" y="2197" width="0.0469%" height="15" fill="rgb(243,226,25)" fg:x="6545" fg:w="11"/><text x="28.1390%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="27.9231%" y="2181" width="0.0128%" height="15" fill="rgb(243,101,52)" fg:x="6553" fg:w="3"/><text x="28.1731%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="27.9231%" y="2165" width="0.0128%" height="15" fill="rgb(207,69,25)" fg:x="6553" fg:w="3"/><text x="28.1731%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="27.9231%" y="2149" width="0.0128%" height="15" fill="rgb(222,204,53)" fg:x="6553" fg:w="3"/><text x="28.1731%" y="2159.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="27.9402%" y="1925" width="0.0128%" height="15" fill="rgb(234,84,49)" fg:x="6557" fg:w="3"/><text x="28.1902%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="27.9402%" y="1909" width="0.0128%" height="15" fill="rgb(233,77,41)" fg:x="6557" fg:w="3"/><text x="28.1902%" y="1919.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="27.9402%" y="1893" width="0.0128%" height="15" fill="rgb(221,200,42)" fg:x="6557" fg:w="3"/><text x="28.1902%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="27.9402%" y="1941" width="0.0256%" height="15" fill="rgb(221,29,35)" fg:x="6557" fg:w="6"/><text x="28.1902%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="27.9530%" y="1925" width="0.0128%" height="15" fill="rgb(221,71,22)" fg:x="6560" fg:w="3"/><text x="28.2030%" y="1935.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="27.9530%" y="1909" width="0.0128%" height="15" fill="rgb(216,162,23)" fg:x="6560" fg:w="3"/><text x="28.2030%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="27.9402%" y="2117" width="0.0298%" height="15" fill="rgb(248,32,48)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="27.9402%" y="2101" width="0.0298%" height="15" fill="rgb(241,156,30)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="27.9402%" y="2085" width="0.0298%" height="15" fill="rgb(237,196,46)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="27.9402%" y="2069" width="0.0298%" height="15" fill="rgb(216,2,6)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="27.9402%" y="2053" width="0.0298%" height="15" fill="rgb(214,47,16)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="27.9402%" y="2037" width="0.0298%" height="15" fill="rgb(240,123,13)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="27.9402%" y="2021" width="0.0298%" height="15" fill="rgb(206,47,48)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="27.9402%" y="2005" width="0.0298%" height="15" fill="rgb(252,88,27)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="27.9402%" y="1989" width="0.0298%" height="15" fill="rgb(218,105,30)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="27.9402%" y="1973" width="0.0298%" height="15" fill="rgb(227,52,46)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="27.9402%" y="1957" width="0.0298%" height="15" fill="rgb(222,190,21)" fg:x="6557" fg:w="7"/><text x="28.1902%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (29 samples, 0.12%)</title><rect x="27.8763%" y="2357" width="0.1236%" height="15" fill="rgb(205,86,20)" fg:x="6542" fg:w="29"/><text x="28.1263%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (29 samples, 0.12%)</title><rect x="27.8763%" y="2341" width="0.1236%" height="15" fill="rgb(233,45,1)" fg:x="6542" fg:w="29"/><text x="28.1263%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="27.8763%" y="2325" width="0.1236%" height="15" fill="rgb(208,39,6)" fg:x="6542" fg:w="29"/><text x="28.1263%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="27.8763%" y="2309" width="0.1236%" height="15" fill="rgb(211,178,22)" fg:x="6542" fg:w="29"/><text x="28.1263%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="27.8890%" y="2293" width="0.1108%" height="15" fill="rgb(227,112,23)" fg:x="6545" fg:w="26"/><text x="28.1390%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="27.8890%" y="2277" width="0.1108%" height="15" fill="rgb(214,41,4)" fg:x="6545" fg:w="26"/><text x="28.1390%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="27.8890%" y="2261" width="0.1108%" height="15" fill="rgb(219,144,46)" fg:x="6545" fg:w="26"/><text x="28.1390%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="27.9402%" y="2245" width="0.0597%" height="15" fill="rgb(253,176,50)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="27.9402%" y="2229" width="0.0597%" height="15" fill="rgb(206,123,1)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2239.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="27.9402%" y="2213" width="0.0597%" height="15" fill="rgb(250,111,32)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="27.9402%" y="2197" width="0.0597%" height="15" fill="rgb(229,17,49)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="27.9402%" y="2181" width="0.0597%" height="15" fill="rgb(250,123,19)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="27.9402%" y="2165" width="0.0597%" height="15" fill="rgb(220,124,20)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="27.9402%" y="2149" width="0.0597%" height="15" fill="rgb(242,85,25)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="27.9402%" y="2133" width="0.0597%" height="15" fill="rgb(245,217,7)" fg:x="6557" fg:w="14"/><text x="28.1902%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="27.9700%" y="2117" width="0.0298%" height="15" fill="rgb(242,50,25)" fg:x="6564" fg:w="7"/><text x="28.2200%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="27.9700%" y="2101" width="0.0298%" height="15" fill="rgb(251,210,24)" fg:x="6564" fg:w="7"/><text x="28.2200%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="27.9700%" y="2085" width="0.0298%" height="15" fill="rgb(238,24,8)" fg:x="6564" fg:w="7"/><text x="28.2200%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="27.9870%" y="2069" width="0.0128%" height="15" fill="rgb(211,96,19)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="27.9870%" y="2053" width="0.0128%" height="15" fill="rgb(222,186,12)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="2063.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="27.9870%" y="2037" width="0.0128%" height="15" fill="rgb(212,70,49)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="27.9870%" y="2021" width="0.0128%" height="15" fill="rgb(238,69,49)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="27.9870%" y="2005" width="0.0128%" height="15" fill="rgb(225,13,3)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="27.9870%" y="1989" width="0.0128%" height="15" fill="rgb(229,188,14)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="27.9870%" y="1973" width="0.0128%" height="15" fill="rgb(218,58,16)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="27.9870%" y="1957" width="0.0128%" height="15" fill="rgb(206,213,49)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="27.9870%" y="1941" width="0.0128%" height="15" fill="rgb(225,152,48)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="27.9870%" y="1925" width="0.0128%" height="15" fill="rgb(216,103,42)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="27.9870%" y="1909" width="0.0128%" height="15" fill="rgb(212,214,39)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="27.9870%" y="1893" width="0.0128%" height="15" fill="rgb(249,52,41)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="27.9870%" y="1877" width="0.0128%" height="15" fill="rgb(212,173,53)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="27.9870%" y="1861" width="0.0128%" height="15" fill="rgb(232,222,21)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="27.9870%" y="1845" width="0.0128%" height="15" fill="rgb(206,228,31)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="27.9870%" y="1829" width="0.0128%" height="15" fill="rgb(231,121,16)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="27.9870%" y="1813" width="0.0128%" height="15" fill="rgb(241,3,23)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="27.9870%" y="1797" width="0.0128%" height="15" fill="rgb(220,68,37)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="27.9870%" y="1781" width="0.0128%" height="15" fill="rgb(212,23,49)" fg:x="6568" fg:w="3"/><text x="28.2370%" y="1791.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="27.9998%" y="2325" width="0.0213%" height="15" fill="rgb(231,38,8)" fg:x="6571" fg:w="5"/><text x="28.2498%" y="2335.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="27.9998%" y="2309" width="0.0213%" height="15" fill="rgb(222,137,29)" fg:x="6571" fg:w="5"/><text x="28.2498%" y="2319.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="27.9998%" y="2293" width="0.0213%" height="15" fill="rgb(239,8,6)" fg:x="6571" fg:w="5"/><text x="28.2498%" y="2303.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="27.9998%" y="2277" width="0.0213%" height="15" fill="rgb(224,142,47)" fg:x="6571" fg:w="5"/><text x="28.2498%" y="2287.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="27.9998%" y="2261" width="0.0213%" height="15" fill="rgb(226,67,29)" fg:x="6571" fg:w="5"/><text x="28.2498%" y="2271.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="27.9998%" y="2245" width="0.0213%" height="15" fill="rgb(212,144,29)" fg:x="6571" fg:w="5"/><text x="28.2498%" y="2255.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="27.9998%" y="2229" width="0.0213%" height="15" fill="rgb(252,2,51)" fg:x="6571" fg:w="5"/><text x="28.2498%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="27.9998%" y="2357" width="0.0256%" height="15" fill="rgb(246,103,52)" fg:x="6571" fg:w="6"/><text x="28.2498%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="27.9998%" y="2341" width="0.0256%" height="15" fill="rgb(229,229,35)" fg:x="6571" fg:w="6"/><text x="28.2498%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="28.0254%" y="2229" width="0.0128%" height="15" fill="rgb(209,83,15)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="28.0254%" y="2213" width="0.0128%" height="15" fill="rgb(218,54,16)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="28.0254%" y="2197" width="0.0128%" height="15" fill="rgb(205,2,26)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="28.0254%" y="2181" width="0.0128%" height="15" fill="rgb(248,180,0)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="28.0254%" y="2165" width="0.0128%" height="15" fill="rgb(231,136,16)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="28.0254%" y="2149" width="0.0128%" height="15" fill="rgb(215,90,4)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="28.0254%" y="2133" width="0.0128%" height="15" fill="rgb(251,131,3)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="28.0254%" y="2117" width="0.0128%" height="15" fill="rgb(244,47,21)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="28.0254%" y="2101" width="0.0128%" height="15" fill="rgb(231,115,9)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="28.0254%" y="2085" width="0.0128%" height="15" fill="rgb(241,119,20)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="28.0254%" y="2069" width="0.0128%" height="15" fill="rgb(224,99,0)" fg:x="6577" fg:w="3"/><text x="28.2754%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="28.0382%" y="2117" width="0.0298%" height="15" fill="rgb(219,213,18)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="28.0382%" y="2101" width="0.0298%" height="15" fill="rgb(209,71,34)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="28.0382%" y="2085" width="0.0298%" height="15" fill="rgb(245,203,20)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="28.0382%" y="2069" width="0.0298%" height="15" fill="rgb(221,44,20)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="28.0382%" y="2053" width="0.0298%" height="15" fill="rgb(229,97,0)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="28.0382%" y="2037" width="0.0298%" height="15" fill="rgb(206,56,49)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="28.0382%" y="2021" width="0.0298%" height="15" fill="rgb(208,216,41)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="28.0382%" y="2005" width="0.0298%" height="15" fill="rgb(231,31,6)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="28.0382%" y="1989" width="0.0298%" height="15" fill="rgb(239,88,23)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="28.0382%" y="1973" width="0.0298%" height="15" fill="rgb(227,111,45)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="28.0382%" y="1957" width="0.0298%" height="15" fill="rgb(207,167,18)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="28.0382%" y="1941" width="0.0298%" height="15" fill="rgb(253,127,17)" fg:x="6580" fg:w="7"/><text x="28.2882%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="28.0510%" y="1925" width="0.0170%" height="15" fill="rgb(211,229,9)" fg:x="6583" fg:w="4"/><text x="28.3010%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="28.0510%" y="1909" width="0.0170%" height="15" fill="rgb(249,25,14)" fg:x="6583" fg:w="4"/><text x="28.3010%" y="1919.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="28.0680%" y="2069" width="0.0128%" height="15" fill="rgb(237,177,4)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="28.0680%" y="2053" width="0.0128%" height="15" fill="rgb(248,163,50)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="28.0680%" y="2037" width="0.0128%" height="15" fill="rgb(246,67,42)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.0680%" y="2021" width="0.0128%" height="15" fill="rgb(228,136,45)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="28.0680%" y="2005" width="0.0128%" height="15" fill="rgb(218,93,4)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="28.0680%" y="1989" width="0.0128%" height="15" fill="rgb(209,82,29)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="28.0680%" y="1973" width="0.0128%" height="15" fill="rgb(213,219,38)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="28.0680%" y="1957" width="0.0128%" height="15" fill="rgb(233,212,17)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="28.0680%" y="1941" width="0.0128%" height="15" fill="rgb(225,65,3)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="28.0680%" y="1925" width="0.0128%" height="15" fill="rgb(226,25,1)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="28.0680%" y="1909" width="0.0128%" height="15" fill="rgb(229,83,27)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="28.0680%" y="1893" width="0.0128%" height="15" fill="rgb(245,80,47)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="28.0680%" y="1877" width="0.0128%" height="15" fill="rgb(213,79,27)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="28.0680%" y="1861" width="0.0128%" height="15" fill="rgb(232,38,28)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="28.0680%" y="1845" width="0.0128%" height="15" fill="rgb(253,63,39)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="28.0680%" y="1829" width="0.0128%" height="15" fill="rgb(222,204,17)" fg:x="6587" fg:w="3"/><text x="28.3180%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="28.0808%" y="2069" width="0.0341%" height="15" fill="rgb(254,135,49)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="28.0808%" y="2053" width="0.0341%" height="15" fill="rgb(226,203,24)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="28.0808%" y="2037" width="0.0341%" height="15" fill="rgb(225,2,17)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="28.0808%" y="2021" width="0.0341%" height="15" fill="rgb(234,135,43)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="28.0808%" y="2005" width="0.0341%" height="15" fill="rgb(224,14,46)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="28.0808%" y="1989" width="0.0341%" height="15" fill="rgb(206,42,0)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="28.0808%" y="1973" width="0.0341%" height="15" fill="rgb(244,38,23)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="28.0808%" y="1957" width="0.0341%" height="15" fill="rgb(230,25,21)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1967.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="28.0808%" y="1941" width="0.0341%" height="15" fill="rgb(252,217,28)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="28.0808%" y="1925" width="0.0341%" height="15" fill="rgb(251,4,49)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="28.0808%" y="1909" width="0.0341%" height="15" fill="rgb(217,126,31)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="28.0808%" y="1893" width="0.0341%" height="15" fill="rgb(242,181,33)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="28.0808%" y="1877" width="0.0341%" height="15" fill="rgb(241,108,6)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="28.0808%" y="1861" width="0.0341%" height="15" fill="rgb(238,87,39)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="28.0808%" y="1845" width="0.0341%" height="15" fill="rgb(244,101,49)" fg:x="6590" fg:w="8"/><text x="28.3308%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="28.0893%" y="1829" width="0.0256%" height="15" fill="rgb(211,43,42)" fg:x="6592" fg:w="6"/><text x="28.3393%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.0893%" y="1813" width="0.0256%" height="15" fill="rgb(210,93,2)" fg:x="6592" fg:w="6"/><text x="28.3393%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="28.0893%" y="1797" width="0.0256%" height="15" fill="rgb(242,149,32)" fg:x="6592" fg:w="6"/><text x="28.3393%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="28.0978%" y="1781" width="0.0170%" height="15" fill="rgb(228,1,6)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="28.0978%" y="1765" width="0.0170%" height="15" fill="rgb(221,0,20)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="28.0978%" y="1749" width="0.0170%" height="15" fill="rgb(230,39,32)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="28.0978%" y="1733" width="0.0170%" height="15" fill="rgb(240,89,38)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="28.0978%" y="1717" width="0.0170%" height="15" fill="rgb(208,221,23)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="28.0978%" y="1701" width="0.0170%" height="15" fill="rgb(220,145,29)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="28.0978%" y="1685" width="0.0170%" height="15" fill="rgb(219,146,23)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.0978%" y="1669" width="0.0170%" height="15" fill="rgb(244,114,49)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="28.0978%" y="1653" width="0.0170%" height="15" fill="rgb(221,17,10)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.0978%" y="1637" width="0.0170%" height="15" fill="rgb(228,133,21)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="28.0978%" y="1621" width="0.0170%" height="15" fill="rgb(218,81,30)" fg:x="6594" fg:w="4"/><text x="28.3478%" y="1631.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="28.1191%" y="1765" width="0.0256%" height="15" fill="rgb(240,29,36)" fg:x="6599" fg:w="6"/><text x="28.3691%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="28.1319%" y="1749" width="0.0128%" height="15" fill="rgb(246,0,36)" fg:x="6602" fg:w="3"/><text x="28.3819%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="28.1319%" y="1733" width="0.0128%" height="15" fill="rgb(217,79,8)" fg:x="6602" fg:w="3"/><text x="28.3819%" y="1743.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (26 samples, 0.11%)</title><rect x="28.0382%" y="2181" width="0.1108%" height="15" fill="rgb(229,124,44)" fg:x="6580" fg:w="26"/><text x="28.2882%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="28.0382%" y="2165" width="0.1108%" height="15" fill="rgb(210,187,22)" fg:x="6580" fg:w="26"/><text x="28.2882%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="28.0382%" y="2149" width="0.1108%" height="15" fill="rgb(212,115,40)" fg:x="6580" fg:w="26"/><text x="28.2882%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="28.0382%" y="2133" width="0.1108%" height="15" fill="rgb(210,2,54)" fg:x="6580" fg:w="26"/><text x="28.2882%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="28.0680%" y="2117" width="0.0810%" height="15" fill="rgb(227,168,43)" fg:x="6587" fg:w="19"/><text x="28.3180%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="28.0680%" y="2101" width="0.0810%" height="15" fill="rgb(249,92,8)" fg:x="6587" fg:w="19"/><text x="28.3180%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="28.0680%" y="2085" width="0.0810%" height="15" fill="rgb(239,111,35)" fg:x="6587" fg:w="19"/><text x="28.3180%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="28.1149%" y="2069" width="0.0341%" height="15" fill="rgb(230,126,13)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="28.1149%" y="2053" width="0.0341%" height="15" fill="rgb(243,116,33)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="2063.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="28.1149%" y="2037" width="0.0341%" height="15" fill="rgb(246,103,21)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="28.1149%" y="2021" width="0.0341%" height="15" fill="rgb(237,53,26)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="28.1149%" y="2005" width="0.0341%" height="15" fill="rgb(213,121,15)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="28.1149%" y="1989" width="0.0341%" height="15" fill="rgb(251,83,35)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="28.1149%" y="1973" width="0.0341%" height="15" fill="rgb(222,79,8)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="28.1149%" y="1957" width="0.0341%" height="15" fill="rgb(217,74,36)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="28.1149%" y="1941" width="0.0341%" height="15" fill="rgb(221,14,30)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="28.1149%" y="1925" width="0.0341%" height="15" fill="rgb(216,221,5)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="28.1149%" y="1909" width="0.0341%" height="15" fill="rgb(236,118,16)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="28.1149%" y="1893" width="0.0341%" height="15" fill="rgb(243,91,43)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="28.1149%" y="1877" width="0.0341%" height="15" fill="rgb(231,110,7)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="28.1149%" y="1861" width="0.0341%" height="15" fill="rgb(217,80,6)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="28.1149%" y="1845" width="0.0341%" height="15" fill="rgb(251,116,7)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="28.1149%" y="1829" width="0.0341%" height="15" fill="rgb(236,70,22)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="28.1149%" y="1813" width="0.0341%" height="15" fill="rgb(245,13,10)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="28.1149%" y="1797" width="0.0341%" height="15" fill="rgb(233,146,34)" fg:x="6598" fg:w="8"/><text x="28.3649%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="28.1191%" y="1781" width="0.0298%" height="15" fill="rgb(241,196,34)" fg:x="6599" fg:w="7"/><text x="28.3691%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="28.1490%" y="2053" width="0.0256%" height="15" fill="rgb(207,150,20)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="28.1490%" y="2037" width="0.0256%" height="15" fill="rgb(251,27,52)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="28.1490%" y="2021" width="0.0256%" height="15" fill="rgb(221,76,2)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="28.1490%" y="2005" width="0.0256%" height="15" fill="rgb(242,94,41)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="28.1490%" y="1989" width="0.0256%" height="15" fill="rgb(245,9,8)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="28.1490%" y="1973" width="0.0256%" height="15" fill="rgb(236,139,26)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="28.1490%" y="1957" width="0.0256%" height="15" fill="rgb(249,11,18)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="28.1490%" y="1941" width="0.0256%" height="15" fill="rgb(206,175,35)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="28.1490%" y="1925" width="0.0256%" height="15" fill="rgb(231,3,46)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="28.1490%" y="1909" width="0.0256%" height="15" fill="rgb(243,27,8)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="28.1490%" y="1893" width="0.0256%" height="15" fill="rgb(223,53,13)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="28.1490%" y="1877" width="0.0256%" height="15" fill="rgb(248,68,15)" fg:x="6606" fg:w="6"/><text x="28.3990%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="28.1532%" y="1861" width="0.0213%" height="15" fill="rgb(216,61,26)" fg:x="6607" fg:w="5"/><text x="28.4032%" y="1871.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="28.1532%" y="1845" width="0.0213%" height="15" fill="rgb(213,201,24)" fg:x="6607" fg:w="5"/><text x="28.4032%" y="1855.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="28.1831%" y="1749" width="0.0128%" height="15" fill="rgb(214,20,17)" fg:x="6614" fg:w="3"/><text x="28.4331%" y="1759.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="28.1831%" y="1733" width="0.0128%" height="15" fill="rgb(206,21,46)" fg:x="6614" fg:w="3"/><text x="28.4331%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="28.1745%" y="1765" width="0.0256%" height="15" fill="rgb(234,222,24)" fg:x="6612" fg:w="6"/><text x="28.4245%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="28.1745%" y="2005" width="0.0426%" height="15" fill="rgb(221,25,26)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="28.1745%" y="1989" width="0.0426%" height="15" fill="rgb(241,148,26)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="28.1745%" y="1973" width="0.0426%" height="15" fill="rgb(248,119,35)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="28.1745%" y="1957" width="0.0426%" height="15" fill="rgb(239,126,23)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="28.1745%" y="1941" width="0.0426%" height="15" fill="rgb(247,120,25)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="28.1745%" y="1925" width="0.0426%" height="15" fill="rgb(220,93,32)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="28.1745%" y="1909" width="0.0426%" height="15" fill="rgb(236,46,26)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="28.1745%" y="1893" width="0.0426%" height="15" fill="rgb(229,20,45)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="28.1745%" y="1877" width="0.0426%" height="15" fill="rgb(225,168,41)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="28.1745%" y="1861" width="0.0426%" height="15" fill="rgb(253,123,20)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="28.1745%" y="1845" width="0.0426%" height="15" fill="rgb(244,17,29)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="28.1745%" y="1829" width="0.0426%" height="15" fill="rgb(242,196,24)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="28.1745%" y="1813" width="0.0426%" height="15" fill="rgb(210,113,45)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="28.1745%" y="1797" width="0.0426%" height="15" fill="rgb(205,129,3)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="28.1745%" y="1781" width="0.0426%" height="15" fill="rgb(232,74,10)" fg:x="6612" fg:w="10"/><text x="28.4245%" y="1791.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="28.2001%" y="1765" width="0.0170%" height="15" fill="rgb(251,63,43)" fg:x="6618" fg:w="4"/><text x="28.4501%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="28.2171%" y="1685" width="0.0170%" height="15" fill="rgb(228,215,15)" fg:x="6622" fg:w="4"/><text x="28.4671%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="28.2171%" y="1669" width="0.0170%" height="15" fill="rgb(233,179,38)" fg:x="6622" fg:w="4"/><text x="28.4671%" y="1679.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="28.2171%" y="1653" width="0.0170%" height="15" fill="rgb(227,187,9)" fg:x="6622" fg:w="4"/><text x="28.4671%" y="1663.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="28.2171%" y="1701" width="0.0256%" height="15" fill="rgb(231,89,27)" fg:x="6622" fg:w="6"/><text x="28.4671%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (107 samples, 0.46%)</title><rect x="27.7910%" y="2469" width="0.4559%" height="15" fill="rgb(225,117,1)" fg:x="6522" fg:w="107"/><text x="28.0410%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (107 samples, 0.46%)</title><rect x="27.7910%" y="2453" width="0.4559%" height="15" fill="rgb(239,120,49)" fg:x="6522" fg:w="107"/><text x="28.0410%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (107 samples, 0.46%)</title><rect x="27.7910%" y="2437" width="0.4559%" height="15" fill="rgb(236,137,37)" fg:x="6522" fg:w="107"/><text x="28.0410%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (107 samples, 0.46%)</title><rect x="27.7910%" y="2421" width="0.4559%" height="15" fill="rgb(239,73,42)" fg:x="6522" fg:w="107"/><text x="28.0410%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (87 samples, 0.37%)</title><rect x="27.8763%" y="2405" width="0.3707%" height="15" fill="rgb(207,169,6)" fg:x="6542" fg:w="87"/><text x="28.1263%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (87 samples, 0.37%)</title><rect x="27.8763%" y="2389" width="0.3707%" height="15" fill="rgb(228,171,10)" fg:x="6542" fg:w="87"/><text x="28.1263%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (87 samples, 0.37%)</title><rect x="27.8763%" y="2373" width="0.3707%" height="15" fill="rgb(217,228,47)" fg:x="6542" fg:w="87"/><text x="28.1263%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (52 samples, 0.22%)</title><rect x="28.0254%" y="2357" width="0.2216%" height="15" fill="rgb(227,116,17)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (52 samples, 0.22%)</title><rect x="28.0254%" y="2341" width="0.2216%" height="15" fill="rgb(245,128,36)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2351.50"></text></g><g><title>std::panicking::try (52 samples, 0.22%)</title><rect x="28.0254%" y="2325" width="0.2216%" height="15" fill="rgb(221,139,3)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (52 samples, 0.22%)</title><rect x="28.0254%" y="2309" width="0.2216%" height="15" fill="rgb(207,59,54)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (52 samples, 0.22%)</title><rect x="28.0254%" y="2293" width="0.2216%" height="15" fill="rgb(231,129,12)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (52 samples, 0.22%)</title><rect x="28.0254%" y="2277" width="0.2216%" height="15" fill="rgb(235,49,17)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (52 samples, 0.22%)</title><rect x="28.0254%" y="2261" width="0.2216%" height="15" fill="rgb(229,175,11)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.22%)</title><rect x="28.0254%" y="2245" width="0.2216%" height="15" fill="rgb(206,187,30)" fg:x="6577" fg:w="52"/><text x="28.2754%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (49 samples, 0.21%)</title><rect x="28.0382%" y="2229" width="0.2088%" height="15" fill="rgb(214,39,19)" fg:x="6580" fg:w="49"/><text x="28.2882%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.21%)</title><rect x="28.0382%" y="2213" width="0.2088%" height="15" fill="rgb(243,92,46)" fg:x="6580" fg:w="49"/><text x="28.2882%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (49 samples, 0.21%)</title><rect x="28.0382%" y="2197" width="0.2088%" height="15" fill="rgb(240,125,36)" fg:x="6580" fg:w="49"/><text x="28.2882%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="28.1490%" y="2181" width="0.0980%" height="15" fill="rgb(217,193,45)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="28.1490%" y="2165" width="0.0980%" height="15" fill="rgb(230,127,16)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2175.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="28.1490%" y="2149" width="0.0980%" height="15" fill="rgb(208,161,0)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="28.1490%" y="2133" width="0.0980%" height="15" fill="rgb(251,69,39)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="28.1490%" y="2117" width="0.0980%" height="15" fill="rgb(229,86,22)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (23 samples, 0.10%)</title><rect x="28.1490%" y="2101" width="0.0980%" height="15" fill="rgb(223,67,43)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="28.1490%" y="2085" width="0.0980%" height="15" fill="rgb(254,80,31)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="28.1490%" y="2069" width="0.0980%" height="15" fill="rgb(225,149,52)" fg:x="6606" fg:w="23"/><text x="28.3990%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="28.1745%" y="2053" width="0.0724%" height="15" fill="rgb(214,169,18)" fg:x="6612" fg:w="17"/><text x="28.4245%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="28.1745%" y="2037" width="0.0724%" height="15" fill="rgb(236,224,43)" fg:x="6612" fg:w="17"/><text x="28.4245%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="28.1745%" y="2021" width="0.0724%" height="15" fill="rgb(251,125,34)" fg:x="6612" fg:w="17"/><text x="28.4245%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="28.2171%" y="2005" width="0.0298%" height="15" fill="rgb(224,39,44)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="28.2171%" y="1989" width="0.0298%" height="15" fill="rgb(206,111,46)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1999.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="28.2171%" y="1973" width="0.0298%" height="15" fill="rgb(227,147,50)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="28.2171%" y="1957" width="0.0298%" height="15" fill="rgb(239,144,36)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="28.2171%" y="1941" width="0.0298%" height="15" fill="rgb(216,17,19)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="28.2171%" y="1925" width="0.0298%" height="15" fill="rgb(211,192,29)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="28.2171%" y="1909" width="0.0298%" height="15" fill="rgb(238,195,20)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.2171%" y="1893" width="0.0298%" height="15" fill="rgb(213,210,42)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="28.2171%" y="1877" width="0.0298%" height="15" fill="rgb(244,4,49)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="28.2171%" y="1861" width="0.0298%" height="15" fill="rgb(254,106,42)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="28.2171%" y="1845" width="0.0298%" height="15" fill="rgb(222,182,12)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="28.2171%" y="1829" width="0.0298%" height="15" fill="rgb(228,160,15)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="28.2171%" y="1813" width="0.0298%" height="15" fill="rgb(243,149,43)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="28.2171%" y="1797" width="0.0298%" height="15" fill="rgb(245,150,32)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="28.2171%" y="1781" width="0.0298%" height="15" fill="rgb(205,43,19)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="28.2171%" y="1765" width="0.0298%" height="15" fill="rgb(249,189,35)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="28.2171%" y="1749" width="0.0298%" height="15" fill="rgb(223,9,0)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="28.2171%" y="1733" width="0.0298%" height="15" fill="rgb(213,142,45)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="28.2171%" y="1717" width="0.0298%" height="15" fill="rgb(208,148,2)" fg:x="6622" fg:w="7"/><text x="28.4671%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="28.2555%" y="1077" width="0.0170%" height="15" fill="rgb(207,191,42)" fg:x="6631" fg:w="4"/><text x="28.5055%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="28.2555%" y="1061" width="0.0170%" height="15" fill="rgb(215,218,38)" fg:x="6631" fg:w="4"/><text x="28.5055%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="28.2555%" y="1045" width="0.0170%" height="15" fill="rgb(223,195,24)" fg:x="6631" fg:w="4"/><text x="28.5055%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.2555%" y="1029" width="0.0170%" height="15" fill="rgb(254,60,30)" fg:x="6631" fg:w="4"/><text x="28.5055%" y="1039.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="28.2555%" y="1013" width="0.0170%" height="15" fill="rgb(223,2,9)" fg:x="6631" fg:w="4"/><text x="28.5055%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.2555%" y="997" width="0.0170%" height="15" fill="rgb(253,134,46)" fg:x="6631" fg:w="4"/><text x="28.5055%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="28.2555%" y="981" width="0.0170%" height="15" fill="rgb(206,209,20)" fg:x="6631" fg:w="4"/><text x="28.5055%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="28.2555%" y="1893" width="0.0256%" height="15" fill="rgb(253,104,42)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="28.2555%" y="1877" width="0.0256%" height="15" fill="rgb(223,47,23)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1887.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="28.2555%" y="1861" width="0.0256%" height="15" fill="rgb(247,148,44)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1871.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="28.2555%" y="1845" width="0.0256%" height="15" fill="rgb(221,224,16)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1855.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="28.2555%" y="1829" width="0.0256%" height="15" fill="rgb(252,103,29)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1839.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="28.2555%" y="1813" width="0.0256%" height="15" fill="rgb(244,185,34)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1823.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="28.2555%" y="1797" width="0.0256%" height="15" fill="rgb(218,18,50)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1807.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="28.2555%" y="1781" width="0.0256%" height="15" fill="rgb(234,105,8)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1791.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="28.2555%" y="1765" width="0.0256%" height="15" fill="rgb(249,51,19)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1775.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="28.2555%" y="1749" width="0.0256%" height="15" fill="rgb(233,132,7)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1759.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="28.2555%" y="1733" width="0.0256%" height="15" fill="rgb(229,181,43)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1743.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1717" width="0.0256%" height="15" fill="rgb(223,20,7)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1701" width="0.0256%" height="15" fill="rgb(245,13,34)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1685" width="0.0256%" height="15" fill="rgb(242,0,53)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.2555%" y="1669" width="0.0256%" height="15" fill="rgb(233,115,19)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="28.2555%" y="1653" width="0.0256%" height="15" fill="rgb(216,170,26)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.2555%" y="1637" width="0.0256%" height="15" fill="rgb(233,13,0)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1621" width="0.0256%" height="15" fill="rgb(228,79,21)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="28.2555%" y="1605" width="0.0256%" height="15" fill="rgb(244,17,41)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="28.2555%" y="1589" width="0.0256%" height="15" fill="rgb(253,152,11)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1599.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="28.2555%" y="1573" width="0.0256%" height="15" fill="rgb(254,94,47)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="28.2555%" y="1557" width="0.0256%" height="15" fill="rgb(239,66,43)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="28.2555%" y="1541" width="0.0256%" height="15" fill="rgb(251,25,22)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1525" width="0.0256%" height="15" fill="rgb(227,65,46)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1509" width="0.0256%" height="15" fill="rgb(240,180,32)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.2555%" y="1493" width="0.0256%" height="15" fill="rgb(242,11,35)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="28.2555%" y="1477" width="0.0256%" height="15" fill="rgb(221,41,49)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.2555%" y="1461" width="0.0256%" height="15" fill="rgb(253,80,52)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1445" width="0.0256%" height="15" fill="rgb(232,152,28)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="28.2555%" y="1429" width="0.0256%" height="15" fill="rgb(219,110,12)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="28.2555%" y="1413" width="0.0256%" height="15" fill="rgb(218,98,43)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1423.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="28.2555%" y="1397" width="0.0256%" height="15" fill="rgb(253,96,49)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="28.2555%" y="1381" width="0.0256%" height="15" fill="rgb(238,132,17)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="28.2555%" y="1365" width="0.0256%" height="15" fill="rgb(208,82,25)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1349" width="0.0256%" height="15" fill="rgb(237,77,13)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1333" width="0.0256%" height="15" fill="rgb(230,6,11)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.2555%" y="1317" width="0.0256%" height="15" fill="rgb(207,29,48)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="28.2555%" y="1301" width="0.0256%" height="15" fill="rgb(247,105,22)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.2555%" y="1285" width="0.0256%" height="15" fill="rgb(223,114,44)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1269" width="0.0256%" height="15" fill="rgb(242,3,46)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="28.2555%" y="1253" width="0.0256%" height="15" fill="rgb(243,197,8)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1263.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="28.2555%" y="1237" width="0.0256%" height="15" fill="rgb(238,171,27)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1247.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="28.2555%" y="1221" width="0.0256%" height="15" fill="rgb(254,144,27)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1231.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="28.2555%" y="1205" width="0.0256%" height="15" fill="rgb(216,203,36)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1215.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="28.2555%" y="1189" width="0.0256%" height="15" fill="rgb(247,27,26)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1173" width="0.0256%" height="15" fill="rgb(234,180,24)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1157" width="0.0256%" height="15" fill="rgb(221,50,43)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.2555%" y="1141" width="0.0256%" height="15" fill="rgb(236,50,6)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1151.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="28.2555%" y="1125" width="0.0256%" height="15" fill="rgb(245,172,32)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.2555%" y="1109" width="0.0256%" height="15" fill="rgb(207,54,46)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="28.2555%" y="1093" width="0.0256%" height="15" fill="rgb(218,67,44)" fg:x="6631" fg:w="6"/><text x="28.5055%" y="1103.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="28.2555%" y="2181" width="0.0341%" height="15" fill="rgb(208,152,22)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="28.2555%" y="2165" width="0.0341%" height="15" fill="rgb(243,177,0)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2175.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="28.2555%" y="2149" width="0.0341%" height="15" fill="rgb(212,75,12)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2159.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="28.2555%" y="2133" width="0.0341%" height="15" fill="rgb(212,129,29)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2143.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="28.2555%" y="2117" width="0.0341%" height="15" fill="rgb(241,229,35)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2127.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="28.2555%" y="2101" width="0.0341%" height="15" fill="rgb(232,49,32)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2111.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="28.2555%" y="2085" width="0.0341%" height="15" fill="rgb(243,119,48)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2095.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="28.2555%" y="2069" width="0.0341%" height="15" fill="rgb(212,205,30)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2079.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="28.2555%" y="2053" width="0.0341%" height="15" fill="rgb(218,175,42)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2063.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="28.2555%" y="2037" width="0.0341%" height="15" fill="rgb(230,156,27)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2047.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="28.2555%" y="2021" width="0.0341%" height="15" fill="rgb(254,32,43)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2031.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="28.2555%" y="2005" width="0.0341%" height="15" fill="rgb(246,89,34)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="28.2555%" y="1989" width="0.0341%" height="15" fill="rgb(247,162,17)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="28.2555%" y="1973" width="0.0341%" height="15" fill="rgb(219,71,37)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="28.2555%" y="1957" width="0.0341%" height="15" fill="rgb(210,184,7)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="28.2555%" y="1941" width="0.0341%" height="15" fill="rgb(245,16,32)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="28.2555%" y="1925" width="0.0341%" height="15" fill="rgb(209,62,7)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="28.2555%" y="1909" width="0.0341%" height="15" fill="rgb(215,16,15)" fg:x="6631" fg:w="8"/><text x="28.5055%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="28.2896%" y="2053" width="0.0128%" height="15" fill="rgb(223,60,14)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="28.2896%" y="2037" width="0.0128%" height="15" fill="rgb(244,134,12)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="28.2896%" y="2021" width="0.0128%" height="15" fill="rgb(224,3,41)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="28.2896%" y="2005" width="0.0128%" height="15" fill="rgb(213,84,2)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="28.2896%" y="1989" width="0.0128%" height="15" fill="rgb(213,216,27)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="28.2896%" y="1973" width="0.0128%" height="15" fill="rgb(218,76,35)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="28.2896%" y="1957" width="0.0128%" height="15" fill="rgb(253,89,24)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="28.2896%" y="1941" width="0.0128%" height="15" fill="rgb(217,188,40)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="28.2896%" y="1925" width="0.0128%" height="15" fill="rgb(237,79,38)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="28.2896%" y="1909" width="0.0128%" height="15" fill="rgb(215,116,13)" fg:x="6639" fg:w="3"/><text x="28.5396%" y="1919.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="28.3024%" y="2005" width="0.0128%" height="15" fill="rgb(249,66,35)" fg:x="6642" fg:w="3"/><text x="28.5524%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="28.3024%" y="1989" width="0.0128%" height="15" fill="rgb(253,86,18)" fg:x="6642" fg:w="3"/><text x="28.5524%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="28.3024%" y="1973" width="0.0128%" height="15" fill="rgb(209,175,36)" fg:x="6642" fg:w="3"/><text x="28.5524%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.3024%" y="1957" width="0.0128%" height="15" fill="rgb(253,149,3)" fg:x="6642" fg:w="3"/><text x="28.5524%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="28.3024%" y="1941" width="0.0128%" height="15" fill="rgb(242,124,49)" fg:x="6642" fg:w="3"/><text x="28.5524%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.3024%" y="1925" width="0.0128%" height="15" fill="rgb(219,171,24)" fg:x="6642" fg:w="3"/><text x="28.5524%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="28.3024%" y="1909" width="0.0128%" height="15" fill="rgb(216,121,30)" fg:x="6642" fg:w="3"/><text x="28.5524%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (19 samples, 0.08%)</title><rect x="28.2470%" y="2469" width="0.0810%" height="15" fill="rgb(234,165,21)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.08%)</title><rect x="28.2470%" y="2453" width="0.0810%" height="15" fill="rgb(234,103,40)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2463.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (19 samples, 0.08%)</title><rect x="28.2470%" y="2437" width="0.0810%" height="15" fill="rgb(250,137,24)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2447.50"></text></g><g><title>rayon_core::job::JobRef::execute (19 samples, 0.08%)</title><rect x="28.2470%" y="2421" width="0.0810%" height="15" fill="rgb(253,22,21)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2431.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (19 samples, 0.08%)</title><rect x="28.2470%" y="2405" width="0.0810%" height="15" fill="rgb(243,22,5)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2415.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (19 samples, 0.08%)</title><rect x="28.2470%" y="2389" width="0.0810%" height="15" fill="rgb(212,56,7)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2399.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="28.2470%" y="2373" width="0.0810%" height="15" fill="rgb(223,190,49)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2383.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="28.2470%" y="2357" width="0.0810%" height="15" fill="rgb(221,110,35)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2367.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="28.2470%" y="2341" width="0.0810%" height="15" fill="rgb(212,113,34)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2351.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="28.2470%" y="2325" width="0.0810%" height="15" fill="rgb(216,125,47)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2335.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="28.2470%" y="2309" width="0.0810%" height="15" fill="rgb(251,112,19)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2319.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (19 samples, 0.08%)</title><rect x="28.2470%" y="2293" width="0.0810%" height="15" fill="rgb(254,200,41)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (19 samples, 0.08%)</title><rect x="28.2470%" y="2277" width="0.0810%" height="15" fill="rgb(225,17,42)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="28.2470%" y="2261" width="0.0810%" height="15" fill="rgb(208,105,35)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="28.2470%" y="2245" width="0.0810%" height="15" fill="rgb(210,125,51)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="28.2470%" y="2229" width="0.0810%" height="15" fill="rgb(227,213,18)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="28.2470%" y="2213" width="0.0810%" height="15" fill="rgb(221,174,32)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="28.2470%" y="2197" width="0.0810%" height="15" fill="rgb(234,23,1)" fg:x="6629" fg:w="19"/><text x="28.4970%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="28.2896%" y="2181" width="0.0384%" height="15" fill="rgb(209,65,17)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="28.2896%" y="2165" width="0.0384%" height="15" fill="rgb(206,224,31)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2175.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="28.2896%" y="2149" width="0.0384%" height="15" fill="rgb(230,20,38)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="28.2896%" y="2133" width="0.0384%" height="15" fill="rgb(211,9,41)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="28.2896%" y="2117" width="0.0384%" height="15" fill="rgb(233,214,4)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="28.2896%" y="2101" width="0.0384%" height="15" fill="rgb(225,60,54)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="28.2896%" y="2085" width="0.0384%" height="15" fill="rgb(206,228,35)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="28.2896%" y="2069" width="0.0384%" height="15" fill="rgb(212,178,50)" fg:x="6639" fg:w="9"/><text x="28.5396%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="28.3024%" y="2053" width="0.0256%" height="15" fill="rgb(206,192,33)" fg:x="6642" fg:w="6"/><text x="28.5524%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.3024%" y="2037" width="0.0256%" height="15" fill="rgb(238,210,1)" fg:x="6642" fg:w="6"/><text x="28.5524%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="28.3024%" y="2021" width="0.0256%" height="15" fill="rgb(205,65,52)" fg:x="6642" fg:w="6"/><text x="28.5524%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="28.3152%" y="2005" width="0.0128%" height="15" fill="rgb(237,204,51)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="28.3152%" y="1989" width="0.0128%" height="15" fill="rgb(213,119,51)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1999.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="28.3152%" y="1973" width="0.0128%" height="15" fill="rgb(244,156,37)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="28.3152%" y="1957" width="0.0128%" height="15" fill="rgb(249,96,18)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="28.3152%" y="1941" width="0.0128%" height="15" fill="rgb(231,65,11)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="28.3152%" y="1925" width="0.0128%" height="15" fill="rgb(240,187,2)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="28.3152%" y="1909" width="0.0128%" height="15" fill="rgb(242,121,39)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.3152%" y="1893" width="0.0128%" height="15" fill="rgb(233,205,18)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="28.3152%" y="1877" width="0.0128%" height="15" fill="rgb(219,67,33)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.3152%" y="1861" width="0.0128%" height="15" fill="rgb(227,84,12)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="28.3152%" y="1845" width="0.0128%" height="15" fill="rgb(227,42,52)" fg:x="6645" fg:w="3"/><text x="28.5652%" y="1855.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (11 samples, 0.05%)</title><rect x="28.3279%" y="2149" width="0.0469%" height="15" fill="rgb(231,27,28)" fg:x="6648" fg:w="11"/><text x="28.5779%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::exp (11 samples, 0.05%)</title><rect x="28.3279%" y="2133" width="0.0469%" height="15" fill="rgb(238,42,2)" fg:x="6648" fg:w="11"/><text x="28.5779%" y="2143.50"></text></g><g><title>exp (11 samples, 0.05%)</title><rect x="28.3279%" y="2117" width="0.0469%" height="15" fill="rgb(215,15,9)" fg:x="6648" fg:w="11"/><text x="28.5779%" y="2127.50"></text></g><g><title>[libm.so.6] (10 samples, 0.04%)</title><rect x="28.3322%" y="2101" width="0.0426%" height="15" fill="rgb(205,195,15)" fg:x="6649" fg:w="10"/><text x="28.5822%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="28.3748%" y="2149" width="0.0128%" height="15" fill="rgb(233,143,2)" fg:x="6659" fg:w="3"/><text x="28.6248%" y="2159.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="28.3748%" y="2133" width="0.0128%" height="15" fill="rgb(207,108,8)" fg:x="6659" fg:w="3"/><text x="28.6248%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (20 samples, 0.09%)</title><rect x="28.3279%" y="2165" width="0.0852%" height="15" fill="rgb(214,53,21)" fg:x="6648" fg:w="20"/><text x="28.5779%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (6 samples, 0.03%)</title><rect x="28.3876%" y="2149" width="0.0256%" height="15" fill="rgb(238,212,36)" fg:x="6662" fg:w="6"/><text x="28.6376%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::sqrt (6 samples, 0.03%)</title><rect x="28.3876%" y="2133" width="0.0256%" height="15" fill="rgb(218,151,47)" fg:x="6662" fg:w="6"/><text x="28.6376%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (21 samples, 0.09%)</title><rect x="28.3279%" y="2341" width="0.0895%" height="15" fill="rgb(245,160,3)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2351.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (21 samples, 0.09%)</title><rect x="28.3279%" y="2325" width="0.0895%" height="15" fill="rgb(238,106,19)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (21 samples, 0.09%)</title><rect x="28.3279%" y="2309" width="0.0895%" height="15" fill="rgb(207,206,9)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (21 samples, 0.09%)</title><rect x="28.3279%" y="2293" width="0.0895%" height="15" fill="rgb(254,40,10)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (21 samples, 0.09%)</title><rect x="28.3279%" y="2277" width="0.0895%" height="15" fill="rgb(245,81,8)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (21 samples, 0.09%)</title><rect x="28.3279%" y="2261" width="0.0895%" height="15" fill="rgb(214,119,17)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (21 samples, 0.09%)</title><rect x="28.3279%" y="2245" width="0.0895%" height="15" fill="rgb(245,100,39)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (21 samples, 0.09%)</title><rect x="28.3279%" y="2229" width="0.0895%" height="15" fill="rgb(243,105,16)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (21 samples, 0.09%)</title><rect x="28.3279%" y="2213" width="0.0895%" height="15" fill="rgb(214,53,2)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (21 samples, 0.09%)</title><rect x="28.3279%" y="2197" width="0.0895%" height="15" fill="rgb(251,54,50)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (21 samples, 0.09%)</title><rect x="28.3279%" y="2181" width="0.0895%" height="15" fill="rgb(244,121,37)" fg:x="6648" fg:w="21"/><text x="28.5779%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="28.4174%" y="2229" width="0.0128%" height="15" fill="rgb(236,158,39)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="28.4174%" y="2213" width="0.0128%" height="15" fill="rgb(226,25,37)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="28.4174%" y="2197" width="0.0128%" height="15" fill="rgb(222,71,46)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="28.4174%" y="2181" width="0.0128%" height="15" fill="rgb(209,27,29)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="28.4174%" y="2165" width="0.0128%" height="15" fill="rgb(210,196,17)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="28.4174%" y="2149" width="0.0128%" height="15" fill="rgb(236,76,23)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="28.4174%" y="2133" width="0.0128%" height="15" fill="rgb(214,33,32)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="28.4174%" y="2117" width="0.0128%" height="15" fill="rgb(243,16,26)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="28.4174%" y="2101" width="0.0128%" height="15" fill="rgb(241,30,48)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="28.4174%" y="2085" width="0.0128%" height="15" fill="rgb(241,106,1)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="28.4174%" y="2069" width="0.0128%" height="15" fill="rgb(230,62,29)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="28.4174%" y="2053" width="0.0128%" height="15" fill="rgb(207,166,53)" fg:x="6669" fg:w="3"/><text x="28.6674%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="28.4345%" y="1925" width="0.0256%" height="15" fill="rgb(244,54,13)" fg:x="6673" fg:w="6"/><text x="28.6845%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="28.4345%" y="1909" width="0.0256%" height="15" fill="rgb(205,144,19)" fg:x="6673" fg:w="6"/><text x="28.6845%" y="1919.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="28.4345%" y="1893" width="0.0256%" height="15" fill="rgb(225,165,45)" fg:x="6673" fg:w="6"/><text x="28.6845%" y="1903.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="28.4345%" y="1877" width="0.0256%" height="15" fill="rgb(220,140,6)" fg:x="6673" fg:w="6"/><text x="28.6845%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="28.4302%" y="2117" width="0.0341%" height="15" fill="rgb(234,69,14)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="28.4302%" y="2101" width="0.0341%" height="15" fill="rgb(243,24,33)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="28.4302%" y="2085" width="0.0341%" height="15" fill="rgb(253,100,43)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="28.4302%" y="2069" width="0.0341%" height="15" fill="rgb(221,168,15)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="28.4302%" y="2053" width="0.0341%" height="15" fill="rgb(237,15,11)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="28.4302%" y="2037" width="0.0341%" height="15" fill="rgb(229,207,40)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="28.4302%" y="2021" width="0.0341%" height="15" fill="rgb(246,125,48)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="28.4302%" y="2005" width="0.0341%" height="15" fill="rgb(231,65,10)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="28.4302%" y="1989" width="0.0341%" height="15" fill="rgb(222,152,40)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="28.4302%" y="1973" width="0.0341%" height="15" fill="rgb(214,12,30)" fg:x="6672" fg:w="8"/><text x="28.6802%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="28.4345%" y="1957" width="0.0298%" height="15" fill="rgb(239,80,41)" fg:x="6673" fg:w="7"/><text x="28.6845%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="28.4345%" y="1941" width="0.0298%" height="15" fill="rgb(206,175,27)" fg:x="6673" fg:w="7"/><text x="28.6845%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="28.4643%" y="1813" width="0.0213%" height="15" fill="rgb(222,43,39)" fg:x="6680" fg:w="5"/><text x="28.7143%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="28.4643%" y="1797" width="0.0213%" height="15" fill="rgb(243,47,50)" fg:x="6680" fg:w="5"/><text x="28.7143%" y="1807.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="28.4643%" y="1781" width="0.0213%" height="15" fill="rgb(243,61,21)" fg:x="6680" fg:w="5"/><text x="28.7143%" y="1791.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="28.4643%" y="1765" width="0.0213%" height="15" fill="rgb(208,172,5)" fg:x="6680" fg:w="5"/><text x="28.7143%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="28.4856%" y="1813" width="0.0128%" height="15" fill="rgb(219,24,25)" fg:x="6685" fg:w="3"/><text x="28.7356%" y="1823.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="28.4856%" y="1797" width="0.0128%" height="15" fill="rgb(235,42,41)" fg:x="6685" fg:w="3"/><text x="28.7356%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="28.4643%" y="2069" width="0.0384%" height="15" fill="rgb(226,190,24)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="28.4643%" y="2053" width="0.0384%" height="15" fill="rgb(216,55,27)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="28.4643%" y="2037" width="0.0384%" height="15" fill="rgb(231,77,14)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="28.4643%" y="2021" width="0.0384%" height="15" fill="rgb(208,108,34)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="28.4643%" y="2005" width="0.0384%" height="15" fill="rgb(228,183,52)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="28.4643%" y="1989" width="0.0384%" height="15" fill="rgb(224,152,1)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="28.4643%" y="1973" width="0.0384%" height="15" fill="rgb(246,115,8)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="28.4643%" y="1957" width="0.0384%" height="15" fill="rgb(211,76,13)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="28.4643%" y="1941" width="0.0384%" height="15" fill="rgb(233,214,49)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="28.4643%" y="1925" width="0.0384%" height="15" fill="rgb(223,44,51)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="28.4643%" y="1909" width="0.0384%" height="15" fill="rgb(225,111,51)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="28.4643%" y="1893" width="0.0384%" height="15" fill="rgb(231,185,26)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="28.4643%" y="1877" width="0.0384%" height="15" fill="rgb(233,111,30)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="28.4643%" y="1861" width="0.0384%" height="15" fill="rgb(250,1,47)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="28.4643%" y="1845" width="0.0384%" height="15" fill="rgb(254,210,3)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="28.4643%" y="1829" width="0.0384%" height="15" fill="rgb(234,14,22)" fg:x="6680" fg:w="9"/><text x="28.7143%" y="1839.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="28.5026%" y="1765" width="0.0256%" height="15" fill="rgb(221,117,4)" fg:x="6689" fg:w="6"/><text x="28.7526%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="28.5154%" y="1749" width="0.0128%" height="15" fill="rgb(251,147,27)" fg:x="6692" fg:w="3"/><text x="28.7654%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="28.5154%" y="1733" width="0.0128%" height="15" fill="rgb(226,52,11)" fg:x="6692" fg:w="3"/><text x="28.7654%" y="1743.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (27 samples, 0.12%)</title><rect x="28.4302%" y="2181" width="0.1151%" height="15" fill="rgb(229,222,5)" fg:x="6672" fg:w="27"/><text x="28.6802%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (27 samples, 0.12%)</title><rect x="28.4302%" y="2165" width="0.1151%" height="15" fill="rgb(232,76,2)" fg:x="6672" fg:w="27"/><text x="28.6802%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="28.4302%" y="2149" width="0.1151%" height="15" fill="rgb(242,108,2)" fg:x="6672" fg:w="27"/><text x="28.6802%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="28.4302%" y="2133" width="0.1151%" height="15" fill="rgb(213,165,6)" fg:x="6672" fg:w="27"/><text x="28.6802%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="28.4643%" y="2117" width="0.0810%" height="15" fill="rgb(222,24,42)" fg:x="6680" fg:w="19"/><text x="28.7143%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="28.4643%" y="2101" width="0.0810%" height="15" fill="rgb(242,170,24)" fg:x="6680" fg:w="19"/><text x="28.7143%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="28.4643%" y="2085" width="0.0810%" height="15" fill="rgb(209,110,40)" fg:x="6680" fg:w="19"/><text x="28.7143%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="28.5026%" y="2069" width="0.0426%" height="15" fill="rgb(233,146,36)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="28.5026%" y="2053" width="0.0426%" height="15" fill="rgb(229,33,32)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="2063.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="28.5026%" y="2037" width="0.0426%" height="15" fill="rgb(225,55,34)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="28.5026%" y="2021" width="0.0426%" height="15" fill="rgb(217,32,50)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="28.5026%" y="2005" width="0.0426%" height="15" fill="rgb(206,110,53)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5026%" y="1989" width="0.0426%" height="15" fill="rgb(247,25,10)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5026%" y="1973" width="0.0426%" height="15" fill="rgb(226,67,48)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="28.5026%" y="1957" width="0.0426%" height="15" fill="rgb(239,73,28)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="28.5026%" y="1941" width="0.0426%" height="15" fill="rgb(234,200,41)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="28.5026%" y="1925" width="0.0426%" height="15" fill="rgb(233,76,35)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="28.5026%" y="1909" width="0.0426%" height="15" fill="rgb(238,166,31)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="28.5026%" y="1893" width="0.0426%" height="15" fill="rgb(219,218,51)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="28.5026%" y="1877" width="0.0426%" height="15" fill="rgb(221,82,53)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="28.5026%" y="1861" width="0.0426%" height="15" fill="rgb(218,179,13)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="28.5026%" y="1845" width="0.0426%" height="15" fill="rgb(210,53,38)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5026%" y="1829" width="0.0426%" height="15" fill="rgb(214,167,31)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="28.5026%" y="1813" width="0.0426%" height="15" fill="rgb(223,26,5)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="28.5026%" y="1797" width="0.0426%" height="15" fill="rgb(218,95,23)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5026%" y="1781" width="0.0426%" height="15" fill="rgb(248,205,45)" fg:x="6689" fg:w="10"/><text x="28.7526%" y="1791.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="28.5282%" y="1765" width="0.0170%" height="15" fill="rgb(211,76,6)" fg:x="6695" fg:w="4"/><text x="28.7782%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="28.5538%" y="1861" width="0.0128%" height="15" fill="rgb(250,176,29)" fg:x="6701" fg:w="3"/><text x="28.8038%" y="1871.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="28.5538%" y="1845" width="0.0128%" height="15" fill="rgb(240,107,31)" fg:x="6701" fg:w="3"/><text x="28.8038%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="28.5453%" y="2053" width="0.0298%" height="15" fill="rgb(229,215,17)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="28.5453%" y="2037" width="0.0298%" height="15" fill="rgb(240,79,8)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="28.5453%" y="2021" width="0.0298%" height="15" fill="rgb(243,110,48)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="28.5453%" y="2005" width="0.0298%" height="15" fill="rgb(236,201,9)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="28.5453%" y="1989" width="0.0298%" height="15" fill="rgb(220,87,26)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="28.5453%" y="1973" width="0.0298%" height="15" fill="rgb(212,118,27)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="28.5453%" y="1957" width="0.0298%" height="15" fill="rgb(244,178,50)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="28.5453%" y="1941" width="0.0298%" height="15" fill="rgb(215,204,7)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="28.5453%" y="1925" width="0.0298%" height="15" fill="rgb(214,122,43)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="28.5453%" y="1909" width="0.0298%" height="15" fill="rgb(251,178,26)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="28.5453%" y="1893" width="0.0298%" height="15" fill="rgb(210,7,35)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="28.5453%" y="1877" width="0.0298%" height="15" fill="rgb(227,164,54)" fg:x="6699" fg:w="7"/><text x="28.7953%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="28.5751%" y="1749" width="0.0170%" height="15" fill="rgb(205,18,34)" fg:x="6706" fg:w="4"/><text x="28.8251%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="28.5751%" y="1733" width="0.0170%" height="15" fill="rgb(239,50,19)" fg:x="6706" fg:w="4"/><text x="28.8251%" y="1743.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="28.5751%" y="1717" width="0.0170%" height="15" fill="rgb(224,85,6)" fg:x="6706" fg:w="4"/><text x="28.8251%" y="1727.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="28.5751%" y="1701" width="0.0170%" height="15" fill="rgb(252,167,34)" fg:x="6706" fg:w="4"/><text x="28.8251%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="28.5751%" y="2005" width="0.0426%" height="15" fill="rgb(243,180,35)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5751%" y="1989" width="0.0426%" height="15" fill="rgb(213,214,53)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5751%" y="1973" width="0.0426%" height="15" fill="rgb(244,39,37)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="28.5751%" y="1957" width="0.0426%" height="15" fill="rgb(215,141,14)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="28.5751%" y="1941" width="0.0426%" height="15" fill="rgb(210,2,42)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="28.5751%" y="1925" width="0.0426%" height="15" fill="rgb(252,189,47)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="28.5751%" y="1909" width="0.0426%" height="15" fill="rgb(222,154,47)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="28.5751%" y="1893" width="0.0426%" height="15" fill="rgb(228,20,37)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="28.5751%" y="1877" width="0.0426%" height="15" fill="rgb(236,17,4)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="28.5751%" y="1861" width="0.0426%" height="15" fill="rgb(222,211,31)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="28.5751%" y="1845" width="0.0426%" height="15" fill="rgb(218,134,25)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5751%" y="1829" width="0.0426%" height="15" fill="rgb(218,97,43)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="28.5751%" y="1813" width="0.0426%" height="15" fill="rgb(234,163,32)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="28.5751%" y="1797" width="0.0426%" height="15" fill="rgb(251,171,42)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="28.5751%" y="1781" width="0.0426%" height="15" fill="rgb(223,104,12)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="28.5751%" y="1765" width="0.0426%" height="15" fill="rgb(225,29,49)" fg:x="6706" fg:w="10"/><text x="28.8251%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="28.6006%" y="1749" width="0.0170%" height="15" fill="rgb(253,77,7)" fg:x="6712" fg:w="4"/><text x="28.8506%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="28.6006%" y="1733" width="0.0170%" height="15" fill="rgb(213,81,26)" fg:x="6712" fg:w="4"/><text x="28.8506%" y="1743.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="28.6177%" y="1685" width="0.0256%" height="15" fill="rgb(246,126,6)" fg:x="6716" fg:w="6"/><text x="28.8677%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="28.6177%" y="1669" width="0.0256%" height="15" fill="rgb(232,186,21)" fg:x="6716" fg:w="6"/><text x="28.8677%" y="1679.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="28.6177%" y="1653" width="0.0256%" height="15" fill="rgb(215,126,18)" fg:x="6716" fg:w="6"/><text x="28.8677%" y="1663.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="28.6262%" y="1637" width="0.0170%" height="15" fill="rgb(210,47,5)" fg:x="6718" fg:w="4"/><text x="28.8762%" y="1647.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="28.6433%" y="1685" width="0.0128%" height="15" fill="rgb(240,70,6)" fg:x="6722" fg:w="3"/><text x="28.8933%" y="1695.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="28.6433%" y="1669" width="0.0128%" height="15" fill="rgb(230,99,49)" fg:x="6722" fg:w="3"/><text x="28.8933%" y="1679.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="28.6177%" y="1861" width="0.0426%" height="15" fill="rgb(212,57,36)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="28.6177%" y="1845" width="0.0426%" height="15" fill="rgb(243,14,50)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="28.6177%" y="1829" width="0.0426%" height="15" fill="rgb(240,2,53)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="28.6177%" y="1813" width="0.0426%" height="15" fill="rgb(208,47,53)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="28.6177%" y="1797" width="0.0426%" height="15" fill="rgb(235,186,39)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="28.6177%" y="1781" width="0.0426%" height="15" fill="rgb(212,35,47)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="28.6177%" y="1765" width="0.0426%" height="15" fill="rgb(248,59,37)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="28.6177%" y="1749" width="0.0426%" height="15" fill="rgb(223,186,16)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="28.6177%" y="1733" width="0.0426%" height="15" fill="rgb(215,106,35)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="28.6177%" y="1717" width="0.0426%" height="15" fill="rgb(217,141,29)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (10 samples, 0.04%)</title><rect x="28.6177%" y="1701" width="0.0426%" height="15" fill="rgb(221,227,46)" fg:x="6716" fg:w="10"/><text x="28.8677%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (58 samples, 0.25%)</title><rect x="28.4174%" y="2293" width="0.2471%" height="15" fill="rgb(212,36,41)" fg:x="6669" fg:w="58"/><text x="28.6674%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (58 samples, 0.25%)</title><rect x="28.4174%" y="2277" width="0.2471%" height="15" fill="rgb(222,35,11)" fg:x="6669" fg:w="58"/><text x="28.6674%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (58 samples, 0.25%)</title><rect x="28.4174%" y="2261" width="0.2471%" height="15" fill="rgb(232,165,33)" fg:x="6669" fg:w="58"/><text x="28.6674%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.25%)</title><rect x="28.4174%" y="2245" width="0.2471%" height="15" fill="rgb(211,38,20)" fg:x="6669" fg:w="58"/><text x="28.6674%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (55 samples, 0.23%)</title><rect x="28.4302%" y="2229" width="0.2344%" height="15" fill="rgb(230,7,36)" fg:x="6672" fg:w="55"/><text x="28.6802%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.23%)</title><rect x="28.4302%" y="2213" width="0.2344%" height="15" fill="rgb(213,128,35)" fg:x="6672" fg:w="55"/><text x="28.6802%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (55 samples, 0.23%)</title><rect x="28.4302%" y="2197" width="0.2344%" height="15" fill="rgb(218,11,14)" fg:x="6672" fg:w="55"/><text x="28.6802%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (28 samples, 0.12%)</title><rect x="28.5453%" y="2181" width="0.1193%" height="15" fill="rgb(249,105,7)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (28 samples, 0.12%)</title><rect x="28.5453%" y="2165" width="0.1193%" height="15" fill="rgb(226,125,21)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2175.50"></text></g><g><title>std::panicking::try (28 samples, 0.12%)</title><rect x="28.5453%" y="2149" width="0.1193%" height="15" fill="rgb(239,90,47)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (28 samples, 0.12%)</title><rect x="28.5453%" y="2133" width="0.1193%" height="15" fill="rgb(226,19,1)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (28 samples, 0.12%)</title><rect x="28.5453%" y="2117" width="0.1193%" height="15" fill="rgb(205,117,40)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (28 samples, 0.12%)</title><rect x="28.5453%" y="2101" width="0.1193%" height="15" fill="rgb(234,6,54)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (28 samples, 0.12%)</title><rect x="28.5453%" y="2085" width="0.1193%" height="15" fill="rgb(239,73,32)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.12%)</title><rect x="28.5453%" y="2069" width="0.1193%" height="15" fill="rgb(226,197,12)" fg:x="6699" fg:w="28"/><text x="28.7953%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="28.5751%" y="2053" width="0.0895%" height="15" fill="rgb(226,53,42)" fg:x="6706" fg:w="21"/><text x="28.8251%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="28.5751%" y="2037" width="0.0895%" height="15" fill="rgb(234,99,30)" fg:x="6706" fg:w="21"/><text x="28.8251%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="28.5751%" y="2021" width="0.0895%" height="15" fill="rgb(237,175,49)" fg:x="6706" fg:w="21"/><text x="28.8251%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="28.6177%" y="2005" width="0.0469%" height="15" fill="rgb(228,75,42)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="28.6177%" y="1989" width="0.0469%" height="15" fill="rgb(223,162,48)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1999.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="28.6177%" y="1973" width="0.0469%" height="15" fill="rgb(221,192,29)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="28.6177%" y="1957" width="0.0469%" height="15" fill="rgb(249,150,41)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="28.6177%" y="1941" width="0.0469%" height="15" fill="rgb(243,107,34)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="28.6177%" y="1925" width="0.0469%" height="15" fill="rgb(214,227,11)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="28.6177%" y="1909" width="0.0469%" height="15" fill="rgb(209,37,13)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="28.6177%" y="1893" width="0.0469%" height="15" fill="rgb(249,124,20)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="28.6177%" y="1877" width="0.0469%" height="15" fill="rgb(228,28,2)" fg:x="6716" fg:w="11"/><text x="28.8677%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="28.6646%" y="1973" width="0.0213%" height="15" fill="rgb(244,55,1)" fg:x="6727" fg:w="5"/><text x="28.9146%" y="1983.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="28.6646%" y="1957" width="0.0213%" height="15" fill="rgb(216,26,19)" fg:x="6727" fg:w="5"/><text x="28.9146%" y="1967.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="28.6646%" y="1941" width="0.0213%" height="15" fill="rgb(209,162,10)" fg:x="6727" fg:w="5"/><text x="28.9146%" y="1951.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="28.6688%" y="1925" width="0.0170%" height="15" fill="rgb(235,168,42)" fg:x="6728" fg:w="4"/><text x="28.9188%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="28.6646%" y="2165" width="0.0298%" height="15" fill="rgb(240,24,14)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2175.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="28.6646%" y="2149" width="0.0298%" height="15" fill="rgb(224,107,11)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="28.6646%" y="2133" width="0.0298%" height="15" fill="rgb(226,48,4)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2143.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="28.6646%" y="2117" width="0.0298%" height="15" fill="rgb(254,31,21)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2127.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="28.6646%" y="2101" width="0.0298%" height="15" fill="rgb(205,156,19)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="28.6646%" y="2085" width="0.0298%" height="15" fill="rgb(216,73,31)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2095.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="28.6646%" y="2069" width="0.0298%" height="15" fill="rgb(237,88,35)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="28.6646%" y="2053" width="0.0298%" height="15" fill="rgb(254,79,48)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2063.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="28.6646%" y="2037" width="0.0298%" height="15" fill="rgb(211,66,36)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2047.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="28.6646%" y="2021" width="0.0298%" height="15" fill="rgb(222,13,1)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="28.6646%" y="2005" width="0.0298%" height="15" fill="rgb(221,216,41)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="2015.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="28.6646%" y="1989" width="0.0298%" height="15" fill="rgb(220,10,17)" fg:x="6727" fg:w="7"/><text x="28.9146%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="28.6944%" y="2053" width="0.0128%" height="15" fill="rgb(242,43,35)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="28.6944%" y="2037" width="0.0128%" height="15" fill="rgb(216,182,18)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="28.6944%" y="2021" width="0.0128%" height="15" fill="rgb(246,217,36)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="28.6944%" y="2005" width="0.0128%" height="15" fill="rgb(208,107,8)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="28.6944%" y="1989" width="0.0128%" height="15" fill="rgb(208,189,15)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="28.6944%" y="1973" width="0.0128%" height="15" fill="rgb(211,70,9)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="28.6944%" y="1957" width="0.0128%" height="15" fill="rgb(217,95,34)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="28.6944%" y="1941" width="0.0128%" height="15" fill="rgb(240,223,2)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="28.6944%" y="1925" width="0.0128%" height="15" fill="rgb(231,18,6)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="28.6944%" y="1909" width="0.0128%" height="15" fill="rgb(254,44,46)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="28.6944%" y="1893" width="0.0128%" height="15" fill="rgb(223,222,46)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="28.6944%" y="1877" width="0.0128%" height="15" fill="rgb(229,163,13)" fg:x="6734" fg:w="3"/><text x="28.9444%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="28.7072%" y="1749" width="0.0213%" height="15" fill="rgb(220,208,13)" fg:x="6737" fg:w="5"/><text x="28.9572%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="28.7072%" y="1733" width="0.0213%" height="15" fill="rgb(244,28,53)" fg:x="6737" fg:w="5"/><text x="28.9572%" y="1743.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="28.7114%" y="1717" width="0.0170%" height="15" fill="rgb(243,138,0)" fg:x="6738" fg:w="4"/><text x="28.9614%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="28.7072%" y="1765" width="0.0341%" height="15" fill="rgb(209,90,49)" fg:x="6737" fg:w="8"/><text x="28.9572%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="28.7285%" y="1749" width="0.0128%" height="15" fill="rgb(247,114,18)" fg:x="6742" fg:w="3"/><text x="28.9785%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="28.7285%" y="1733" width="0.0128%" height="15" fill="rgb(221,14,46)" fg:x="6742" fg:w="3"/><text x="28.9785%" y="1743.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="28.7072%" y="1925" width="0.0426%" height="15" fill="rgb(215,29,23)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (10 samples, 0.04%)</title><rect x="28.7072%" y="1909" width="0.0426%" height="15" fill="rgb(241,37,25)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="28.7072%" y="1893" width="0.0426%" height="15" fill="rgb(225,17,22)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (10 samples, 0.04%)</title><rect x="28.7072%" y="1877" width="0.0426%" height="15" fill="rgb(241,182,7)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (10 samples, 0.04%)</title><rect x="28.7072%" y="1861" width="0.0426%" height="15" fill="rgb(248,125,10)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (10 samples, 0.04%)</title><rect x="28.7072%" y="1845" width="0.0426%" height="15" fill="rgb(250,3,37)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (10 samples, 0.04%)</title><rect x="28.7072%" y="1829" width="0.0426%" height="15" fill="rgb(237,102,7)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (10 samples, 0.04%)</title><rect x="28.7072%" y="1813" width="0.0426%" height="15" fill="rgb(235,5,5)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="28.7072%" y="1797" width="0.0426%" height="15" fill="rgb(249,147,38)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="28.7072%" y="1781" width="0.0426%" height="15" fill="rgb(221,25,18)" fg:x="6737" fg:w="10"/><text x="28.9572%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="28.7072%" y="2005" width="0.0469%" height="15" fill="rgb(211,88,9)" fg:x="6737" fg:w="11"/><text x="28.9572%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="28.7072%" y="1989" width="0.0469%" height="15" fill="rgb(219,62,54)" fg:x="6737" fg:w="11"/><text x="28.9572%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="28.7072%" y="1973" width="0.0469%" height="15" fill="rgb(243,133,46)" fg:x="6737" fg:w="11"/><text x="28.9572%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="28.7072%" y="1957" width="0.0469%" height="15" fill="rgb(214,168,53)" fg:x="6737" fg:w="11"/><text x="28.9572%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="28.7072%" y="1941" width="0.0469%" height="15" fill="rgb(250,58,7)" fg:x="6737" fg:w="11"/><text x="28.9572%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="28.7540%" y="1685" width="0.0256%" height="15" fill="rgb(249,131,5)" fg:x="6748" fg:w="6"/><text x="29.0040%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="28.7540%" y="1669" width="0.0256%" height="15" fill="rgb(234,40,44)" fg:x="6748" fg:w="6"/><text x="29.0040%" y="1679.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="28.7583%" y="1653" width="0.0213%" height="15" fill="rgb(225,188,42)" fg:x="6749" fg:w="5"/><text x="29.0083%" y="1663.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="28.7626%" y="1637" width="0.0170%" height="15" fill="rgb(218,201,51)" fg:x="6750" fg:w="4"/><text x="29.0126%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (23 samples, 0.10%)</title><rect x="28.6944%" y="2117" width="0.0980%" height="15" fill="rgb(214,209,38)" fg:x="6734" fg:w="23"/><text x="28.9444%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (23 samples, 0.10%)</title><rect x="28.6944%" y="2101" width="0.0980%" height="15" fill="rgb(217,0,20)" fg:x="6734" fg:w="23"/><text x="28.9444%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="28.6944%" y="2085" width="0.0980%" height="15" fill="rgb(248,183,46)" fg:x="6734" fg:w="23"/><text x="28.9444%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="28.6944%" y="2069" width="0.0980%" height="15" fill="rgb(208,99,41)" fg:x="6734" fg:w="23"/><text x="28.9444%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="28.7072%" y="2053" width="0.0852%" height="15" fill="rgb(210,189,49)" fg:x="6737" fg:w="20"/><text x="28.9572%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="28.7072%" y="2037" width="0.0852%" height="15" fill="rgb(239,191,42)" fg:x="6737" fg:w="20"/><text x="28.9572%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="28.7072%" y="2021" width="0.0852%" height="15" fill="rgb(240,138,26)" fg:x="6737" fg:w="20"/><text x="28.9572%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="28.7540%" y="2005" width="0.0384%" height="15" fill="rgb(234,45,22)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="28.7540%" y="1989" width="0.0384%" height="15" fill="rgb(228,43,35)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1999.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="28.7540%" y="1973" width="0.0384%" height="15" fill="rgb(215,201,54)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="28.7540%" y="1957" width="0.0384%" height="15" fill="rgb(209,60,31)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="28.7540%" y="1941" width="0.0384%" height="15" fill="rgb(232,66,12)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="28.7540%" y="1925" width="0.0384%" height="15" fill="rgb(244,78,24)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="28.7540%" y="1909" width="0.0384%" height="15" fill="rgb(249,65,27)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="28.7540%" y="1893" width="0.0384%" height="15" fill="rgb(208,218,19)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="28.7540%" y="1877" width="0.0384%" height="15" fill="rgb(212,181,38)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="28.7540%" y="1861" width="0.0384%" height="15" fill="rgb(207,118,40)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="28.7540%" y="1845" width="0.0384%" height="15" fill="rgb(207,126,20)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="28.7540%" y="1829" width="0.0384%" height="15" fill="rgb(232,15,46)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="28.7540%" y="1813" width="0.0384%" height="15" fill="rgb(254,33,30)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="28.7540%" y="1797" width="0.0384%" height="15" fill="rgb(233,92,20)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="28.7540%" y="1781" width="0.0384%" height="15" fill="rgb(225,195,54)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="28.7540%" y="1765" width="0.0384%" height="15" fill="rgb(208,196,7)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="28.7540%" y="1749" width="0.0384%" height="15" fill="rgb(253,19,35)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="28.7540%" y="1733" width="0.0384%" height="15" fill="rgb(228,180,1)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="28.7540%" y="1717" width="0.0384%" height="15" fill="rgb(248,35,18)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="28.7540%" y="1701" width="0.0384%" height="15" fill="rgb(220,34,8)" fg:x="6748" fg:w="9"/><text x="29.0040%" y="1711.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="28.8009%" y="1797" width="0.0213%" height="15" fill="rgb(219,223,17)" fg:x="6759" fg:w="5"/><text x="29.0509%" y="1807.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="28.8009%" y="1781" width="0.0213%" height="15" fill="rgb(223,183,15)" fg:x="6759" fg:w="5"/><text x="29.0509%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="28.7924%" y="1989" width="0.0384%" height="15" fill="rgb(253,184,45)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1999.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="28.7924%" y="1973" width="0.0384%" height="15" fill="rgb(207,97,29)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="28.7924%" y="1957" width="0.0384%" height="15" fill="rgb(250,170,27)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1967.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="28.7924%" y="1941" width="0.0384%" height="15" fill="rgb(206,178,17)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1951.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="28.7924%" y="1925" width="0.0384%" height="15" fill="rgb(213,92,46)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="28.7924%" y="1909" width="0.0384%" height="15" fill="rgb(223,114,30)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1919.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="28.7924%" y="1893" width="0.0384%" height="15" fill="rgb(207,228,9)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="28.7924%" y="1877" width="0.0384%" height="15" fill="rgb(205,70,25)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1887.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="28.7924%" y="1861" width="0.0384%" height="15" fill="rgb(252,45,30)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1871.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="28.7924%" y="1845" width="0.0384%" height="15" fill="rgb(219,185,54)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="28.7924%" y="1829" width="0.0384%" height="15" fill="rgb(219,208,54)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1839.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="28.7924%" y="1813" width="0.0384%" height="15" fill="rgb(207,164,54)" fg:x="6757" fg:w="9"/><text x="29.0424%" y="1823.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="28.8307%" y="1941" width="0.0170%" height="15" fill="rgb(240,155,22)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="28.8307%" y="1925" width="0.0170%" height="15" fill="rgb(217,127,14)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="28.8307%" y="1909" width="0.0170%" height="15" fill="rgb(232,179,42)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.8307%" y="1893" width="0.0170%" height="15" fill="rgb(247,55,45)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="28.8307%" y="1877" width="0.0170%" height="15" fill="rgb(217,11,18)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="28.8307%" y="1861" width="0.0170%" height="15" fill="rgb(227,127,4)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="28.8307%" y="1845" width="0.0170%" height="15" fill="rgb(217,97,45)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="28.8307%" y="1829" width="0.0170%" height="15" fill="rgb(250,135,20)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="28.8307%" y="1813" width="0.0170%" height="15" fill="rgb(224,213,26)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="28.8307%" y="1797" width="0.0170%" height="15" fill="rgb(237,86,25)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="28.8307%" y="1781" width="0.0170%" height="15" fill="rgb(251,105,18)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="28.8307%" y="1765" width="0.0170%" height="15" fill="rgb(246,124,25)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="28.8307%" y="1749" width="0.0170%" height="15" fill="rgb(210,90,3)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="28.8307%" y="1733" width="0.0170%" height="15" fill="rgb(249,40,31)" fg:x="6766" fg:w="4"/><text x="29.0807%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="28.8350%" y="1717" width="0.0128%" height="15" fill="rgb(231,228,1)" fg:x="6767" fg:w="3"/><text x="29.0850%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="28.8350%" y="1701" width="0.0128%" height="15" fill="rgb(242,25,49)" fg:x="6767" fg:w="3"/><text x="29.0850%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (782 samples, 3.33%)</title><rect x="25.5241%" y="3077" width="3.3322%" height="15" fill="rgb(224,142,22)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="3087.50">ray..</text></g><g><title>rayon_core::job::JobRef::execute (782 samples, 3.33%)</title><rect x="25.5241%" y="3061" width="3.3322%" height="15" fill="rgb(228,106,29)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="3071.50">ray..</text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (782 samples, 3.33%)</title><rect x="25.5241%" y="3045" width="3.3322%" height="15" fill="rgb(207,2,15)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="3055.50"><ra..</text></g><g><title>rayon_core::job::JobResult<T>::call (782 samples, 3.33%)</title><rect x="25.5241%" y="3029" width="3.3322%" height="15" fill="rgb(231,43,37)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="3039.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (782 samples, 3.33%)</title><rect x="25.5241%" y="3013" width="3.3322%" height="15" fill="rgb(245,193,12)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="3023.50">ray..</text></g><g><title>std::panic::catch_unwind (782 samples, 3.33%)</title><rect x="25.5241%" y="2997" width="3.3322%" height="15" fill="rgb(246,9,49)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="3007.50">std..</text></g><g><title>std::panicking::try (782 samples, 3.33%)</title><rect x="25.5241%" y="2981" width="3.3322%" height="15" fill="rgb(218,50,36)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="2991.50">std..</text></g><g><title>std::panicking::try::do_call (782 samples, 3.33%)</title><rect x="25.5241%" y="2965" width="3.3322%" height="15" fill="rgb(225,206,16)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="2975.50">std..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (782 samples, 3.33%)</title><rect x="25.5241%" y="2949" width="3.3322%" height="15" fill="rgb(242,52,5)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="2959.50"><co..</text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (782 samples, 3.33%)</title><rect x="25.5241%" y="2933" width="3.3322%" height="15" fill="rgb(217,158,11)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="2943.50">ray..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (782 samples, 3.33%)</title><rect x="25.5241%" y="2917" width="3.3322%" height="15" fill="rgb(242,144,22)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="2927.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (782 samples, 3.33%)</title><rect x="25.5241%" y="2901" width="3.3322%" height="15" fill="rgb(236,191,3)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="2911.50">ray..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (782 samples, 3.33%)</title><rect x="25.5241%" y="2885" width="3.3322%" height="15" fill="rgb(241,22,19)" fg:x="5990" fg:w="782"/><text x="25.7741%" y="2895.50">ray..</text></g><g><title>rayon_core::join::join_context (750 samples, 3.20%)</title><rect x="25.6605%" y="2869" width="3.1958%" height="15" fill="rgb(205,217,44)" fg:x="6022" fg:w="750"/><text x="25.9105%" y="2879.50">ray..</text></g><g><title>rayon_core::registry::in_worker (750 samples, 3.20%)</title><rect x="25.6605%" y="2853" width="3.1958%" height="15" fill="rgb(231,53,3)" fg:x="6022" fg:w="750"/><text x="25.9105%" y="2863.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (750 samples, 3.20%)</title><rect x="25.6605%" y="2837" width="3.1958%" height="15" fill="rgb(207,13,22)" fg:x="6022" fg:w="750"/><text x="25.9105%" y="2847.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (456 samples, 1.94%)</title><rect x="26.9132%" y="2821" width="1.9431%" height="15" fill="rgb(234,62,29)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2831.50">r..</text></g><g><title>std::panic::catch_unwind (456 samples, 1.94%)</title><rect x="26.9132%" y="2805" width="1.9431%" height="15" fill="rgb(226,175,44)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2815.50">s..</text></g><g><title>std::panicking::try (456 samples, 1.94%)</title><rect x="26.9132%" y="2789" width="1.9431%" height="15" fill="rgb(239,177,6)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2799.50">s..</text></g><g><title>std::panicking::try::do_call (456 samples, 1.94%)</title><rect x="26.9132%" y="2773" width="1.9431%" height="15" fill="rgb(249,125,15)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2783.50">s..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (456 samples, 1.94%)</title><rect x="26.9132%" y="2757" width="1.9431%" height="15" fill="rgb(210,201,5)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2767.50"><..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (456 samples, 1.94%)</title><rect x="26.9132%" y="2741" width="1.9431%" height="15" fill="rgb(210,14,6)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2751.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (456 samples, 1.94%)</title><rect x="26.9132%" y="2725" width="1.9431%" height="15" fill="rgb(239,141,15)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2735.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (456 samples, 1.94%)</title><rect x="26.9132%" y="2709" width="1.9431%" height="15" fill="rgb(235,75,9)" fg:x="6316" fg:w="456"/><text x="27.1632%" y="2719.50">r..</text></g><g><title>rayon_core::join::join_context (437 samples, 1.86%)</title><rect x="26.9942%" y="2693" width="1.8621%" height="15" fill="rgb(246,122,37)" fg:x="6335" fg:w="437"/><text x="27.2442%" y="2703.50">r..</text></g><g><title>rayon_core::registry::in_worker (437 samples, 1.86%)</title><rect x="26.9942%" y="2677" width="1.8621%" height="15" fill="rgb(235,75,52)" fg:x="6335" fg:w="437"/><text x="27.2442%" y="2687.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (437 samples, 1.86%)</title><rect x="26.9942%" y="2661" width="1.8621%" height="15" fill="rgb(235,179,12)" fg:x="6335" fg:w="437"/><text x="27.2442%" y="2671.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (266 samples, 1.13%)</title><rect x="27.7229%" y="2645" width="1.1335%" height="15" fill="rgb(223,20,9)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (266 samples, 1.13%)</title><rect x="27.7229%" y="2629" width="1.1335%" height="15" fill="rgb(223,75,22)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2639.50"></text></g><g><title>std::panicking::try (266 samples, 1.13%)</title><rect x="27.7229%" y="2613" width="1.1335%" height="15" fill="rgb(248,148,18)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (266 samples, 1.13%)</title><rect x="27.7229%" y="2597" width="1.1335%" height="15" fill="rgb(225,103,8)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (266 samples, 1.13%)</title><rect x="27.7229%" y="2581" width="1.1335%" height="15" fill="rgb(237,168,17)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (266 samples, 1.13%)</title><rect x="27.7229%" y="2565" width="1.1335%" height="15" fill="rgb(215,192,38)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (266 samples, 1.13%)</title><rect x="27.7229%" y="2549" width="1.1335%" height="15" fill="rgb(237,69,28)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (266 samples, 1.13%)</title><rect x="27.7229%" y="2533" width="1.1335%" height="15" fill="rgb(254,167,32)" fg:x="6506" fg:w="266"/><text x="27.9729%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (250 samples, 1.07%)</title><rect x="27.7910%" y="2517" width="1.0653%" height="15" fill="rgb(250,81,30)" fg:x="6522" fg:w="250"/><text x="28.0410%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (250 samples, 1.07%)</title><rect x="27.7910%" y="2501" width="1.0653%" height="15" fill="rgb(240,68,52)" fg:x="6522" fg:w="250"/><text x="28.0410%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (250 samples, 1.07%)</title><rect x="27.7910%" y="2485" width="1.0653%" height="15" fill="rgb(205,97,42)" fg:x="6522" fg:w="250"/><text x="28.0410%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (124 samples, 0.53%)</title><rect x="28.3279%" y="2469" width="0.5284%" height="15" fill="rgb(217,10,22)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (124 samples, 0.53%)</title><rect x="28.3279%" y="2453" width="0.5284%" height="15" fill="rgb(216,21,26)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2463.50"></text></g><g><title>std::panicking::try (124 samples, 0.53%)</title><rect x="28.3279%" y="2437" width="0.5284%" height="15" fill="rgb(239,0,36)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (124 samples, 0.53%)</title><rect x="28.3279%" y="2421" width="0.5284%" height="15" fill="rgb(216,162,28)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (124 samples, 0.53%)</title><rect x="28.3279%" y="2405" width="0.5284%" height="15" fill="rgb(246,22,39)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (124 samples, 0.53%)</title><rect x="28.3279%" y="2389" width="0.5284%" height="15" fill="rgb(222,84,49)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (124 samples, 0.53%)</title><rect x="28.3279%" y="2373" width="0.5284%" height="15" fill="rgb(250,38,34)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (124 samples, 0.53%)</title><rect x="28.3279%" y="2357" width="0.5284%" height="15" fill="rgb(236,0,38)" fg:x="6648" fg:w="124"/><text x="28.5779%" y="2367.50"></text></g><g><title>rayon_core::join::join_context (103 samples, 0.44%)</title><rect x="28.4174%" y="2341" width="0.4389%" height="15" fill="rgb(237,205,54)" fg:x="6669" fg:w="103"/><text x="28.6674%" y="2351.50"></text></g><g><title>rayon_core::registry::in_worker (103 samples, 0.44%)</title><rect x="28.4174%" y="2325" width="0.4389%" height="15" fill="rgb(221,80,35)" fg:x="6669" fg:w="103"/><text x="28.6674%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (103 samples, 0.44%)</title><rect x="28.4174%" y="2309" width="0.4389%" height="15" fill="rgb(237,204,22)" fg:x="6669" fg:w="103"/><text x="28.6674%" y="2319.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (45 samples, 0.19%)</title><rect x="28.6646%" y="2293" width="0.1918%" height="15" fill="rgb(213,108,15)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2303.50"></text></g><g><title>std::panic::catch_unwind (45 samples, 0.19%)</title><rect x="28.6646%" y="2277" width="0.1918%" height="15" fill="rgb(251,187,9)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2287.50"></text></g><g><title>std::panicking::try (45 samples, 0.19%)</title><rect x="28.6646%" y="2261" width="0.1918%" height="15" fill="rgb(250,61,9)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2271.50"></text></g><g><title>std::panicking::try::do_call (45 samples, 0.19%)</title><rect x="28.6646%" y="2245" width="0.1918%" height="15" fill="rgb(230,131,33)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2255.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (45 samples, 0.19%)</title><rect x="28.6646%" y="2229" width="0.1918%" height="15" fill="rgb(239,117,11)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (45 samples, 0.19%)</title><rect x="28.6646%" y="2213" width="0.1918%" height="15" fill="rgb(222,112,44)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (45 samples, 0.19%)</title><rect x="28.6646%" y="2197" width="0.1918%" height="15" fill="rgb(251,33,25)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.19%)</title><rect x="28.6646%" y="2181" width="0.1918%" height="15" fill="rgb(208,171,34)" fg:x="6727" fg:w="45"/><text x="28.9146%" y="2191.50"></text></g><g><title>rayon_core::join::join_context (38 samples, 0.16%)</title><rect x="28.6944%" y="2165" width="0.1619%" height="15" fill="rgb(250,166,54)" fg:x="6734" fg:w="38"/><text x="28.9444%" y="2175.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.16%)</title><rect x="28.6944%" y="2149" width="0.1619%" height="15" fill="rgb(212,148,2)" fg:x="6734" fg:w="38"/><text x="28.9444%" y="2159.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38 samples, 0.16%)</title><rect x="28.6944%" y="2133" width="0.1619%" height="15" fill="rgb(224,92,39)" fg:x="6734" fg:w="38"/><text x="28.9444%" y="2143.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="28.7924%" y="2117" width="0.0639%" height="15" fill="rgb(250,28,16)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2127.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="28.7924%" y="2101" width="0.0639%" height="15" fill="rgb(227,128,26)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2111.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="28.7924%" y="2085" width="0.0639%" height="15" fill="rgb(248,66,7)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2095.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="28.7924%" y="2069" width="0.0639%" height="15" fill="rgb(215,124,51)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2079.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="28.7924%" y="2053" width="0.0639%" height="15" fill="rgb(207,91,1)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="28.7924%" y="2037" width="0.0639%" height="15" fill="rgb(217,207,38)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="28.7924%" y="2021" width="0.0639%" height="15" fill="rgb(240,118,9)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="28.7924%" y="2005" width="0.0639%" height="15" fill="rgb(224,147,4)" fg:x="6757" fg:w="15"/><text x="29.0424%" y="2015.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="28.8307%" y="1989" width="0.0256%" height="15" fill="rgb(205,105,13)" fg:x="6766" fg:w="6"/><text x="29.0807%" y="1999.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.8307%" y="1973" width="0.0256%" height="15" fill="rgb(251,78,39)" fg:x="6766" fg:w="6"/><text x="29.0807%" y="1983.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="28.8307%" y="1957" width="0.0256%" height="15" fill="rgb(225,60,44)" fg:x="6766" fg:w="6"/><text x="29.0807%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work (4 samples, 0.02%)</title><rect x="28.8563%" y="3077" width="0.0170%" height="15" fill="rgb(221,228,40)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="3087.50"></text></g><g><title>core::option::Option<T>::or_else (4 samples, 0.02%)</title><rect x="28.8563%" y="3061" width="0.0170%" height="15" fill="rgb(215,104,30)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="3071.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work::_{{closure}} (4 samples, 0.02%)</title><rect x="28.8563%" y="3045" width="0.0170%" height="15" fill="rgb(206,183,3)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="3055.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal (4 samples, 0.02%)</title><rect x="28.8563%" y="3029" width="0.0170%" height="15" fill="rgb(236,199,25)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="3039.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map (4 samples, 0.02%)</title><rect x="28.8563%" y="3013" width="0.0170%" height="15" fill="rgb(230,107,29)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="3023.50"></text></g><g><title><core::iter::adapters::filter::Filter<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="28.8563%" y="2997" width="0.0170%" height="15" fill="rgb(216,12,37)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="3007.50"></text></g><g><title><core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="28.8563%" y="2981" width="0.0170%" height="15" fill="rgb(238,165,28)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="2991.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="28.8563%" y="2965" width="0.0170%" height="15" fill="rgb(226,173,5)" fg:x="6772" fg:w="4"/><text x="29.1063%" y="2975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (805 samples, 3.43%)</title><rect x="25.5241%" y="3109" width="3.4302%" height="15" fill="rgb(229,9,37)" fg:x="5990" fg:w="805"/><text x="25.7741%" y="3119.50">ray..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (805 samples, 3.43%)</title><rect x="25.5241%" y="3093" width="3.4302%" height="15" fill="rgb(252,194,43)" fg:x="5990" fg:w="805"/><text x="25.7741%" y="3103.50">ray..</text></g><g><title>rayon_core::sleep::Sleep::no_work_found (19 samples, 0.08%)</title><rect x="28.8734%" y="3077" width="0.0810%" height="15" fill="rgb(215,58,45)" fg:x="6776" fg:w="19"/><text x="29.1234%" y="3087.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (19 samples, 0.08%)</title><rect x="28.8734%" y="3061" width="0.0810%" height="15" fill="rgb(218,34,51)" fg:x="6776" fg:w="19"/><text x="29.1234%" y="3071.50"></text></g><g><title>std::sync::condvar::Condvar::wait (19 samples, 0.08%)</title><rect x="28.8734%" y="3045" width="0.0810%" height="15" fill="rgb(230,104,27)" fg:x="6776" fg:w="19"/><text x="29.1234%" y="3055.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (18 samples, 0.08%)</title><rect x="28.8776%" y="3029" width="0.0767%" height="15" fill="rgb(250,9,6)" fg:x="6777" fg:w="18"/><text x="29.1276%" y="3039.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (18 samples, 0.08%)</title><rect x="28.8776%" y="3013" width="0.0767%" height="15" fill="rgb(245,10,16)" fg:x="6777" fg:w="18"/><text x="29.1276%" y="3023.50"></text></g><g><title>std::sys::unix::futex::futex_wait (18 samples, 0.08%)</title><rect x="28.8776%" y="2997" width="0.0767%" height="15" fill="rgb(227,182,27)" fg:x="6777" fg:w="18"/><text x="29.1276%" y="3007.50"></text></g><g><title>syscall (17 samples, 0.07%)</title><rect x="28.8819%" y="2981" width="0.0724%" height="15" fill="rgb(225,91,37)" fg:x="6778" fg:w="17"/><text x="29.1319%" y="2991.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (27 samples, 0.12%)</title><rect x="28.9543%" y="2789" width="0.1151%" height="15" fill="rgb(240,16,41)" fg:x="6795" fg:w="27"/><text x="29.2043%" y="2799.50"></text></g><g><title>std::f64::<impl f64>::exp (27 samples, 0.12%)</title><rect x="28.9543%" y="2773" width="0.1151%" height="15" fill="rgb(214,108,54)" fg:x="6795" fg:w="27"/><text x="29.2043%" y="2783.50"></text></g><g><title>exp (25 samples, 0.11%)</title><rect x="28.9628%" y="2757" width="0.1065%" height="15" fill="rgb(253,65,28)" fg:x="6797" fg:w="25"/><text x="29.2128%" y="2767.50"></text></g><g><title>[libm.so.6] (20 samples, 0.09%)</title><rect x="28.9841%" y="2741" width="0.0852%" height="15" fill="rgb(246,105,4)" fg:x="6802" fg:w="20"/><text x="29.2341%" y="2751.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (18 samples, 0.08%)</title><rect x="29.0736%" y="2789" width="0.0767%" height="15" fill="rgb(223,163,37)" fg:x="6823" fg:w="18"/><text x="29.3236%" y="2799.50"></text></g><g><title>core::f64::<impl f64>::recip (18 samples, 0.08%)</title><rect x="29.0736%" y="2773" width="0.0767%" height="15" fill="rgb(206,202,31)" fg:x="6823" fg:w="18"/><text x="29.3236%" y="2783.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (57 samples, 0.24%)</title><rect x="28.9543%" y="2805" width="0.2429%" height="15" fill="rgb(241,202,54)" fg:x="6795" fg:w="57"/><text x="29.2043%" y="2815.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (11 samples, 0.05%)</title><rect x="29.1503%" y="2789" width="0.0469%" height="15" fill="rgb(220,22,45)" fg:x="6841" fg:w="11"/><text x="29.4003%" y="2799.50"></text></g><g><title>std::f64::<impl f64>::sqrt (11 samples, 0.05%)</title><rect x="29.1503%" y="2773" width="0.0469%" height="15" fill="rgb(234,215,40)" fg:x="6841" fg:w="11"/><text x="29.4003%" y="2783.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (64 samples, 0.27%)</title><rect x="28.9543%" y="2965" width="0.2727%" height="15" fill="rgb(220,3,5)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (64 samples, 0.27%)</title><rect x="28.9543%" y="2949" width="0.2727%" height="15" fill="rgb(210,8,15)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2959.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (64 samples, 0.27%)</title><rect x="28.9543%" y="2933" width="0.2727%" height="15" fill="rgb(218,113,45)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2943.50"></text></g><g><title>core::option::Option<T>::map (64 samples, 0.27%)</title><rect x="28.9543%" y="2917" width="0.2727%" height="15" fill="rgb(249,208,10)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2927.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (64 samples, 0.27%)</title><rect x="28.9543%" y="2901" width="0.2727%" height="15" fill="rgb(250,145,17)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2911.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (64 samples, 0.27%)</title><rect x="28.9543%" y="2885" width="0.2727%" height="15" fill="rgb(254,24,13)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2895.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (64 samples, 0.27%)</title><rect x="28.9543%" y="2869" width="0.2727%" height="15" fill="rgb(244,36,15)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2879.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (64 samples, 0.27%)</title><rect x="28.9543%" y="2853" width="0.2727%" height="15" fill="rgb(228,168,26)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2863.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (64 samples, 0.27%)</title><rect x="28.9543%" y="2837" width="0.2727%" height="15" fill="rgb(214,145,10)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2847.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (64 samples, 0.27%)</title><rect x="28.9543%" y="2821" width="0.2727%" height="15" fill="rgb(232,59,25)" fg:x="6795" fg:w="64"/><text x="29.2043%" y="2831.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="29.1972%" y="2805" width="0.0298%" height="15" fill="rgb(254,181,2)" fg:x="6852" fg:w="7"/><text x="29.4472%" y="2815.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="29.2270%" y="2837" width="0.0384%" height="15" fill="rgb(221,139,49)" fg:x="6859" fg:w="9"/><text x="29.4770%" y="2847.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="29.2270%" y="2821" width="0.0384%" height="15" fill="rgb(235,84,36)" fg:x="6859" fg:w="9"/><text x="29.4770%" y="2831.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (9 samples, 0.04%)</title><rect x="29.2270%" y="2805" width="0.0384%" height="15" fill="rgb(254,32,49)" fg:x="6859" fg:w="9"/><text x="29.4770%" y="2815.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (9 samples, 0.04%)</title><rect x="29.2270%" y="2789" width="0.0384%" height="15" fill="rgb(214,136,49)" fg:x="6859" fg:w="9"/><text x="29.4770%" y="2799.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (9 samples, 0.04%)</title><rect x="29.2270%" y="2773" width="0.0384%" height="15" fill="rgb(206,113,54)" fg:x="6859" fg:w="9"/><text x="29.4770%" y="2783.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="29.2270%" y="2757" width="0.0384%" height="15" fill="rgb(226,78,17)" fg:x="6859" fg:w="9"/><text x="29.4770%" y="2767.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="29.2441%" y="2741" width="0.0213%" height="15" fill="rgb(249,189,19)" fg:x="6863" fg:w="5"/><text x="29.4941%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (74 samples, 0.32%)</title><rect x="28.9543%" y="2981" width="0.3153%" height="15" fill="rgb(211,82,26)" fg:x="6795" fg:w="74"/><text x="29.2043%" y="2991.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="29.2270%" y="2965" width="0.0426%" height="15" fill="rgb(206,131,52)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2975.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="29.2270%" y="2949" width="0.0426%" height="15" fill="rgb(223,51,24)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2959.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="29.2270%" y="2933" width="0.0426%" height="15" fill="rgb(235,93,36)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2943.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="29.2270%" y="2917" width="0.0426%" height="15" fill="rgb(219,118,14)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2927.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="29.2270%" y="2901" width="0.0426%" height="15" fill="rgb(240,145,10)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2911.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="29.2270%" y="2885" width="0.0426%" height="15" fill="rgb(241,104,15)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2895.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="29.2270%" y="2869" width="0.0426%" height="15" fill="rgb(248,117,21)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2879.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="29.2270%" y="2853" width="0.0426%" height="15" fill="rgb(250,184,34)" fg:x="6859" fg:w="10"/><text x="29.4770%" y="2863.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (36 samples, 0.15%)</title><rect x="29.2782%" y="2677" width="0.1534%" height="15" fill="rgb(218,169,23)" fg:x="6871" fg:w="36"/><text x="29.5282%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::exp (36 samples, 0.15%)</title><rect x="29.2782%" y="2661" width="0.1534%" height="15" fill="rgb(214,33,53)" fg:x="6871" fg:w="36"/><text x="29.5282%" y="2671.50"></text></g><g><title>exp (35 samples, 0.15%)</title><rect x="29.2824%" y="2645" width="0.1491%" height="15" fill="rgb(239,78,4)" fg:x="6872" fg:w="35"/><text x="29.5324%" y="2655.50"></text></g><g><title>[libm.so.6] (30 samples, 0.13%)</title><rect x="29.3037%" y="2629" width="0.1278%" height="15" fill="rgb(250,25,23)" fg:x="6877" fg:w="30"/><text x="29.5537%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (23 samples, 0.10%)</title><rect x="29.4358%" y="2677" width="0.0980%" height="15" fill="rgb(220,205,51)" fg:x="6908" fg:w="23"/><text x="29.6858%" y="2687.50"></text></g><g><title>core::f64::<impl f64>::recip (23 samples, 0.10%)</title><rect x="29.4358%" y="2661" width="0.0980%" height="15" fill="rgb(252,115,2)" fg:x="6908" fg:w="23"/><text x="29.6858%" y="2671.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (79 samples, 0.34%)</title><rect x="29.2739%" y="2693" width="0.3366%" height="15" fill="rgb(222,106,48)" fg:x="6870" fg:w="79"/><text x="29.5239%" y="2703.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (18 samples, 0.08%)</title><rect x="29.5338%" y="2677" width="0.0767%" height="15" fill="rgb(225,77,33)" fg:x="6931" fg:w="18"/><text x="29.7838%" y="2687.50"></text></g><g><title>std::f64::<impl f64>::sqrt (18 samples, 0.08%)</title><rect x="29.5338%" y="2661" width="0.0767%" height="15" fill="rgb(250,135,2)" fg:x="6931" fg:w="18"/><text x="29.7838%" y="2671.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (82 samples, 0.35%)</title><rect x="29.2696%" y="2853" width="0.3494%" height="15" fill="rgb(221,217,54)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (82 samples, 0.35%)</title><rect x="29.2696%" y="2837" width="0.3494%" height="15" fill="rgb(233,12,6)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (82 samples, 0.35%)</title><rect x="29.2696%" y="2821" width="0.3494%" height="15" fill="rgb(251,10,27)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2831.50"></text></g><g><title>core::option::Option<T>::map (82 samples, 0.35%)</title><rect x="29.2696%" y="2805" width="0.3494%" height="15" fill="rgb(214,20,35)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2815.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (82 samples, 0.35%)</title><rect x="29.2696%" y="2789" width="0.3494%" height="15" fill="rgb(249,13,18)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2799.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (82 samples, 0.35%)</title><rect x="29.2696%" y="2773" width="0.3494%" height="15" fill="rgb(251,115,18)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (82 samples, 0.35%)</title><rect x="29.2696%" y="2757" width="0.3494%" height="15" fill="rgb(219,91,11)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2767.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (82 samples, 0.35%)</title><rect x="29.2696%" y="2741" width="0.3494%" height="15" fill="rgb(238,130,14)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2751.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (82 samples, 0.35%)</title><rect x="29.2696%" y="2725" width="0.3494%" height="15" fill="rgb(216,197,46)" fg:x="6869" fg:w="82"/><text x="29.5196%" y="2735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (81 samples, 0.35%)</title><rect x="29.2739%" y="2709" width="0.3452%" height="15" fill="rgb(239,113,46)" fg:x="6870" fg:w="81"/><text x="29.5239%" y="2719.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="29.6191%" y="2725" width="0.0256%" height="15" fill="rgb(220,76,52)" fg:x="6951" fg:w="6"/><text x="29.8691%" y="2735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="29.6191%" y="2709" width="0.0256%" height="15" fill="rgb(247,167,28)" fg:x="6951" fg:w="6"/><text x="29.8691%" y="2719.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="29.6191%" y="2693" width="0.0256%" height="15" fill="rgb(228,6,44)" fg:x="6951" fg:w="6"/><text x="29.8691%" y="2703.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="29.6191%" y="2677" width="0.0256%" height="15" fill="rgb(214,75,23)" fg:x="6951" fg:w="6"/><text x="29.8691%" y="2687.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="29.6191%" y="2661" width="0.0256%" height="15" fill="rgb(241,211,28)" fg:x="6951" fg:w="6"/><text x="29.8691%" y="2671.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="29.6191%" y="2645" width="0.0256%" height="15" fill="rgb(216,147,39)" fg:x="6951" fg:w="6"/><text x="29.8691%" y="2655.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="29.6233%" y="2629" width="0.0213%" height="15" fill="rgb(237,121,45)" fg:x="6952" fg:w="5"/><text x="29.8733%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (89 samples, 0.38%)</title><rect x="29.2696%" y="2869" width="0.3792%" height="15" fill="rgb(214,115,15)" fg:x="6869" fg:w="89"/><text x="29.5196%" y="2879.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="29.6191%" y="2853" width="0.0298%" height="15" fill="rgb(253,132,27)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2863.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="29.6191%" y="2837" width="0.0298%" height="15" fill="rgb(222,56,1)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="29.6191%" y="2821" width="0.0298%" height="15" fill="rgb(216,99,46)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2831.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (7 samples, 0.03%)</title><rect x="29.6191%" y="2805" width="0.0298%" height="15" fill="rgb(232,1,9)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2815.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="29.6191%" y="2789" width="0.0298%" height="15" fill="rgb(215,41,52)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2799.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="29.6191%" y="2773" width="0.0298%" height="15" fill="rgb(223,107,41)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2783.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="29.6191%" y="2757" width="0.0298%" height="15" fill="rgb(208,151,32)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2767.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="29.6191%" y="2741" width="0.0298%" height="15" fill="rgb(229,32,3)" fg:x="6951" fg:w="7"/><text x="29.8691%" y="2751.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (43 samples, 0.18%)</title><rect x="29.6617%" y="2565" width="0.1832%" height="15" fill="rgb(234,186,36)" fg:x="6961" fg:w="43"/><text x="29.9117%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::exp (43 samples, 0.18%)</title><rect x="29.6617%" y="2549" width="0.1832%" height="15" fill="rgb(216,9,5)" fg:x="6961" fg:w="43"/><text x="29.9117%" y="2559.50"></text></g><g><title>exp (41 samples, 0.17%)</title><rect x="29.6702%" y="2533" width="0.1747%" height="15" fill="rgb(226,151,21)" fg:x="6963" fg:w="41"/><text x="29.9202%" y="2543.50"></text></g><g><title>[libm.so.6] (34 samples, 0.14%)</title><rect x="29.7000%" y="2517" width="0.1449%" height="15" fill="rgb(210,130,28)" fg:x="6970" fg:w="34"/><text x="29.9500%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (20 samples, 0.09%)</title><rect x="29.8449%" y="2565" width="0.0852%" height="15" fill="rgb(239,58,31)" fg:x="7004" fg:w="20"/><text x="30.0949%" y="2575.50"></text></g><g><title>core::f64::<impl f64>::recip (20 samples, 0.09%)</title><rect x="29.8449%" y="2549" width="0.0852%" height="15" fill="rgb(213,14,0)" fg:x="7004" fg:w="20"/><text x="30.0949%" y="2559.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (80 samples, 0.34%)</title><rect x="29.6574%" y="2581" width="0.3409%" height="15" fill="rgb(228,97,38)" fg:x="6960" fg:w="80"/><text x="29.9074%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (16 samples, 0.07%)</title><rect x="29.9301%" y="2565" width="0.0682%" height="15" fill="rgb(248,9,13)" fg:x="7024" fg:w="16"/><text x="30.1801%" y="2575.50"></text></g><g><title>std::f64::<impl f64>::sqrt (16 samples, 0.07%)</title><rect x="29.9301%" y="2549" width="0.0682%" height="15" fill="rgb(233,149,17)" fg:x="7024" fg:w="16"/><text x="30.1801%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (88 samples, 0.37%)</title><rect x="29.6489%" y="2757" width="0.3750%" height="15" fill="rgb(233,127,53)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2767.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (88 samples, 0.37%)</title><rect x="29.6489%" y="2741" width="0.3750%" height="15" fill="rgb(207,120,37)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (88 samples, 0.37%)</title><rect x="29.6489%" y="2725" width="0.3750%" height="15" fill="rgb(210,65,38)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (88 samples, 0.37%)</title><rect x="29.6489%" y="2709" width="0.3750%" height="15" fill="rgb(229,206,39)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2719.50"></text></g><g><title>core::option::Option<T>::map (88 samples, 0.37%)</title><rect x="29.6489%" y="2693" width="0.3750%" height="15" fill="rgb(237,11,35)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (88 samples, 0.37%)</title><rect x="29.6489%" y="2677" width="0.3750%" height="15" fill="rgb(237,159,38)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (88 samples, 0.37%)</title><rect x="29.6489%" y="2661" width="0.3750%" height="15" fill="rgb(239,79,36)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (88 samples, 0.37%)</title><rect x="29.6489%" y="2645" width="0.3750%" height="15" fill="rgb(231,163,51)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2655.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (88 samples, 0.37%)</title><rect x="29.6489%" y="2629" width="0.3750%" height="15" fill="rgb(226,68,29)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2639.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (88 samples, 0.37%)</title><rect x="29.6489%" y="2613" width="0.3750%" height="15" fill="rgb(250,192,3)" fg:x="6958" fg:w="88"/><text x="29.8989%" y="2623.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (86 samples, 0.37%)</title><rect x="29.6574%" y="2597" width="0.3665%" height="15" fill="rgb(206,11,13)" fg:x="6960" fg:w="86"/><text x="29.9074%" y="2607.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="29.9983%" y="2581" width="0.0256%" height="15" fill="rgb(234,128,26)" fg:x="7040" fg:w="6"/><text x="30.2483%" y="2591.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (23 samples, 0.10%)</title><rect x="30.0281%" y="2453" width="0.0980%" height="15" fill="rgb(226,134,12)" fg:x="7047" fg:w="23"/><text x="30.2781%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::exp (23 samples, 0.10%)</title><rect x="30.0281%" y="2437" width="0.0980%" height="15" fill="rgb(240,60,15)" fg:x="7047" fg:w="23"/><text x="30.2781%" y="2447.50"></text></g><g><title>exp (23 samples, 0.10%)</title><rect x="30.0281%" y="2421" width="0.0980%" height="15" fill="rgb(222,112,11)" fg:x="7047" fg:w="23"/><text x="30.2781%" y="2431.50"></text></g><g><title>[libm.so.6] (20 samples, 0.09%)</title><rect x="30.0409%" y="2405" width="0.0852%" height="15" fill="rgb(231,207,44)" fg:x="7050" fg:w="20"/><text x="30.2909%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (17 samples, 0.07%)</title><rect x="30.1261%" y="2453" width="0.0724%" height="15" fill="rgb(250,222,54)" fg:x="7070" fg:w="17"/><text x="30.3761%" y="2463.50"></text></g><g><title>core::f64::<impl f64>::recip (17 samples, 0.07%)</title><rect x="30.1261%" y="2437" width="0.0724%" height="15" fill="rgb(243,223,15)" fg:x="7070" fg:w="17"/><text x="30.3761%" y="2447.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (57 samples, 0.24%)</title><rect x="30.0239%" y="2469" width="0.2429%" height="15" fill="rgb(239,2,5)" fg:x="7046" fg:w="57"/><text x="30.2739%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (16 samples, 0.07%)</title><rect x="30.1986%" y="2453" width="0.0682%" height="15" fill="rgb(241,83,27)" fg:x="7087" fg:w="16"/><text x="30.4486%" y="2463.50"></text></g><g><title>std::f64::<impl f64>::sqrt (16 samples, 0.07%)</title><rect x="30.1986%" y="2437" width="0.0682%" height="15" fill="rgb(223,175,51)" fg:x="7087" fg:w="16"/><text x="30.4486%" y="2447.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (70 samples, 0.30%)</title><rect x="30.0239%" y="2629" width="0.2983%" height="15" fill="rgb(209,11,47)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (70 samples, 0.30%)</title><rect x="30.0239%" y="2613" width="0.2983%" height="15" fill="rgb(249,60,43)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (70 samples, 0.30%)</title><rect x="30.0239%" y="2597" width="0.2983%" height="15" fill="rgb(244,84,47)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2607.50"></text></g><g><title>core::option::Option<T>::map (70 samples, 0.30%)</title><rect x="30.0239%" y="2581" width="0.2983%" height="15" fill="rgb(241,110,24)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (70 samples, 0.30%)</title><rect x="30.0239%" y="2565" width="0.2983%" height="15" fill="rgb(236,79,1)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (70 samples, 0.30%)</title><rect x="30.0239%" y="2549" width="0.2983%" height="15" fill="rgb(210,152,4)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (70 samples, 0.30%)</title><rect x="30.0239%" y="2533" width="0.2983%" height="15" fill="rgb(218,71,19)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (70 samples, 0.30%)</title><rect x="30.0239%" y="2517" width="0.2983%" height="15" fill="rgb(207,161,51)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2527.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (70 samples, 0.30%)</title><rect x="30.0239%" y="2501" width="0.2983%" height="15" fill="rgb(219,84,54)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (70 samples, 0.30%)</title><rect x="30.0239%" y="2485" width="0.2983%" height="15" fill="rgb(243,172,34)" fg:x="7046" fg:w="70"/><text x="30.2739%" y="2495.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (13 samples, 0.06%)</title><rect x="30.2667%" y="2469" width="0.0554%" height="15" fill="rgb(233,181,1)" fg:x="7103" fg:w="13"/><text x="30.5167%" y="2479.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="30.3221%" y="2501" width="0.0170%" height="15" fill="rgb(236,21,18)" fg:x="7116" fg:w="4"/><text x="30.5721%" y="2511.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="30.3221%" y="2485" width="0.0170%" height="15" fill="rgb(244,165,15)" fg:x="7116" fg:w="4"/><text x="30.5721%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="30.3221%" y="2469" width="0.0170%" height="15" fill="rgb(235,75,19)" fg:x="7116" fg:w="4"/><text x="30.5721%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="30.3221%" y="2453" width="0.0170%" height="15" fill="rgb(217,229,29)" fg:x="7116" fg:w="4"/><text x="30.5721%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="30.3221%" y="2437" width="0.0170%" height="15" fill="rgb(250,200,19)" fg:x="7116" fg:w="4"/><text x="30.5721%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="30.3221%" y="2421" width="0.0170%" height="15" fill="rgb(218,195,36)" fg:x="7116" fg:w="4"/><text x="30.5721%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="30.3264%" y="2405" width="0.0128%" height="15" fill="rgb(206,183,32)" fg:x="7117" fg:w="3"/><text x="30.5764%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="30.3264%" y="2389" width="0.0128%" height="15" fill="rgb(235,151,53)" fg:x="7117" fg:w="3"/><text x="30.5764%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (76 samples, 0.32%)</title><rect x="30.0239%" y="2645" width="0.3238%" height="15" fill="rgb(244,120,37)" fg:x="7046" fg:w="76"/><text x="30.2739%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="30.3221%" y="2629" width="0.0256%" height="15" fill="rgb(209,96,41)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2639.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="30.3221%" y="2613" width="0.0256%" height="15" fill="rgb(208,229,20)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="30.3221%" y="2597" width="0.0256%" height="15" fill="rgb(208,153,33)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (6 samples, 0.03%)</title><rect x="30.3221%" y="2581" width="0.0256%" height="15" fill="rgb(223,196,8)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="30.3221%" y="2565" width="0.0256%" height="15" fill="rgb(241,75,49)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="30.3221%" y="2549" width="0.0256%" height="15" fill="rgb(212,52,42)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="30.3221%" y="2533" width="0.0256%" height="15" fill="rgb(220,148,43)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2543.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="30.3221%" y="2517" width="0.0256%" height="15" fill="rgb(228,88,15)" fg:x="7116" fg:w="6"/><text x="30.5721%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (10 samples, 0.04%)</title><rect x="30.3520%" y="2341" width="0.0426%" height="15" fill="rgb(213,87,14)" fg:x="7123" fg:w="10"/><text x="30.6020%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::exp (10 samples, 0.04%)</title><rect x="30.3520%" y="2325" width="0.0426%" height="15" fill="rgb(220,198,31)" fg:x="7123" fg:w="10"/><text x="30.6020%" y="2335.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="30.3520%" y="2309" width="0.0426%" height="15" fill="rgb(223,165,38)" fg:x="7123" fg:w="10"/><text x="30.6020%" y="2319.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="30.3562%" y="2293" width="0.0384%" height="15" fill="rgb(247,56,48)" fg:x="7124" fg:w="9"/><text x="30.6062%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (17 samples, 0.07%)</title><rect x="30.3946%" y="2341" width="0.0724%" height="15" fill="rgb(222,150,13)" fg:x="7133" fg:w="17"/><text x="30.6446%" y="2351.50"></text></g><g><title>core::f64::<impl f64>::recip (17 samples, 0.07%)</title><rect x="30.3946%" y="2325" width="0.0724%" height="15" fill="rgb(218,214,11)" fg:x="7133" fg:w="17"/><text x="30.6446%" y="2335.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (35 samples, 0.15%)</title><rect x="30.3520%" y="2357" width="0.1491%" height="15" fill="rgb(246,111,16)" fg:x="7123" fg:w="35"/><text x="30.6020%" y="2367.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (8 samples, 0.03%)</title><rect x="30.4670%" y="2341" width="0.0341%" height="15" fill="rgb(250,127,26)" fg:x="7150" fg:w="8"/><text x="30.7170%" y="2351.50"></text></g><g><title>std::f64::<impl f64>::sqrt (8 samples, 0.03%)</title><rect x="30.4670%" y="2325" width="0.0341%" height="15" fill="rgb(237,156,23)" fg:x="7150" fg:w="8"/><text x="30.7170%" y="2335.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (38 samples, 0.16%)</title><rect x="30.3477%" y="2517" width="0.1619%" height="15" fill="rgb(215,143,51)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (38 samples, 0.16%)</title><rect x="30.3477%" y="2501" width="0.1619%" height="15" fill="rgb(209,119,39)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (38 samples, 0.16%)</title><rect x="30.3477%" y="2485" width="0.1619%" height="15" fill="rgb(228,181,16)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2495.50"></text></g><g><title>core::option::Option<T>::map (38 samples, 0.16%)</title><rect x="30.3477%" y="2469" width="0.1619%" height="15" fill="rgb(236,113,51)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (38 samples, 0.16%)</title><rect x="30.3477%" y="2453" width="0.1619%" height="15" fill="rgb(223,132,1)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (38 samples, 0.16%)</title><rect x="30.3477%" y="2437" width="0.1619%" height="15" fill="rgb(227,4,54)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (38 samples, 0.16%)</title><rect x="30.3477%" y="2421" width="0.1619%" height="15" fill="rgb(254,72,52)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (38 samples, 0.16%)</title><rect x="30.3477%" y="2405" width="0.1619%" height="15" fill="rgb(252,104,52)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2415.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (38 samples, 0.16%)</title><rect x="30.3477%" y="2389" width="0.1619%" height="15" fill="rgb(251,146,26)" fg:x="7122" fg:w="38"/><text x="30.5977%" y="2399.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (37 samples, 0.16%)</title><rect x="30.3520%" y="2373" width="0.1577%" height="15" fill="rgb(214,146,19)" fg:x="7123" fg:w="37"/><text x="30.6020%" y="2383.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="30.5096%" y="2357" width="0.0128%" height="15" fill="rgb(242,222,1)" fg:x="7160" fg:w="3"/><text x="30.7596%" y="2367.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="30.5096%" y="2501" width="0.0170%" height="15" fill="rgb(220,178,32)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="30.5096%" y="2485" width="0.0170%" height="15" fill="rgb(220,50,48)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="30.5096%" y="2469" width="0.0170%" height="15" fill="rgb(207,117,22)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="30.5096%" y="2453" width="0.0170%" height="15" fill="rgb(247,195,50)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="30.5096%" y="2437" width="0.0170%" height="15" fill="rgb(206,50,39)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="30.5096%" y="2421" width="0.0170%" height="15" fill="rgb(236,141,29)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="30.5096%" y="2405" width="0.0170%" height="15" fill="rgb(247,18,44)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="30.5096%" y="2389" width="0.0170%" height="15" fill="rgb(243,179,46)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2399.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="30.5096%" y="2373" width="0.0170%" height="15" fill="rgb(241,178,53)" fg:x="7160" fg:w="4"/><text x="30.7596%" y="2383.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="30.5267%" y="2389" width="0.0128%" height="15" fill="rgb(236,100,9)" fg:x="7164" fg:w="3"/><text x="30.7767%" y="2399.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="30.5267%" y="2373" width="0.0128%" height="15" fill="rgb(208,180,29)" fg:x="7164" fg:w="3"/><text x="30.7767%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="30.5267%" y="2357" width="0.0128%" height="15" fill="rgb(241,204,36)" fg:x="7164" fg:w="3"/><text x="30.7767%" y="2367.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="30.5267%" y="2341" width="0.0128%" height="15" fill="rgb(248,106,5)" fg:x="7164" fg:w="3"/><text x="30.7767%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="30.5267%" y="2325" width="0.0128%" height="15" fill="rgb(245,13,49)" fg:x="7164" fg:w="3"/><text x="30.7767%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="30.5267%" y="2309" width="0.0128%" height="15" fill="rgb(221,209,34)" fg:x="7164" fg:w="3"/><text x="30.7767%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (46 samples, 0.20%)</title><rect x="30.3477%" y="2597" width="0.1960%" height="15" fill="rgb(224,83,31)" fg:x="7122" fg:w="46"/><text x="30.5977%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (46 samples, 0.20%)</title><rect x="30.3477%" y="2581" width="0.1960%" height="15" fill="rgb(218,63,22)" fg:x="7122" fg:w="46"/><text x="30.5977%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46 samples, 0.20%)</title><rect x="30.3477%" y="2565" width="0.1960%" height="15" fill="rgb(214,167,5)" fg:x="7122" fg:w="46"/><text x="30.5977%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.20%)</title><rect x="30.3477%" y="2549" width="0.1960%" height="15" fill="rgb(243,13,0)" fg:x="7122" fg:w="46"/><text x="30.5977%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (46 samples, 0.20%)</title><rect x="30.3477%" y="2533" width="0.1960%" height="15" fill="rgb(237,20,46)" fg:x="7122" fg:w="46"/><text x="30.5977%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="30.5096%" y="2517" width="0.0341%" height="15" fill="rgb(240,94,48)" fg:x="7160" fg:w="8"/><text x="30.7596%" y="2527.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="30.5267%" y="2501" width="0.0170%" height="15" fill="rgb(205,160,17)" fg:x="7164" fg:w="4"/><text x="30.7767%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="30.5267%" y="2485" width="0.0170%" height="15" fill="rgb(234,42,33)" fg:x="7164" fg:w="4"/><text x="30.7767%" y="2495.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="30.5267%" y="2469" width="0.0170%" height="15" fill="rgb(215,166,5)" fg:x="7164" fg:w="4"/><text x="30.7767%" y="2479.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="30.5267%" y="2453" width="0.0170%" height="15" fill="rgb(215,9,6)" fg:x="7164" fg:w="4"/><text x="30.7767%" y="2463.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="30.5267%" y="2437" width="0.0170%" height="15" fill="rgb(212,53,6)" fg:x="7164" fg:w="4"/><text x="30.7767%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="30.5267%" y="2421" width="0.0170%" height="15" fill="rgb(249,157,19)" fg:x="7164" fg:w="4"/><text x="30.7767%" y="2431.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="30.5267%" y="2405" width="0.0170%" height="15" fill="rgb(222,212,45)" fg:x="7164" fg:w="4"/><text x="30.7767%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (21 samples, 0.09%)</title><rect x="30.5480%" y="2277" width="0.0895%" height="15" fill="rgb(232,155,17)" fg:x="7169" fg:w="21"/><text x="30.7980%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (21 samples, 0.09%)</title><rect x="30.5480%" y="2261" width="0.0895%" height="15" fill="rgb(212,159,50)" fg:x="7169" fg:w="21"/><text x="30.7980%" y="2271.50"></text></g><g><title>exp (21 samples, 0.09%)</title><rect x="30.5480%" y="2245" width="0.0895%" height="15" fill="rgb(247,71,8)" fg:x="7169" fg:w="21"/><text x="30.7980%" y="2255.50"></text></g><g><title>[libm.so.6] (18 samples, 0.08%)</title><rect x="30.5608%" y="2229" width="0.0767%" height="15" fill="rgb(239,128,29)" fg:x="7172" fg:w="18"/><text x="30.8108%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (12 samples, 0.05%)</title><rect x="30.6375%" y="2277" width="0.0511%" height="15" fill="rgb(227,117,11)" fg:x="7190" fg:w="12"/><text x="30.8875%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (12 samples, 0.05%)</title><rect x="30.6375%" y="2261" width="0.0511%" height="15" fill="rgb(247,183,4)" fg:x="7190" fg:w="12"/><text x="30.8875%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (37 samples, 0.16%)</title><rect x="30.5480%" y="2293" width="0.1577%" height="15" fill="rgb(211,161,41)" fg:x="7169" fg:w="37"/><text x="30.7980%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="30.6886%" y="2277" width="0.0170%" height="15" fill="rgb(250,157,52)" fg:x="7202" fg:w="4"/><text x="30.9386%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="30.6886%" y="2261" width="0.0170%" height="15" fill="rgb(249,118,26)" fg:x="7202" fg:w="4"/><text x="30.9386%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (40 samples, 0.17%)</title><rect x="30.5480%" y="2453" width="0.1704%" height="15" fill="rgb(234,52,37)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (40 samples, 0.17%)</title><rect x="30.5480%" y="2437" width="0.1704%" height="15" fill="rgb(237,188,45)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (40 samples, 0.17%)</title><rect x="30.5480%" y="2421" width="0.1704%" height="15" fill="rgb(241,3,40)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (40 samples, 0.17%)</title><rect x="30.5480%" y="2405" width="0.1704%" height="15" fill="rgb(246,192,7)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (40 samples, 0.17%)</title><rect x="30.5480%" y="2389" width="0.1704%" height="15" fill="rgb(206,168,17)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (40 samples, 0.17%)</title><rect x="30.5480%" y="2373" width="0.1704%" height="15" fill="rgb(208,124,33)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (40 samples, 0.17%)</title><rect x="30.5480%" y="2357" width="0.1704%" height="15" fill="rgb(226,186,11)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (40 samples, 0.17%)</title><rect x="30.5480%" y="2341" width="0.1704%" height="15" fill="rgb(218,223,1)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (40 samples, 0.17%)</title><rect x="30.5480%" y="2325" width="0.1704%" height="15" fill="rgb(254,65,21)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (40 samples, 0.17%)</title><rect x="30.5480%" y="2309" width="0.1704%" height="15" fill="rgb(239,63,32)" fg:x="7169" fg:w="40"/><text x="30.7980%" y="2319.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="30.7184%" y="2437" width="0.0213%" height="15" fill="rgb(219,85,29)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="30.7184%" y="2421" width="0.0213%" height="15" fill="rgb(246,74,32)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="30.7184%" y="2405" width="0.0213%" height="15" fill="rgb(251,20,52)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="30.7184%" y="2389" width="0.0213%" height="15" fill="rgb(222,160,46)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="30.7184%" y="2373" width="0.0213%" height="15" fill="rgb(230,68,24)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="30.7184%" y="2357" width="0.0213%" height="15" fill="rgb(233,83,32)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="30.7184%" y="2341" width="0.0213%" height="15" fill="rgb(253,79,36)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="30.7184%" y="2325" width="0.0213%" height="15" fill="rgb(224,125,51)" fg:x="7209" fg:w="5"/><text x="30.9684%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="30.7269%" y="2309" width="0.0128%" height="15" fill="rgb(254,158,3)" fg:x="7211" fg:w="3"/><text x="30.9769%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="30.7397%" y="2325" width="0.0128%" height="15" fill="rgb(243,226,3)" fg:x="7214" fg:w="3"/><text x="30.9897%" y="2335.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="30.7397%" y="2309" width="0.0128%" height="15" fill="rgb(208,37,10)" fg:x="7214" fg:w="3"/><text x="30.9897%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="30.7397%" y="2293" width="0.0128%" height="15" fill="rgb(227,35,6)" fg:x="7214" fg:w="3"/><text x="30.9897%" y="2303.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="30.7397%" y="2277" width="0.0128%" height="15" fill="rgb(236,35,38)" fg:x="7214" fg:w="3"/><text x="30.9897%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="30.7397%" y="2261" width="0.0128%" height="15" fill="rgb(247,165,26)" fg:x="7214" fg:w="3"/><text x="30.9897%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="30.7397%" y="2245" width="0.0128%" height="15" fill="rgb(251,131,20)" fg:x="7214" fg:w="3"/><text x="30.9897%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (172 samples, 0.73%)</title><rect x="30.0239%" y="2709" width="0.7329%" height="15" fill="rgb(248,168,52)" fg:x="7046" fg:w="172"/><text x="30.2739%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (172 samples, 0.73%)</title><rect x="30.0239%" y="2693" width="0.7329%" height="15" fill="rgb(241,220,45)" fg:x="7046" fg:w="172"/><text x="30.2739%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (172 samples, 0.73%)</title><rect x="30.0239%" y="2677" width="0.7329%" height="15" fill="rgb(240,85,44)" fg:x="7046" fg:w="172"/><text x="30.2739%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (172 samples, 0.73%)</title><rect x="30.0239%" y="2661" width="0.7329%" height="15" fill="rgb(223,69,47)" fg:x="7046" fg:w="172"/><text x="30.2739%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (96 samples, 0.41%)</title><rect x="30.3477%" y="2645" width="0.4091%" height="15" fill="rgb(221,209,17)" fg:x="7122" fg:w="96"/><text x="30.5977%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (96 samples, 0.41%)</title><rect x="30.3477%" y="2629" width="0.4091%" height="15" fill="rgb(224,194,24)" fg:x="7122" fg:w="96"/><text x="30.5977%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (96 samples, 0.41%)</title><rect x="30.3477%" y="2613" width="0.4091%" height="15" fill="rgb(249,43,24)" fg:x="7122" fg:w="96"/><text x="30.5977%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (49 samples, 0.21%)</title><rect x="30.5480%" y="2597" width="0.2088%" height="15" fill="rgb(245,78,29)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (49 samples, 0.21%)</title><rect x="30.5480%" y="2581" width="0.2088%" height="15" fill="rgb(241,167,34)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2591.50"></text></g><g><title>std::panicking::try (49 samples, 0.21%)</title><rect x="30.5480%" y="2565" width="0.2088%" height="15" fill="rgb(225,91,27)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (49 samples, 0.21%)</title><rect x="30.5480%" y="2549" width="0.2088%" height="15" fill="rgb(249,82,49)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (49 samples, 0.21%)</title><rect x="30.5480%" y="2533" width="0.2088%" height="15" fill="rgb(215,90,36)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (49 samples, 0.21%)</title><rect x="30.5480%" y="2517" width="0.2088%" height="15" fill="rgb(209,128,1)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (49 samples, 0.21%)</title><rect x="30.5480%" y="2501" width="0.2088%" height="15" fill="rgb(233,184,1)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.21%)</title><rect x="30.5480%" y="2485" width="0.2088%" height="15" fill="rgb(240,59,32)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (49 samples, 0.21%)</title><rect x="30.5480%" y="2469" width="0.2088%" height="15" fill="rgb(249,163,0)" fg:x="7169" fg:w="49"/><text x="30.7980%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="30.7184%" y="2453" width="0.0384%" height="15" fill="rgb(249,220,13)" fg:x="7209" fg:w="9"/><text x="30.9684%" y="2463.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="30.7397%" y="2437" width="0.0170%" height="15" fill="rgb(235,127,52)" fg:x="7214" fg:w="4"/><text x="30.9897%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="30.7397%" y="2421" width="0.0170%" height="15" fill="rgb(229,172,26)" fg:x="7214" fg:w="4"/><text x="30.9897%" y="2431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="30.7397%" y="2405" width="0.0170%" height="15" fill="rgb(217,37,29)" fg:x="7214" fg:w="4"/><text x="30.9897%" y="2415.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7397%" y="2389" width="0.0170%" height="15" fill="rgb(208,66,47)" fg:x="7214" fg:w="4"/><text x="30.9897%" y="2399.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7397%" y="2373" width="0.0170%" height="15" fill="rgb(221,99,19)" fg:x="7214" fg:w="4"/><text x="30.9897%" y="2383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="30.7397%" y="2357" width="0.0170%" height="15" fill="rgb(214,149,49)" fg:x="7214" fg:w="4"/><text x="30.9897%" y="2367.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7397%" y="2341" width="0.0170%" height="15" fill="rgb(229,91,37)" fg:x="7214" fg:w="4"/><text x="30.9897%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="30.7738%" y="2309" width="0.0170%" height="15" fill="rgb(207,159,48)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7738%" y="2293" width="0.0170%" height="15" fill="rgb(209,125,46)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7738%" y="2277" width="0.0170%" height="15" fill="rgb(211,188,18)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.7738%" y="2261" width="0.0170%" height="15" fill="rgb(207,203,34)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="30.7738%" y="2245" width="0.0170%" height="15" fill="rgb(245,182,16)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2255.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="30.7738%" y="2229" width="0.0170%" height="15" fill="rgb(210,66,30)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="30.7738%" y="2213" width="0.0170%" height="15" fill="rgb(230,110,14)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2223.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="30.7738%" y="2197" width="0.0170%" height="15" fill="rgb(242,198,32)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2207.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="30.7738%" y="2181" width="0.0170%" height="15" fill="rgb(213,45,23)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2191.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="30.7738%" y="2165" width="0.0170%" height="15" fill="rgb(205,76,9)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="30.7738%" y="2149" width="0.0170%" height="15" fill="rgb(250,200,25)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7738%" y="2133" width="0.0170%" height="15" fill="rgb(221,161,23)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="30.7738%" y="2117" width="0.0170%" height="15" fill="rgb(226,135,48)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2127.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="30.7738%" y="2101" width="0.0170%" height="15" fill="rgb(228,33,6)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2111.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7738%" y="2085" width="0.0170%" height="15" fill="rgb(237,224,9)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2095.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="30.7738%" y="2069" width="0.0170%" height="15" fill="rgb(251,61,40)" fg:x="7222" fg:w="4"/><text x="31.0238%" y="2079.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="30.7781%" y="2053" width="0.0128%" height="15" fill="rgb(220,222,2)" fg:x="7223" fg:w="3"/><text x="31.0281%" y="2063.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="30.7781%" y="2037" width="0.0128%" height="15" fill="rgb(238,4,8)" fg:x="7223" fg:w="3"/><text x="31.0281%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="30.7653%" y="2421" width="0.0426%" height="15" fill="rgb(240,153,3)" fg:x="7220" fg:w="10"/><text x="31.0153%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="30.7653%" y="2405" width="0.0426%" height="15" fill="rgb(245,29,24)" fg:x="7220" fg:w="10"/><text x="31.0153%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="30.7653%" y="2389" width="0.0426%" height="15" fill="rgb(231,220,37)" fg:x="7220" fg:w="10"/><text x="31.0153%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="30.7653%" y="2373" width="0.0426%" height="15" fill="rgb(245,33,10)" fg:x="7220" fg:w="10"/><text x="31.0153%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="30.7738%" y="2357" width="0.0341%" height="15" fill="rgb(220,227,43)" fg:x="7222" fg:w="8"/><text x="31.0238%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="30.7738%" y="2341" width="0.0341%" height="15" fill="rgb(215,183,54)" fg:x="7222" fg:w="8"/><text x="31.0238%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="30.7738%" y="2325" width="0.0341%" height="15" fill="rgb(242,80,26)" fg:x="7222" fg:w="8"/><text x="31.0238%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="30.7909%" y="2309" width="0.0170%" height="15" fill="rgb(206,172,49)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="30.7909%" y="2293" width="0.0170%" height="15" fill="rgb(249,0,10)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2303.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="30.7909%" y="2277" width="0.0170%" height="15" fill="rgb(246,171,19)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="30.7909%" y="2261" width="0.0170%" height="15" fill="rgb(236,25,43)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="30.7909%" y="2245" width="0.0170%" height="15" fill="rgb(225,146,20)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7909%" y="2229" width="0.0170%" height="15" fill="rgb(243,50,39)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7909%" y="2213" width="0.0170%" height="15" fill="rgb(239,153,27)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.7909%" y="2197" width="0.0170%" height="15" fill="rgb(208,164,31)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="30.7909%" y="2181" width="0.0170%" height="15" fill="rgb(231,32,38)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="30.7909%" y="2165" width="0.0170%" height="15" fill="rgb(247,158,12)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="30.7909%" y="2149" width="0.0170%" height="15" fill="rgb(254,126,16)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="30.7909%" y="2133" width="0.0170%" height="15" fill="rgb(246,12,32)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="30.7909%" y="2117" width="0.0170%" height="15" fill="rgb(245,190,44)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="30.7909%" y="2101" width="0.0170%" height="15" fill="rgb(253,148,49)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="30.7909%" y="2085" width="0.0170%" height="15" fill="rgb(232,193,44)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7909%" y="2069" width="0.0170%" height="15" fill="rgb(212,67,50)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="30.7909%" y="2053" width="0.0170%" height="15" fill="rgb(235,109,24)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="30.7909%" y="2037" width="0.0170%" height="15" fill="rgb(242,228,23)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="30.7909%" y="2021" width="0.0170%" height="15" fill="rgb(232,48,19)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="30.7909%" y="2005" width="0.0170%" height="15" fill="rgb(221,167,25)" fg:x="7226" fg:w="4"/><text x="31.0409%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="30.7951%" y="1989" width="0.0128%" height="15" fill="rgb(220,29,38)" fg:x="7227" fg:w="3"/><text x="31.0451%" y="1999.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="30.7951%" y="1973" width="0.0128%" height="15" fill="rgb(245,95,26)" fg:x="7227" fg:w="3"/><text x="31.0451%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="30.8079%" y="2421" width="0.0128%" height="15" fill="rgb(227,189,38)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="30.8079%" y="2405" width="0.0128%" height="15" fill="rgb(231,212,22)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="30.8079%" y="2389" width="0.0128%" height="15" fill="rgb(246,25,46)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="30.8079%" y="2373" width="0.0128%" height="15" fill="rgb(218,90,32)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="30.8079%" y="2357" width="0.0128%" height="15" fill="rgb(207,89,34)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="30.8079%" y="2341" width="0.0128%" height="15" fill="rgb(222,30,54)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="30.8079%" y="2325" width="0.0128%" height="15" fill="rgb(224,229,32)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="30.8079%" y="2309" width="0.0128%" height="15" fill="rgb(209,188,44)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2319.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="30.8079%" y="2293" width="0.0128%" height="15" fill="rgb(215,174,23)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="30.8079%" y="2277" width="0.0128%" height="15" fill="rgb(242,104,18)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="30.8079%" y="2261" width="0.0128%" height="15" fill="rgb(240,173,53)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8079%" y="2245" width="0.0128%" height="15" fill="rgb(240,105,45)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8079%" y="2229" width="0.0128%" height="15" fill="rgb(252,164,29)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8079%" y="2213" width="0.0128%" height="15" fill="rgb(217,17,6)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.8079%" y="2197" width="0.0128%" height="15" fill="rgb(245,27,23)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="30.8079%" y="2181" width="0.0128%" height="15" fill="rgb(239,73,33)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2191.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="30.8079%" y="2165" width="0.0128%" height="15" fill="rgb(209,140,21)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2175.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="30.8079%" y="2149" width="0.0128%" height="15" fill="rgb(206,36,53)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="30.8079%" y="2133" width="0.0128%" height="15" fill="rgb(238,134,8)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2143.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="30.8079%" y="2117" width="0.0128%" height="15" fill="rgb(209,3,20)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2127.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8079%" y="2101" width="0.0128%" height="15" fill="rgb(208,101,32)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2111.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8079%" y="2085" width="0.0128%" height="15" fill="rgb(253,56,38)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2095.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="30.8079%" y="2069" width="0.0128%" height="15" fill="rgb(209,85,49)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2079.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8079%" y="2053" width="0.0128%" height="15" fill="rgb(234,177,21)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2063.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="30.8079%" y="2037" width="0.0128%" height="15" fill="rgb(250,4,6)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2047.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="30.8079%" y="2021" width="0.0128%" height="15" fill="rgb(240,153,10)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2031.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="30.8079%" y="2005" width="0.0128%" height="15" fill="rgb(205,136,51)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="2015.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="30.8079%" y="1989" width="0.0128%" height="15" fill="rgb(245,165,50)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="1999.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="30.8079%" y="1973" width="0.0128%" height="15" fill="rgb(211,28,10)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="1983.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="30.8079%" y="1957" width="0.0128%" height="15" fill="rgb(218,155,54)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="1967.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="30.8079%" y="1941" width="0.0128%" height="15" fill="rgb(254,214,30)" fg:x="7230" fg:w="3"/><text x="31.0579%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="30.8207%" y="2293" width="0.0128%" height="15" fill="rgb(248,200,10)" fg:x="7233" fg:w="3"/><text x="31.0707%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="30.8335%" y="1989" width="0.0128%" height="15" fill="rgb(238,219,45)" fg:x="7236" fg:w="3"/><text x="31.0835%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="30.8335%" y="1973" width="0.0128%" height="15" fill="rgb(227,35,34)" fg:x="7236" fg:w="3"/><text x="31.0835%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="30.8335%" y="2181" width="0.0170%" height="15" fill="rgb(214,187,37)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="30.8335%" y="2165" width="0.0170%" height="15" fill="rgb(247,164,44)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="30.8335%" y="2149" width="0.0170%" height="15" fill="rgb(238,198,10)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="30.8335%" y="2133" width="0.0170%" height="15" fill="rgb(213,69,8)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="30.8335%" y="2117" width="0.0170%" height="15" fill="rgb(222,82,16)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="30.8335%" y="2101" width="0.0170%" height="15" fill="rgb(205,172,30)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="30.8335%" y="2085" width="0.0170%" height="15" fill="rgb(227,39,8)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8335%" y="2069" width="0.0170%" height="15" fill="rgb(249,10,19)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="30.8335%" y="2053" width="0.0170%" height="15" fill="rgb(205,158,53)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="30.8335%" y="2037" width="0.0170%" height="15" fill="rgb(237,229,35)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8335%" y="2021" width="0.0170%" height="15" fill="rgb(238,129,14)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="30.8335%" y="2005" width="0.0170%" height="15" fill="rgb(218,217,40)" fg:x="7236" fg:w="4"/><text x="31.0835%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="30.8505%" y="1669" width="0.0128%" height="15" fill="rgb(221,187,9)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="30.8505%" y="1653" width="0.0128%" height="15" fill="rgb(214,108,19)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="30.8505%" y="1637" width="0.0128%" height="15" fill="rgb(216,86,23)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1647.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="30.8505%" y="1621" width="0.0128%" height="15" fill="rgb(209,116,23)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1631.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="30.8505%" y="1605" width="0.0128%" height="15" fill="rgb(222,185,40)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1615.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="30.8505%" y="1589" width="0.0128%" height="15" fill="rgb(238,150,2)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1599.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="30.8505%" y="1573" width="0.0128%" height="15" fill="rgb(229,132,47)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1583.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="30.8505%" y="1557" width="0.0128%" height="15" fill="rgb(231,7,23)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1567.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="30.8505%" y="1541" width="0.0128%" height="15" fill="rgb(235,12,37)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1551.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="30.8505%" y="1525" width="0.0128%" height="15" fill="rgb(247,170,51)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1535.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="30.8505%" y="1509" width="0.0128%" height="15" fill="rgb(210,62,49)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1519.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8505%" y="1493" width="0.0128%" height="15" fill="rgb(248,30,8)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8505%" y="1477" width="0.0128%" height="15" fill="rgb(252,11,2)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8505%" y="1461" width="0.0128%" height="15" fill="rgb(249,65,4)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.8505%" y="1445" width="0.0128%" height="15" fill="rgb(217,219,7)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="30.8505%" y="1429" width="0.0128%" height="15" fill="rgb(222,186,36)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1439.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="30.8505%" y="1413" width="0.0128%" height="15" fill="rgb(247,184,5)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="30.8505%" y="1397" width="0.0128%" height="15" fill="rgb(221,108,7)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1407.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="30.8505%" y="1381" width="0.0128%" height="15" fill="rgb(209,208,22)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1391.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="30.8505%" y="1365" width="0.0128%" height="15" fill="rgb(247,106,21)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1375.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="30.8505%" y="1349" width="0.0128%" height="15" fill="rgb(223,2,44)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="30.8505%" y="1333" width="0.0128%" height="15" fill="rgb(208,190,12)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8505%" y="1317" width="0.0128%" height="15" fill="rgb(250,221,0)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="30.8505%" y="1301" width="0.0128%" height="15" fill="rgb(212,210,16)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="30.8505%" y="1285" width="0.0128%" height="15" fill="rgb(212,224,21)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1295.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="30.8505%" y="1269" width="0.0128%" height="15" fill="rgb(206,186,54)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1279.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="30.8505%" y="1253" width="0.0128%" height="15" fill="rgb(213,211,25)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1263.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="30.8505%" y="1237" width="0.0128%" height="15" fill="rgb(243,78,36)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1247.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="30.8505%" y="1221" width="0.0128%" height="15" fill="rgb(236,105,24)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1231.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="30.8505%" y="1205" width="0.0128%" height="15" fill="rgb(223,46,45)" fg:x="7240" fg:w="3"/><text x="31.1005%" y="1215.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="30.8505%" y="2133" width="0.0170%" height="15" fill="rgb(249,65,35)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="30.8505%" y="2117" width="0.0170%" height="15" fill="rgb(226,122,19)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="30.8505%" y="2101" width="0.0170%" height="15" fill="rgb(253,17,37)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="30.8505%" y="2085" width="0.0170%" height="15" fill="rgb(223,138,24)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="30.8505%" y="2069" width="0.0170%" height="15" fill="rgb(227,89,20)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="30.8505%" y="2053" width="0.0170%" height="15" fill="rgb(239,140,41)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="30.8505%" y="2037" width="0.0170%" height="15" fill="rgb(237,29,24)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="30.8505%" y="2021" width="0.0170%" height="15" fill="rgb(212,123,27)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2031.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="30.8505%" y="2005" width="0.0170%" height="15" fill="rgb(236,173,10)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="30.8505%" y="1989" width="0.0170%" height="15" fill="rgb(244,17,3)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="30.8505%" y="1973" width="0.0170%" height="15" fill="rgb(220,73,21)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8505%" y="1957" width="0.0170%" height="15" fill="rgb(220,187,17)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8505%" y="1941" width="0.0170%" height="15" fill="rgb(236,64,13)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8505%" y="1925" width="0.0170%" height="15" fill="rgb(214,111,25)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.8505%" y="1909" width="0.0170%" height="15" fill="rgb(251,123,0)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="30.8505%" y="1893" width="0.0170%" height="15" fill="rgb(210,8,32)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.8505%" y="1877" width="0.0170%" height="15" fill="rgb(221,27,44)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8505%" y="1861" width="0.0170%" height="15" fill="rgb(233,207,54)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="30.8505%" y="1845" width="0.0170%" height="15" fill="rgb(219,217,1)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="30.8505%" y="1829" width="0.0170%" height="15" fill="rgb(236,150,15)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1839.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="30.8505%" y="1813" width="0.0170%" height="15" fill="rgb(244,119,54)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="30.8505%" y="1797" width="0.0170%" height="15" fill="rgb(218,116,36)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="30.8505%" y="1781" width="0.0170%" height="15" fill="rgb(215,42,32)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8505%" y="1765" width="0.0170%" height="15" fill="rgb(254,87,2)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8505%" y="1749" width="0.0170%" height="15" fill="rgb(241,195,45)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.8505%" y="1733" width="0.0170%" height="15" fill="rgb(252,11,14)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="30.8505%" y="1717" width="0.0170%" height="15" fill="rgb(233,199,43)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.8505%" y="1701" width="0.0170%" height="15" fill="rgb(243,170,27)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8505%" y="1685" width="0.0170%" height="15" fill="rgb(236,178,54)" fg:x="7240" fg:w="4"/><text x="31.1005%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="30.8335%" y="2245" width="0.0511%" height="15" fill="rgb(230,38,12)" fg:x="7236" fg:w="12"/><text x="31.0835%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="30.8335%" y="2229" width="0.0511%" height="15" fill="rgb(241,44,47)" fg:x="7236" fg:w="12"/><text x="31.0835%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="30.8335%" y="2213" width="0.0511%" height="15" fill="rgb(218,99,12)" fg:x="7236" fg:w="12"/><text x="31.0835%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="30.8335%" y="2197" width="0.0511%" height="15" fill="rgb(211,48,36)" fg:x="7236" fg:w="12"/><text x="31.0835%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="30.8505%" y="2181" width="0.0341%" height="15" fill="rgb(220,81,29)" fg:x="7240" fg:w="8"/><text x="31.1005%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="30.8505%" y="2165" width="0.0341%" height="15" fill="rgb(232,121,54)" fg:x="7240" fg:w="8"/><text x="31.1005%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="30.8505%" y="2149" width="0.0341%" height="15" fill="rgb(236,227,37)" fg:x="7240" fg:w="8"/><text x="31.1005%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="30.8676%" y="2133" width="0.0170%" height="15" fill="rgb(207,43,26)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="30.8676%" y="2117" width="0.0170%" height="15" fill="rgb(224,163,34)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="30.8676%" y="2101" width="0.0170%" height="15" fill="rgb(228,127,11)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="30.8676%" y="2085" width="0.0170%" height="15" fill="rgb(215,32,51)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="30.8676%" y="2069" width="0.0170%" height="15" fill="rgb(206,180,37)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8676%" y="2053" width="0.0170%" height="15" fill="rgb(245,217,39)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8676%" y="2037" width="0.0170%" height="15" fill="rgb(237,179,18)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.8676%" y="2021" width="0.0170%" height="15" fill="rgb(248,177,3)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="30.8676%" y="2005" width="0.0170%" height="15" fill="rgb(208,31,45)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.8676%" y="1989" width="0.0170%" height="15" fill="rgb(231,16,43)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="30.8676%" y="1973" width="0.0170%" height="15" fill="rgb(246,12,20)" fg:x="7244" fg:w="4"/><text x="31.1176%" y="1983.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="30.8889%" y="1813" width="0.0128%" height="15" fill="rgb(214,40,41)" fg:x="7249" fg:w="3"/><text x="31.1389%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="30.8889%" y="1797" width="0.0128%" height="15" fill="rgb(225,183,42)" fg:x="7249" fg:w="3"/><text x="31.1389%" y="1807.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="30.8889%" y="1781" width="0.0128%" height="15" fill="rgb(229,88,50)" fg:x="7249" fg:w="3"/><text x="31.1389%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="30.8846%" y="1829" width="0.0213%" height="15" fill="rgb(247,34,33)" fg:x="7248" fg:w="5"/><text x="31.1346%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="30.8846%" y="2213" width="0.0256%" height="15" fill="rgb(246,163,52)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="30.8846%" y="2197" width="0.0256%" height="15" fill="rgb(251,13,27)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="30.8846%" y="2181" width="0.0256%" height="15" fill="rgb(218,127,46)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="30.8846%" y="2165" width="0.0256%" height="15" fill="rgb(215,155,29)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="30.8846%" y="2149" width="0.0256%" height="15" fill="rgb(251,180,13)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="30.8846%" y="2133" width="0.0256%" height="15" fill="rgb(246,215,19)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2143.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="30.8846%" y="2117" width="0.0256%" height="15" fill="rgb(210,47,28)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="30.8846%" y="2101" width="0.0256%" height="15" fill="rgb(231,175,40)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="30.8846%" y="2085" width="0.0256%" height="15" fill="rgb(207,138,24)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="30.8846%" y="2069" width="0.0256%" height="15" fill="rgb(216,44,38)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="30.8846%" y="2053" width="0.0256%" height="15" fill="rgb(206,81,53)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="30.8846%" y="2037" width="0.0256%" height="15" fill="rgb(246,139,21)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="30.8846%" y="2021" width="0.0256%" height="15" fill="rgb(212,163,26)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="30.8846%" y="2005" width="0.0256%" height="15" fill="rgb(223,82,35)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="30.8846%" y="1989" width="0.0256%" height="15" fill="rgb(224,76,13)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="30.8846%" y="1973" width="0.0256%" height="15" fill="rgb(240,2,40)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="30.8846%" y="1957" width="0.0256%" height="15" fill="rgb(232,188,36)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="30.8846%" y="1941" width="0.0256%" height="15" fill="rgb(249,34,46)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="30.8846%" y="1925" width="0.0256%" height="15" fill="rgb(226,99,19)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="30.8846%" y="1909" width="0.0256%" height="15" fill="rgb(207,78,52)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="30.8846%" y="1893" width="0.0256%" height="15" fill="rgb(241,119,8)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="30.8846%" y="1877" width="0.0256%" height="15" fill="rgb(238,31,9)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="30.8846%" y="1861" width="0.0256%" height="15" fill="rgb(223,165,6)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="30.8846%" y="1845" width="0.0256%" height="15" fill="rgb(227,228,21)" fg:x="7248" fg:w="6"/><text x="31.1346%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="30.8846%" y="2245" width="0.0298%" height="15" fill="rgb(206,188,51)" fg:x="7248" fg:w="7"/><text x="31.1346%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="30.8846%" y="2229" width="0.0298%" height="15" fill="rgb(225,207,23)" fg:x="7248" fg:w="7"/><text x="31.1346%" y="2239.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="30.9144%" y="1941" width="0.0128%" height="15" fill="rgb(232,197,54)" fg:x="7255" fg:w="3"/><text x="31.1644%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="30.9144%" y="2117" width="0.0170%" height="15" fill="rgb(229,149,21)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="30.9144%" y="2101" width="0.0170%" height="15" fill="rgb(209,197,1)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="30.9144%" y="2085" width="0.0170%" height="15" fill="rgb(227,82,17)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="30.9144%" y="2069" width="0.0170%" height="15" fill="rgb(237,201,43)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="30.9144%" y="2053" width="0.0170%" height="15" fill="rgb(221,91,37)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="30.9144%" y="2037" width="0.0170%" height="15" fill="rgb(239,35,7)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="30.9144%" y="2021" width="0.0170%" height="15" fill="rgb(234,145,45)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9144%" y="2005" width="0.0170%" height="15" fill="rgb(214,151,47)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="30.9144%" y="1989" width="0.0170%" height="15" fill="rgb(248,62,54)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="30.9144%" y="1973" width="0.0170%" height="15" fill="rgb(236,99,21)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9144%" y="1957" width="0.0170%" height="15" fill="rgb(223,94,43)" fg:x="7255" fg:w="4"/><text x="31.1644%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="30.9400%" y="1845" width="0.0170%" height="15" fill="rgb(214,66,6)" fg:x="7261" fg:w="4"/><text x="31.1900%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9400%" y="1829" width="0.0170%" height="15" fill="rgb(231,152,46)" fg:x="7261" fg:w="4"/><text x="31.1900%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9400%" y="1813" width="0.0170%" height="15" fill="rgb(254,0,48)" fg:x="7261" fg:w="4"/><text x="31.1900%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.9400%" y="1797" width="0.0170%" height="15" fill="rgb(225,136,42)" fg:x="7261" fg:w="4"/><text x="31.1900%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="30.9400%" y="1781" width="0.0170%" height="15" fill="rgb(231,194,28)" fg:x="7261" fg:w="4"/><text x="31.1900%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.9400%" y="1765" width="0.0170%" height="15" fill="rgb(248,141,22)" fg:x="7261" fg:w="4"/><text x="31.1900%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9400%" y="1749" width="0.0170%" height="15" fill="rgb(222,133,1)" fg:x="7261" fg:w="4"/><text x="31.1900%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="30.9443%" y="1733" width="0.0128%" height="15" fill="rgb(222,50,8)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="30.9443%" y="1717" width="0.0128%" height="15" fill="rgb(215,67,27)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1727.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="30.9443%" y="1701" width="0.0128%" height="15" fill="rgb(220,102,37)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="30.9443%" y="1685" width="0.0128%" height="15" fill="rgb(222,64,25)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="30.9443%" y="1669" width="0.0128%" height="15" fill="rgb(215,40,16)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9443%" y="1653" width="0.0128%" height="15" fill="rgb(252,171,3)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9443%" y="1637" width="0.0128%" height="15" fill="rgb(252,199,51)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.9443%" y="1621" width="0.0128%" height="15" fill="rgb(244,42,10)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="30.9443%" y="1605" width="0.0128%" height="15" fill="rgb(243,169,37)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1615.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="30.9443%" y="1589" width="0.0128%" height="15" fill="rgb(241,140,9)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="30.9443%" y="1573" width="0.0128%" height="15" fill="rgb(241,66,40)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1583.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="30.9443%" y="1557" width="0.0128%" height="15" fill="rgb(220,50,41)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1567.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="30.9443%" y="1541" width="0.0128%" height="15" fill="rgb(214,104,9)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1551.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="30.9443%" y="1525" width="0.0128%" height="15" fill="rgb(241,227,25)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="30.9443%" y="1509" width="0.0128%" height="15" fill="rgb(248,37,46)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9443%" y="1493" width="0.0128%" height="15" fill="rgb(243,52,43)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="30.9443%" y="1477" width="0.0128%" height="15" fill="rgb(232,122,17)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1487.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="30.9443%" y="1461" width="0.0128%" height="15" fill="rgb(242,15,36)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9443%" y="1445" width="0.0128%" height="15" fill="rgb(232,63,30)" fg:x="7262" fg:w="3"/><text x="31.1943%" y="1455.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="30.9315%" y="1957" width="0.0469%" height="15" fill="rgb(237,86,45)" fg:x="7259" fg:w="11"/><text x="31.1815%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="30.9315%" y="1941" width="0.0469%" height="15" fill="rgb(245,123,47)" fg:x="7259" fg:w="11"/><text x="31.1815%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="30.9315%" y="1925" width="0.0469%" height="15" fill="rgb(252,85,3)" fg:x="7259" fg:w="11"/><text x="31.1815%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="30.9315%" y="1909" width="0.0469%" height="15" fill="rgb(249,171,16)" fg:x="7259" fg:w="11"/><text x="31.1815%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="30.9400%" y="1893" width="0.0384%" height="15" fill="rgb(225,146,54)" fg:x="7261" fg:w="9"/><text x="31.1900%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="30.9400%" y="1877" width="0.0384%" height="15" fill="rgb(213,216,54)" fg:x="7261" fg:w="9"/><text x="31.1900%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="30.9400%" y="1861" width="0.0384%" height="15" fill="rgb(236,60,6)" fg:x="7261" fg:w="9"/><text x="31.1900%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="30.9570%" y="1845" width="0.0213%" height="15" fill="rgb(227,93,24)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="30.9570%" y="1829" width="0.0213%" height="15" fill="rgb(219,41,42)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1839.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="30.9570%" y="1813" width="0.0213%" height="15" fill="rgb(229,52,32)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="30.9570%" y="1797" width="0.0213%" height="15" fill="rgb(221,33,40)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="30.9570%" y="1781" width="0.0213%" height="15" fill="rgb(216,109,23)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="30.9570%" y="1765" width="0.0213%" height="15" fill="rgb(214,39,24)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="30.9570%" y="1749" width="0.0213%" height="15" fill="rgb(205,36,6)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.9570%" y="1733" width="0.0213%" height="15" fill="rgb(222,146,34)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="30.9570%" y="1717" width="0.0213%" height="15" fill="rgb(214,72,53)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.9570%" y="1701" width="0.0213%" height="15" fill="rgb(250,157,2)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="30.9570%" y="1685" width="0.0213%" height="15" fill="rgb(248,5,23)" fg:x="7265" fg:w="5"/><text x="31.2070%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="30.9656%" y="1669" width="0.0128%" height="15" fill="rgb(207,146,36)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="30.9656%" y="1653" width="0.0128%" height="15" fill="rgb(205,184,43)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="30.9656%" y="1637" width="0.0128%" height="15" fill="rgb(251,150,46)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="30.9656%" y="1621" width="0.0128%" height="15" fill="rgb(227,224,12)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="30.9656%" y="1605" width="0.0128%" height="15" fill="rgb(215,26,26)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9656%" y="1589" width="0.0128%" height="15" fill="rgb(238,180,42)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9656%" y="1573" width="0.0128%" height="15" fill="rgb(218,148,48)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.9656%" y="1557" width="0.0128%" height="15" fill="rgb(252,14,36)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="30.9656%" y="1541" width="0.0128%" height="15" fill="rgb(224,35,37)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="30.9656%" y="1525" width="0.0128%" height="15" fill="rgb(245,177,29)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="30.9656%" y="1509" width="0.0128%" height="15" fill="rgb(221,149,34)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="30.9656%" y="1493" width="0.0128%" height="15" fill="rgb(239,115,36)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="30.9656%" y="1477" width="0.0128%" height="15" fill="rgb(226,196,40)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="30.9656%" y="1461" width="0.0128%" height="15" fill="rgb(209,206,26)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="30.9656%" y="1445" width="0.0128%" height="15" fill="rgb(225,13,33)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9656%" y="1429" width="0.0128%" height="15" fill="rgb(244,126,22)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="30.9656%" y="1413" width="0.0128%" height="15" fill="rgb(248,213,25)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="30.9656%" y="1397" width="0.0128%" height="15" fill="rgb(222,94,36)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="30.9656%" y="1381" width="0.0128%" height="15" fill="rgb(212,114,20)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="30.9656%" y="1365" width="0.0128%" height="15" fill="rgb(213,157,26)" fg:x="7267" fg:w="3"/><text x="31.2156%" y="1375.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="30.9869%" y="1781" width="0.0170%" height="15" fill="rgb(211,130,1)" fg:x="7272" fg:w="4"/><text x="31.2369%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9869%" y="1765" width="0.0170%" height="15" fill="rgb(212,83,53)" fg:x="7272" fg:w="4"/><text x="31.2369%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9869%" y="1749" width="0.0170%" height="15" fill="rgb(238,129,10)" fg:x="7272" fg:w="4"/><text x="31.2369%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.9869%" y="1733" width="0.0170%" height="15" fill="rgb(213,76,2)" fg:x="7272" fg:w="4"/><text x="31.2369%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="30.9869%" y="1717" width="0.0170%" height="15" fill="rgb(220,189,22)" fg:x="7272" fg:w="4"/><text x="31.2369%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.9869%" y="1701" width="0.0170%" height="15" fill="rgb(250,155,31)" fg:x="7272" fg:w="4"/><text x="31.2369%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="30.9869%" y="1685" width="0.0170%" height="15" fill="rgb(218,184,22)" fg:x="7272" fg:w="4"/><text x="31.2369%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="30.9315%" y="2069" width="0.0852%" height="15" fill="rgb(247,117,4)" fg:x="7259" fg:w="20"/><text x="31.1815%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="30.9315%" y="2053" width="0.0852%" height="15" fill="rgb(253,185,37)" fg:x="7259" fg:w="20"/><text x="31.1815%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="30.9315%" y="2037" width="0.0852%" height="15" fill="rgb(226,36,44)" fg:x="7259" fg:w="20"/><text x="31.1815%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="30.9315%" y="2021" width="0.0852%" height="15" fill="rgb(224,7,24)" fg:x="7259" fg:w="20"/><text x="31.1815%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="30.9315%" y="2005" width="0.0852%" height="15" fill="rgb(239,201,0)" fg:x="7259" fg:w="20"/><text x="31.1815%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="30.9315%" y="1989" width="0.0852%" height="15" fill="rgb(218,56,33)" fg:x="7259" fg:w="20"/><text x="31.1815%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="30.9315%" y="1973" width="0.0852%" height="15" fill="rgb(210,187,29)" fg:x="7259" fg:w="20"/><text x="31.1815%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="30.9784%" y="1957" width="0.0384%" height="15" fill="rgb(206,158,49)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="30.9784%" y="1941" width="0.0384%" height="15" fill="rgb(234,36,5)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1951.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="30.9784%" y="1925" width="0.0384%" height="15" fill="rgb(239,79,15)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="30.9784%" y="1909" width="0.0384%" height="15" fill="rgb(240,136,17)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="30.9784%" y="1893" width="0.0384%" height="15" fill="rgb(227,83,12)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="30.9784%" y="1877" width="0.0384%" height="15" fill="rgb(212,2,8)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="30.9784%" y="1861" width="0.0384%" height="15" fill="rgb(219,144,5)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="30.9784%" y="1845" width="0.0384%" height="15" fill="rgb(253,204,27)" fg:x="7270" fg:w="9"/><text x="31.2284%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="30.9869%" y="1829" width="0.0298%" height="15" fill="rgb(228,188,17)" fg:x="7272" fg:w="7"/><text x="31.2369%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="30.9869%" y="1813" width="0.0298%" height="15" fill="rgb(208,198,33)" fg:x="7272" fg:w="7"/><text x="31.2369%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="30.9869%" y="1797" width="0.0298%" height="15" fill="rgb(249,153,19)" fg:x="7272" fg:w="7"/><text x="31.2369%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="31.0039%" y="1781" width="0.0128%" height="15" fill="rgb(222,193,37)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="31.0039%" y="1765" width="0.0128%" height="15" fill="rgb(215,168,16)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1775.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="31.0039%" y="1749" width="0.0128%" height="15" fill="rgb(238,69,36)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="31.0039%" y="1733" width="0.0128%" height="15" fill="rgb(227,11,51)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="31.0039%" y="1717" width="0.0128%" height="15" fill="rgb(214,204,5)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="31.0039%" y="1701" width="0.0128%" height="15" fill="rgb(242,182,42)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="31.0039%" y="1685" width="0.0128%" height="15" fill="rgb(212,208,46)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.0039%" y="1669" width="0.0128%" height="15" fill="rgb(249,22,49)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="31.0039%" y="1653" width="0.0128%" height="15" fill="rgb(226,130,52)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.0039%" y="1637" width="0.0128%" height="15" fill="rgb(209,156,10)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="31.0039%" y="1621" width="0.0128%" height="15" fill="rgb(207,125,47)" fg:x="7276" fg:w="3"/><text x="31.2539%" y="1631.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="31.0252%" y="1781" width="0.0170%" height="15" fill="rgb(221,117,28)" fg:x="7281" fg:w="4"/><text x="31.2752%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="31.0252%" y="1765" width="0.0170%" height="15" fill="rgb(221,170,12)" fg:x="7281" fg:w="4"/><text x="31.2752%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="31.0252%" y="1749" width="0.0170%" height="15" fill="rgb(241,222,52)" fg:x="7281" fg:w="4"/><text x="31.2752%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.0252%" y="1733" width="0.0170%" height="15" fill="rgb(219,52,6)" fg:x="7281" fg:w="4"/><text x="31.2752%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="31.0252%" y="1717" width="0.0170%" height="15" fill="rgb(226,144,34)" fg:x="7281" fg:w="4"/><text x="31.2752%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.0252%" y="1701" width="0.0170%" height="15" fill="rgb(231,179,27)" fg:x="7281" fg:w="4"/><text x="31.2752%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="31.0252%" y="1685" width="0.0170%" height="15" fill="rgb(211,178,51)" fg:x="7281" fg:w="4"/><text x="31.2752%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="31.0167%" y="1893" width="0.0426%" height="15" fill="rgb(233,141,5)" fg:x="7279" fg:w="10"/><text x="31.2667%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="31.0167%" y="1877" width="0.0426%" height="15" fill="rgb(214,10,9)" fg:x="7279" fg:w="10"/><text x="31.2667%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="31.0167%" y="1861" width="0.0426%" height="15" fill="rgb(209,0,1)" fg:x="7279" fg:w="10"/><text x="31.2667%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="31.0167%" y="1845" width="0.0426%" height="15" fill="rgb(207,82,30)" fg:x="7279" fg:w="10"/><text x="31.2667%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="31.0252%" y="1829" width="0.0341%" height="15" fill="rgb(224,214,13)" fg:x="7281" fg:w="8"/><text x="31.2752%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="31.0252%" y="1813" width="0.0341%" height="15" fill="rgb(237,84,33)" fg:x="7281" fg:w="8"/><text x="31.2752%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="31.0252%" y="1797" width="0.0341%" height="15" fill="rgb(231,25,9)" fg:x="7281" fg:w="8"/><text x="31.2752%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="31.0423%" y="1781" width="0.0170%" height="15" fill="rgb(207,51,8)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="31.0423%" y="1765" width="0.0170%" height="15" fill="rgb(234,189,54)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="31.0423%" y="1749" width="0.0170%" height="15" fill="rgb(214,188,52)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="31.0423%" y="1733" width="0.0170%" height="15" fill="rgb(214,17,11)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="31.0423%" y="1717" width="0.0170%" height="15" fill="rgb(250,31,36)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="31.0423%" y="1701" width="0.0170%" height="15" fill="rgb(244,57,44)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="31.0423%" y="1685" width="0.0170%" height="15" fill="rgb(209,209,31)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.0423%" y="1669" width="0.0170%" height="15" fill="rgb(217,47,5)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="31.0423%" y="1653" width="0.0170%" height="15" fill="rgb(214,78,42)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.0423%" y="1637" width="0.0170%" height="15" fill="rgb(226,15,23)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="31.0423%" y="1621" width="0.0170%" height="15" fill="rgb(230,171,7)" fg:x="7285" fg:w="4"/><text x="31.2923%" y="1631.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="31.0678%" y="1605" width="0.0128%" height="15" fill="rgb(229,71,9)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="31.0678%" y="1589" width="0.0128%" height="15" fill="rgb(221,111,31)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="31.0678%" y="1573" width="0.0128%" height="15" fill="rgb(237,86,50)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.0678%" y="1557" width="0.0128%" height="15" fill="rgb(234,49,32)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="31.0678%" y="1541" width="0.0128%" height="15" fill="rgb(225,144,27)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="31.0678%" y="1525" width="0.0128%" height="15" fill="rgb(225,209,36)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="31.0678%" y="1509" width="0.0128%" height="15" fill="rgb(218,109,14)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="31.0678%" y="1493" width="0.0128%" height="15" fill="rgb(238,186,42)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="31.0678%" y="1477" width="0.0128%" height="15" fill="rgb(236,143,10)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="31.0678%" y="1461" width="0.0128%" height="15" fill="rgb(205,147,7)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="31.0678%" y="1445" width="0.0128%" height="15" fill="rgb(245,224,0)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="31.0678%" y="1429" width="0.0128%" height="15" fill="rgb(213,208,32)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="31.0678%" y="1413" width="0.0128%" height="15" fill="rgb(208,212,4)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="31.0678%" y="1397" width="0.0128%" height="15" fill="rgb(236,143,49)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="31.0678%" y="1381" width="0.0128%" height="15" fill="rgb(228,152,33)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="31.0678%" y="1365" width="0.0128%" height="15" fill="rgb(236,132,39)" fg:x="7291" fg:w="3"/><text x="31.3178%" y="1375.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="31.0678%" y="1717" width="0.0213%" height="15" fill="rgb(228,176,23)" fg:x="7291" fg:w="5"/><text x="31.3178%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="31.0678%" y="1701" width="0.0213%" height="15" fill="rgb(229,34,18)" fg:x="7291" fg:w="5"/><text x="31.3178%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="31.0678%" y="1685" width="0.0213%" height="15" fill="rgb(244,81,37)" fg:x="7291" fg:w="5"/><text x="31.3178%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="31.0678%" y="1669" width="0.0213%" height="15" fill="rgb(242,79,32)" fg:x="7291" fg:w="5"/><text x="31.3178%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="31.0678%" y="1653" width="0.0213%" height="15" fill="rgb(245,15,51)" fg:x="7291" fg:w="5"/><text x="31.3178%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.0678%" y="1637" width="0.0213%" height="15" fill="rgb(209,82,8)" fg:x="7291" fg:w="5"/><text x="31.3178%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="31.0678%" y="1621" width="0.0213%" height="15" fill="rgb(248,65,42)" fg:x="7291" fg:w="5"/><text x="31.3178%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (80 samples, 0.34%)</title><rect x="30.7568%" y="2709" width="0.3409%" height="15" fill="rgb(216,132,33)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (80 samples, 0.34%)</title><rect x="30.7568%" y="2693" width="0.3409%" height="15" fill="rgb(207,21,32)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (80 samples, 0.34%)</title><rect x="30.7568%" y="2677" width="0.3409%" height="15" fill="rgb(247,27,22)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (80 samples, 0.34%)</title><rect x="30.7568%" y="2661" width="0.3409%" height="15" fill="rgb(254,72,41)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (80 samples, 0.34%)</title><rect x="30.7568%" y="2645" width="0.3409%" height="15" fill="rgb(250,6,31)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (80 samples, 0.34%)</title><rect x="30.7568%" y="2629" width="0.3409%" height="15" fill="rgb(224,124,0)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (80 samples, 0.34%)</title><rect x="30.7568%" y="2613" width="0.3409%" height="15" fill="rgb(228,7,24)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (80 samples, 0.34%)</title><rect x="30.7568%" y="2597" width="0.3409%" height="15" fill="rgb(250,202,22)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2607.50"></text></g><g><title>std::panicking::try (80 samples, 0.34%)</title><rect x="30.7568%" y="2581" width="0.3409%" height="15" fill="rgb(214,89,5)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (80 samples, 0.34%)</title><rect x="30.7568%" y="2565" width="0.3409%" height="15" fill="rgb(228,82,34)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (80 samples, 0.34%)</title><rect x="30.7568%" y="2549" width="0.3409%" height="15" fill="rgb(212,164,18)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (80 samples, 0.34%)</title><rect x="30.7568%" y="2533" width="0.3409%" height="15" fill="rgb(210,75,6)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (80 samples, 0.34%)</title><rect x="30.7568%" y="2517" width="0.3409%" height="15" fill="rgb(251,11,45)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (80 samples, 0.34%)</title><rect x="30.7568%" y="2501" width="0.3409%" height="15" fill="rgb(234,105,14)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (80 samples, 0.34%)</title><rect x="30.7568%" y="2485" width="0.3409%" height="15" fill="rgb(220,123,16)" fg:x="7218" fg:w="80"/><text x="31.0068%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (78 samples, 0.33%)</title><rect x="30.7653%" y="2469" width="0.3324%" height="15" fill="rgb(238,16,42)" fg:x="7220" fg:w="78"/><text x="31.0153%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (78 samples, 0.33%)</title><rect x="30.7653%" y="2453" width="0.3324%" height="15" fill="rgb(239,101,26)" fg:x="7220" fg:w="78"/><text x="31.0153%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (78 samples, 0.33%)</title><rect x="30.7653%" y="2437" width="0.3324%" height="15" fill="rgb(228,12,27)" fg:x="7220" fg:w="78"/><text x="31.0153%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (65 samples, 0.28%)</title><rect x="30.8207%" y="2421" width="0.2770%" height="15" fill="rgb(218,165,53)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (65 samples, 0.28%)</title><rect x="30.8207%" y="2405" width="0.2770%" height="15" fill="rgb(250,44,27)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2415.50"></text></g><g><title>std::panicking::try (65 samples, 0.28%)</title><rect x="30.8207%" y="2389" width="0.2770%" height="15" fill="rgb(229,69,35)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (65 samples, 0.28%)</title><rect x="30.8207%" y="2373" width="0.2770%" height="15" fill="rgb(241,38,31)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (65 samples, 0.28%)</title><rect x="30.8207%" y="2357" width="0.2770%" height="15" fill="rgb(224,152,13)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (65 samples, 0.28%)</title><rect x="30.8207%" y="2341" width="0.2770%" height="15" fill="rgb(207,225,8)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (65 samples, 0.28%)</title><rect x="30.8207%" y="2325" width="0.2770%" height="15" fill="rgb(222,135,50)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.28%)</title><rect x="30.8207%" y="2309" width="0.2770%" height="15" fill="rgb(245,39,15)" fg:x="7233" fg:w="65"/><text x="31.0707%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (62 samples, 0.26%)</title><rect x="30.8335%" y="2293" width="0.2642%" height="15" fill="rgb(233,22,17)" fg:x="7236" fg:w="62"/><text x="31.0835%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (62 samples, 0.26%)</title><rect x="30.8335%" y="2277" width="0.2642%" height="15" fill="rgb(227,152,49)" fg:x="7236" fg:w="62"/><text x="31.0835%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (62 samples, 0.26%)</title><rect x="30.8335%" y="2261" width="0.2642%" height="15" fill="rgb(233,162,45)" fg:x="7236" fg:w="62"/><text x="31.0835%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (43 samples, 0.18%)</title><rect x="30.9144%" y="2245" width="0.1832%" height="15" fill="rgb(217,44,48)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (43 samples, 0.18%)</title><rect x="30.9144%" y="2229" width="0.1832%" height="15" fill="rgb(253,41,35)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2239.50"></text></g><g><title>std::panicking::try (43 samples, 0.18%)</title><rect x="30.9144%" y="2213" width="0.1832%" height="15" fill="rgb(254,32,37)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (43 samples, 0.18%)</title><rect x="30.9144%" y="2197" width="0.1832%" height="15" fill="rgb(250,9,9)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (43 samples, 0.18%)</title><rect x="30.9144%" y="2181" width="0.1832%" height="15" fill="rgb(212,37,16)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (43 samples, 0.18%)</title><rect x="30.9144%" y="2165" width="0.1832%" height="15" fill="rgb(235,142,51)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (43 samples, 0.18%)</title><rect x="30.9144%" y="2149" width="0.1832%" height="15" fill="rgb(250,225,53)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.18%)</title><rect x="30.9144%" y="2133" width="0.1832%" height="15" fill="rgb(207,188,48)" fg:x="7255" fg:w="43"/><text x="31.1644%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (39 samples, 0.17%)</title><rect x="30.9315%" y="2117" width="0.1662%" height="15" fill="rgb(222,25,21)" fg:x="7259" fg:w="39"/><text x="31.1815%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.17%)</title><rect x="30.9315%" y="2101" width="0.1662%" height="15" fill="rgb(249,112,5)" fg:x="7259" fg:w="39"/><text x="31.1815%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39 samples, 0.17%)</title><rect x="30.9315%" y="2085" width="0.1662%" height="15" fill="rgb(242,11,22)" fg:x="7259" fg:w="39"/><text x="31.1815%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="31.0167%" y="2069" width="0.0810%" height="15" fill="rgb(217,125,14)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="31.0167%" y="2053" width="0.0810%" height="15" fill="rgb(239,92,14)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="2063.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="31.0167%" y="2037" width="0.0810%" height="15" fill="rgb(232,145,17)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="31.0167%" y="2021" width="0.0810%" height="15" fill="rgb(250,158,16)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="31.0167%" y="2005" width="0.0810%" height="15" fill="rgb(247,30,22)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="31.0167%" y="1989" width="0.0810%" height="15" fill="rgb(219,215,46)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="31.0167%" y="1973" width="0.0810%" height="15" fill="rgb(237,40,53)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="31.0167%" y="1957" width="0.0810%" height="15" fill="rgb(253,207,11)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="31.0167%" y="1941" width="0.0810%" height="15" fill="rgb(242,16,9)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="31.0167%" y="1925" width="0.0810%" height="15" fill="rgb(237,94,35)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="31.0167%" y="1909" width="0.0810%" height="15" fill="rgb(244,145,23)" fg:x="7279" fg:w="19"/><text x="31.2667%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="31.0593%" y="1893" width="0.0384%" height="15" fill="rgb(209,93,17)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="31.0593%" y="1877" width="0.0384%" height="15" fill="rgb(205,201,0)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1887.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="31.0593%" y="1861" width="0.0384%" height="15" fill="rgb(225,198,48)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="31.0593%" y="1845" width="0.0384%" height="15" fill="rgb(211,131,51)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="31.0593%" y="1829" width="0.0384%" height="15" fill="rgb(237,196,37)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="31.0593%" y="1813" width="0.0384%" height="15" fill="rgb(218,204,52)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="31.0593%" y="1797" width="0.0384%" height="15" fill="rgb(251,67,25)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="31.0593%" y="1781" width="0.0384%" height="15" fill="rgb(219,87,2)" fg:x="7289" fg:w="9"/><text x="31.3093%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="31.0678%" y="1765" width="0.0298%" height="15" fill="rgb(224,171,9)" fg:x="7291" fg:w="7"/><text x="31.3178%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="31.0678%" y="1749" width="0.0298%" height="15" fill="rgb(215,98,45)" fg:x="7291" fg:w="7"/><text x="31.3178%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="31.0678%" y="1733" width="0.0298%" height="15" fill="rgb(231,48,23)" fg:x="7291" fg:w="7"/><text x="31.3178%" y="1743.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (32 samples, 0.14%)</title><rect x="31.1019%" y="2389" width="0.1364%" height="15" fill="rgb(233,138,42)" fg:x="7299" fg:w="32"/><text x="31.3519%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (32 samples, 0.14%)</title><rect x="31.1019%" y="2373" width="0.1364%" height="15" fill="rgb(244,107,0)" fg:x="7299" fg:w="32"/><text x="31.3519%" y="2383.50"></text></g><g><title>exp (31 samples, 0.13%)</title><rect x="31.1062%" y="2357" width="0.1321%" height="15" fill="rgb(224,15,0)" fg:x="7300" fg:w="31"/><text x="31.3562%" y="2367.50"></text></g><g><title>[libm.so.6] (23 samples, 0.10%)</title><rect x="31.1403%" y="2341" width="0.0980%" height="15" fill="rgb(218,71,35)" fg:x="7308" fg:w="23"/><text x="31.3903%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (7 samples, 0.03%)</title><rect x="31.2383%" y="2389" width="0.0298%" height="15" fill="rgb(244,32,22)" fg:x="7331" fg:w="7"/><text x="31.4883%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (7 samples, 0.03%)</title><rect x="31.2383%" y="2373" width="0.0298%" height="15" fill="rgb(232,209,34)" fg:x="7331" fg:w="7"/><text x="31.4883%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (57 samples, 0.24%)</title><rect x="31.0977%" y="2405" width="0.2429%" height="15" fill="rgb(232,54,38)" fg:x="7298" fg:w="57"/><text x="31.3477%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (17 samples, 0.07%)</title><rect x="31.2681%" y="2389" width="0.0724%" height="15" fill="rgb(208,83,16)" fg:x="7338" fg:w="17"/><text x="31.5181%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (17 samples, 0.07%)</title><rect x="31.2681%" y="2373" width="0.0724%" height="15" fill="rgb(208,70,33)" fg:x="7338" fg:w="17"/><text x="31.5181%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (65 samples, 0.28%)</title><rect x="31.0977%" y="2565" width="0.2770%" height="15" fill="rgb(247,38,12)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (65 samples, 0.28%)</title><rect x="31.0977%" y="2549" width="0.2770%" height="15" fill="rgb(206,34,42)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (65 samples, 0.28%)</title><rect x="31.0977%" y="2533" width="0.2770%" height="15" fill="rgb(226,75,43)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (65 samples, 0.28%)</title><rect x="31.0977%" y="2517" width="0.2770%" height="15" fill="rgb(223,109,12)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (65 samples, 0.28%)</title><rect x="31.0977%" y="2501" width="0.2770%" height="15" fill="rgb(218,53,16)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (65 samples, 0.28%)</title><rect x="31.0977%" y="2485" width="0.2770%" height="15" fill="rgb(236,44,50)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (65 samples, 0.28%)</title><rect x="31.0977%" y="2469" width="0.2770%" height="15" fill="rgb(211,163,12)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (65 samples, 0.28%)</title><rect x="31.0977%" y="2453" width="0.2770%" height="15" fill="rgb(230,67,52)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (65 samples, 0.28%)</title><rect x="31.0977%" y="2437" width="0.2770%" height="15" fill="rgb(224,204,24)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (65 samples, 0.28%)</title><rect x="31.0977%" y="2421" width="0.2770%" height="15" fill="rgb(210,50,27)" fg:x="7298" fg:w="65"/><text x="31.3477%" y="2431.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (8 samples, 0.03%)</title><rect x="31.3405%" y="2405" width="0.0341%" height="15" fill="rgb(251,202,23)" fg:x="7355" fg:w="8"/><text x="31.5905%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="31.3874%" y="2325" width="0.0128%" height="15" fill="rgb(230,210,21)" fg:x="7366" fg:w="3"/><text x="31.6374%" y="2335.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="31.3746%" y="2437" width="0.0298%" height="15" fill="rgb(222,72,44)" fg:x="7363" fg:w="7"/><text x="31.6246%" y="2447.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="31.3746%" y="2421" width="0.0298%" height="15" fill="rgb(223,182,13)" fg:x="7363" fg:w="7"/><text x="31.6246%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="31.3789%" y="2405" width="0.0256%" height="15" fill="rgb(228,61,15)" fg:x="7364" fg:w="6"/><text x="31.6289%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="31.3789%" y="2389" width="0.0256%" height="15" fill="rgb(253,207,22)" fg:x="7364" fg:w="6"/><text x="31.6289%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="31.3789%" y="2373" width="0.0256%" height="15" fill="rgb(232,10,15)" fg:x="7364" fg:w="6"/><text x="31.6289%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="31.3789%" y="2357" width="0.0256%" height="15" fill="rgb(227,207,39)" fg:x="7364" fg:w="6"/><text x="31.6289%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="31.3832%" y="2341" width="0.0213%" height="15" fill="rgb(228,187,3)" fg:x="7365" fg:w="5"/><text x="31.6332%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (76 samples, 0.32%)</title><rect x="31.0977%" y="2581" width="0.3238%" height="15" fill="rgb(246,45,9)" fg:x="7298" fg:w="76"/><text x="31.3477%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="31.3746%" y="2565" width="0.0469%" height="15" fill="rgb(249,10,17)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2575.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="31.3746%" y="2549" width="0.0469%" height="15" fill="rgb(251,56,51)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="31.3746%" y="2533" width="0.0469%" height="15" fill="rgb(232,51,36)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (11 samples, 0.05%)</title><rect x="31.3746%" y="2517" width="0.0469%" height="15" fill="rgb(215,38,28)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (11 samples, 0.05%)</title><rect x="31.3746%" y="2501" width="0.0469%" height="15" fill="rgb(218,5,35)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (11 samples, 0.05%)</title><rect x="31.3746%" y="2485" width="0.0469%" height="15" fill="rgb(232,219,8)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (11 samples, 0.05%)</title><rect x="31.3746%" y="2469" width="0.0469%" height="15" fill="rgb(243,162,8)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2479.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (11 samples, 0.05%)</title><rect x="31.3746%" y="2453" width="0.0469%" height="15" fill="rgb(218,86,32)" fg:x="7363" fg:w="11"/><text x="31.6246%" y="2463.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (4 samples, 0.02%)</title><rect x="31.4045%" y="2437" width="0.0170%" height="15" fill="rgb(218,179,51)" fg:x="7370" fg:w="4"/><text x="31.6545%" y="2447.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="31.4045%" y="2421" width="0.0170%" height="15" fill="rgb(237,42,52)" fg:x="7370" fg:w="4"/><text x="31.6545%" y="2431.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (19 samples, 0.08%)</title><rect x="31.4258%" y="2277" width="0.0810%" height="15" fill="rgb(229,12,4)" fg:x="7375" fg:w="19"/><text x="31.6758%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (19 samples, 0.08%)</title><rect x="31.4258%" y="2261" width="0.0810%" height="15" fill="rgb(214,203,2)" fg:x="7375" fg:w="19"/><text x="31.6758%" y="2271.50"></text></g><g><title>exp (18 samples, 0.08%)</title><rect x="31.4300%" y="2245" width="0.0767%" height="15" fill="rgb(241,11,44)" fg:x="7376" fg:w="18"/><text x="31.6800%" y="2255.50"></text></g><g><title>[libm.so.6] (14 samples, 0.06%)</title><rect x="31.4471%" y="2229" width="0.0597%" height="15" fill="rgb(221,106,48)" fg:x="7380" fg:w="14"/><text x="31.6971%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (16 samples, 0.07%)</title><rect x="31.5153%" y="2277" width="0.0682%" height="15" fill="rgb(220,220,10)" fg:x="7396" fg:w="16"/><text x="31.7653%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (16 samples, 0.07%)</title><rect x="31.5153%" y="2261" width="0.0682%" height="15" fill="rgb(228,220,44)" fg:x="7396" fg:w="16"/><text x="31.7653%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (46 samples, 0.20%)</title><rect x="31.4258%" y="2293" width="0.1960%" height="15" fill="rgb(214,144,45)" fg:x="7375" fg:w="46"/><text x="31.6758%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (9 samples, 0.04%)</title><rect x="31.5834%" y="2277" width="0.0384%" height="15" fill="rgb(224,142,28)" fg:x="7412" fg:w="9"/><text x="31.8334%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (9 samples, 0.04%)</title><rect x="31.5834%" y="2261" width="0.0384%" height="15" fill="rgb(214,79,27)" fg:x="7412" fg:w="9"/><text x="31.8334%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (49 samples, 0.21%)</title><rect x="31.4215%" y="2453" width="0.2088%" height="15" fill="rgb(208,173,30)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (49 samples, 0.21%)</title><rect x="31.4215%" y="2437" width="0.2088%" height="15" fill="rgb(222,81,9)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (49 samples, 0.21%)</title><rect x="31.4215%" y="2421" width="0.2088%" height="15" fill="rgb(217,152,25)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (49 samples, 0.21%)</title><rect x="31.4215%" y="2405" width="0.2088%" height="15" fill="rgb(248,170,26)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (49 samples, 0.21%)</title><rect x="31.4215%" y="2389" width="0.2088%" height="15" fill="rgb(206,151,5)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (49 samples, 0.21%)</title><rect x="31.4215%" y="2373" width="0.2088%" height="15" fill="rgb(216,7,52)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (49 samples, 0.21%)</title><rect x="31.4215%" y="2357" width="0.2088%" height="15" fill="rgb(228,27,44)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (49 samples, 0.21%)</title><rect x="31.4215%" y="2341" width="0.2088%" height="15" fill="rgb(208,221,38)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (49 samples, 0.21%)</title><rect x="31.4215%" y="2325" width="0.2088%" height="15" fill="rgb(240,59,23)" fg:x="7374" fg:w="49"/><text x="31.6715%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (48 samples, 0.20%)</title><rect x="31.4258%" y="2309" width="0.2045%" height="15" fill="rgb(210,127,41)" fg:x="7375" fg:w="48"/><text x="31.6758%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (52 samples, 0.22%)</title><rect x="31.4215%" y="2533" width="0.2216%" height="15" fill="rgb(224,160,3)" fg:x="7374" fg:w="52"/><text x="31.6715%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (52 samples, 0.22%)</title><rect x="31.4215%" y="2517" width="0.2216%" height="15" fill="rgb(215,228,26)" fg:x="7374" fg:w="52"/><text x="31.6715%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (52 samples, 0.22%)</title><rect x="31.4215%" y="2501" width="0.2216%" height="15" fill="rgb(218,107,38)" fg:x="7374" fg:w="52"/><text x="31.6715%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.22%)</title><rect x="31.4215%" y="2485" width="0.2216%" height="15" fill="rgb(246,159,42)" fg:x="7374" fg:w="52"/><text x="31.6715%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (52 samples, 0.22%)</title><rect x="31.4215%" y="2469" width="0.2216%" height="15" fill="rgb(251,23,41)" fg:x="7374" fg:w="52"/><text x="31.6715%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="31.6303%" y="2453" width="0.0128%" height="15" fill="rgb(246,94,53)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="31.6303%" y="2437" width="0.0128%" height="15" fill="rgb(241,212,46)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="31.6303%" y="2421" width="0.0128%" height="15" fill="rgb(231,79,30)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="31.6303%" y="2405" width="0.0128%" height="15" fill="rgb(208,202,21)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="31.6303%" y="2389" width="0.0128%" height="15" fill="rgb(226,136,22)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="31.6303%" y="2373" width="0.0128%" height="15" fill="rgb(214,87,0)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="31.6303%" y="2357" width="0.0128%" height="15" fill="rgb(239,176,44)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="31.6303%" y="2341" width="0.0128%" height="15" fill="rgb(230,102,31)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="31.6303%" y="2325" width="0.0128%" height="15" fill="rgb(219,40,19)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2335.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="31.6303%" y="2309" width="0.0128%" height="15" fill="rgb(228,55,4)" fg:x="7423" fg:w="3"/><text x="31.8803%" y="2319.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (23 samples, 0.10%)</title><rect x="31.6473%" y="2213" width="0.0980%" height="15" fill="rgb(239,120,21)" fg:x="7427" fg:w="23"/><text x="31.8973%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (23 samples, 0.10%)</title><rect x="31.6473%" y="2197" width="0.0980%" height="15" fill="rgb(243,136,1)" fg:x="7427" fg:w="23"/><text x="31.8973%" y="2207.50"></text></g><g><title>exp (23 samples, 0.10%)</title><rect x="31.6473%" y="2181" width="0.0980%" height="15" fill="rgb(237,12,45)" fg:x="7427" fg:w="23"/><text x="31.8973%" y="2191.50"></text></g><g><title>[libm.so.6] (19 samples, 0.08%)</title><rect x="31.6644%" y="2165" width="0.0810%" height="15" fill="rgb(245,142,47)" fg:x="7431" fg:w="19"/><text x="31.9144%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (12 samples, 0.05%)</title><rect x="31.7454%" y="2213" width="0.0511%" height="15" fill="rgb(237,24,54)" fg:x="7450" fg:w="12"/><text x="31.9954%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (12 samples, 0.05%)</title><rect x="31.7454%" y="2197" width="0.0511%" height="15" fill="rgb(234,164,40)" fg:x="7450" fg:w="12"/><text x="31.9954%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (43 samples, 0.18%)</title><rect x="31.6473%" y="2229" width="0.1832%" height="15" fill="rgb(242,95,12)" fg:x="7427" fg:w="43"/><text x="31.8973%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (8 samples, 0.03%)</title><rect x="31.7965%" y="2213" width="0.0341%" height="15" fill="rgb(238,75,28)" fg:x="7462" fg:w="8"/><text x="32.0465%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (8 samples, 0.03%)</title><rect x="31.7965%" y="2197" width="0.0341%" height="15" fill="rgb(236,4,26)" fg:x="7462" fg:w="8"/><text x="32.0465%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (50 samples, 0.21%)</title><rect x="31.6431%" y="2389" width="0.2131%" height="15" fill="rgb(252,158,20)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (50 samples, 0.21%)</title><rect x="31.6431%" y="2373" width="0.2131%" height="15" fill="rgb(231,67,31)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (50 samples, 0.21%)</title><rect x="31.6431%" y="2357" width="0.2131%" height="15" fill="rgb(241,151,13)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (50 samples, 0.21%)</title><rect x="31.6431%" y="2341" width="0.2131%" height="15" fill="rgb(242,25,36)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (50 samples, 0.21%)</title><rect x="31.6431%" y="2325" width="0.2131%" height="15" fill="rgb(205,222,34)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (50 samples, 0.21%)</title><rect x="31.6431%" y="2309" width="0.2131%" height="15" fill="rgb(235,154,26)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (50 samples, 0.21%)</title><rect x="31.6431%" y="2293" width="0.2131%" height="15" fill="rgb(233,17,9)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (50 samples, 0.21%)</title><rect x="31.6431%" y="2277" width="0.2131%" height="15" fill="rgb(245,113,50)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (50 samples, 0.21%)</title><rect x="31.6431%" y="2261" width="0.2131%" height="15" fill="rgb(247,105,34)" fg:x="7426" fg:w="50"/><text x="31.8931%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (49 samples, 0.21%)</title><rect x="31.6473%" y="2245" width="0.2088%" height="15" fill="rgb(225,50,23)" fg:x="7427" fg:w="49"/><text x="31.8973%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="31.8306%" y="2229" width="0.0256%" height="15" fill="rgb(253,189,32)" fg:x="7470" fg:w="6"/><text x="32.0806%" y="2239.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="31.8561%" y="2245" width="0.0128%" height="15" fill="rgb(208,159,41)" fg:x="7476" fg:w="3"/><text x="32.1061%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (526 samples, 2.24%)</title><rect x="29.6489%" y="2821" width="2.2413%" height="15" fill="rgb(222,135,10)" fg:x="6958" fg:w="526"/><text x="29.8989%" y="2831.50">r..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (526 samples, 2.24%)</title><rect x="29.6489%" y="2805" width="2.2413%" height="15" fill="rgb(214,75,20)" fg:x="6958" fg:w="526"/><text x="29.8989%" y="2815.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (526 samples, 2.24%)</title><rect x="29.6489%" y="2789" width="2.2413%" height="15" fill="rgb(231,65,33)" fg:x="6958" fg:w="526"/><text x="29.8989%" y="2799.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (526 samples, 2.24%)</title><rect x="29.6489%" y="2773" width="2.2413%" height="15" fill="rgb(251,139,6)" fg:x="6958" fg:w="526"/><text x="29.8989%" y="2783.50">r..</text></g><g><title>rayon_core::join::join_context (438 samples, 1.87%)</title><rect x="30.0239%" y="2757" width="1.8664%" height="15" fill="rgb(225,220,53)" fg:x="7046" fg:w="438"/><text x="30.2739%" y="2767.50">r..</text></g><g><title>rayon_core::registry::in_worker (438 samples, 1.87%)</title><rect x="30.0239%" y="2741" width="1.8664%" height="15" fill="rgb(244,73,26)" fg:x="7046" fg:w="438"/><text x="30.2739%" y="2751.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (438 samples, 1.87%)</title><rect x="30.0239%" y="2725" width="1.8664%" height="15" fill="rgb(244,98,34)" fg:x="7046" fg:w="438"/><text x="30.2739%" y="2735.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (186 samples, 0.79%)</title><rect x="31.0977%" y="2709" width="0.7926%" height="15" fill="rgb(211,131,5)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (186 samples, 0.79%)</title><rect x="31.0977%" y="2693" width="0.7926%" height="15" fill="rgb(238,14,50)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2703.50"></text></g><g><title>std::panicking::try (186 samples, 0.79%)</title><rect x="31.0977%" y="2677" width="0.7926%" height="15" fill="rgb(206,132,52)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (186 samples, 0.79%)</title><rect x="31.0977%" y="2661" width="0.7926%" height="15" fill="rgb(228,200,17)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (186 samples, 0.79%)</title><rect x="31.0977%" y="2645" width="0.7926%" height="15" fill="rgb(209,53,28)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (186 samples, 0.79%)</title><rect x="31.0977%" y="2629" width="0.7926%" height="15" fill="rgb(240,214,22)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (186 samples, 0.79%)</title><rect x="31.0977%" y="2613" width="0.7926%" height="15" fill="rgb(213,217,46)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (186 samples, 0.79%)</title><rect x="31.0977%" y="2597" width="0.7926%" height="15" fill="rgb(241,159,53)" fg:x="7298" fg:w="186"/><text x="31.3477%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (110 samples, 0.47%)</title><rect x="31.4215%" y="2581" width="0.4687%" height="15" fill="rgb(241,70,32)" fg:x="7374" fg:w="110"/><text x="31.6715%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (110 samples, 0.47%)</title><rect x="31.4215%" y="2565" width="0.4687%" height="15" fill="rgb(233,117,50)" fg:x="7374" fg:w="110"/><text x="31.6715%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (110 samples, 0.47%)</title><rect x="31.4215%" y="2549" width="0.4687%" height="15" fill="rgb(211,114,15)" fg:x="7374" fg:w="110"/><text x="31.6715%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (58 samples, 0.25%)</title><rect x="31.6431%" y="2533" width="0.2471%" height="15" fill="rgb(254,0,36)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (58 samples, 0.25%)</title><rect x="31.6431%" y="2517" width="0.2471%" height="15" fill="rgb(221,74,12)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2527.50"></text></g><g><title>std::panicking::try (58 samples, 0.25%)</title><rect x="31.6431%" y="2501" width="0.2471%" height="15" fill="rgb(241,221,3)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (58 samples, 0.25%)</title><rect x="31.6431%" y="2485" width="0.2471%" height="15" fill="rgb(252,91,23)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (58 samples, 0.25%)</title><rect x="31.6431%" y="2469" width="0.2471%" height="15" fill="rgb(232,1,25)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (58 samples, 0.25%)</title><rect x="31.6431%" y="2453" width="0.2471%" height="15" fill="rgb(253,145,25)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (58 samples, 0.25%)</title><rect x="31.6431%" y="2437" width="0.2471%" height="15" fill="rgb(226,43,53)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.25%)</title><rect x="31.6431%" y="2421" width="0.2471%" height="15" fill="rgb(245,116,39)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (58 samples, 0.25%)</title><rect x="31.6431%" y="2405" width="0.2471%" height="15" fill="rgb(231,205,33)" fg:x="7426" fg:w="58"/><text x="31.8931%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="31.8561%" y="2389" width="0.0341%" height="15" fill="rgb(238,96,15)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2399.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="31.8561%" y="2373" width="0.0341%" height="15" fill="rgb(212,80,14)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="31.8561%" y="2357" width="0.0341%" height="15" fill="rgb(209,118,24)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="31.8561%" y="2341" width="0.0341%" height="15" fill="rgb(234,176,14)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="31.8561%" y="2325" width="0.0341%" height="15" fill="rgb(207,145,21)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="31.8561%" y="2309" width="0.0341%" height="15" fill="rgb(218,58,54)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="31.8561%" y="2293" width="0.0341%" height="15" fill="rgb(229,11,50)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="31.8561%" y="2277" width="0.0341%" height="15" fill="rgb(221,170,33)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="31.8561%" y="2261" width="0.0341%" height="15" fill="rgb(221,121,40)" fg:x="7476" fg:w="8"/><text x="32.1061%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="31.8689%" y="2245" width="0.0213%" height="15" fill="rgb(214,165,32)" fg:x="7479" fg:w="5"/><text x="32.1189%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (4 samples, 0.02%)</title><rect x="31.8732%" y="2229" width="0.0170%" height="15" fill="rgb(243,195,30)" fg:x="7480" fg:w="4"/><text x="32.1232%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="31.8945%" y="2389" width="0.0128%" height="15" fill="rgb(238,0,27)" fg:x="7485" fg:w="3"/><text x="32.1445%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="31.8945%" y="2373" width="0.0128%" height="15" fill="rgb(226,0,50)" fg:x="7485" fg:w="3"/><text x="32.1445%" y="2383.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.8945%" y="2357" width="0.0128%" height="15" fill="rgb(222,93,46)" fg:x="7485" fg:w="3"/><text x="32.1445%" y="2367.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="31.8945%" y="2341" width="0.0128%" height="15" fill="rgb(210,34,24)" fg:x="7485" fg:w="3"/><text x="32.1445%" y="2351.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="31.8945%" y="2565" width="0.0298%" height="15" fill="rgb(217,47,8)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="31.8945%" y="2549" width="0.0298%" height="15" fill="rgb(217,0,26)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="31.8945%" y="2533" width="0.0298%" height="15" fill="rgb(218,228,31)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="31.8945%" y="2517" width="0.0298%" height="15" fill="rgb(208,101,40)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="31.8945%" y="2501" width="0.0298%" height="15" fill="rgb(225,134,0)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="31.8945%" y="2485" width="0.0298%" height="15" fill="rgb(241,37,25)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="31.8945%" y="2469" width="0.0298%" height="15" fill="rgb(251,149,9)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="31.8945%" y="2453" width="0.0298%" height="15" fill="rgb(225,196,54)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="31.8945%" y="2437" width="0.0298%" height="15" fill="rgb(240,46,24)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="31.8945%" y="2421" width="0.0298%" height="15" fill="rgb(214,189,4)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="31.8945%" y="2405" width="0.0298%" height="15" fill="rgb(222,3,8)" fg:x="7485" fg:w="7"/><text x="32.1445%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="31.9286%" y="2341" width="0.0128%" height="15" fill="rgb(250,163,6)" fg:x="7493" fg:w="3"/><text x="32.1786%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (14 samples, 0.06%)</title><rect x="31.8945%" y="2581" width="0.0597%" height="15" fill="rgb(225,23,45)" fg:x="7485" fg:w="14"/><text x="32.1445%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="31.9243%" y="2565" width="0.0298%" height="15" fill="rgb(225,177,23)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2575.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="31.9243%" y="2549" width="0.0298%" height="15" fill="rgb(253,75,3)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="31.9243%" y="2533" width="0.0298%" height="15" fill="rgb(237,85,4)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (7 samples, 0.03%)</title><rect x="31.9243%" y="2517" width="0.0298%" height="15" fill="rgb(212,23,3)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="31.9243%" y="2501" width="0.0298%" height="15" fill="rgb(250,127,19)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="31.9243%" y="2485" width="0.0298%" height="15" fill="rgb(222,82,14)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="31.9243%" y="2469" width="0.0298%" height="15" fill="rgb(213,63,47)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2479.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="31.9243%" y="2453" width="0.0298%" height="15" fill="rgb(219,132,41)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="31.9243%" y="2437" width="0.0298%" height="15" fill="rgb(251,205,16)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2447.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="31.9243%" y="2421" width="0.0298%" height="15" fill="rgb(239,102,23)" fg:x="7492" fg:w="7"/><text x="32.1743%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="31.9286%" y="2405" width="0.0256%" height="15" fill="rgb(222,218,4)" fg:x="7493" fg:w="6"/><text x="32.1786%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="31.9286%" y="2389" width="0.0256%" height="15" fill="rgb(232,91,40)" fg:x="7493" fg:w="6"/><text x="32.1786%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="31.9286%" y="2373" width="0.0256%" height="15" fill="rgb(238,170,50)" fg:x="7493" fg:w="6"/><text x="32.1786%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="31.9286%" y="2357" width="0.0256%" height="15" fill="rgb(243,52,25)" fg:x="7493" fg:w="6"/><text x="32.1786%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="31.9414%" y="2341" width="0.0128%" height="15" fill="rgb(236,151,10)" fg:x="7496" fg:w="3"/><text x="32.1914%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="31.9542%" y="2277" width="0.0128%" height="15" fill="rgb(216,123,7)" fg:x="7499" fg:w="3"/><text x="32.2042%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="31.9542%" y="2261" width="0.0128%" height="15" fill="rgb(247,115,15)" fg:x="7499" fg:w="3"/><text x="32.2042%" y="2271.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.9542%" y="2245" width="0.0128%" height="15" fill="rgb(249,65,46)" fg:x="7499" fg:w="3"/><text x="32.2042%" y="2255.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="31.9542%" y="2229" width="0.0128%" height="15" fill="rgb(230,132,24)" fg:x="7499" fg:w="3"/><text x="32.2042%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="31.9669%" y="2277" width="0.0128%" height="15" fill="rgb(253,115,7)" fg:x="7502" fg:w="3"/><text x="32.2169%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="31.9669%" y="2261" width="0.0128%" height="15" fill="rgb(233,23,21)" fg:x="7502" fg:w="3"/><text x="32.2169%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="31.9542%" y="2469" width="0.0341%" height="15" fill="rgb(231,203,18)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2479.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="31.9542%" y="2453" width="0.0341%" height="15" fill="rgb(233,19,15)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="31.9542%" y="2437" width="0.0341%" height="15" fill="rgb(213,12,4)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="31.9542%" y="2421" width="0.0341%" height="15" fill="rgb(221,198,54)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="31.9542%" y="2405" width="0.0341%" height="15" fill="rgb(247,189,16)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="31.9542%" y="2389" width="0.0341%" height="15" fill="rgb(213,82,46)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="31.9542%" y="2373" width="0.0341%" height="15" fill="rgb(216,129,40)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="31.9542%" y="2357" width="0.0341%" height="15" fill="rgb(222,154,45)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="31.9542%" y="2341" width="0.0341%" height="15" fill="rgb(214,223,41)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="31.9542%" y="2325" width="0.0341%" height="15" fill="rgb(212,167,3)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="31.9542%" y="2309" width="0.0341%" height="15" fill="rgb(219,226,20)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="31.9542%" y="2293" width="0.0341%" height="15" fill="rgb(231,29,48)" fg:x="7499" fg:w="8"/><text x="32.2042%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="31.9968%" y="1205" width="0.0256%" height="15" fill="rgb(224,12,4)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1215.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="31.9968%" y="1189" width="0.0256%" height="15" fill="rgb(217,180,30)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="31.9968%" y="1173" width="0.0256%" height="15" fill="rgb(237,137,17)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1183.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="31.9968%" y="1157" width="0.0256%" height="15" fill="rgb(252,225,18)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1167.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="31.9968%" y="1141" width="0.0256%" height="15" fill="rgb(209,177,11)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1151.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="31.9968%" y="1125" width="0.0256%" height="15" fill="rgb(214,147,8)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1135.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="31.9968%" y="1109" width="0.0256%" height="15" fill="rgb(213,225,52)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1119.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="31.9968%" y="1093" width="0.0256%" height="15" fill="rgb(205,99,43)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1103.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="31.9968%" y="1077" width="0.0256%" height="15" fill="rgb(248,141,45)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1087.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="31.9968%" y="1061" width="0.0256%" height="15" fill="rgb(233,198,44)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1071.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="31.9968%" y="1045" width="0.0256%" height="15" fill="rgb(231,176,38)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1055.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="31.9968%" y="1029" width="0.0256%" height="15" fill="rgb(209,31,1)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="31.9968%" y="1013" width="0.0256%" height="15" fill="rgb(246,42,27)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="31.9968%" y="997" width="0.0256%" height="15" fill="rgb(244,104,27)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="31.9968%" y="981" width="0.0256%" height="15" fill="rgb(209,14,27)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="991.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="31.9968%" y="965" width="0.0256%" height="15" fill="rgb(205,170,50)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="31.9968%" y="949" width="0.0256%" height="15" fill="rgb(241,127,20)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="31.9968%" y="933" width="0.0256%" height="15" fill="rgb(230,72,5)" fg:x="7509" fg:w="6"/><text x="32.2468%" y="943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="32.0053%" y="917" width="0.0170%" height="15" fill="rgb(231,221,3)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="927.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="32.0053%" y="901" width="0.0170%" height="15" fill="rgb(232,150,49)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="911.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="32.0053%" y="885" width="0.0170%" height="15" fill="rgb(225,13,46)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="895.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="32.0053%" y="869" width="0.0170%" height="15" fill="rgb(236,192,49)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="32.0053%" y="853" width="0.0170%" height="15" fill="rgb(242,107,14)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0053%" y="837" width="0.0170%" height="15" fill="rgb(251,185,35)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0053%" y="821" width="0.0170%" height="15" fill="rgb(212,128,8)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.0053%" y="805" width="0.0170%" height="15" fill="rgb(215,223,6)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="815.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.0053%" y="789" width="0.0170%" height="15" fill="rgb(216,23,45)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.0053%" y="773" width="0.0170%" height="15" fill="rgb(215,71,45)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0053%" y="757" width="0.0170%" height="15" fill="rgb(224,2,48)" fg:x="7511" fg:w="4"/><text x="32.2553%" y="767.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="31.9968%" y="1493" width="0.0426%" height="15" fill="rgb(218,48,8)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="31.9968%" y="1477" width="0.0426%" height="15" fill="rgb(254,37,27)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="31.9968%" y="1461" width="0.0426%" height="15" fill="rgb(237,112,2)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="31.9968%" y="1445" width="0.0426%" height="15" fill="rgb(243,64,54)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="31.9968%" y="1429" width="0.0426%" height="15" fill="rgb(211,93,4)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="31.9968%" y="1413" width="0.0426%" height="15" fill="rgb(249,127,30)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="31.9968%" y="1397" width="0.0426%" height="15" fill="rgb(248,76,17)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="31.9968%" y="1381" width="0.0426%" height="15" fill="rgb(244,153,49)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1391.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="31.9968%" y="1365" width="0.0426%" height="15" fill="rgb(231,94,34)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1375.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="31.9968%" y="1349" width="0.0426%" height="15" fill="rgb(253,162,40)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1359.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="31.9968%" y="1333" width="0.0426%" height="15" fill="rgb(219,194,14)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="31.9968%" y="1317" width="0.0426%" height="15" fill="rgb(226,80,42)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="31.9968%" y="1301" width="0.0426%" height="15" fill="rgb(208,108,5)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="31.9968%" y="1285" width="0.0426%" height="15" fill="rgb(209,204,33)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="31.9968%" y="1269" width="0.0426%" height="15" fill="rgb(232,22,14)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="31.9968%" y="1253" width="0.0426%" height="15" fill="rgb(236,139,41)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="31.9968%" y="1237" width="0.0426%" height="15" fill="rgb(220,91,0)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="31.9968%" y="1221" width="0.0426%" height="15" fill="rgb(243,200,48)" fg:x="7509" fg:w="10"/><text x="32.2468%" y="1231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="32.0223%" y="1205" width="0.0170%" height="15" fill="rgb(237,172,41)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1215.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="32.0223%" y="1189" width="0.0170%" height="15" fill="rgb(247,152,34)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1199.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="32.0223%" y="1173" width="0.0170%" height="15" fill="rgb(205,88,40)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1183.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="32.0223%" y="1157" width="0.0170%" height="15" fill="rgb(223,30,13)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="32.0223%" y="1141" width="0.0170%" height="15" fill="rgb(249,7,18)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0223%" y="1125" width="0.0170%" height="15" fill="rgb(242,185,6)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0223%" y="1109" width="0.0170%" height="15" fill="rgb(234,115,47)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.0223%" y="1093" width="0.0170%" height="15" fill="rgb(213,98,2)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.0223%" y="1077" width="0.0170%" height="15" fill="rgb(237,162,23)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.0223%" y="1061" width="0.0170%" height="15" fill="rgb(240,174,26)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0223%" y="1045" width="0.0170%" height="15" fill="rgb(249,90,45)" fg:x="7515" fg:w="4"/><text x="32.2723%" y="1055.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="32.0394%" y="1205" width="0.0128%" height="15" fill="rgb(212,126,4)" fg:x="7519" fg:w="3"/><text x="32.2894%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="32.0394%" y="1189" width="0.0128%" height="15" fill="rgb(236,98,48)" fg:x="7519" fg:w="3"/><text x="32.2894%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="32.0394%" y="1173" width="0.0128%" height="15" fill="rgb(250,14,51)" fg:x="7519" fg:w="3"/><text x="32.2894%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.0394%" y="1157" width="0.0128%" height="15" fill="rgb(236,2,16)" fg:x="7519" fg:w="3"/><text x="32.2894%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="32.0394%" y="1141" width="0.0128%" height="15" fill="rgb(250,146,3)" fg:x="7519" fg:w="3"/><text x="32.2894%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="32.0394%" y="1125" width="0.0128%" height="15" fill="rgb(233,72,0)" fg:x="7519" fg:w="3"/><text x="32.2894%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="32.0394%" y="1109" width="0.0128%" height="15" fill="rgb(249,172,7)" fg:x="7519" fg:w="3"/><text x="32.2894%" y="1119.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="32.0394%" y="1317" width="0.0298%" height="15" fill="rgb(224,213,17)" fg:x="7519" fg:w="7"/><text x="32.2894%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="32.0394%" y="1301" width="0.0298%" height="15" fill="rgb(221,52,2)" fg:x="7519" fg:w="7"/><text x="32.2894%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="32.0394%" y="1285" width="0.0298%" height="15" fill="rgb(220,8,41)" fg:x="7519" fg:w="7"/><text x="32.2894%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="32.0394%" y="1269" width="0.0298%" height="15" fill="rgb(230,207,34)" fg:x="7519" fg:w="7"/><text x="32.2894%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="32.0394%" y="1253" width="0.0298%" height="15" fill="rgb(240,157,11)" fg:x="7519" fg:w="7"/><text x="32.2894%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="32.0394%" y="1237" width="0.0298%" height="15" fill="rgb(243,209,15)" fg:x="7519" fg:w="7"/><text x="32.2894%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="32.0394%" y="1221" width="0.0298%" height="15" fill="rgb(251,191,33)" fg:x="7519" fg:w="7"/><text x="32.2894%" y="1231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="32.0522%" y="1205" width="0.0170%" height="15" fill="rgb(217,58,8)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1215.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="32.0522%" y="1189" width="0.0170%" height="15" fill="rgb(210,35,1)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1199.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="32.0522%" y="1173" width="0.0170%" height="15" fill="rgb(231,62,7)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1183.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="32.0522%" y="1157" width="0.0170%" height="15" fill="rgb(207,73,10)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="32.0522%" y="1141" width="0.0170%" height="15" fill="rgb(216,178,40)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0522%" y="1125" width="0.0170%" height="15" fill="rgb(238,220,1)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0522%" y="1109" width="0.0170%" height="15" fill="rgb(246,169,39)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.0522%" y="1093" width="0.0170%" height="15" fill="rgb(240,186,45)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.0522%" y="1077" width="0.0170%" height="15" fill="rgb(225,14,29)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.0522%" y="1061" width="0.0170%" height="15" fill="rgb(243,96,26)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0522%" y="1045" width="0.0170%" height="15" fill="rgb(234,139,10)" fg:x="7522" fg:w="4"/><text x="32.3022%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (21 samples, 0.09%)</title><rect x="31.9968%" y="1957" width="0.0895%" height="15" fill="rgb(235,208,23)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.09%)</title><rect x="31.9968%" y="1941" width="0.0895%" height="15" fill="rgb(230,140,47)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (21 samples, 0.09%)</title><rect x="31.9968%" y="1925" width="0.0895%" height="15" fill="rgb(241,227,54)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (21 samples, 0.09%)</title><rect x="31.9968%" y="1909" width="0.0895%" height="15" fill="rgb(221,210,40)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (21 samples, 0.09%)</title><rect x="31.9968%" y="1893" width="0.0895%" height="15" fill="rgb(207,52,1)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (21 samples, 0.09%)</title><rect x="31.9968%" y="1877" width="0.0895%" height="15" fill="rgb(243,147,42)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="31.9968%" y="1861" width="0.0895%" height="15" fill="rgb(245,93,7)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="31.9968%" y="1845" width="0.0895%" height="15" fill="rgb(243,119,13)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1855.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="31.9968%" y="1829" width="0.0895%" height="15" fill="rgb(228,164,28)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="31.9968%" y="1813" width="0.0895%" height="15" fill="rgb(234,37,39)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="31.9968%" y="1797" width="0.0895%" height="15" fill="rgb(246,155,10)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (21 samples, 0.09%)</title><rect x="31.9968%" y="1781" width="0.0895%" height="15" fill="rgb(208,140,53)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="31.9968%" y="1765" width="0.0895%" height="15" fill="rgb(234,107,29)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="31.9968%" y="1749" width="0.0895%" height="15" fill="rgb(217,45,5)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="31.9968%" y="1733" width="0.0895%" height="15" fill="rgb(251,168,5)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="31.9968%" y="1717" width="0.0895%" height="15" fill="rgb(242,96,14)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="31.9968%" y="1701" width="0.0895%" height="15" fill="rgb(231,148,6)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="31.9968%" y="1685" width="0.0895%" height="15" fill="rgb(249,100,2)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="31.9968%" y="1669" width="0.0895%" height="15" fill="rgb(212,22,52)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="31.9968%" y="1653" width="0.0895%" height="15" fill="rgb(212,97,14)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1663.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="31.9968%" y="1637" width="0.0895%" height="15" fill="rgb(212,24,14)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="31.9968%" y="1621" width="0.0895%" height="15" fill="rgb(239,209,43)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="31.9968%" y="1605" width="0.0895%" height="15" fill="rgb(226,211,38)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="31.9968%" y="1589" width="0.0895%" height="15" fill="rgb(216,118,11)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="31.9968%" y="1573" width="0.0895%" height="15" fill="rgb(223,214,43)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="31.9968%" y="1557" width="0.0895%" height="15" fill="rgb(213,225,15)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="31.9968%" y="1541" width="0.0895%" height="15" fill="rgb(233,115,42)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="31.9968%" y="1525" width="0.0895%" height="15" fill="rgb(229,93,16)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="31.9968%" y="1509" width="0.0895%" height="15" fill="rgb(220,114,48)" fg:x="7509" fg:w="21"/><text x="32.2468%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="32.0394%" y="1493" width="0.0469%" height="15" fill="rgb(253,78,24)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="32.0394%" y="1477" width="0.0469%" height="15" fill="rgb(206,29,19)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1487.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="32.0394%" y="1461" width="0.0469%" height="15" fill="rgb(220,96,19)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="32.0394%" y="1445" width="0.0469%" height="15" fill="rgb(222,62,18)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="32.0394%" y="1429" width="0.0469%" height="15" fill="rgb(243,4,41)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="32.0394%" y="1413" width="0.0469%" height="15" fill="rgb(232,199,53)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="32.0394%" y="1397" width="0.0469%" height="15" fill="rgb(212,18,26)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="32.0394%" y="1381" width="0.0469%" height="15" fill="rgb(218,30,49)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="32.0394%" y="1365" width="0.0469%" height="15" fill="rgb(250,154,52)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="32.0394%" y="1349" width="0.0469%" height="15" fill="rgb(218,176,16)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="32.0394%" y="1333" width="0.0469%" height="15" fill="rgb(215,61,51)" fg:x="7519" fg:w="11"/><text x="32.2894%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="32.0692%" y="1317" width="0.0170%" height="15" fill="rgb(234,40,53)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="32.0692%" y="1301" width="0.0170%" height="15" fill="rgb(214,142,25)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1311.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="32.0692%" y="1285" width="0.0170%" height="15" fill="rgb(206,61,7)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="32.0692%" y="1269" width="0.0170%" height="15" fill="rgb(245,225,1)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="32.0692%" y="1253" width="0.0170%" height="15" fill="rgb(224,122,37)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0692%" y="1237" width="0.0170%" height="15" fill="rgb(209,221,12)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0692%" y="1221" width="0.0170%" height="15" fill="rgb(248,70,2)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.0692%" y="1205" width="0.0170%" height="15" fill="rgb(227,173,19)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.0692%" y="1189" width="0.0170%" height="15" fill="rgb(228,217,53)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.0692%" y="1173" width="0.0170%" height="15" fill="rgb(248,43,46)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0692%" y="1157" width="0.0170%" height="15" fill="rgb(236,202,32)" fg:x="7526" fg:w="4"/><text x="32.3192%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (24 samples, 0.10%)</title><rect x="31.9968%" y="2421" width="0.1023%" height="15" fill="rgb(231,220,0)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (24 samples, 0.10%)</title><rect x="31.9968%" y="2405" width="0.1023%" height="15" fill="rgb(235,11,31)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (24 samples, 0.10%)</title><rect x="31.9968%" y="2389" width="0.1023%" height="15" fill="rgb(247,159,37)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (24 samples, 0.10%)</title><rect x="31.9968%" y="2373" width="0.1023%" height="15" fill="rgb(246,179,15)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (24 samples, 0.10%)</title><rect x="31.9968%" y="2357" width="0.1023%" height="15" fill="rgb(221,193,41)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (24 samples, 0.10%)</title><rect x="31.9968%" y="2341" width="0.1023%" height="15" fill="rgb(228,30,1)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (24 samples, 0.10%)</title><rect x="31.9968%" y="2325" width="0.1023%" height="15" fill="rgb(233,226,32)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (24 samples, 0.10%)</title><rect x="31.9968%" y="2309" width="0.1023%" height="15" fill="rgb(238,110,42)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2319.50"></text></g><g><title>std::panicking::try (24 samples, 0.10%)</title><rect x="31.9968%" y="2293" width="0.1023%" height="15" fill="rgb(233,141,16)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (24 samples, 0.10%)</title><rect x="31.9968%" y="2277" width="0.1023%" height="15" fill="rgb(212,227,9)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (24 samples, 0.10%)</title><rect x="31.9968%" y="2261" width="0.1023%" height="15" fill="rgb(247,119,37)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (24 samples, 0.10%)</title><rect x="31.9968%" y="2245" width="0.1023%" height="15" fill="rgb(219,101,42)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (24 samples, 0.10%)</title><rect x="31.9968%" y="2229" width="0.1023%" height="15" fill="rgb(252,226,3)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="31.9968%" y="2213" width="0.1023%" height="15" fill="rgb(229,50,28)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="31.9968%" y="2197" width="0.1023%" height="15" fill="rgb(249,122,7)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="31.9968%" y="2181" width="0.1023%" height="15" fill="rgb(207,101,46)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="31.9968%" y="2165" width="0.1023%" height="15" fill="rgb(249,90,48)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="31.9968%" y="2149" width="0.1023%" height="15" fill="rgb(231,10,48)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (24 samples, 0.10%)</title><rect x="31.9968%" y="2133" width="0.1023%" height="15" fill="rgb(234,120,19)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (24 samples, 0.10%)</title><rect x="31.9968%" y="2117" width="0.1023%" height="15" fill="rgb(212,221,36)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2127.50"></text></g><g><title>std::panicking::try (24 samples, 0.10%)</title><rect x="31.9968%" y="2101" width="0.1023%" height="15" fill="rgb(230,151,52)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (24 samples, 0.10%)</title><rect x="31.9968%" y="2085" width="0.1023%" height="15" fill="rgb(246,35,38)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (24 samples, 0.10%)</title><rect x="31.9968%" y="2069" width="0.1023%" height="15" fill="rgb(208,110,54)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (24 samples, 0.10%)</title><rect x="31.9968%" y="2053" width="0.1023%" height="15" fill="rgb(250,206,40)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="31.9968%" y="2037" width="0.1023%" height="15" fill="rgb(225,204,22)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="31.9968%" y="2021" width="0.1023%" height="15" fill="rgb(220,29,11)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="31.9968%" y="2005" width="0.1023%" height="15" fill="rgb(254,133,9)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="31.9968%" y="1989" width="0.1023%" height="15" fill="rgb(254,178,33)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="31.9968%" y="1973" width="0.1023%" height="15" fill="rgb(239,217,37)" fg:x="7509" fg:w="24"/><text x="32.2468%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="32.0862%" y="1957" width="0.0128%" height="15" fill="rgb(210,41,5)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="32.0862%" y="1941" width="0.0128%" height="15" fill="rgb(227,23,47)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1951.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="32.0862%" y="1925" width="0.0128%" height="15" fill="rgb(215,18,46)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="32.0862%" y="1909" width="0.0128%" height="15" fill="rgb(247,172,0)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="32.0862%" y="1893" width="0.0128%" height="15" fill="rgb(254,23,27)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="32.0862%" y="1877" width="0.0128%" height="15" fill="rgb(223,61,6)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="32.0862%" y="1861" width="0.0128%" height="15" fill="rgb(237,65,24)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.0862%" y="1845" width="0.0128%" height="15" fill="rgb(238,133,22)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="32.0862%" y="1829" width="0.0128%" height="15" fill="rgb(217,219,5)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="32.0862%" y="1813" width="0.0128%" height="15" fill="rgb(254,24,44)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="32.0862%" y="1797" width="0.0128%" height="15" fill="rgb(217,136,50)" fg:x="7530" fg:w="3"/><text x="32.3362%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (38 samples, 0.16%)</title><rect x="31.9542%" y="2533" width="0.1619%" height="15" fill="rgb(243,85,15)" fg:x="7499" fg:w="38"/><text x="32.2042%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (38 samples, 0.16%)</title><rect x="31.9542%" y="2517" width="0.1619%" height="15" fill="rgb(224,85,42)" fg:x="7499" fg:w="38"/><text x="32.2042%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (38 samples, 0.16%)</title><rect x="31.9542%" y="2501" width="0.1619%" height="15" fill="rgb(237,142,36)" fg:x="7499" fg:w="38"/><text x="32.2042%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.16%)</title><rect x="31.9542%" y="2485" width="0.1619%" height="15" fill="rgb(215,131,52)" fg:x="7499" fg:w="38"/><text x="32.2042%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (30 samples, 0.13%)</title><rect x="31.9882%" y="2469" width="0.1278%" height="15" fill="rgb(216,124,50)" fg:x="7507" fg:w="30"/><text x="32.2382%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.13%)</title><rect x="31.9882%" y="2453" width="0.1278%" height="15" fill="rgb(223,61,20)" fg:x="7507" fg:w="30"/><text x="32.2382%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30 samples, 0.13%)</title><rect x="31.9882%" y="2437" width="0.1278%" height="15" fill="rgb(250,62,47)" fg:x="7507" fg:w="30"/><text x="32.2382%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="32.0990%" y="2421" width="0.0170%" height="15" fill="rgb(225,180,21)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="32.0990%" y="2405" width="0.0170%" height="15" fill="rgb(210,89,33)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2415.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="32.0990%" y="2389" width="0.0170%" height="15" fill="rgb(205,215,50)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="32.0990%" y="2373" width="0.0170%" height="15" fill="rgb(207,191,48)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="32.0990%" y="2357" width="0.0170%" height="15" fill="rgb(247,32,5)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0990%" y="2341" width="0.0170%" height="15" fill="rgb(210,113,39)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0990%" y="2325" width="0.0170%" height="15" fill="rgb(242,181,23)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.0990%" y="2309" width="0.0170%" height="15" fill="rgb(215,58,22)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="32.0990%" y="2293" width="0.0170%" height="15" fill="rgb(236,31,11)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="32.0990%" y="2277" width="0.0170%" height="15" fill="rgb(244,198,15)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="32.0990%" y="2261" width="0.0170%" height="15" fill="rgb(230,142,36)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="32.0990%" y="2245" width="0.0170%" height="15" fill="rgb(219,48,29)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="32.0990%" y="2229" width="0.0170%" height="15" fill="rgb(237,179,43)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="32.0990%" y="2213" width="0.0170%" height="15" fill="rgb(221,67,37)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="32.0990%" y="2197" width="0.0170%" height="15" fill="rgb(222,217,18)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0990%" y="2181" width="0.0170%" height="15" fill="rgb(235,107,38)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="32.0990%" y="2165" width="0.0170%" height="15" fill="rgb(227,110,50)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="32.0990%" y="2149" width="0.0170%" height="15" fill="rgb(224,176,42)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="32.0990%" y="2133" width="0.0170%" height="15" fill="rgb(250,34,11)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="32.0990%" y="2117" width="0.0170%" height="15" fill="rgb(253,107,24)" fg:x="7533" fg:w="4"/><text x="32.3490%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="32.1161%" y="2101" width="0.0128%" height="15" fill="rgb(213,146,11)" fg:x="7537" fg:w="3"/><text x="32.3661%" y="2111.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="32.1161%" y="2085" width="0.0128%" height="15" fill="rgb(216,88,42)" fg:x="7537" fg:w="3"/><text x="32.3661%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="32.1161%" y="2293" width="0.0170%" height="15" fill="rgb(231,37,19)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="32.1161%" y="2277" width="0.0170%" height="15" fill="rgb(213,154,5)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="32.1161%" y="2261" width="0.0170%" height="15" fill="rgb(234,102,6)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="32.1161%" y="2245" width="0.0170%" height="15" fill="rgb(206,125,39)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="32.1161%" y="2229" width="0.0170%" height="15" fill="rgb(254,216,50)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="32.1161%" y="2213" width="0.0170%" height="15" fill="rgb(205,65,40)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="32.1161%" y="2197" width="0.0170%" height="15" fill="rgb(244,217,7)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="32.1161%" y="2181" width="0.0170%" height="15" fill="rgb(220,203,19)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="32.1161%" y="2165" width="0.0170%" height="15" fill="rgb(254,124,45)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="32.1161%" y="2149" width="0.0170%" height="15" fill="rgb(236,111,39)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="32.1161%" y="2133" width="0.0170%" height="15" fill="rgb(243,49,31)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="32.1161%" y="2117" width="0.0170%" height="15" fill="rgb(252,80,32)" fg:x="7537" fg:w="4"/><text x="32.3661%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="32.1331%" y="2005" width="0.0128%" height="15" fill="rgb(221,67,33)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="32.1331%" y="1989" width="0.0128%" height="15" fill="rgb(225,12,36)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="32.1331%" y="1973" width="0.0128%" height="15" fill="rgb(210,14,38)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="32.1331%" y="1957" width="0.0128%" height="15" fill="rgb(251,82,7)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="32.1331%" y="1941" width="0.0128%" height="15" fill="rgb(253,73,22)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="32.1331%" y="1925" width="0.0128%" height="15" fill="rgb(237,31,38)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="32.1331%" y="1909" width="0.0128%" height="15" fill="rgb(234,184,33)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="32.1331%" y="1893" width="0.0128%" height="15" fill="rgb(219,43,13)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="32.1331%" y="1877" width="0.0128%" height="15" fill="rgb(252,139,13)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="32.1331%" y="1861" width="0.0128%" height="15" fill="rgb(229,79,33)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="32.1331%" y="1845" width="0.0128%" height="15" fill="rgb(248,8,21)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="32.1331%" y="1829" width="0.0128%" height="15" fill="rgb(225,124,31)" fg:x="7541" fg:w="3"/><text x="32.3831%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="32.1459%" y="1957" width="0.0213%" height="15" fill="rgb(248,141,9)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="32.1459%" y="1941" width="0.0213%" height="15" fill="rgb(251,223,32)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1951.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="32.1459%" y="1925" width="0.0213%" height="15" fill="rgb(251,8,33)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1935.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="32.1459%" y="1909" width="0.0213%" height="15" fill="rgb(205,95,13)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1919.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="32.1459%" y="1893" width="0.0213%" height="15" fill="rgb(235,208,38)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1903.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="32.1459%" y="1877" width="0.0213%" height="15" fill="rgb(222,33,24)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1887.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="32.1459%" y="1861" width="0.0213%" height="15" fill="rgb(219,97,3)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1871.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="32.1459%" y="1845" width="0.0213%" height="15" fill="rgb(209,15,37)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1855.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="32.1459%" y="1829" width="0.0213%" height="15" fill="rgb(206,100,16)" fg:x="7544" fg:w="5"/><text x="32.3959%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="32.1672%" y="1781" width="0.0213%" height="15" fill="rgb(208,61,41)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="32.1672%" y="1765" width="0.0213%" height="15" fill="rgb(226,154,13)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="32.1672%" y="1749" width="0.0213%" height="15" fill="rgb(226,113,19)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="32.1672%" y="1733" width="0.0213%" height="15" fill="rgb(209,115,46)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="32.1672%" y="1717" width="0.0213%" height="15" fill="rgb(234,170,38)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="32.1672%" y="1701" width="0.0213%" height="15" fill="rgb(228,23,37)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="32.1672%" y="1685" width="0.0213%" height="15" fill="rgb(243,83,27)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="32.1672%" y="1669" width="0.0213%" height="15" fill="rgb(251,121,22)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="32.1672%" y="1653" width="0.0213%" height="15" fill="rgb(205,106,26)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1663.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="32.1672%" y="1637" width="0.0213%" height="15" fill="rgb(251,23,10)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="32.1672%" y="1621" width="0.0213%" height="15" fill="rgb(250,218,35)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="32.1672%" y="1605" width="0.0213%" height="15" fill="rgb(211,16,34)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="32.1672%" y="1589" width="0.0213%" height="15" fill="rgb(238,148,30)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="32.1672%" y="1573" width="0.0213%" height="15" fill="rgb(236,171,40)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="32.1672%" y="1557" width="0.0213%" height="15" fill="rgb(237,128,15)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="32.1672%" y="1541" width="0.0213%" height="15" fill="rgb(222,8,10)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="32.1672%" y="1525" width="0.0213%" height="15" fill="rgb(244,223,11)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="32.1672%" y="1509" width="0.0213%" height="15" fill="rgb(230,23,54)" fg:x="7549" fg:w="5"/><text x="32.4172%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="32.1757%" y="1493" width="0.0128%" height="15" fill="rgb(206,71,18)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="32.1757%" y="1477" width="0.0128%" height="15" fill="rgb(221,190,41)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="32.1757%" y="1461" width="0.0128%" height="15" fill="rgb(242,202,19)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="32.1757%" y="1445" width="0.0128%" height="15" fill="rgb(242,213,28)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="32.1757%" y="1429" width="0.0128%" height="15" fill="rgb(224,77,34)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="32.1757%" y="1413" width="0.0128%" height="15" fill="rgb(231,13,30)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="32.1757%" y="1397" width="0.0128%" height="15" fill="rgb(231,126,46)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.1757%" y="1381" width="0.0128%" height="15" fill="rgb(237,50,16)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="32.1757%" y="1365" width="0.0128%" height="15" fill="rgb(250,0,53)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1375.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="32.1757%" y="1349" width="0.0128%" height="15" fill="rgb(206,168,4)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="32.1757%" y="1333" width="0.0128%" height="15" fill="rgb(237,195,30)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1343.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="32.1757%" y="1317" width="0.0128%" height="15" fill="rgb(250,185,28)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1327.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="32.1757%" y="1301" width="0.0128%" height="15" fill="rgb(236,31,48)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1311.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="32.1757%" y="1285" width="0.0128%" height="15" fill="rgb(240,210,1)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="32.1757%" y="1269" width="0.0128%" height="15" fill="rgb(211,67,10)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="32.1757%" y="1253" width="0.0128%" height="15" fill="rgb(224,37,37)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1263.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="32.1757%" y="1237" width="0.0128%" height="15" fill="rgb(211,57,29)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1247.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="32.1757%" y="1221" width="0.0128%" height="15" fill="rgb(222,128,38)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1231.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="32.1757%" y="1205" width="0.0128%" height="15" fill="rgb(222,119,2)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1215.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="32.1757%" y="1189" width="0.0128%" height="15" fill="rgb(207,185,13)" fg:x="7551" fg:w="3"/><text x="32.4257%" y="1199.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="32.1885%" y="1605" width="0.0170%" height="15" fill="rgb(234,134,26)" fg:x="7554" fg:w="4"/><text x="32.4385%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="32.1885%" y="1589" width="0.0170%" height="15" fill="rgb(236,28,54)" fg:x="7554" fg:w="4"/><text x="32.4385%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.1885%" y="1573" width="0.0170%" height="15" fill="rgb(218,4,16)" fg:x="7554" fg:w="4"/><text x="32.4385%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.1885%" y="1557" width="0.0170%" height="15" fill="rgb(206,115,32)" fg:x="7554" fg:w="4"/><text x="32.4385%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.1885%" y="1541" width="0.0170%" height="15" fill="rgb(221,12,8)" fg:x="7554" fg:w="4"/><text x="32.4385%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.1885%" y="1525" width="0.0170%" height="15" fill="rgb(239,207,6)" fg:x="7554" fg:w="4"/><text x="32.4385%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.1885%" y="1509" width="0.0170%" height="15" fill="rgb(217,119,6)" fg:x="7554" fg:w="4"/><text x="32.4385%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (21 samples, 0.09%)</title><rect x="32.1331%" y="2245" width="0.0895%" height="15" fill="rgb(230,27,1)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.09%)</title><rect x="32.1331%" y="2229" width="0.0895%" height="15" fill="rgb(237,155,1)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (21 samples, 0.09%)</title><rect x="32.1331%" y="2213" width="0.0895%" height="15" fill="rgb(248,66,50)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (21 samples, 0.09%)</title><rect x="32.1331%" y="2197" width="0.0895%" height="15" fill="rgb(218,66,19)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (21 samples, 0.09%)</title><rect x="32.1331%" y="2181" width="0.0895%" height="15" fill="rgb(229,19,7)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (21 samples, 0.09%)</title><rect x="32.1331%" y="2165" width="0.0895%" height="15" fill="rgb(223,65,18)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="32.1331%" y="2149" width="0.0895%" height="15" fill="rgb(216,100,6)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="32.1331%" y="2133" width="0.0895%" height="15" fill="rgb(215,16,2)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2143.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="32.1331%" y="2117" width="0.0895%" height="15" fill="rgb(219,20,33)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="32.1331%" y="2101" width="0.0895%" height="15" fill="rgb(215,120,26)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="32.1331%" y="2085" width="0.0895%" height="15" fill="rgb(240,175,31)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (21 samples, 0.09%)</title><rect x="32.1331%" y="2069" width="0.0895%" height="15" fill="rgb(245,165,43)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="32.1331%" y="2053" width="0.0895%" height="15" fill="rgb(228,92,16)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="32.1331%" y="2037" width="0.0895%" height="15" fill="rgb(252,37,37)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="32.1331%" y="2021" width="0.0895%" height="15" fill="rgb(220,96,32)" fg:x="7541" fg:w="21"/><text x="32.3831%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="32.1459%" y="2005" width="0.0767%" height="15" fill="rgb(206,224,2)" fg:x="7544" fg:w="18"/><text x="32.3959%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="32.1459%" y="1989" width="0.0767%" height="15" fill="rgb(221,63,25)" fg:x="7544" fg:w="18"/><text x="32.3959%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="32.1459%" y="1973" width="0.0767%" height="15" fill="rgb(244,60,40)" fg:x="7544" fg:w="18"/><text x="32.3959%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="32.1672%" y="1957" width="0.0554%" height="15" fill="rgb(209,102,13)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="32.1672%" y="1941" width="0.0554%" height="15" fill="rgb(216,127,17)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1951.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="32.1672%" y="1925" width="0.0554%" height="15" fill="rgb(242,182,26)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="32.1672%" y="1909" width="0.0554%" height="15" fill="rgb(233,22,19)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="32.1672%" y="1893" width="0.0554%" height="15" fill="rgb(238,173,31)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="32.1672%" y="1877" width="0.0554%" height="15" fill="rgb(244,165,10)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="32.1672%" y="1861" width="0.0554%" height="15" fill="rgb(251,138,36)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="32.1672%" y="1845" width="0.0554%" height="15" fill="rgb(233,2,19)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="32.1672%" y="1829" width="0.0554%" height="15" fill="rgb(206,178,31)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="32.1672%" y="1813" width="0.0554%" height="15" fill="rgb(223,128,44)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="32.1672%" y="1797" width="0.0554%" height="15" fill="rgb(238,24,5)" fg:x="7549" fg:w="13"/><text x="32.4172%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="32.1885%" y="1781" width="0.0341%" height="15" fill="rgb(217,140,4)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="32.1885%" y="1765" width="0.0341%" height="15" fill="rgb(250,89,54)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1775.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="32.1885%" y="1749" width="0.0341%" height="15" fill="rgb(223,199,30)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="32.1885%" y="1733" width="0.0341%" height="15" fill="rgb(220,47,34)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="32.1885%" y="1717" width="0.0341%" height="15" fill="rgb(206,12,44)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="32.1885%" y="1701" width="0.0341%" height="15" fill="rgb(226,159,9)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="32.1885%" y="1685" width="0.0341%" height="15" fill="rgb(224,150,25)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="32.1885%" y="1669" width="0.0341%" height="15" fill="rgb(248,214,17)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="32.1885%" y="1653" width="0.0341%" height="15" fill="rgb(208,189,54)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="32.1885%" y="1637" width="0.0341%" height="15" fill="rgb(233,78,33)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="32.1885%" y="1621" width="0.0341%" height="15" fill="rgb(244,217,34)" fg:x="7554" fg:w="8"/><text x="32.4385%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="32.2056%" y="1605" width="0.0170%" height="15" fill="rgb(221,41,46)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="32.2056%" y="1589" width="0.0170%" height="15" fill="rgb(216,152,46)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1599.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="32.2056%" y="1573" width="0.0170%" height="15" fill="rgb(235,72,49)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="32.2056%" y="1557" width="0.0170%" height="15" fill="rgb(214,12,0)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="32.2056%" y="1541" width="0.0170%" height="15" fill="rgb(254,8,3)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="32.2056%" y="1525" width="0.0170%" height="15" fill="rgb(238,167,16)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.2056%" y="1509" width="0.0170%" height="15" fill="rgb(236,220,0)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.2056%" y="1493" width="0.0170%" height="15" fill="rgb(207,8,20)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.2056%" y="1477" width="0.0170%" height="15" fill="rgb(236,113,14)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.2056%" y="1461" width="0.0170%" height="15" fill="rgb(207,6,6)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.2056%" y="1445" width="0.0170%" height="15" fill="rgb(225,92,41)" fg:x="7558" fg:w="4"/><text x="32.4556%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="32.2226%" y="2117" width="0.0213%" height="15" fill="rgb(234,224,18)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="32.2226%" y="2101" width="0.0213%" height="15" fill="rgb(248,195,4)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="32.2226%" y="2085" width="0.0213%" height="15" fill="rgb(229,146,7)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="32.2226%" y="2069" width="0.0213%" height="15" fill="rgb(249,192,15)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="32.2226%" y="2053" width="0.0213%" height="15" fill="rgb(253,77,34)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="32.2226%" y="2037" width="0.0213%" height="15" fill="rgb(236,228,3)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="32.2226%" y="2021" width="0.0213%" height="15" fill="rgb(233,71,16)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="32.2226%" y="2005" width="0.0213%" height="15" fill="rgb(239,41,1)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="32.2226%" y="1989" width="0.0213%" height="15" fill="rgb(214,119,41)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="32.2226%" y="1973" width="0.0213%" height="15" fill="rgb(213,17,39)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="32.2226%" y="1957" width="0.0213%" height="15" fill="rgb(245,42,20)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="32.2226%" y="1941" width="0.0213%" height="15" fill="rgb(252,18,22)" fg:x="7562" fg:w="5"/><text x="32.4726%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="32.2439%" y="2069" width="0.0128%" height="15" fill="rgb(219,125,29)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="32.2439%" y="2053" width="0.0128%" height="15" fill="rgb(215,56,47)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="32.2439%" y="2037" width="0.0128%" height="15" fill="rgb(212,211,43)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.2439%" y="2021" width="0.0128%" height="15" fill="rgb(225,24,34)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="32.2439%" y="2005" width="0.0128%" height="15" fill="rgb(229,104,27)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="32.2439%" y="1989" width="0.0128%" height="15" fill="rgb(208,56,42)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="32.2439%" y="1973" width="0.0128%" height="15" fill="rgb(210,79,18)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="32.2439%" y="1957" width="0.0128%" height="15" fill="rgb(236,125,53)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="32.2439%" y="1941" width="0.0128%" height="15" fill="rgb(207,101,52)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="32.2439%" y="1925" width="0.0128%" height="15" fill="rgb(248,51,10)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="32.2439%" y="1909" width="0.0128%" height="15" fill="rgb(222,184,26)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="32.2439%" y="1893" width="0.0128%" height="15" fill="rgb(226,13,15)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="32.2439%" y="1877" width="0.0128%" height="15" fill="rgb(238,108,43)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="32.2439%" y="1861" width="0.0128%" height="15" fill="rgb(252,6,18)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="32.2439%" y="1845" width="0.0128%" height="15" fill="rgb(215,206,11)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="32.2439%" y="1829" width="0.0128%" height="15" fill="rgb(243,20,18)" fg:x="7567" fg:w="3"/><text x="32.4939%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (35 samples, 0.15%)</title><rect x="32.1161%" y="2501" width="0.1491%" height="15" fill="rgb(213,39,51)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (35 samples, 0.15%)</title><rect x="32.1161%" y="2485" width="0.1491%" height="15" fill="rgb(225,153,38)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (35 samples, 0.15%)</title><rect x="32.1161%" y="2469" width="0.1491%" height="15" fill="rgb(235,8,28)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (35 samples, 0.15%)</title><rect x="32.1161%" y="2453" width="0.1491%" height="15" fill="rgb(215,0,21)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (35 samples, 0.15%)</title><rect x="32.1161%" y="2437" width="0.1491%" height="15" fill="rgb(205,153,39)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (35 samples, 0.15%)</title><rect x="32.1161%" y="2421" width="0.1491%" height="15" fill="rgb(231,172,8)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2431.50"></text></g><g><title>std::panicking::try (35 samples, 0.15%)</title><rect x="32.1161%" y="2405" width="0.1491%" height="15" fill="rgb(251,142,40)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (35 samples, 0.15%)</title><rect x="32.1161%" y="2389" width="0.1491%" height="15" fill="rgb(214,48,45)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (35 samples, 0.15%)</title><rect x="32.1161%" y="2373" width="0.1491%" height="15" fill="rgb(231,29,28)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (35 samples, 0.15%)</title><rect x="32.1161%" y="2357" width="0.1491%" height="15" fill="rgb(245,57,8)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (35 samples, 0.15%)</title><rect x="32.1161%" y="2341" width="0.1491%" height="15" fill="rgb(236,199,39)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (35 samples, 0.15%)</title><rect x="32.1161%" y="2325" width="0.1491%" height="15" fill="rgb(208,132,35)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.15%)</title><rect x="32.1161%" y="2309" width="0.1491%" height="15" fill="rgb(225,217,34)" fg:x="7537" fg:w="35"/><text x="32.3661%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (31 samples, 0.13%)</title><rect x="32.1331%" y="2293" width="0.1321%" height="15" fill="rgb(252,227,26)" fg:x="7541" fg:w="31"/><text x="32.3831%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.13%)</title><rect x="32.1331%" y="2277" width="0.1321%" height="15" fill="rgb(250,228,18)" fg:x="7541" fg:w="31"/><text x="32.3831%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31 samples, 0.13%)</title><rect x="32.1331%" y="2261" width="0.1321%" height="15" fill="rgb(222,176,49)" fg:x="7541" fg:w="31"/><text x="32.3831%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="32.2226%" y="2245" width="0.0426%" height="15" fill="rgb(212,89,5)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="32.2226%" y="2229" width="0.0426%" height="15" fill="rgb(211,131,11)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2239.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="32.2226%" y="2213" width="0.0426%" height="15" fill="rgb(226,185,34)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="32.2226%" y="2197" width="0.0426%" height="15" fill="rgb(239,228,52)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="32.2226%" y="2181" width="0.0426%" height="15" fill="rgb(213,126,26)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="32.2226%" y="2165" width="0.0426%" height="15" fill="rgb(248,59,21)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="32.2226%" y="2149" width="0.0426%" height="15" fill="rgb(207,10,1)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="32.2226%" y="2133" width="0.0426%" height="15" fill="rgb(240,122,43)" fg:x="7562" fg:w="10"/><text x="32.4726%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="32.2439%" y="2117" width="0.0213%" height="15" fill="rgb(250,158,39)" fg:x="7567" fg:w="5"/><text x="32.4939%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="32.2439%" y="2101" width="0.0213%" height="15" fill="rgb(212,108,0)" fg:x="7567" fg:w="5"/><text x="32.4939%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="32.2439%" y="2085" width="0.0213%" height="15" fill="rgb(231,150,38)" fg:x="7567" fg:w="5"/><text x="32.4939%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (41 samples, 0.17%)</title><rect x="32.1161%" y="2533" width="0.1747%" height="15" fill="rgb(249,154,4)" fg:x="7537" fg:w="41"/><text x="32.3661%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (41 samples, 0.17%)</title><rect x="32.1161%" y="2517" width="0.1747%" height="15" fill="rgb(219,46,1)" fg:x="7537" fg:w="41"/><text x="32.3661%" y="2527.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="32.2695%" y="2501" width="0.0213%" height="15" fill="rgb(227,68,4)" fg:x="7573" fg:w="5"/><text x="32.5195%" y="2511.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="32.2695%" y="2485" width="0.0213%" height="15" fill="rgb(254,224,51)" fg:x="7573" fg:w="5"/><text x="32.5195%" y="2495.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="32.2695%" y="2469" width="0.0213%" height="15" fill="rgb(220,89,20)" fg:x="7573" fg:w="5"/><text x="32.5195%" y="2479.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="32.2695%" y="2453" width="0.0213%" height="15" fill="rgb(245,148,36)" fg:x="7573" fg:w="5"/><text x="32.5195%" y="2463.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="32.2695%" y="2437" width="0.0213%" height="15" fill="rgb(216,50,30)" fg:x="7573" fg:w="5"/><text x="32.5195%" y="2447.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="32.2737%" y="2421" width="0.0170%" height="15" fill="rgb(254,186,48)" fg:x="7574" fg:w="4"/><text x="32.5237%" y="2431.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="32.2737%" y="2405" width="0.0170%" height="15" fill="rgb(237,78,54)" fg:x="7574" fg:w="4"/><text x="32.5237%" y="2415.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="32.2908%" y="2229" width="0.0256%" height="15" fill="rgb(208,122,28)" fg:x="7578" fg:w="6"/><text x="32.5408%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="32.3036%" y="2213" width="0.0128%" height="15" fill="rgb(237,71,0)" fg:x="7581" fg:w="3"/><text x="32.5536%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="32.3036%" y="2197" width="0.0128%" height="15" fill="rgb(241,168,21)" fg:x="7581" fg:w="3"/><text x="32.5536%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="32.2908%" y="2405" width="0.0298%" height="15" fill="rgb(252,223,14)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="32.2908%" y="2389" width="0.0298%" height="15" fill="rgb(228,172,14)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="32.2908%" y="2373" width="0.0298%" height="15" fill="rgb(236,44,24)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="32.2908%" y="2357" width="0.0298%" height="15" fill="rgb(211,153,1)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="32.2908%" y="2341" width="0.0298%" height="15" fill="rgb(242,70,19)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="32.2908%" y="2325" width="0.0298%" height="15" fill="rgb(237,172,13)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="32.2908%" y="2309" width="0.0298%" height="15" fill="rgb(215,222,51)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="32.2908%" y="2293" width="0.0298%" height="15" fill="rgb(227,136,3)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="32.2908%" y="2277" width="0.0298%" height="15" fill="rgb(234,107,46)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="32.2908%" y="2261" width="0.0298%" height="15" fill="rgb(224,56,35)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="32.2908%" y="2245" width="0.0298%" height="15" fill="rgb(253,132,31)" fg:x="7578" fg:w="7"/><text x="32.5408%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="32.3206%" y="2101" width="0.0128%" height="15" fill="rgb(249,97,5)" fg:x="7585" fg:w="3"/><text x="32.5706%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="32.3206%" y="2085" width="0.0128%" height="15" fill="rgb(225,135,20)" fg:x="7585" fg:w="3"/><text x="32.5706%" y="2095.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="32.3206%" y="2069" width="0.0128%" height="15" fill="rgb(220,48,27)" fg:x="7585" fg:w="3"/><text x="32.5706%" y="2079.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="32.3206%" y="2053" width="0.0128%" height="15" fill="rgb(214,91,28)" fg:x="7585" fg:w="3"/><text x="32.5706%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="32.3206%" y="2293" width="0.0256%" height="15" fill="rgb(232,51,16)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="32.3206%" y="2277" width="0.0256%" height="15" fill="rgb(254,38,15)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="32.3206%" y="2261" width="0.0256%" height="15" fill="rgb(243,186,4)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="32.3206%" y="2245" width="0.0256%" height="15" fill="rgb(222,210,21)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="32.3206%" y="2229" width="0.0256%" height="15" fill="rgb(228,132,3)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="32.3206%" y="2213" width="0.0256%" height="15" fill="rgb(253,188,15)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="32.3206%" y="2197" width="0.0256%" height="15" fill="rgb(216,192,40)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="32.3206%" y="2181" width="0.0256%" height="15" fill="rgb(230,126,2)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="32.3206%" y="2165" width="0.0256%" height="15" fill="rgb(246,23,15)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="32.3206%" y="2149" width="0.0256%" height="15" fill="rgb(250,224,8)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="32.3206%" y="2133" width="0.0256%" height="15" fill="rgb(247,226,46)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="32.3206%" y="2117" width="0.0256%" height="15" fill="rgb(226,67,43)" fg:x="7585" fg:w="6"/><text x="32.5706%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="32.3334%" y="2101" width="0.0128%" height="15" fill="rgb(239,37,7)" fg:x="7588" fg:w="3"/><text x="32.5834%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="32.3334%" y="2085" width="0.0128%" height="15" fill="rgb(239,125,3)" fg:x="7588" fg:w="3"/><text x="32.5834%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="32.3504%" y="1813" width="0.0170%" height="15" fill="rgb(235,59,37)" fg:x="7592" fg:w="4"/><text x="32.6004%" y="1823.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="32.3504%" y="1797" width="0.0170%" height="15" fill="rgb(241,214,47)" fg:x="7592" fg:w="4"/><text x="32.6004%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="32.3462%" y="2005" width="0.0256%" height="15" fill="rgb(214,114,51)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="32.3462%" y="1989" width="0.0256%" height="15" fill="rgb(221,180,19)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="32.3462%" y="1973" width="0.0256%" height="15" fill="rgb(223,66,32)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="32.3462%" y="1957" width="0.0256%" height="15" fill="rgb(218,134,38)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="32.3462%" y="1941" width="0.0256%" height="15" fill="rgb(250,83,11)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="32.3462%" y="1925" width="0.0256%" height="15" fill="rgb(239,137,18)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="32.3462%" y="1909" width="0.0256%" height="15" fill="rgb(242,185,53)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="32.3462%" y="1893" width="0.0256%" height="15" fill="rgb(244,165,31)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="32.3462%" y="1877" width="0.0256%" height="15" fill="rgb(223,129,30)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="32.3462%" y="1861" width="0.0256%" height="15" fill="rgb(240,148,35)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="32.3462%" y="1845" width="0.0256%" height="15" fill="rgb(231,3,24)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="32.3462%" y="1829" width="0.0256%" height="15" fill="rgb(227,197,42)" fg:x="7591" fg:w="6"/><text x="32.5962%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="32.3803%" y="1957" width="0.0256%" height="15" fill="rgb(251,41,31)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="32.3803%" y="1941" width="0.0256%" height="15" fill="rgb(207,92,5)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="32.3803%" y="1925" width="0.0256%" height="15" fill="rgb(236,62,31)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="32.3803%" y="1909" width="0.0256%" height="15" fill="rgb(248,218,41)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="32.3803%" y="1893" width="0.0256%" height="15" fill="rgb(250,128,19)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="32.3803%" y="1877" width="0.0256%" height="15" fill="rgb(239,216,33)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="32.3803%" y="1861" width="0.0256%" height="15" fill="rgb(216,44,26)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="32.3803%" y="1845" width="0.0256%" height="15" fill="rgb(207,69,29)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1855.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="32.3803%" y="1829" width="0.0256%" height="15" fill="rgb(246,182,38)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="32.3803%" y="1813" width="0.0256%" height="15" fill="rgb(252,219,28)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="32.3803%" y="1797" width="0.0256%" height="15" fill="rgb(209,164,16)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="32.3803%" y="1781" width="0.0256%" height="15" fill="rgb(208,49,15)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="32.3803%" y="1765" width="0.0256%" height="15" fill="rgb(235,42,45)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="32.3803%" y="1749" width="0.0256%" height="15" fill="rgb(246,198,8)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="32.3803%" y="1733" width="0.0256%" height="15" fill="rgb(237,205,33)" fg:x="7599" fg:w="6"/><text x="32.6303%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.3888%" y="1717" width="0.0170%" height="15" fill="rgb(249,116,21)" fg:x="7601" fg:w="4"/><text x="32.6388%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.3888%" y="1701" width="0.0170%" height="15" fill="rgb(230,35,49)" fg:x="7601" fg:w="4"/><text x="32.6388%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.3888%" y="1685" width="0.0170%" height="15" fill="rgb(207,8,52)" fg:x="7601" fg:w="4"/><text x="32.6388%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="32.4058%" y="1829" width="0.0128%" height="15" fill="rgb(218,173,0)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="32.4058%" y="1813" width="0.0128%" height="15" fill="rgb(248,106,34)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="32.4058%" y="1797" width="0.0128%" height="15" fill="rgb(232,50,11)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="32.4058%" y="1781" width="0.0128%" height="15" fill="rgb(213,142,18)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="32.4058%" y="1765" width="0.0128%" height="15" fill="rgb(246,117,38)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="32.4058%" y="1749" width="0.0128%" height="15" fill="rgb(218,133,54)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="32.4058%" y="1733" width="0.0128%" height="15" fill="rgb(216,154,35)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4058%" y="1717" width="0.0128%" height="15" fill="rgb(219,175,36)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="32.4058%" y="1701" width="0.0128%" height="15" fill="rgb(224,0,16)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="32.4058%" y="1685" width="0.0128%" height="15" fill="rgb(221,186,40)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4058%" y="1669" width="0.0128%" height="15" fill="rgb(254,0,31)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="32.4058%" y="1653" width="0.0128%" height="15" fill="rgb(206,138,52)" fg:x="7605" fg:w="3"/><text x="32.6558%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="32.4314%" y="1205" width="0.0170%" height="15" fill="rgb(229,99,30)" fg:x="7611" fg:w="4"/><text x="32.6814%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4314%" y="1189" width="0.0170%" height="15" fill="rgb(205,131,29)" fg:x="7611" fg:w="4"/><text x="32.6814%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4314%" y="1173" width="0.0170%" height="15" fill="rgb(232,114,46)" fg:x="7611" fg:w="4"/><text x="32.6814%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.4314%" y="1157" width="0.0170%" height="15" fill="rgb(206,181,31)" fg:x="7611" fg:w="4"/><text x="32.6814%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.4314%" y="1141" width="0.0170%" height="15" fill="rgb(251,142,12)" fg:x="7611" fg:w="4"/><text x="32.6814%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.4314%" y="1125" width="0.0170%" height="15" fill="rgb(252,128,47)" fg:x="7611" fg:w="4"/><text x="32.6814%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4314%" y="1109" width="0.0170%" height="15" fill="rgb(208,51,33)" fg:x="7611" fg:w="4"/><text x="32.6814%" y="1119.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="32.4314%" y="1493" width="0.0298%" height="15" fill="rgb(240,36,11)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="32.4314%" y="1477" width="0.0298%" height="15" fill="rgb(245,160,28)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="32.4314%" y="1461" width="0.0298%" height="15" fill="rgb(230,37,49)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1471.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="32.4314%" y="1445" width="0.0298%" height="15" fill="rgb(227,40,34)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1455.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="32.4314%" y="1429" width="0.0298%" height="15" fill="rgb(253,212,23)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1439.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="32.4314%" y="1413" width="0.0298%" height="15" fill="rgb(230,155,36)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1423.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="32.4314%" y="1397" width="0.0298%" height="15" fill="rgb(221,176,6)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1407.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="32.4314%" y="1381" width="0.0298%" height="15" fill="rgb(207,203,40)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1391.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="32.4314%" y="1365" width="0.0298%" height="15" fill="rgb(215,88,16)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1375.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="32.4314%" y="1349" width="0.0298%" height="15" fill="rgb(233,52,54)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1359.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="32.4314%" y="1333" width="0.0298%" height="15" fill="rgb(205,47,52)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1343.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="32.4314%" y="1317" width="0.0298%" height="15" fill="rgb(218,56,43)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="32.4314%" y="1301" width="0.0298%" height="15" fill="rgb(251,225,48)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="32.4314%" y="1285" width="0.0298%" height="15" fill="rgb(244,56,1)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="32.4314%" y="1269" width="0.0298%" height="15" fill="rgb(215,46,3)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="32.4314%" y="1253" width="0.0298%" height="15" fill="rgb(252,25,51)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="32.4314%" y="1237" width="0.0298%" height="15" fill="rgb(243,86,25)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="32.4314%" y="1221" width="0.0298%" height="15" fill="rgb(223,57,49)" fg:x="7611" fg:w="7"/><text x="32.6814%" y="1231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="32.4484%" y="1205" width="0.0128%" height="15" fill="rgb(226,26,11)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1215.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="32.4484%" y="1189" width="0.0128%" height="15" fill="rgb(233,166,51)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1199.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="32.4484%" y="1173" width="0.0128%" height="15" fill="rgb(232,145,44)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1183.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="32.4484%" y="1157" width="0.0128%" height="15" fill="rgb(246,98,4)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="32.4484%" y="1141" width="0.0128%" height="15" fill="rgb(223,187,1)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4484%" y="1125" width="0.0128%" height="15" fill="rgb(245,183,34)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4484%" y="1109" width="0.0128%" height="15" fill="rgb(223,6,23)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.4484%" y="1093" width="0.0128%" height="15" fill="rgb(226,63,21)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="32.4484%" y="1077" width="0.0128%" height="15" fill="rgb(244,58,43)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="32.4484%" y="1061" width="0.0128%" height="15" fill="rgb(221,65,27)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4484%" y="1045" width="0.0128%" height="15" fill="rgb(231,17,48)" fg:x="7615" fg:w="3"/><text x="32.6984%" y="1055.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="32.4314%" y="1605" width="0.0426%" height="15" fill="rgb(229,198,23)" fg:x="7611" fg:w="10"/><text x="32.6814%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="32.4314%" y="1589" width="0.0426%" height="15" fill="rgb(220,192,38)" fg:x="7611" fg:w="10"/><text x="32.6814%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="32.4314%" y="1573" width="0.0426%" height="15" fill="rgb(224,157,12)" fg:x="7611" fg:w="10"/><text x="32.6814%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="32.4314%" y="1557" width="0.0426%" height="15" fill="rgb(210,74,7)" fg:x="7611" fg:w="10"/><text x="32.6814%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="32.4314%" y="1541" width="0.0426%" height="15" fill="rgb(233,184,31)" fg:x="7611" fg:w="10"/><text x="32.6814%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="32.4314%" y="1525" width="0.0426%" height="15" fill="rgb(246,44,22)" fg:x="7611" fg:w="10"/><text x="32.6814%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="32.4314%" y="1509" width="0.0426%" height="15" fill="rgb(236,102,41)" fg:x="7611" fg:w="10"/><text x="32.6814%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="32.4612%" y="1493" width="0.0128%" height="15" fill="rgb(245,17,40)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="32.4612%" y="1477" width="0.0128%" height="15" fill="rgb(227,165,9)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="32.4612%" y="1461" width="0.0128%" height="15" fill="rgb(220,123,37)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="32.4612%" y="1445" width="0.0128%" height="15" fill="rgb(239,124,16)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="32.4612%" y="1429" width="0.0128%" height="15" fill="rgb(214,215,39)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4612%" y="1413" width="0.0128%" height="15" fill="rgb(224,72,47)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4612%" y="1397" width="0.0128%" height="15" fill="rgb(252,112,7)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.4612%" y="1381" width="0.0128%" height="15" fill="rgb(228,116,35)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="32.4612%" y="1365" width="0.0128%" height="15" fill="rgb(246,125,25)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="32.4612%" y="1349" width="0.0128%" height="15" fill="rgb(230,220,33)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="32.4612%" y="1333" width="0.0128%" height="15" fill="rgb(220,48,47)" fg:x="7618" fg:w="3"/><text x="32.7112%" y="1343.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="32.4740%" y="1429" width="0.0170%" height="15" fill="rgb(240,130,32)" fg:x="7621" fg:w="4"/><text x="32.7240%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4740%" y="1413" width="0.0170%" height="15" fill="rgb(252,97,40)" fg:x="7621" fg:w="4"/><text x="32.7240%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4740%" y="1397" width="0.0170%" height="15" fill="rgb(211,117,15)" fg:x="7621" fg:w="4"/><text x="32.7240%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.4740%" y="1381" width="0.0170%" height="15" fill="rgb(223,47,44)" fg:x="7621" fg:w="4"/><text x="32.7240%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.4740%" y="1365" width="0.0170%" height="15" fill="rgb(239,53,20)" fg:x="7621" fg:w="4"/><text x="32.7240%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.4740%" y="1349" width="0.0170%" height="15" fill="rgb(242,71,22)" fg:x="7621" fg:w="4"/><text x="32.7240%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4740%" y="1333" width="0.0170%" height="15" fill="rgb(244,146,41)" fg:x="7621" fg:w="4"/><text x="32.7240%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (38 samples, 0.16%)</title><rect x="32.3462%" y="2245" width="0.1619%" height="15" fill="rgb(206,133,42)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (38 samples, 0.16%)</title><rect x="32.3462%" y="2229" width="0.1619%" height="15" fill="rgb(220,206,16)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (38 samples, 0.16%)</title><rect x="32.3462%" y="2213" width="0.1619%" height="15" fill="rgb(234,5,52)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (38 samples, 0.16%)</title><rect x="32.3462%" y="2197" width="0.1619%" height="15" fill="rgb(206,81,46)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (38 samples, 0.16%)</title><rect x="32.3462%" y="2181" width="0.1619%" height="15" fill="rgb(245,111,47)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (38 samples, 0.16%)</title><rect x="32.3462%" y="2165" width="0.1619%" height="15" fill="rgb(227,198,45)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (38 samples, 0.16%)</title><rect x="32.3462%" y="2149" width="0.1619%" height="15" fill="rgb(223,141,47)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (38 samples, 0.16%)</title><rect x="32.3462%" y="2133" width="0.1619%" height="15" fill="rgb(234,124,3)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2143.50"></text></g><g><title>std::panicking::try (38 samples, 0.16%)</title><rect x="32.3462%" y="2117" width="0.1619%" height="15" fill="rgb(218,189,15)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (38 samples, 0.16%)</title><rect x="32.3462%" y="2101" width="0.1619%" height="15" fill="rgb(253,91,25)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (38 samples, 0.16%)</title><rect x="32.3462%" y="2085" width="0.1619%" height="15" fill="rgb(243,103,39)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (38 samples, 0.16%)</title><rect x="32.3462%" y="2069" width="0.1619%" height="15" fill="rgb(252,94,6)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (38 samples, 0.16%)</title><rect x="32.3462%" y="2053" width="0.1619%" height="15" fill="rgb(236,153,18)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (38 samples, 0.16%)</title><rect x="32.3462%" y="2037" width="0.1619%" height="15" fill="rgb(218,227,22)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.16%)</title><rect x="32.3462%" y="2021" width="0.1619%" height="15" fill="rgb(209,53,33)" fg:x="7591" fg:w="38"/><text x="32.5962%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="32.3717%" y="2005" width="0.1364%" height="15" fill="rgb(252,183,3)" fg:x="7597" fg:w="32"/><text x="32.6217%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="32.3717%" y="1989" width="0.1364%" height="15" fill="rgb(249,138,54)" fg:x="7597" fg:w="32"/><text x="32.6217%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="32.3717%" y="1973" width="0.1364%" height="15" fill="rgb(226,39,3)" fg:x="7597" fg:w="32"/><text x="32.6217%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (24 samples, 0.10%)</title><rect x="32.4058%" y="1957" width="0.1023%" height="15" fill="rgb(237,129,38)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (24 samples, 0.10%)</title><rect x="32.4058%" y="1941" width="0.1023%" height="15" fill="rgb(218,214,54)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1951.50"></text></g><g><title>std::panicking::try (24 samples, 0.10%)</title><rect x="32.4058%" y="1925" width="0.1023%" height="15" fill="rgb(228,112,8)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (24 samples, 0.10%)</title><rect x="32.4058%" y="1909" width="0.1023%" height="15" fill="rgb(219,128,11)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (24 samples, 0.10%)</title><rect x="32.4058%" y="1893" width="0.1023%" height="15" fill="rgb(240,39,37)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (24 samples, 0.10%)</title><rect x="32.4058%" y="1877" width="0.1023%" height="15" fill="rgb(215,199,42)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="32.4058%" y="1861" width="0.1023%" height="15" fill="rgb(248,51,13)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="32.4058%" y="1845" width="0.1023%" height="15" fill="rgb(225,196,0)" fg:x="7605" fg:w="24"/><text x="32.6558%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="32.4186%" y="1829" width="0.0895%" height="15" fill="rgb(221,31,53)" fg:x="7608" fg:w="21"/><text x="32.6686%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="32.4186%" y="1813" width="0.0895%" height="15" fill="rgb(211,79,37)" fg:x="7608" fg:w="21"/><text x="32.6686%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="32.4186%" y="1797" width="0.0895%" height="15" fill="rgb(227,118,20)" fg:x="7608" fg:w="21"/><text x="32.6686%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="32.4271%" y="1781" width="0.0810%" height="15" fill="rgb(225,142,40)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="32.4271%" y="1765" width="0.0810%" height="15" fill="rgb(208,183,34)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1775.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="32.4271%" y="1749" width="0.0810%" height="15" fill="rgb(209,112,52)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="32.4271%" y="1733" width="0.0810%" height="15" fill="rgb(236,9,32)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="32.4271%" y="1717" width="0.0810%" height="15" fill="rgb(208,222,9)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="32.4271%" y="1701" width="0.0810%" height="15" fill="rgb(214,142,24)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="32.4271%" y="1685" width="0.0810%" height="15" fill="rgb(244,48,51)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="32.4271%" y="1669" width="0.0810%" height="15" fill="rgb(253,171,44)" fg:x="7610" fg:w="19"/><text x="32.6771%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="32.4314%" y="1653" width="0.0767%" height="15" fill="rgb(221,85,21)" fg:x="7611" fg:w="18"/><text x="32.6814%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="32.4314%" y="1637" width="0.0767%" height="15" fill="rgb(245,40,38)" fg:x="7611" fg:w="18"/><text x="32.6814%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="32.4314%" y="1621" width="0.0767%" height="15" fill="rgb(220,135,37)" fg:x="7611" fg:w="18"/><text x="32.6814%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="32.4740%" y="1605" width="0.0341%" height="15" fill="rgb(249,62,46)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="32.4740%" y="1589" width="0.0341%" height="15" fill="rgb(232,81,15)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1599.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="32.4740%" y="1573" width="0.0341%" height="15" fill="rgb(244,179,28)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="32.4740%" y="1557" width="0.0341%" height="15" fill="rgb(220,4,32)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="32.4740%" y="1541" width="0.0341%" height="15" fill="rgb(214,116,42)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="32.4740%" y="1525" width="0.0341%" height="15" fill="rgb(226,94,31)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="32.4740%" y="1509" width="0.0341%" height="15" fill="rgb(241,172,26)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="32.4740%" y="1493" width="0.0341%" height="15" fill="rgb(206,38,39)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="32.4740%" y="1477" width="0.0341%" height="15" fill="rgb(210,139,19)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="32.4740%" y="1461" width="0.0341%" height="15" fill="rgb(220,10,22)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="32.4740%" y="1445" width="0.0341%" height="15" fill="rgb(225,218,36)" fg:x="7621" fg:w="8"/><text x="32.7240%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="32.4911%" y="1429" width="0.0170%" height="15" fill="rgb(244,50,47)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="32.4911%" y="1413" width="0.0170%" height="15" fill="rgb(247,80,2)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1423.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="32.4911%" y="1397" width="0.0170%" height="15" fill="rgb(234,70,38)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="32.4911%" y="1381" width="0.0170%" height="15" fill="rgb(238,170,25)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="32.4911%" y="1365" width="0.0170%" height="15" fill="rgb(252,23,6)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4911%" y="1349" width="0.0170%" height="15" fill="rgb(209,98,49)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4911%" y="1333" width="0.0170%" height="15" fill="rgb(213,29,25)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="32.4911%" y="1317" width="0.0170%" height="15" fill="rgb(235,71,32)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.4911%" y="1301" width="0.0170%" height="15" fill="rgb(227,75,49)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.4911%" y="1285" width="0.0170%" height="15" fill="rgb(220,19,24)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.4911%" y="1269" width="0.0170%" height="15" fill="rgb(249,67,15)" fg:x="7625" fg:w="4"/><text x="32.7411%" y="1279.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="32.5166%" y="2069" width="0.0256%" height="15" fill="rgb(233,197,44)" fg:x="7631" fg:w="6"/><text x="32.7666%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="32.5166%" y="2053" width="0.0256%" height="15" fill="rgb(245,206,23)" fg:x="7631" fg:w="6"/><text x="32.7666%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="32.5166%" y="2037" width="0.0256%" height="15" fill="rgb(205,164,14)" fg:x="7631" fg:w="6"/><text x="32.7666%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="32.5166%" y="2021" width="0.0256%" height="15" fill="rgb(209,57,33)" fg:x="7631" fg:w="6"/><text x="32.7666%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.5251%" y="2005" width="0.0170%" height="15" fill="rgb(237,209,41)" fg:x="7633" fg:w="4"/><text x="32.7751%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.5251%" y="1989" width="0.0170%" height="15" fill="rgb(252,93,6)" fg:x="7633" fg:w="4"/><text x="32.7751%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.5251%" y="1973" width="0.0170%" height="15" fill="rgb(218,214,32)" fg:x="7633" fg:w="4"/><text x="32.7751%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (58 samples, 0.25%)</title><rect x="32.3206%" y="2357" width="0.2471%" height="15" fill="rgb(243,144,9)" fg:x="7585" fg:w="58"/><text x="32.5706%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (58 samples, 0.25%)</title><rect x="32.3206%" y="2341" width="0.2471%" height="15" fill="rgb(254,62,38)" fg:x="7585" fg:w="58"/><text x="32.5706%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (58 samples, 0.25%)</title><rect x="32.3206%" y="2325" width="0.2471%" height="15" fill="rgb(247,146,11)" fg:x="7585" fg:w="58"/><text x="32.5706%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.25%)</title><rect x="32.3206%" y="2309" width="0.2471%" height="15" fill="rgb(213,96,14)" fg:x="7585" fg:w="58"/><text x="32.5706%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (52 samples, 0.22%)</title><rect x="32.3462%" y="2293" width="0.2216%" height="15" fill="rgb(246,102,11)" fg:x="7591" fg:w="52"/><text x="32.5962%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.22%)</title><rect x="32.3462%" y="2277" width="0.2216%" height="15" fill="rgb(241,182,16)" fg:x="7591" fg:w="52"/><text x="32.5962%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (52 samples, 0.22%)</title><rect x="32.3462%" y="2261" width="0.2216%" height="15" fill="rgb(225,28,43)" fg:x="7591" fg:w="52"/><text x="32.5962%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="32.5081%" y="2245" width="0.0597%" height="15" fill="rgb(247,87,15)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="32.5081%" y="2229" width="0.0597%" height="15" fill="rgb(225,211,30)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2239.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="32.5081%" y="2213" width="0.0597%" height="15" fill="rgb(223,111,44)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="32.5081%" y="2197" width="0.0597%" height="15" fill="rgb(225,60,10)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="32.5081%" y="2181" width="0.0597%" height="15" fill="rgb(245,196,31)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="32.5081%" y="2165" width="0.0597%" height="15" fill="rgb(238,71,27)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="32.5081%" y="2149" width="0.0597%" height="15" fill="rgb(212,77,40)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="32.5081%" y="2133" width="0.0597%" height="15" fill="rgb(242,14,34)" fg:x="7629" fg:w="14"/><text x="32.7581%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="32.5166%" y="2117" width="0.0511%" height="15" fill="rgb(227,221,15)" fg:x="7631" fg:w="12"/><text x="32.7666%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="32.5166%" y="2101" width="0.0511%" height="15" fill="rgb(230,80,41)" fg:x="7631" fg:w="12"/><text x="32.7666%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="32.5166%" y="2085" width="0.0511%" height="15" fill="rgb(221,65,43)" fg:x="7631" fg:w="12"/><text x="32.7666%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="32.5422%" y="2069" width="0.0256%" height="15" fill="rgb(250,139,15)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="32.5422%" y="2053" width="0.0256%" height="15" fill="rgb(236,101,33)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="2063.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="32.5422%" y="2037" width="0.0256%" height="15" fill="rgb(240,185,7)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="32.5422%" y="2021" width="0.0256%" height="15" fill="rgb(230,219,29)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="32.5422%" y="2005" width="0.0256%" height="15" fill="rgb(250,208,42)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="32.5422%" y="1989" width="0.0256%" height="15" fill="rgb(231,6,17)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="32.5422%" y="1973" width="0.0256%" height="15" fill="rgb(250,180,47)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="32.5422%" y="1957" width="0.0256%" height="15" fill="rgb(218,156,38)" fg:x="7637" fg:w="6"/><text x="32.7922%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.5507%" y="1941" width="0.0170%" height="15" fill="rgb(207,13,46)" fg:x="7639" fg:w="4"/><text x="32.8007%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.5507%" y="1925" width="0.0170%" height="15" fill="rgb(221,30,24)" fg:x="7639" fg:w="4"/><text x="32.8007%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.5507%" y="1909" width="0.0170%" height="15" fill="rgb(239,110,29)" fg:x="7639" fg:w="4"/><text x="32.8007%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="32.5678%" y="1941" width="0.0170%" height="15" fill="rgb(223,212,28)" fg:x="7643" fg:w="4"/><text x="32.8178%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="32.5678%" y="1925" width="0.0170%" height="15" fill="rgb(206,148,43)" fg:x="7643" fg:w="4"/><text x="32.8178%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="32.5678%" y="1909" width="0.0170%" height="15" fill="rgb(227,139,9)" fg:x="7643" fg:w="4"/><text x="32.8178%" y="1919.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="32.5678%" y="1893" width="0.0170%" height="15" fill="rgb(244,64,31)" fg:x="7643" fg:w="4"/><text x="32.8178%" y="1903.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="32.5720%" y="1877" width="0.0128%" height="15" fill="rgb(219,45,45)" fg:x="7644" fg:w="3"/><text x="32.8220%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="32.5678%" y="2117" width="0.0213%" height="15" fill="rgb(205,112,40)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="32.5678%" y="2101" width="0.0213%" height="15" fill="rgb(207,18,46)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="32.5678%" y="2085" width="0.0213%" height="15" fill="rgb(219,65,15)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="32.5678%" y="2069" width="0.0213%" height="15" fill="rgb(248,191,24)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="32.5678%" y="2053" width="0.0213%" height="15" fill="rgb(251,155,16)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="32.5678%" y="2037" width="0.0213%" height="15" fill="rgb(249,62,38)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="32.5678%" y="2021" width="0.0213%" height="15" fill="rgb(252,214,17)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="32.5678%" y="2005" width="0.0213%" height="15" fill="rgb(246,215,53)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="32.5678%" y="1989" width="0.0213%" height="15" fill="rgb(232,148,8)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="32.5678%" y="1973" width="0.0213%" height="15" fill="rgb(221,119,15)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="32.5678%" y="1957" width="0.0213%" height="15" fill="rgb(239,69,36)" fg:x="7643" fg:w="5"/><text x="32.8178%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="32.5976%" y="2069" width="0.0213%" height="15" fill="rgb(247,164,1)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="32.5976%" y="2053" width="0.0213%" height="15" fill="rgb(216,221,53)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="2063.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="32.5976%" y="2037" width="0.0213%" height="15" fill="rgb(249,57,29)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="2047.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="32.5976%" y="2021" width="0.0213%" height="15" fill="rgb(227,23,6)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="2031.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="32.5976%" y="2005" width="0.0213%" height="15" fill="rgb(213,211,30)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="2015.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="32.5976%" y="1989" width="0.0213%" height="15" fill="rgb(254,202,30)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="1999.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="32.5976%" y="1973" width="0.0213%" height="15" fill="rgb(248,213,0)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="1983.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="32.5976%" y="1957" width="0.0213%" height="15" fill="rgb(248,55,48)" fg:x="7650" fg:w="5"/><text x="32.8476%" y="1967.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="32.6018%" y="1941" width="0.0170%" height="15" fill="rgb(217,221,51)" fg:x="7651" fg:w="4"/><text x="32.8518%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (14 samples, 0.06%)</title><rect x="32.5678%" y="2357" width="0.0597%" height="15" fill="rgb(233,8,16)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="32.5678%" y="2341" width="0.0597%" height="15" fill="rgb(220,23,39)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (14 samples, 0.06%)</title><rect x="32.5678%" y="2325" width="0.0597%" height="15" fill="rgb(236,20,54)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (14 samples, 0.06%)</title><rect x="32.5678%" y="2309" width="0.0597%" height="15" fill="rgb(213,22,0)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (14 samples, 0.06%)</title><rect x="32.5678%" y="2293" width="0.0597%" height="15" fill="rgb(226,144,21)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (14 samples, 0.06%)</title><rect x="32.5678%" y="2277" width="0.0597%" height="15" fill="rgb(240,32,26)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="32.5678%" y="2261" width="0.0597%" height="15" fill="rgb(252,225,52)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="32.5678%" y="2245" width="0.0597%" height="15" fill="rgb(227,113,38)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2255.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="32.5678%" y="2229" width="0.0597%" height="15" fill="rgb(246,146,48)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="32.5678%" y="2213" width="0.0597%" height="15" fill="rgb(229,83,50)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="32.5678%" y="2197" width="0.0597%" height="15" fill="rgb(248,146,37)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (14 samples, 0.06%)</title><rect x="32.5678%" y="2181" width="0.0597%" height="15" fill="rgb(230,102,37)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="32.5678%" y="2165" width="0.0597%" height="15" fill="rgb(226,129,21)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="32.5678%" y="2149" width="0.0597%" height="15" fill="rgb(241,215,13)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="32.5678%" y="2133" width="0.0597%" height="15" fill="rgb(217,128,6)" fg:x="7643" fg:w="14"/><text x="32.8178%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="32.5891%" y="2117" width="0.0384%" height="15" fill="rgb(248,48,54)" fg:x="7648" fg:w="9"/><text x="32.8391%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="32.5891%" y="2101" width="0.0384%" height="15" fill="rgb(219,83,38)" fg:x="7648" fg:w="9"/><text x="32.8391%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="32.5891%" y="2085" width="0.0384%" height="15" fill="rgb(252,210,52)" fg:x="7648" fg:w="9"/><text x="32.8391%" y="2095.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="32.6274%" y="2053" width="0.0213%" height="15" fill="rgb(221,200,4)" fg:x="7657" fg:w="5"/><text x="32.8774%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="32.6317%" y="2037" width="0.0170%" height="15" fill="rgb(216,58,11)" fg:x="7658" fg:w="4"/><text x="32.8817%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="32.6317%" y="2021" width="0.0170%" height="15" fill="rgb(213,152,6)" fg:x="7658" fg:w="4"/><text x="32.8817%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="32.6274%" y="2229" width="0.0256%" height="15" fill="rgb(209,210,52)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="32.6274%" y="2213" width="0.0256%" height="15" fill="rgb(216,26,42)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="32.6274%" y="2197" width="0.0256%" height="15" fill="rgb(229,8,52)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="32.6274%" y="2181" width="0.0256%" height="15" fill="rgb(234,11,12)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="32.6274%" y="2165" width="0.0256%" height="15" fill="rgb(222,132,34)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="32.6274%" y="2149" width="0.0256%" height="15" fill="rgb(246,51,18)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="32.6274%" y="2133" width="0.0256%" height="15" fill="rgb(234,40,7)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="32.6274%" y="2117" width="0.0256%" height="15" fill="rgb(240,11,8)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="32.6274%" y="2101" width="0.0256%" height="15" fill="rgb(218,222,21)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="32.6274%" y="2085" width="0.0256%" height="15" fill="rgb(238,59,21)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="32.6274%" y="2069" width="0.0256%" height="15" fill="rgb(252,128,29)" fg:x="7657" fg:w="6"/><text x="32.8774%" y="2079.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="32.6530%" y="1925" width="0.0128%" height="15" fill="rgb(245,61,34)" fg:x="7663" fg:w="3"/><text x="32.9030%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="32.6530%" y="1909" width="0.0128%" height="15" fill="rgb(246,36,52)" fg:x="7663" fg:w="3"/><text x="32.9030%" y="1919.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="32.6530%" y="1893" width="0.0128%" height="15" fill="rgb(243,48,49)" fg:x="7663" fg:w="3"/><text x="32.9030%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="32.6530%" y="2117" width="0.0256%" height="15" fill="rgb(252,114,15)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="32.6530%" y="2101" width="0.0256%" height="15" fill="rgb(243,228,39)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="32.6530%" y="2085" width="0.0256%" height="15" fill="rgb(205,143,2)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="32.6530%" y="2069" width="0.0256%" height="15" fill="rgb(224,122,19)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="32.6530%" y="2053" width="0.0256%" height="15" fill="rgb(250,66,51)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="32.6530%" y="2037" width="0.0256%" height="15" fill="rgb(224,134,48)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="32.6530%" y="2021" width="0.0256%" height="15" fill="rgb(219,137,43)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="32.6530%" y="2005" width="0.0256%" height="15" fill="rgb(207,44,47)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="32.6530%" y="1989" width="0.0256%" height="15" fill="rgb(245,216,11)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="32.6530%" y="1973" width="0.0256%" height="15" fill="rgb(236,168,30)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="32.6530%" y="1957" width="0.0256%" height="15" fill="rgb(249,110,10)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="32.6530%" y="1941" width="0.0256%" height="15" fill="rgb(226,10,48)" fg:x="7663" fg:w="6"/><text x="32.9030%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="32.6658%" y="1925" width="0.0128%" height="15" fill="rgb(243,14,47)" fg:x="7666" fg:w="3"/><text x="32.9158%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="32.6658%" y="1909" width="0.0128%" height="15" fill="rgb(208,184,14)" fg:x="7666" fg:w="3"/><text x="32.9158%" y="1919.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="32.6785%" y="2069" width="0.0213%" height="15" fill="rgb(236,198,54)" fg:x="7669" fg:w="5"/><text x="32.9285%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="32.6785%" y="2053" width="0.0213%" height="15" fill="rgb(241,186,5)" fg:x="7669" fg:w="5"/><text x="32.9285%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="32.6785%" y="2037" width="0.0213%" height="15" fill="rgb(237,191,37)" fg:x="7669" fg:w="5"/><text x="32.9285%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="32.6785%" y="2021" width="0.0213%" height="15" fill="rgb(216,223,24)" fg:x="7669" fg:w="5"/><text x="32.9285%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="32.6871%" y="2005" width="0.0128%" height="15" fill="rgb(210,29,29)" fg:x="7671" fg:w="3"/><text x="32.9371%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="32.6871%" y="1989" width="0.0128%" height="15" fill="rgb(243,36,45)" fg:x="7671" fg:w="3"/><text x="32.9371%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="32.6871%" y="1973" width="0.0128%" height="15" fill="rgb(217,109,6)" fg:x="7671" fg:w="3"/><text x="32.9371%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (17 samples, 0.07%)</title><rect x="32.6530%" y="2181" width="0.0724%" height="15" fill="rgb(240,106,11)" fg:x="7663" fg:w="17"/><text x="32.9030%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="32.6530%" y="2165" width="0.0724%" height="15" fill="rgb(230,187,12)" fg:x="7663" fg:w="17"/><text x="32.9030%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="32.6530%" y="2149" width="0.0724%" height="15" fill="rgb(242,88,45)" fg:x="7663" fg:w="17"/><text x="32.9030%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="32.6530%" y="2133" width="0.0724%" height="15" fill="rgb(240,181,21)" fg:x="7663" fg:w="17"/><text x="32.9030%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="32.6785%" y="2117" width="0.0469%" height="15" fill="rgb(252,126,44)" fg:x="7669" fg:w="11"/><text x="32.9285%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="32.6785%" y="2101" width="0.0469%" height="15" fill="rgb(230,157,48)" fg:x="7669" fg:w="11"/><text x="32.9285%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="32.6785%" y="2085" width="0.0469%" height="15" fill="rgb(224,15,2)" fg:x="7669" fg:w="11"/><text x="32.9285%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="32.6998%" y="2069" width="0.0256%" height="15" fill="rgb(215,1,6)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="32.6998%" y="2053" width="0.0256%" height="15" fill="rgb(210,225,13)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="2063.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="32.6998%" y="2037" width="0.0256%" height="15" fill="rgb(214,25,30)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="32.6998%" y="2021" width="0.0256%" height="15" fill="rgb(254,43,34)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="32.6998%" y="2005" width="0.0256%" height="15" fill="rgb(210,6,40)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="32.6998%" y="1989" width="0.0256%" height="15" fill="rgb(251,76,23)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="32.6998%" y="1973" width="0.0256%" height="15" fill="rgb(214,7,14)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="32.6998%" y="1957" width="0.0256%" height="15" fill="rgb(227,100,33)" fg:x="7674" fg:w="6"/><text x="32.9498%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.7084%" y="1941" width="0.0170%" height="15" fill="rgb(211,49,7)" fg:x="7676" fg:w="4"/><text x="32.9584%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.7084%" y="1925" width="0.0170%" height="15" fill="rgb(228,223,1)" fg:x="7676" fg:w="4"/><text x="32.9584%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.7084%" y="1909" width="0.0170%" height="15" fill="rgb(245,92,22)" fg:x="7676" fg:w="4"/><text x="32.9584%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="32.7254%" y="2053" width="0.0170%" height="15" fill="rgb(232,221,10)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="32.7254%" y="2037" width="0.0170%" height="15" fill="rgb(252,175,23)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="32.7254%" y="2021" width="0.0170%" height="15" fill="rgb(234,229,25)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="32.7254%" y="2005" width="0.0170%" height="15" fill="rgb(254,127,20)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="32.7254%" y="1989" width="0.0170%" height="15" fill="rgb(211,151,37)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="32.7254%" y="1973" width="0.0170%" height="15" fill="rgb(226,185,3)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="32.7254%" y="1957" width="0.0170%" height="15" fill="rgb(223,38,29)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="32.7254%" y="1941" width="0.0170%" height="15" fill="rgb(206,134,22)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="32.7254%" y="1925" width="0.0170%" height="15" fill="rgb(243,211,4)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="32.7254%" y="1909" width="0.0170%" height="15" fill="rgb(244,214,18)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="32.7254%" y="1893" width="0.0170%" height="15" fill="rgb(208,165,52)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="32.7254%" y="1877" width="0.0170%" height="15" fill="rgb(245,165,39)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="32.7254%" y="1861" width="0.0170%" height="15" fill="rgb(250,46,43)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1871.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="32.7254%" y="1845" width="0.0170%" height="15" fill="rgb(242,86,47)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1855.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="32.7254%" y="1829" width="0.0170%" height="15" fill="rgb(232,173,5)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1839.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="32.7254%" y="1813" width="0.0170%" height="15" fill="rgb(208,117,14)" fg:x="7680" fg:w="4"/><text x="32.9754%" y="1823.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="32.7425%" y="2005" width="0.0256%" height="15" fill="rgb(205,144,47)" fg:x="7684" fg:w="6"/><text x="32.9925%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="32.7425%" y="1989" width="0.0256%" height="15" fill="rgb(228,62,6)" fg:x="7684" fg:w="6"/><text x="32.9925%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="32.7425%" y="1973" width="0.0256%" height="15" fill="rgb(238,32,51)" fg:x="7684" fg:w="6"/><text x="32.9925%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="32.7425%" y="1957" width="0.0256%" height="15" fill="rgb(251,211,21)" fg:x="7684" fg:w="6"/><text x="32.9925%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="32.7510%" y="1941" width="0.0170%" height="15" fill="rgb(244,43,23)" fg:x="7686" fg:w="4"/><text x="33.0010%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="32.7510%" y="1925" width="0.0170%" height="15" fill="rgb(219,48,27)" fg:x="7686" fg:w="4"/><text x="33.0010%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="32.7510%" y="1909" width="0.0170%" height="15" fill="rgb(251,72,17)" fg:x="7686" fg:w="4"/><text x="33.0010%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (209 samples, 0.89%)</title><rect x="31.8902%" y="2821" width="0.8906%" height="15" fill="rgb(214,69,49)" fg:x="7484" fg:w="209"/><text x="32.1402%" y="2831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (209 samples, 0.89%)</title><rect x="31.8902%" y="2805" width="0.8906%" height="15" fill="rgb(242,96,45)" fg:x="7484" fg:w="209"/><text x="32.1402%" y="2815.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (209 samples, 0.89%)</title><rect x="31.8902%" y="2789" width="0.8906%" height="15" fill="rgb(233,20,50)" fg:x="7484" fg:w="209"/><text x="32.1402%" y="2799.50"></text></g><g><title>rayon_core::job::JobRef::execute (209 samples, 0.89%)</title><rect x="31.8902%" y="2773" width="0.8906%" height="15" fill="rgb(247,82,43)" fg:x="7484" fg:w="209"/><text x="32.1402%" y="2783.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (209 samples, 0.89%)</title><rect x="31.8902%" y="2757" width="0.8906%" height="15" fill="rgb(210,97,3)" fg:x="7484" fg:w="209"/><text x="32.1402%" y="2767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (208 samples, 0.89%)</title><rect x="31.8945%" y="2741" width="0.8863%" height="15" fill="rgb(217,113,26)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (208 samples, 0.89%)</title><rect x="31.8945%" y="2725" width="0.8863%" height="15" fill="rgb(207,166,18)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (208 samples, 0.89%)</title><rect x="31.8945%" y="2709" width="0.8863%" height="15" fill="rgb(205,124,54)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2719.50"></text></g><g><title>std::panicking::try (208 samples, 0.89%)</title><rect x="31.8945%" y="2693" width="0.8863%" height="15" fill="rgb(211,140,29)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (208 samples, 0.89%)</title><rect x="31.8945%" y="2677" width="0.8863%" height="15" fill="rgb(228,83,33)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (208 samples, 0.89%)</title><rect x="31.8945%" y="2661" width="0.8863%" height="15" fill="rgb(225,217,40)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2671.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (208 samples, 0.89%)</title><rect x="31.8945%" y="2645" width="0.8863%" height="15" fill="rgb(221,229,30)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (208 samples, 0.89%)</title><rect x="31.8945%" y="2629" width="0.8863%" height="15" fill="rgb(210,1,48)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (208 samples, 0.89%)</title><rect x="31.8945%" y="2613" width="0.8863%" height="15" fill="rgb(205,53,50)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (208 samples, 0.89%)</title><rect x="31.8945%" y="2597" width="0.8863%" height="15" fill="rgb(211,25,54)" fg:x="7485" fg:w="208"/><text x="32.1445%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (194 samples, 0.83%)</title><rect x="31.9542%" y="2581" width="0.8267%" height="15" fill="rgb(205,28,13)" fg:x="7499" fg:w="194"/><text x="32.2042%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (194 samples, 0.83%)</title><rect x="31.9542%" y="2565" width="0.8267%" height="15" fill="rgb(214,37,48)" fg:x="7499" fg:w="194"/><text x="32.2042%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (194 samples, 0.83%)</title><rect x="31.9542%" y="2549" width="0.8267%" height="15" fill="rgb(226,141,8)" fg:x="7499" fg:w="194"/><text x="32.2042%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (115 samples, 0.49%)</title><rect x="32.2908%" y="2533" width="0.4900%" height="15" fill="rgb(206,200,0)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (115 samples, 0.49%)</title><rect x="32.2908%" y="2517" width="0.4900%" height="15" fill="rgb(238,152,34)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2527.50"></text></g><g><title>std::panicking::try (115 samples, 0.49%)</title><rect x="32.2908%" y="2501" width="0.4900%" height="15" fill="rgb(216,72,48)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (115 samples, 0.49%)</title><rect x="32.2908%" y="2485" width="0.4900%" height="15" fill="rgb(246,48,2)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (115 samples, 0.49%)</title><rect x="32.2908%" y="2469" width="0.4900%" height="15" fill="rgb(249,59,28)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (115 samples, 0.49%)</title><rect x="32.2908%" y="2453" width="0.4900%" height="15" fill="rgb(253,198,14)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (115 samples, 0.49%)</title><rect x="32.2908%" y="2437" width="0.4900%" height="15" fill="rgb(225,162,4)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (115 samples, 0.49%)</title><rect x="32.2908%" y="2421" width="0.4900%" height="15" fill="rgb(231,126,49)" fg:x="7578" fg:w="115"/><text x="32.5408%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (108 samples, 0.46%)</title><rect x="32.3206%" y="2405" width="0.4602%" height="15" fill="rgb(207,41,3)" fg:x="7585" fg:w="108"/><text x="32.5706%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (108 samples, 0.46%)</title><rect x="32.3206%" y="2389" width="0.4602%" height="15" fill="rgb(212,223,36)" fg:x="7585" fg:w="108"/><text x="32.5706%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (108 samples, 0.46%)</title><rect x="32.3206%" y="2373" width="0.4602%" height="15" fill="rgb(214,96,38)" fg:x="7585" fg:w="108"/><text x="32.5706%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (36 samples, 0.15%)</title><rect x="32.6274%" y="2357" width="0.1534%" height="15" fill="rgb(246,104,47)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (36 samples, 0.15%)</title><rect x="32.6274%" y="2341" width="0.1534%" height="15" fill="rgb(227,212,36)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2351.50"></text></g><g><title>std::panicking::try (36 samples, 0.15%)</title><rect x="32.6274%" y="2325" width="0.1534%" height="15" fill="rgb(250,163,41)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (36 samples, 0.15%)</title><rect x="32.6274%" y="2309" width="0.1534%" height="15" fill="rgb(250,130,17)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (36 samples, 0.15%)</title><rect x="32.6274%" y="2293" width="0.1534%" height="15" fill="rgb(206,42,32)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (36 samples, 0.15%)</title><rect x="32.6274%" y="2277" width="0.1534%" height="15" fill="rgb(224,95,7)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (36 samples, 0.15%)</title><rect x="32.6274%" y="2261" width="0.1534%" height="15" fill="rgb(242,96,42)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.15%)</title><rect x="32.6274%" y="2245" width="0.1534%" height="15" fill="rgb(237,194,4)" fg:x="7657" fg:w="36"/><text x="32.8774%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (30 samples, 0.13%)</title><rect x="32.6530%" y="2229" width="0.1278%" height="15" fill="rgb(245,142,29)" fg:x="7663" fg:w="30"/><text x="32.9030%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.13%)</title><rect x="32.6530%" y="2213" width="0.1278%" height="15" fill="rgb(247,66,43)" fg:x="7663" fg:w="30"/><text x="32.9030%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30 samples, 0.13%)</title><rect x="32.6530%" y="2197" width="0.1278%" height="15" fill="rgb(220,153,30)" fg:x="7663" fg:w="30"/><text x="32.9030%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="32.7254%" y="2181" width="0.0554%" height="15" fill="rgb(207,130,54)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="32.7254%" y="2165" width="0.0554%" height="15" fill="rgb(242,49,39)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2175.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="32.7254%" y="2149" width="0.0554%" height="15" fill="rgb(206,227,44)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="32.7254%" y="2133" width="0.0554%" height="15" fill="rgb(236,74,29)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="32.7254%" y="2117" width="0.0554%" height="15" fill="rgb(222,52,23)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="32.7254%" y="2101" width="0.0554%" height="15" fill="rgb(245,65,4)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="32.7254%" y="2085" width="0.0554%" height="15" fill="rgb(205,120,32)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="32.7254%" y="2069" width="0.0554%" height="15" fill="rgb(226,156,21)" fg:x="7680" fg:w="13"/><text x="32.9754%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="32.7425%" y="2053" width="0.0384%" height="15" fill="rgb(240,117,11)" fg:x="7684" fg:w="9"/><text x="32.9925%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="32.7425%" y="2037" width="0.0384%" height="15" fill="rgb(232,214,36)" fg:x="7684" fg:w="9"/><text x="32.9925%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="32.7425%" y="2021" width="0.0384%" height="15" fill="rgb(252,121,45)" fg:x="7684" fg:w="9"/><text x="32.9925%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="32.7680%" y="2005" width="0.0128%" height="15" fill="rgb(250,206,1)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="32.7680%" y="1989" width="0.0128%" height="15" fill="rgb(213,40,16)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1999.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="32.7680%" y="1973" width="0.0128%" height="15" fill="rgb(222,106,3)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="32.7680%" y="1957" width="0.0128%" height="15" fill="rgb(238,140,8)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="32.7680%" y="1941" width="0.0128%" height="15" fill="rgb(217,119,30)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="32.7680%" y="1925" width="0.0128%" height="15" fill="rgb(228,189,17)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="32.7680%" y="1909" width="0.0128%" height="15" fill="rgb(243,94,42)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.7680%" y="1893" width="0.0128%" height="15" fill="rgb(228,105,42)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="32.7680%" y="1877" width="0.0128%" height="15" fill="rgb(233,19,53)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="32.7680%" y="1861" width="0.0128%" height="15" fill="rgb(240,22,26)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="32.7680%" y="1845" width="0.0128%" height="15" fill="rgb(238,97,34)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="32.7680%" y="1829" width="0.0128%" height="15" fill="rgb(210,177,8)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="32.7680%" y="1813" width="0.0128%" height="15" fill="rgb(217,168,6)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="32.7680%" y="1797" width="0.0128%" height="15" fill="rgb(223,34,43)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="32.7680%" y="1781" width="0.0128%" height="15" fill="rgb(252,123,35)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="32.7680%" y="1765" width="0.0128%" height="15" fill="rgb(243,162,1)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="32.7680%" y="1749" width="0.0128%" height="15" fill="rgb(250,83,22)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="32.7680%" y="1733" width="0.0128%" height="15" fill="rgb(247,184,7)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="32.7680%" y="1717" width="0.0128%" height="15" fill="rgb(254,212,7)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="32.7680%" y="1701" width="0.0128%" height="15" fill="rgb(249,198,8)" fg:x="7690" fg:w="3"/><text x="33.0180%" y="1711.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (44 samples, 0.19%)</title><rect x="32.7808%" y="2501" width="0.1875%" height="15" fill="rgb(230,74,12)" fg:x="7693" fg:w="44"/><text x="33.0308%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::exp (44 samples, 0.19%)</title><rect x="32.7808%" y="2485" width="0.1875%" height="15" fill="rgb(253,174,9)" fg:x="7693" fg:w="44"/><text x="33.0308%" y="2495.50"></text></g><g><title>exp (44 samples, 0.19%)</title><rect x="32.7808%" y="2469" width="0.1875%" height="15" fill="rgb(222,191,12)" fg:x="7693" fg:w="44"/><text x="33.0308%" y="2479.50"></text></g><g><title>[libm.so.6] (37 samples, 0.16%)</title><rect x="32.8106%" y="2453" width="0.1577%" height="15" fill="rgb(234,28,43)" fg:x="7700" fg:w="37"/><text x="33.0606%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (20 samples, 0.09%)</title><rect x="32.9683%" y="2501" width="0.0852%" height="15" fill="rgb(232,13,38)" fg:x="7737" fg:w="20"/><text x="33.2183%" y="2511.50"></text></g><g><title>core::f64::<impl f64>::recip (20 samples, 0.09%)</title><rect x="32.9683%" y="2485" width="0.0852%" height="15" fill="rgb(239,101,25)" fg:x="7737" fg:w="20"/><text x="33.2183%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (89 samples, 0.38%)</title><rect x="32.7808%" y="2517" width="0.3792%" height="15" fill="rgb(237,214,49)" fg:x="7693" fg:w="89"/><text x="33.0308%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (25 samples, 0.11%)</title><rect x="33.0535%" y="2501" width="0.1065%" height="15" fill="rgb(212,188,4)" fg:x="7757" fg:w="25"/><text x="33.3035%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::sqrt (25 samples, 0.11%)</title><rect x="33.0535%" y="2485" width="0.1065%" height="15" fill="rgb(208,167,23)" fg:x="7757" fg:w="25"/><text x="33.3035%" y="2495.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (96 samples, 0.41%)</title><rect x="32.7808%" y="2677" width="0.4091%" height="15" fill="rgb(209,179,40)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (96 samples, 0.41%)</title><rect x="32.7808%" y="2661" width="0.4091%" height="15" fill="rgb(233,144,24)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (96 samples, 0.41%)</title><rect x="32.7808%" y="2645" width="0.4091%" height="15" fill="rgb(250,4,25)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2655.50"></text></g><g><title>core::option::Option<T>::map (96 samples, 0.41%)</title><rect x="32.7808%" y="2629" width="0.4091%" height="15" fill="rgb(236,222,29)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (96 samples, 0.41%)</title><rect x="32.7808%" y="2613" width="0.4091%" height="15" fill="rgb(228,152,14)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (96 samples, 0.41%)</title><rect x="32.7808%" y="2597" width="0.4091%" height="15" fill="rgb(240,11,37)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (96 samples, 0.41%)</title><rect x="32.7808%" y="2581" width="0.4091%" height="15" fill="rgb(240,96,5)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2591.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (96 samples, 0.41%)</title><rect x="32.7808%" y="2565" width="0.4091%" height="15" fill="rgb(242,145,4)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2575.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (96 samples, 0.41%)</title><rect x="32.7808%" y="2549" width="0.4091%" height="15" fill="rgb(229,118,33)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (96 samples, 0.41%)</title><rect x="32.7808%" y="2533" width="0.4091%" height="15" fill="rgb(213,82,17)" fg:x="7693" fg:w="96"/><text x="33.0308%" y="2543.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="33.1600%" y="2517" width="0.0298%" height="15" fill="rgb(236,71,53)" fg:x="7782" fg:w="7"/><text x="33.4100%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::partition (5 samples, 0.02%)</title><rect x="33.1984%" y="2453" width="0.0213%" height="15" fill="rgb(227,158,19)" fg:x="7791" fg:w="5"/><text x="33.4484%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (4 samples, 0.02%)</title><rect x="33.2027%" y="2437" width="0.0170%" height="15" fill="rgb(220,52,31)" fg:x="7792" fg:w="4"/><text x="33.4527%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (105 samples, 0.45%)</title><rect x="32.7808%" y="2693" width="0.4474%" height="15" fill="rgb(232,137,27)" fg:x="7693" fg:w="105"/><text x="33.0308%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="33.1899%" y="2677" width="0.0384%" height="15" fill="rgb(208,155,6)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2687.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="33.1899%" y="2661" width="0.0384%" height="15" fill="rgb(253,212,46)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="33.1899%" y="2645" width="0.0384%" height="15" fill="rgb(220,55,4)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (9 samples, 0.04%)</title><rect x="33.1899%" y="2629" width="0.0384%" height="15" fill="rgb(226,100,5)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2639.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="33.1899%" y="2613" width="0.0384%" height="15" fill="rgb(247,200,51)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="33.1899%" y="2597" width="0.0384%" height="15" fill="rgb(220,203,54)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2607.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="33.1899%" y="2581" width="0.0384%" height="15" fill="rgb(230,187,54)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2591.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="33.1899%" y="2565" width="0.0384%" height="15" fill="rgb(225,132,12)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2575.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="33.1899%" y="2549" width="0.0384%" height="15" fill="rgb(205,210,33)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="33.1899%" y="2533" width="0.0384%" height="15" fill="rgb(238,192,7)" fg:x="7789" fg:w="9"/><text x="33.4399%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="33.1941%" y="2517" width="0.0341%" height="15" fill="rgb(245,82,29)" fg:x="7790" fg:w="8"/><text x="33.4441%" y="2527.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="33.1941%" y="2501" width="0.0341%" height="15" fill="rgb(234,222,39)" fg:x="7790" fg:w="8"/><text x="33.4441%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="33.1941%" y="2485" width="0.0341%" height="15" fill="rgb(231,222,18)" fg:x="7790" fg:w="8"/><text x="33.4441%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="33.1941%" y="2469" width="0.0341%" height="15" fill="rgb(216,61,10)" fg:x="7790" fg:w="8"/><text x="33.4441%" y="2479.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (31 samples, 0.13%)</title><rect x="33.2282%" y="2389" width="0.1321%" height="15" fill="rgb(241,116,34)" fg:x="7798" fg:w="31"/><text x="33.4782%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (31 samples, 0.13%)</title><rect x="33.2282%" y="2373" width="0.1321%" height="15" fill="rgb(225,32,22)" fg:x="7798" fg:w="31"/><text x="33.4782%" y="2383.50"></text></g><g><title>exp (31 samples, 0.13%)</title><rect x="33.2282%" y="2357" width="0.1321%" height="15" fill="rgb(236,35,19)" fg:x="7798" fg:w="31"/><text x="33.4782%" y="2367.50"></text></g><g><title>[libm.so.6] (25 samples, 0.11%)</title><rect x="33.2538%" y="2341" width="0.1065%" height="15" fill="rgb(231,198,28)" fg:x="7804" fg:w="25"/><text x="33.5038%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (16 samples, 0.07%)</title><rect x="33.3603%" y="2389" width="0.0682%" height="15" fill="rgb(211,215,31)" fg:x="7829" fg:w="16"/><text x="33.6103%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (16 samples, 0.07%)</title><rect x="33.3603%" y="2373" width="0.0682%" height="15" fill="rgb(243,118,23)" fg:x="7829" fg:w="16"/><text x="33.6103%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (63 samples, 0.27%)</title><rect x="33.2282%" y="2405" width="0.2685%" height="15" fill="rgb(228,104,45)" fg:x="7798" fg:w="63"/><text x="33.4782%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (16 samples, 0.07%)</title><rect x="33.4285%" y="2389" width="0.0682%" height="15" fill="rgb(216,198,17)" fg:x="7845" fg:w="16"/><text x="33.6785%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (16 samples, 0.07%)</title><rect x="33.4285%" y="2373" width="0.0682%" height="15" fill="rgb(249,39,23)" fg:x="7845" fg:w="16"/><text x="33.6785%" y="2383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (67 samples, 0.29%)</title><rect x="33.2282%" y="2565" width="0.2855%" height="15" fill="rgb(250,186,54)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (67 samples, 0.29%)</title><rect x="33.2282%" y="2549" width="0.2855%" height="15" fill="rgb(243,110,14)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (67 samples, 0.29%)</title><rect x="33.2282%" y="2533" width="0.2855%" height="15" fill="rgb(236,32,12)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (67 samples, 0.29%)</title><rect x="33.2282%" y="2517" width="0.2855%" height="15" fill="rgb(211,92,33)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (67 samples, 0.29%)</title><rect x="33.2282%" y="2501" width="0.2855%" height="15" fill="rgb(254,154,8)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (67 samples, 0.29%)</title><rect x="33.2282%" y="2485" width="0.2855%" height="15" fill="rgb(241,107,40)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (67 samples, 0.29%)</title><rect x="33.2282%" y="2469" width="0.2855%" height="15" fill="rgb(208,24,40)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (67 samples, 0.29%)</title><rect x="33.2282%" y="2453" width="0.2855%" height="15" fill="rgb(252,158,9)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (67 samples, 0.29%)</title><rect x="33.2282%" y="2437" width="0.2855%" height="15" fill="rgb(241,9,28)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (67 samples, 0.29%)</title><rect x="33.2282%" y="2421" width="0.2855%" height="15" fill="rgb(210,199,32)" fg:x="7798" fg:w="67"/><text x="33.4782%" y="2431.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="33.4967%" y="2405" width="0.0170%" height="15" fill="rgb(228,147,42)" fg:x="7861" fg:w="4"/><text x="33.7467%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (74 samples, 0.32%)</title><rect x="33.2282%" y="2581" width="0.3153%" height="15" fill="rgb(248,202,26)" fg:x="7798" fg:w="74"/><text x="33.4782%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="33.5137%" y="2565" width="0.0298%" height="15" fill="rgb(225,67,4)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2575.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="33.5137%" y="2549" width="0.0298%" height="15" fill="rgb(234,87,25)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="33.5137%" y="2533" width="0.0298%" height="15" fill="rgb(229,58,0)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (7 samples, 0.03%)</title><rect x="33.5137%" y="2517" width="0.0298%" height="15" fill="rgb(211,218,3)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="33.5137%" y="2501" width="0.0298%" height="15" fill="rgb(216,109,54)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="33.5137%" y="2485" width="0.0298%" height="15" fill="rgb(252,156,40)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="33.5137%" y="2469" width="0.0298%" height="15" fill="rgb(208,1,12)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2479.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="33.5137%" y="2453" width="0.0298%" height="15" fill="rgb(214,179,53)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="33.5137%" y="2437" width="0.0298%" height="15" fill="rgb(205,173,17)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2447.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="33.5137%" y="2421" width="0.0298%" height="15" fill="rgb(243,26,15)" fg:x="7865" fg:w="7"/><text x="33.7637%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="33.5180%" y="2405" width="0.0256%" height="15" fill="rgb(231,139,31)" fg:x="7866" fg:w="6"/><text x="33.7680%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="33.5222%" y="2389" width="0.0213%" height="15" fill="rgb(208,163,22)" fg:x="7867" fg:w="5"/><text x="33.7722%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="33.5222%" y="2373" width="0.0213%" height="15" fill="rgb(245,84,24)" fg:x="7867" fg:w="5"/><text x="33.7722%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="33.5222%" y="2357" width="0.0213%" height="15" fill="rgb(238,140,36)" fg:x="7867" fg:w="5"/><text x="33.7722%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::partition (5 samples, 0.02%)</title><rect x="33.5222%" y="2341" width="0.0213%" height="15" fill="rgb(218,211,39)" fg:x="7867" fg:w="5"/><text x="33.7722%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (5 samples, 0.02%)</title><rect x="33.5222%" y="2325" width="0.0213%" height="15" fill="rgb(242,59,29)" fg:x="7867" fg:w="5"/><text x="33.7722%" y="2335.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (22 samples, 0.09%)</title><rect x="33.5478%" y="2277" width="0.0937%" height="15" fill="rgb(245,91,22)" fg:x="7873" fg:w="22"/><text x="33.7978%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (22 samples, 0.09%)</title><rect x="33.5478%" y="2261" width="0.0937%" height="15" fill="rgb(206,13,6)" fg:x="7873" fg:w="22"/><text x="33.7978%" y="2271.50"></text></g><g><title>exp (22 samples, 0.09%)</title><rect x="33.5478%" y="2245" width="0.0937%" height="15" fill="rgb(212,147,32)" fg:x="7873" fg:w="22"/><text x="33.7978%" y="2255.50"></text></g><g><title>[libm.so.6] (18 samples, 0.08%)</title><rect x="33.5649%" y="2229" width="0.0767%" height="15" fill="rgb(254,64,12)" fg:x="7877" fg:w="18"/><text x="33.8149%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (19 samples, 0.08%)</title><rect x="33.6458%" y="2277" width="0.0810%" height="15" fill="rgb(212,104,54)" fg:x="7896" fg:w="19"/><text x="33.8958%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (19 samples, 0.08%)</title><rect x="33.6458%" y="2261" width="0.0810%" height="15" fill="rgb(254,77,46)" fg:x="7896" fg:w="19"/><text x="33.8958%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (66 samples, 0.28%)</title><rect x="33.5478%" y="2293" width="0.2812%" height="15" fill="rgb(219,55,26)" fg:x="7873" fg:w="66"/><text x="33.7978%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (24 samples, 0.10%)</title><rect x="33.7268%" y="2277" width="0.1023%" height="15" fill="rgb(230,133,21)" fg:x="7915" fg:w="24"/><text x="33.9768%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (24 samples, 0.10%)</title><rect x="33.7268%" y="2261" width="0.1023%" height="15" fill="rgb(247,110,50)" fg:x="7915" fg:w="24"/><text x="33.9768%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (74 samples, 0.32%)</title><rect x="33.5435%" y="2453" width="0.3153%" height="15" fill="rgb(229,31,50)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (74 samples, 0.32%)</title><rect x="33.5435%" y="2437" width="0.3153%" height="15" fill="rgb(250,13,40)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (74 samples, 0.32%)</title><rect x="33.5435%" y="2421" width="0.3153%" height="15" fill="rgb(212,163,14)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (74 samples, 0.32%)</title><rect x="33.5435%" y="2405" width="0.3153%" height="15" fill="rgb(211,190,39)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (74 samples, 0.32%)</title><rect x="33.5435%" y="2389" width="0.3153%" height="15" fill="rgb(245,39,52)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (74 samples, 0.32%)</title><rect x="33.5435%" y="2373" width="0.3153%" height="15" fill="rgb(216,76,3)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (74 samples, 0.32%)</title><rect x="33.5435%" y="2357" width="0.3153%" height="15" fill="rgb(218,225,6)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (74 samples, 0.32%)</title><rect x="33.5435%" y="2341" width="0.3153%" height="15" fill="rgb(215,137,11)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (74 samples, 0.32%)</title><rect x="33.5435%" y="2325" width="0.3153%" height="15" fill="rgb(234,223,14)" fg:x="7872" fg:w="74"/><text x="33.7935%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (73 samples, 0.31%)</title><rect x="33.5478%" y="2309" width="0.3111%" height="15" fill="rgb(236,24,21)" fg:x="7873" fg:w="73"/><text x="33.7978%" y="2319.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="33.8290%" y="2293" width="0.0298%" height="15" fill="rgb(208,183,10)" fg:x="7939" fg:w="7"/><text x="34.0790%" y="2303.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="33.8631%" y="2309" width="0.0256%" height="15" fill="rgb(254,9,3)" fg:x="7947" fg:w="6"/><text x="34.1131%" y="2319.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (5 samples, 0.02%)</title><rect x="33.8674%" y="2293" width="0.0213%" height="15" fill="rgb(225,112,10)" fg:x="7948" fg:w="5"/><text x="34.1174%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (84 samples, 0.36%)</title><rect x="33.5435%" y="2533" width="0.3579%" height="15" fill="rgb(232,7,4)" fg:x="7872" fg:w="84"/><text x="33.7935%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (84 samples, 0.36%)</title><rect x="33.5435%" y="2517" width="0.3579%" height="15" fill="rgb(241,50,8)" fg:x="7872" fg:w="84"/><text x="33.7935%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (84 samples, 0.36%)</title><rect x="33.5435%" y="2501" width="0.3579%" height="15" fill="rgb(209,164,32)" fg:x="7872" fg:w="84"/><text x="33.7935%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (84 samples, 0.36%)</title><rect x="33.5435%" y="2485" width="0.3579%" height="15" fill="rgb(222,99,11)" fg:x="7872" fg:w="84"/><text x="33.7935%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (84 samples, 0.36%)</title><rect x="33.5435%" y="2469" width="0.3579%" height="15" fill="rgb(208,139,8)" fg:x="7872" fg:w="84"/><text x="33.7935%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="33.8589%" y="2453" width="0.0426%" height="15" fill="rgb(210,220,31)" fg:x="7946" fg:w="10"/><text x="34.1089%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="33.8589%" y="2437" width="0.0426%" height="15" fill="rgb(253,192,40)" fg:x="7946" fg:w="10"/><text x="34.1089%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="33.8589%" y="2421" width="0.0426%" height="15" fill="rgb(218,174,11)" fg:x="7946" fg:w="10"/><text x="34.1089%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="33.8589%" y="2405" width="0.0426%" height="15" fill="rgb(238,12,0)" fg:x="7946" fg:w="10"/><text x="34.1089%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="33.8589%" y="2389" width="0.0426%" height="15" fill="rgb(223,87,52)" fg:x="7946" fg:w="10"/><text x="34.1089%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (10 samples, 0.04%)</title><rect x="33.8589%" y="2373" width="0.0426%" height="15" fill="rgb(206,198,52)" fg:x="7946" fg:w="10"/><text x="34.1089%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="33.8589%" y="2357" width="0.0426%" height="15" fill="rgb(239,183,3)" fg:x="7946" fg:w="10"/><text x="34.1089%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="33.8631%" y="2341" width="0.0384%" height="15" fill="rgb(216,111,9)" fg:x="7947" fg:w="9"/><text x="34.1131%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="33.8631%" y="2325" width="0.0384%" height="15" fill="rgb(221,6,16)" fg:x="7947" fg:w="9"/><text x="34.1131%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="33.8887%" y="2309" width="0.0128%" height="15" fill="rgb(205,110,11)" fg:x="7953" fg:w="3"/><text x="34.1387%" y="2319.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="33.8887%" y="2293" width="0.0128%" height="15" fill="rgb(210,162,38)" fg:x="7953" fg:w="3"/><text x="34.1387%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (28 samples, 0.12%)</title><rect x="33.9057%" y="2213" width="0.1193%" height="15" fill="rgb(235,180,51)" fg:x="7957" fg:w="28"/><text x="34.1557%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (28 samples, 0.12%)</title><rect x="33.9057%" y="2197" width="0.1193%" height="15" fill="rgb(205,214,28)" fg:x="7957" fg:w="28"/><text x="34.1557%" y="2207.50"></text></g><g><title>exp (28 samples, 0.12%)</title><rect x="33.9057%" y="2181" width="0.1193%" height="15" fill="rgb(211,57,51)" fg:x="7957" fg:w="28"/><text x="34.1557%" y="2191.50"></text></g><g><title>[libm.so.6] (25 samples, 0.11%)</title><rect x="33.9185%" y="2165" width="0.1065%" height="15" fill="rgb(207,55,41)" fg:x="7960" fg:w="25"/><text x="34.1685%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (22 samples, 0.09%)</title><rect x="34.0293%" y="2213" width="0.0937%" height="15" fill="rgb(245,45,35)" fg:x="7986" fg:w="22"/><text x="34.2793%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (22 samples, 0.09%)</title><rect x="34.0293%" y="2197" width="0.0937%" height="15" fill="rgb(233,168,39)" fg:x="7986" fg:w="22"/><text x="34.2793%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (74 samples, 0.32%)</title><rect x="33.9057%" y="2229" width="0.3153%" height="15" fill="rgb(216,61,7)" fg:x="7957" fg:w="74"/><text x="34.1557%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (23 samples, 0.10%)</title><rect x="34.1231%" y="2213" width="0.0980%" height="15" fill="rgb(237,109,44)" fg:x="8008" fg:w="23"/><text x="34.3731%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (23 samples, 0.10%)</title><rect x="34.1231%" y="2197" width="0.0980%" height="15" fill="rgb(240,92,7)" fg:x="8008" fg:w="23"/><text x="34.3731%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (77 samples, 0.33%)</title><rect x="33.9015%" y="2389" width="0.3281%" height="15" fill="rgb(252,17,32)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (77 samples, 0.33%)</title><rect x="33.9015%" y="2373" width="0.3281%" height="15" fill="rgb(219,85,5)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (77 samples, 0.33%)</title><rect x="33.9015%" y="2357" width="0.3281%" height="15" fill="rgb(213,50,52)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (77 samples, 0.33%)</title><rect x="33.9015%" y="2341" width="0.3281%" height="15" fill="rgb(239,79,50)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (77 samples, 0.33%)</title><rect x="33.9015%" y="2325" width="0.3281%" height="15" fill="rgb(249,49,7)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (77 samples, 0.33%)</title><rect x="33.9015%" y="2309" width="0.3281%" height="15" fill="rgb(222,126,43)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (77 samples, 0.33%)</title><rect x="33.9015%" y="2293" width="0.3281%" height="15" fill="rgb(230,157,52)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (77 samples, 0.33%)</title><rect x="33.9015%" y="2277" width="0.3281%" height="15" fill="rgb(210,66,35)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (77 samples, 0.33%)</title><rect x="33.9015%" y="2261" width="0.3281%" height="15" fill="rgb(220,96,16)" fg:x="7956" fg:w="77"/><text x="34.1515%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (76 samples, 0.32%)</title><rect x="33.9057%" y="2245" width="0.3238%" height="15" fill="rgb(242,43,33)" fg:x="7957" fg:w="76"/><text x="34.1557%" y="2255.50"></text></g><g><title>criterion::analysis::compare::t_test::_{{closure}} (3 samples, 0.01%)</title><rect x="34.2296%" y="2229" width="0.0128%" height="15" fill="rgb(248,128,51)" fg:x="8033" fg:w="3"/><text x="34.4796%" y="2239.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::t (3 samples, 0.01%)</title><rect x="34.2296%" y="2213" width="0.0128%" height="15" fill="rgb(234,19,35)" fg:x="8033" fg:w="3"/><text x="34.4796%" y="2223.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="34.2296%" y="2245" width="0.0298%" height="15" fill="rgb(232,120,30)" fg:x="8033" fg:w="7"/><text x="34.4796%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (4 samples, 0.02%)</title><rect x="34.2424%" y="2229" width="0.0170%" height="15" fill="rgb(209,184,13)" fg:x="8036" fg:w="4"/><text x="34.4924%" y="2239.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="34.2466%" y="2213" width="0.0128%" height="15" fill="rgb(222,153,0)" fg:x="8037" fg:w="3"/><text x="34.4966%" y="2223.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="34.2594%" y="2229" width="0.0170%" height="15" fill="rgb(251,96,47)" fg:x="8040" fg:w="4"/><text x="34.5094%" y="2239.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="34.2594%" y="2213" width="0.0170%" height="15" fill="rgb(253,113,5)" fg:x="8040" fg:w="4"/><text x="34.5094%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (250 samples, 1.07%)</title><rect x="33.2282%" y="2645" width="1.0653%" height="15" fill="rgb(241,96,1)" fg:x="7798" fg:w="250"/><text x="33.4782%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (250 samples, 1.07%)</title><rect x="33.2282%" y="2629" width="1.0653%" height="15" fill="rgb(216,225,1)" fg:x="7798" fg:w="250"/><text x="33.4782%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (250 samples, 1.07%)</title><rect x="33.2282%" y="2613" width="1.0653%" height="15" fill="rgb(227,108,0)" fg:x="7798" fg:w="250"/><text x="33.4782%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (250 samples, 1.07%)</title><rect x="33.2282%" y="2597" width="1.0653%" height="15" fill="rgb(221,29,48)" fg:x="7798" fg:w="250"/><text x="33.4782%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (176 samples, 0.75%)</title><rect x="33.5435%" y="2581" width="0.7500%" height="15" fill="rgb(222,55,16)" fg:x="7872" fg:w="176"/><text x="33.7935%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (176 samples, 0.75%)</title><rect x="33.5435%" y="2565" width="0.7500%" height="15" fill="rgb(242,210,22)" fg:x="7872" fg:w="176"/><text x="33.7935%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (176 samples, 0.75%)</title><rect x="33.5435%" y="2549" width="0.7500%" height="15" fill="rgb(223,142,30)" fg:x="7872" fg:w="176"/><text x="33.7935%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (92 samples, 0.39%)</title><rect x="33.9015%" y="2533" width="0.3920%" height="15" fill="rgb(248,92,51)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (92 samples, 0.39%)</title><rect x="33.9015%" y="2517" width="0.3920%" height="15" fill="rgb(249,201,12)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2527.50"></text></g><g><title>std::panicking::try (92 samples, 0.39%)</title><rect x="33.9015%" y="2501" width="0.3920%" height="15" fill="rgb(230,213,39)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (92 samples, 0.39%)</title><rect x="33.9015%" y="2485" width="0.3920%" height="15" fill="rgb(232,46,34)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (92 samples, 0.39%)</title><rect x="33.9015%" y="2469" width="0.3920%" height="15" fill="rgb(226,194,19)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (92 samples, 0.39%)</title><rect x="33.9015%" y="2453" width="0.3920%" height="15" fill="rgb(254,144,47)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (92 samples, 0.39%)</title><rect x="33.9015%" y="2437" width="0.3920%" height="15" fill="rgb(254,168,3)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (92 samples, 0.39%)</title><rect x="33.9015%" y="2421" width="0.3920%" height="15" fill="rgb(249,104,32)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (92 samples, 0.39%)</title><rect x="33.9015%" y="2405" width="0.3920%" height="15" fill="rgb(213,143,0)" fg:x="7956" fg:w="92"/><text x="34.1515%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="34.2296%" y="2389" width="0.0639%" height="15" fill="rgb(211,72,7)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2399.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="34.2296%" y="2373" width="0.0639%" height="15" fill="rgb(249,86,4)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (15 samples, 0.06%)</title><rect x="34.2296%" y="2357" width="0.0639%" height="15" fill="rgb(252,17,31)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (15 samples, 0.06%)</title><rect x="34.2296%" y="2341" width="0.0639%" height="15" fill="rgb(238,169,43)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (15 samples, 0.06%)</title><rect x="34.2296%" y="2325" width="0.0639%" height="15" fill="rgb(220,206,52)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (15 samples, 0.06%)</title><rect x="34.2296%" y="2309" width="0.0639%" height="15" fill="rgb(214,176,19)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (15 samples, 0.06%)</title><rect x="34.2296%" y="2293" width="0.0639%" height="15" fill="rgb(206,11,39)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (15 samples, 0.06%)</title><rect x="34.2296%" y="2277" width="0.0639%" height="15" fill="rgb(234,191,6)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (15 samples, 0.06%)</title><rect x="34.2296%" y="2261" width="0.0639%" height="15" fill="rgb(244,46,51)" fg:x="8033" fg:w="15"/><text x="34.4796%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="34.2594%" y="2245" width="0.0341%" height="15" fill="rgb(212,184,35)" fg:x="8040" fg:w="8"/><text x="34.5094%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (4 samples, 0.02%)</title><rect x="34.2765%" y="2229" width="0.0170%" height="15" fill="rgb(217,184,38)" fg:x="8044" fg:w="4"/><text x="34.5265%" y="2239.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="34.2807%" y="2213" width="0.0128%" height="15" fill="rgb(218,88,44)" fg:x="8045" fg:w="3"/><text x="34.5307%" y="2223.50"></text></g><g><title>oorandom::Rand64::rand_u64 (3 samples, 0.01%)</title><rect x="34.2807%" y="2197" width="0.0128%" height="15" fill="rgb(241,121,2)" fg:x="8045" fg:w="3"/><text x="34.5307%" y="2207.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="34.2935%" y="2357" width="0.0170%" height="15" fill="rgb(232,92,4)" fg:x="8048" fg:w="4"/><text x="34.5435%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="34.2935%" y="2341" width="0.0170%" height="15" fill="rgb(233,16,51)" fg:x="8048" fg:w="4"/><text x="34.5435%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="34.2935%" y="2325" width="0.0170%" height="15" fill="rgb(205,138,9)" fg:x="8048" fg:w="4"/><text x="34.5435%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="34.2935%" y="2309" width="0.0170%" height="15" fill="rgb(212,133,44)" fg:x="8048" fg:w="4"/><text x="34.5435%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="34.2935%" y="2293" width="0.0170%" height="15" fill="rgb(247,170,39)" fg:x="8048" fg:w="4"/><text x="34.5435%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="34.2935%" y="2277" width="0.0170%" height="15" fill="rgb(236,183,8)" fg:x="8048" fg:w="4"/><text x="34.5435%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="34.2935%" y="2261" width="0.0170%" height="15" fill="rgb(245,194,21)" fg:x="8048" fg:w="4"/><text x="34.5435%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="34.2978%" y="2245" width="0.0128%" height="15" fill="rgb(244,142,33)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="34.2978%" y="2229" width="0.0128%" height="15" fill="rgb(237,159,51)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2239.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="34.2978%" y="2213" width="0.0128%" height="15" fill="rgb(223,134,40)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="34.2978%" y="2197" width="0.0128%" height="15" fill="rgb(217,227,45)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="34.2978%" y="2181" width="0.0128%" height="15" fill="rgb(205,171,8)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="34.2978%" y="2165" width="0.0128%" height="15" fill="rgb(231,83,23)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="34.2978%" y="2149" width="0.0128%" height="15" fill="rgb(226,65,0)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.2978%" y="2133" width="0.0128%" height="15" fill="rgb(218,127,49)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="34.2978%" y="2117" width="0.0128%" height="15" fill="rgb(238,61,34)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="34.2978%" y="2101" width="0.0128%" height="15" fill="rgb(228,144,3)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="34.2978%" y="2085" width="0.0128%" height="15" fill="rgb(212,155,32)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="34.2978%" y="2069" width="0.0128%" height="15" fill="rgb(219,3,13)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="34.2978%" y="2053" width="0.0128%" height="15" fill="rgb(225,41,39)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="34.2978%" y="2037" width="0.0128%" height="15" fill="rgb(236,169,50)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="34.2978%" y="2021" width="0.0128%" height="15" fill="rgb(253,211,17)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="34.2978%" y="2005" width="0.0128%" height="15" fill="rgb(219,67,7)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="34.2978%" y="1989" width="0.0128%" height="15" fill="rgb(236,198,21)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="34.2978%" y="1973" width="0.0128%" height="15" fill="rgb(250,83,24)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="34.2978%" y="1957" width="0.0128%" height="15" fill="rgb(249,175,20)" fg:x="8049" fg:w="3"/><text x="34.5478%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="34.3106%" y="2181" width="0.0128%" height="15" fill="rgb(239,72,36)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3106%" y="2165" width="0.0128%" height="15" fill="rgb(225,33,12)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3106%" y="2149" width="0.0128%" height="15" fill="rgb(213,209,10)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.3106%" y="2133" width="0.0128%" height="15" fill="rgb(233,156,7)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="34.3106%" y="2117" width="0.0128%" height="15" fill="rgb(242,71,8)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="34.3106%" y="2101" width="0.0128%" height="15" fill="rgb(223,170,53)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="34.3106%" y="2085" width="0.0128%" height="15" fill="rgb(252,23,27)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="34.3106%" y="2069" width="0.0128%" height="15" fill="rgb(220,23,37)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="34.3106%" y="2053" width="0.0128%" height="15" fill="rgb(208,60,20)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="34.3106%" y="2037" width="0.0128%" height="15" fill="rgb(246,105,41)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="34.3106%" y="2021" width="0.0128%" height="15" fill="rgb(229,80,14)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3106%" y="2005" width="0.0128%" height="15" fill="rgb(223,226,8)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="34.3106%" y="1989" width="0.0128%" height="15" fill="rgb(212,227,24)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="34.3106%" y="1973" width="0.0128%" height="15" fill="rgb(234,38,14)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3106%" y="1957" width="0.0128%" height="15" fill="rgb(222,86,39)" fg:x="8052" fg:w="3"/><text x="34.5606%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10 samples, 0.04%)</title><rect x="34.2935%" y="2645" width="0.0426%" height="15" fill="rgb(208,189,2)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="34.2935%" y="2629" width="0.0426%" height="15" fill="rgb(229,19,19)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (10 samples, 0.04%)</title><rect x="34.2935%" y="2613" width="0.0426%" height="15" fill="rgb(250,169,51)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (10 samples, 0.04%)</title><rect x="34.2935%" y="2597" width="0.0426%" height="15" fill="rgb(209,182,25)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (10 samples, 0.04%)</title><rect x="34.2935%" y="2581" width="0.0426%" height="15" fill="rgb(240,113,23)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (10 samples, 0.04%)</title><rect x="34.2935%" y="2565" width="0.0426%" height="15" fill="rgb(224,93,33)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="34.2935%" y="2549" width="0.0426%" height="15" fill="rgb(234,37,17)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="34.2935%" y="2533" width="0.0426%" height="15" fill="rgb(219,199,15)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2543.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="34.2935%" y="2517" width="0.0426%" height="15" fill="rgb(249,190,12)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="34.2935%" y="2501" width="0.0426%" height="15" fill="rgb(254,188,20)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="34.2935%" y="2485" width="0.0426%" height="15" fill="rgb(227,85,36)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (10 samples, 0.04%)</title><rect x="34.2935%" y="2469" width="0.0426%" height="15" fill="rgb(214,186,36)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="34.2935%" y="2453" width="0.0426%" height="15" fill="rgb(207,67,47)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="34.2935%" y="2437" width="0.0426%" height="15" fill="rgb(224,140,32)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="34.2935%" y="2421" width="0.0426%" height="15" fill="rgb(225,114,12)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="34.2935%" y="2405" width="0.0426%" height="15" fill="rgb(209,199,39)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="34.2935%" y="2389" width="0.0426%" height="15" fill="rgb(216,181,6)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="34.2935%" y="2373" width="0.0426%" height="15" fill="rgb(210,39,50)" fg:x="8048" fg:w="10"/><text x="34.5435%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="34.3106%" y="2357" width="0.0256%" height="15" fill="rgb(239,154,53)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="34.3106%" y="2341" width="0.0256%" height="15" fill="rgb(235,123,22)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2351.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="34.3106%" y="2325" width="0.0256%" height="15" fill="rgb(243,194,26)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="34.3106%" y="2309" width="0.0256%" height="15" fill="rgb(245,23,33)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="34.3106%" y="2293" width="0.0256%" height="15" fill="rgb(213,191,38)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="34.3106%" y="2277" width="0.0256%" height="15" fill="rgb(226,199,18)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="34.3106%" y="2261" width="0.0256%" height="15" fill="rgb(210,106,30)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.3106%" y="2245" width="0.0256%" height="15" fill="rgb(219,177,27)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="34.3106%" y="2229" width="0.0256%" height="15" fill="rgb(215,14,22)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="34.3106%" y="2213" width="0.0256%" height="15" fill="rgb(240,24,8)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="34.3106%" y="2197" width="0.0256%" height="15" fill="rgb(220,138,5)" fg:x="8052" fg:w="6"/><text x="34.5606%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="34.3233%" y="2181" width="0.0128%" height="15" fill="rgb(254,39,11)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="34.3233%" y="2165" width="0.0128%" height="15" fill="rgb(223,92,18)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2175.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="34.3233%" y="2149" width="0.0128%" height="15" fill="rgb(231,216,35)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="34.3233%" y="2133" width="0.0128%" height="15" fill="rgb(210,197,31)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="34.3233%" y="2117" width="0.0128%" height="15" fill="rgb(233,78,6)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3233%" y="2101" width="0.0128%" height="15" fill="rgb(219,192,52)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3233%" y="2085" width="0.0128%" height="15" fill="rgb(240,140,47)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.3233%" y="2069" width="0.0128%" height="15" fill="rgb(214,22,41)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="34.3233%" y="2053" width="0.0128%" height="15" fill="rgb(216,28,18)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="34.3233%" y="2037" width="0.0128%" height="15" fill="rgb(219,204,4)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="34.3233%" y="2021" width="0.0128%" height="15" fill="rgb(216,98,27)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="34.3233%" y="2005" width="0.0128%" height="15" fill="rgb(208,139,37)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="34.3233%" y="1989" width="0.0128%" height="15" fill="rgb(241,193,50)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="34.3233%" y="1973" width="0.0128%" height="15" fill="rgb(227,24,47)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="34.3233%" y="1957" width="0.0128%" height="15" fill="rgb(212,91,31)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3233%" y="1941" width="0.0128%" height="15" fill="rgb(253,174,34)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="34.3233%" y="1925" width="0.0128%" height="15" fill="rgb(219,214,52)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="34.3233%" y="1909" width="0.0128%" height="15" fill="rgb(222,221,3)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="34.3233%" y="1893" width="0.0128%" height="15" fill="rgb(209,130,23)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="34.3233%" y="1877" width="0.0128%" height="15" fill="rgb(232,162,43)" fg:x="8055" fg:w="3"/><text x="34.5733%" y="1887.50"></text></g><g><title><f64 as core::ops::arith::Mul>::mul (3 samples, 0.01%)</title><rect x="34.3446%" y="2325" width="0.0128%" height="15" fill="rgb(245,34,38)" fg:x="8060" fg:w="3"/><text x="34.5946%" y="2335.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (37 samples, 0.16%)</title><rect x="34.3574%" y="2325" width="0.1577%" height="15" fill="rgb(226,70,5)" fg:x="8063" fg:w="37"/><text x="34.6074%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::exp (37 samples, 0.16%)</title><rect x="34.3574%" y="2309" width="0.1577%" height="15" fill="rgb(238,97,25)" fg:x="8063" fg:w="37"/><text x="34.6074%" y="2319.50"></text></g><g><title>exp (34 samples, 0.14%)</title><rect x="34.3702%" y="2293" width="0.1449%" height="15" fill="rgb(246,1,22)" fg:x="8066" fg:w="34"/><text x="34.6202%" y="2303.50"></text></g><g><title>[libm.so.6] (26 samples, 0.11%)</title><rect x="34.4043%" y="2277" width="0.1108%" height="15" fill="rgb(248,180,27)" fg:x="8074" fg:w="26"/><text x="34.6543%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (18 samples, 0.08%)</title><rect x="34.5151%" y="2325" width="0.0767%" height="15" fill="rgb(223,147,15)" fg:x="8100" fg:w="18"/><text x="34.7651%" y="2335.50"></text></g><g><title>core::f64::<impl f64>::recip (18 samples, 0.08%)</title><rect x="34.5151%" y="2309" width="0.0767%" height="15" fill="rgb(220,142,50)" fg:x="8100" fg:w="18"/><text x="34.7651%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (69 samples, 0.29%)</title><rect x="34.3446%" y="2341" width="0.2940%" height="15" fill="rgb(209,24,8)" fg:x="8060" fg:w="69"/><text x="34.5946%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (11 samples, 0.05%)</title><rect x="34.5918%" y="2325" width="0.0469%" height="15" fill="rgb(245,95,15)" fg:x="8118" fg:w="11"/><text x="34.8418%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::sqrt (11 samples, 0.05%)</title><rect x="34.5918%" y="2309" width="0.0469%" height="15" fill="rgb(254,132,39)" fg:x="8118" fg:w="11"/><text x="34.8418%" y="2319.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (77 samples, 0.33%)</title><rect x="34.3361%" y="2501" width="0.3281%" height="15" fill="rgb(230,135,4)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (77 samples, 0.33%)</title><rect x="34.3361%" y="2485" width="0.3281%" height="15" fill="rgb(233,65,45)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (77 samples, 0.33%)</title><rect x="34.3361%" y="2469" width="0.3281%" height="15" fill="rgb(238,156,12)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (77 samples, 0.33%)</title><rect x="34.3361%" y="2453" width="0.3281%" height="15" fill="rgb(230,14,54)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (77 samples, 0.33%)</title><rect x="34.3361%" y="2437" width="0.3281%" height="15" fill="rgb(242,41,37)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (77 samples, 0.33%)</title><rect x="34.3361%" y="2421" width="0.3281%" height="15" fill="rgb(231,37,53)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (77 samples, 0.33%)</title><rect x="34.3361%" y="2405" width="0.3281%" height="15" fill="rgb(235,181,47)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (77 samples, 0.33%)</title><rect x="34.3361%" y="2389" width="0.3281%" height="15" fill="rgb(253,41,16)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (77 samples, 0.33%)</title><rect x="34.3361%" y="2373" width="0.3281%" height="15" fill="rgb(245,44,19)" fg:x="8058" fg:w="77"/><text x="34.5861%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (75 samples, 0.32%)</title><rect x="34.3446%" y="2357" width="0.3196%" height="15" fill="rgb(245,22,46)" fg:x="8060" fg:w="75"/><text x="34.5946%" y="2367.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="34.6387%" y="2341" width="0.0256%" height="15" fill="rgb(207,84,51)" fg:x="8129" fg:w="6"/><text x="34.8887%" y="2351.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="34.6642%" y="2373" width="0.0298%" height="15" fill="rgb(212,36,12)" fg:x="8135" fg:w="7"/><text x="34.9142%" y="2383.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="34.6642%" y="2357" width="0.0298%" height="15" fill="rgb(240,188,18)" fg:x="8135" fg:w="7"/><text x="34.9142%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="34.6685%" y="2341" width="0.0256%" height="15" fill="rgb(245,89,47)" fg:x="8136" fg:w="6"/><text x="34.9185%" y="2351.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="34.6685%" y="2325" width="0.0256%" height="15" fill="rgb(216,24,14)" fg:x="8136" fg:w="6"/><text x="34.9185%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="34.6685%" y="2309" width="0.0256%" height="15" fill="rgb(217,71,21)" fg:x="8136" fg:w="6"/><text x="34.9185%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="34.6685%" y="2293" width="0.0256%" height="15" fill="rgb(251,142,29)" fg:x="8136" fg:w="6"/><text x="34.9185%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="34.6813%" y="2277" width="0.0128%" height="15" fill="rgb(210,29,22)" fg:x="8139" fg:w="3"/><text x="34.9313%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (86 samples, 0.37%)</title><rect x="34.3361%" y="2517" width="0.3665%" height="15" fill="rgb(248,174,36)" fg:x="8058" fg:w="86"/><text x="34.5861%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="34.6642%" y="2501" width="0.0384%" height="15" fill="rgb(224,111,34)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2511.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="34.6642%" y="2485" width="0.0384%" height="15" fill="rgb(245,177,23)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="34.6642%" y="2469" width="0.0384%" height="15" fill="rgb(217,114,53)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (9 samples, 0.04%)</title><rect x="34.6642%" y="2453" width="0.0384%" height="15" fill="rgb(223,157,10)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2463.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="34.6642%" y="2437" width="0.0384%" height="15" fill="rgb(217,134,44)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2447.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="34.6642%" y="2421" width="0.0384%" height="15" fill="rgb(222,195,7)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="34.6642%" y="2405" width="0.0384%" height="15" fill="rgb(235,153,27)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2415.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="34.6642%" y="2389" width="0.0384%" height="15" fill="rgb(247,105,14)" fg:x="8135" fg:w="9"/><text x="34.9142%" y="2399.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (31 samples, 0.13%)</title><rect x="34.7111%" y="2213" width="0.1321%" height="15" fill="rgb(250,6,2)" fg:x="8146" fg:w="31"/><text x="34.9611%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (31 samples, 0.13%)</title><rect x="34.7111%" y="2197" width="0.1321%" height="15" fill="rgb(250,41,38)" fg:x="8146" fg:w="31"/><text x="34.9611%" y="2207.50"></text></g><g><title>exp (30 samples, 0.13%)</title><rect x="34.7154%" y="2181" width="0.1278%" height="15" fill="rgb(234,127,49)" fg:x="8147" fg:w="30"/><text x="34.9654%" y="2191.50"></text></g><g><title>[libm.so.6] (27 samples, 0.12%)</title><rect x="34.7281%" y="2165" width="0.1151%" height="15" fill="rgb(242,79,16)" fg:x="8150" fg:w="27"/><text x="34.9781%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (19 samples, 0.08%)</title><rect x="34.8432%" y="2213" width="0.0810%" height="15" fill="rgb(236,15,0)" fg:x="8177" fg:w="19"/><text x="35.0932%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (19 samples, 0.08%)</title><rect x="34.8432%" y="2197" width="0.0810%" height="15" fill="rgb(217,113,36)" fg:x="8177" fg:w="19"/><text x="35.0932%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (72 samples, 0.31%)</title><rect x="34.7068%" y="2229" width="0.3068%" height="15" fill="rgb(239,12,4)" fg:x="8145" fg:w="72"/><text x="34.9568%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (21 samples, 0.09%)</title><rect x="34.9242%" y="2213" width="0.0895%" height="15" fill="rgb(236,142,50)" fg:x="8196" fg:w="21"/><text x="35.1742%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (21 samples, 0.09%)</title><rect x="34.9242%" y="2197" width="0.0895%" height="15" fill="rgb(244,108,52)" fg:x="8196" fg:w="21"/><text x="35.1742%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (77 samples, 0.33%)</title><rect x="34.7026%" y="2389" width="0.3281%" height="15" fill="rgb(223,79,42)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (77 samples, 0.33%)</title><rect x="34.7026%" y="2373" width="0.3281%" height="15" fill="rgb(245,34,19)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (77 samples, 0.33%)</title><rect x="34.7026%" y="2357" width="0.3281%" height="15" fill="rgb(222,137,30)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (77 samples, 0.33%)</title><rect x="34.7026%" y="2341" width="0.3281%" height="15" fill="rgb(213,216,50)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (77 samples, 0.33%)</title><rect x="34.7026%" y="2325" width="0.3281%" height="15" fill="rgb(206,117,33)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (77 samples, 0.33%)</title><rect x="34.7026%" y="2309" width="0.3281%" height="15" fill="rgb(234,122,47)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (77 samples, 0.33%)</title><rect x="34.7026%" y="2293" width="0.3281%" height="15" fill="rgb(226,61,39)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (77 samples, 0.33%)</title><rect x="34.7026%" y="2277" width="0.3281%" height="15" fill="rgb(229,174,28)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (77 samples, 0.33%)</title><rect x="34.7026%" y="2261" width="0.3281%" height="15" fill="rgb(246,207,11)" fg:x="8144" fg:w="77"/><text x="34.9526%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (76 samples, 0.32%)</title><rect x="34.7068%" y="2245" width="0.3238%" height="15" fill="rgb(245,212,19)" fg:x="8145" fg:w="76"/><text x="34.9568%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.02%)</title><rect x="35.0136%" y="2229" width="0.0170%" height="15" fill="rgb(240,107,51)" fg:x="8217" fg:w="4"/><text x="35.2636%" y="2239.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="35.0307%" y="2245" width="0.0213%" height="15" fill="rgb(238,67,13)" fg:x="8221" fg:w="5"/><text x="35.2807%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="35.0392%" y="2229" width="0.0128%" height="15" fill="rgb(250,8,29)" fg:x="8223" fg:w="3"/><text x="35.2892%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (85 samples, 0.36%)</title><rect x="34.7026%" y="2469" width="0.3622%" height="15" fill="rgb(227,44,9)" fg:x="8144" fg:w="85"/><text x="34.9526%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (85 samples, 0.36%)</title><rect x="34.7026%" y="2453" width="0.3622%" height="15" fill="rgb(247,128,2)" fg:x="8144" fg:w="85"/><text x="34.9526%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (85 samples, 0.36%)</title><rect x="34.7026%" y="2437" width="0.3622%" height="15" fill="rgb(239,11,50)" fg:x="8144" fg:w="85"/><text x="34.9526%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85 samples, 0.36%)</title><rect x="34.7026%" y="2421" width="0.3622%" height="15" fill="rgb(241,11,28)" fg:x="8144" fg:w="85"/><text x="34.9526%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (85 samples, 0.36%)</title><rect x="34.7026%" y="2405" width="0.3622%" height="15" fill="rgb(220,15,14)" fg:x="8144" fg:w="85"/><text x="34.9526%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="35.0307%" y="2389" width="0.0341%" height="15" fill="rgb(226,97,9)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2399.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="35.0307%" y="2373" width="0.0341%" height="15" fill="rgb(240,221,24)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="35.0307%" y="2357" width="0.0341%" height="15" fill="rgb(238,199,31)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="35.0307%" y="2341" width="0.0341%" height="15" fill="rgb(222,15,37)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="35.0307%" y="2325" width="0.0341%" height="15" fill="rgb(225,66,12)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="35.0307%" y="2309" width="0.0341%" height="15" fill="rgb(224,142,38)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="35.0307%" y="2293" width="0.0341%" height="15" fill="rgb(208,206,25)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="35.0307%" y="2277" width="0.0341%" height="15" fill="rgb(205,153,20)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="35.0307%" y="2261" width="0.0341%" height="15" fill="rgb(206,199,32)" fg:x="8221" fg:w="8"/><text x="35.2807%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="35.0520%" y="2245" width="0.0128%" height="15" fill="rgb(246,135,31)" fg:x="8226" fg:w="3"/><text x="35.3020%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (36 samples, 0.15%)</title><rect x="35.0690%" y="2149" width="0.1534%" height="15" fill="rgb(208,211,40)" fg:x="8230" fg:w="36"/><text x="35.3190%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::exp (36 samples, 0.15%)</title><rect x="35.0690%" y="2133" width="0.1534%" height="15" fill="rgb(210,219,1)" fg:x="8230" fg:w="36"/><text x="35.3190%" y="2143.50"></text></g><g><title>exp (35 samples, 0.15%)</title><rect x="35.0733%" y="2117" width="0.1491%" height="15" fill="rgb(232,190,35)" fg:x="8231" fg:w="35"/><text x="35.3233%" y="2127.50"></text></g><g><title>[libm.so.6] (29 samples, 0.12%)</title><rect x="35.0989%" y="2101" width="0.1236%" height="15" fill="rgb(211,9,18)" fg:x="8237" fg:w="29"/><text x="35.3489%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (14 samples, 0.06%)</title><rect x="35.2224%" y="2149" width="0.0597%" height="15" fill="rgb(212,15,38)" fg:x="8266" fg:w="14"/><text x="35.4724%" y="2159.50"></text></g><g><title>core::f64::<impl f64>::recip (14 samples, 0.06%)</title><rect x="35.2224%" y="2133" width="0.0597%" height="15" fill="rgb(238,74,28)" fg:x="8266" fg:w="14"/><text x="35.4724%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (71 samples, 0.30%)</title><rect x="35.0690%" y="2165" width="0.3025%" height="15" fill="rgb(230,98,34)" fg:x="8230" fg:w="71"/><text x="35.3190%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (21 samples, 0.09%)</title><rect x="35.2821%" y="2149" width="0.0895%" height="15" fill="rgb(212,130,40)" fg:x="8280" fg:w="21"/><text x="35.5321%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::sqrt (21 samples, 0.09%)</title><rect x="35.2821%" y="2133" width="0.0895%" height="15" fill="rgb(234,200,15)" fg:x="8280" fg:w="21"/><text x="35.5321%" y="2143.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (79 samples, 0.34%)</title><rect x="35.0648%" y="2325" width="0.3366%" height="15" fill="rgb(216,227,29)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (79 samples, 0.34%)</title><rect x="35.0648%" y="2309" width="0.3366%" height="15" fill="rgb(226,47,50)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (79 samples, 0.34%)</title><rect x="35.0648%" y="2293" width="0.3366%" height="15" fill="rgb(232,146,36)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (79 samples, 0.34%)</title><rect x="35.0648%" y="2277" width="0.3366%" height="15" fill="rgb(234,162,39)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (79 samples, 0.34%)</title><rect x="35.0648%" y="2261" width="0.3366%" height="15" fill="rgb(253,148,35)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (79 samples, 0.34%)</title><rect x="35.0648%" y="2245" width="0.3366%" height="15" fill="rgb(253,200,8)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (79 samples, 0.34%)</title><rect x="35.0648%" y="2229" width="0.3366%" height="15" fill="rgb(220,107,20)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (79 samples, 0.34%)</title><rect x="35.0648%" y="2213" width="0.3366%" height="15" fill="rgb(205,200,12)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (79 samples, 0.34%)</title><rect x="35.0648%" y="2197" width="0.3366%" height="15" fill="rgb(219,123,42)" fg:x="8229" fg:w="79"/><text x="35.3148%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (78 samples, 0.33%)</title><rect x="35.0690%" y="2181" width="0.3324%" height="15" fill="rgb(236,136,3)" fg:x="8230" fg:w="78"/><text x="35.3190%" y="2191.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="35.3716%" y="2165" width="0.0298%" height="15" fill="rgb(213,112,27)" fg:x="8301" fg:w="7"/><text x="35.6216%" y="2175.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (5 samples, 0.02%)</title><rect x="35.4014%" y="2165" width="0.0213%" height="15" fill="rgb(229,181,47)" fg:x="8308" fg:w="5"/><text x="35.6514%" y="2175.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="35.4014%" y="2181" width="0.0298%" height="15" fill="rgb(243,123,15)" fg:x="8308" fg:w="7"/><text x="35.6514%" y="2191.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="35.4312%" y="2165" width="0.0128%" height="15" fill="rgb(206,135,33)" fg:x="8315" fg:w="3"/><text x="35.6812%" y="2175.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="35.4312%" y="2149" width="0.0128%" height="15" fill="rgb(232,190,44)" fg:x="8315" fg:w="3"/><text x="35.6812%" y="2159.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (1,450 samples, 6.18%)</title><rect x="29.2696%" y="2933" width="6.1786%" height="15" fill="rgb(237,122,12)" fg:x="6869" fg:w="1450"/><text x="29.5196%" y="2943.50">rayon_co..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (1,450 samples, 6.18%)</title><rect x="29.2696%" y="2917" width="6.1786%" height="15" fill="rgb(245,157,35)" fg:x="6869" fg:w="1450"/><text x="29.5196%" y="2927.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (1,450 samples, 6.18%)</title><rect x="29.2696%" y="2901" width="6.1786%" height="15" fill="rgb(205,164,34)" fg:x="6869" fg:w="1450"/><text x="29.5196%" y="2911.50">rayon::i..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,450 samples, 6.18%)</title><rect x="29.2696%" y="2885" width="6.1786%" height="15" fill="rgb(237,82,1)" fg:x="6869" fg:w="1450"/><text x="29.5196%" y="2895.50">rayon::i..</text></g><g><title>rayon_core::join::join_context (1,361 samples, 5.80%)</title><rect x="29.6489%" y="2869" width="5.7994%" height="15" fill="rgb(220,167,39)" fg:x="6958" fg:w="1361"/><text x="29.8989%" y="2879.50">rayon_c..</text></g><g><title>rayon_core::registry::in_worker (1,361 samples, 5.80%)</title><rect x="29.6489%" y="2853" width="5.7994%" height="15" fill="rgb(208,133,37)" fg:x="6958" fg:w="1361"/><text x="29.8989%" y="2863.50">rayon_c..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (1,361 samples, 5.80%)</title><rect x="29.6489%" y="2837" width="5.7994%" height="15" fill="rgb(243,161,51)" fg:x="6958" fg:w="1361"/><text x="29.8989%" y="2847.50">rayon_c..</text></g><g><title>rayon_core::unwind::halt_unwinding (626 samples, 2.67%)</title><rect x="32.7808%" y="2821" width="2.6675%" height="15" fill="rgb(232,127,41)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2831.50">ra..</text></g><g><title>std::panic::catch_unwind (626 samples, 2.67%)</title><rect x="32.7808%" y="2805" width="2.6675%" height="15" fill="rgb(237,20,11)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2815.50">st..</text></g><g><title>std::panicking::try (626 samples, 2.67%)</title><rect x="32.7808%" y="2789" width="2.6675%" height="15" fill="rgb(233,186,24)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2799.50">st..</text></g><g><title>std::panicking::try::do_call (626 samples, 2.67%)</title><rect x="32.7808%" y="2773" width="2.6675%" height="15" fill="rgb(210,39,6)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2783.50">st..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (626 samples, 2.67%)</title><rect x="32.7808%" y="2757" width="2.6675%" height="15" fill="rgb(216,11,48)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2767.50"><c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (626 samples, 2.67%)</title><rect x="32.7808%" y="2741" width="2.6675%" height="15" fill="rgb(222,13,18)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2751.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (626 samples, 2.67%)</title><rect x="32.7808%" y="2725" width="2.6675%" height="15" fill="rgb(238,150,15)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2735.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (626 samples, 2.67%)</title><rect x="32.7808%" y="2709" width="2.6675%" height="15" fill="rgb(235,57,5)" fg:x="7693" fg:w="626"/><text x="33.0308%" y="2719.50">ra..</text></g><g><title>rayon_core::join::join_context (521 samples, 2.22%)</title><rect x="33.2282%" y="2693" width="2.2200%" height="15" fill="rgb(214,196,13)" fg:x="7798" fg:w="521"/><text x="33.4782%" y="2703.50">r..</text></g><g><title>rayon_core::registry::in_worker (521 samples, 2.22%)</title><rect x="33.2282%" y="2677" width="2.2200%" height="15" fill="rgb(217,219,39)" fg:x="7798" fg:w="521"/><text x="33.4782%" y="2687.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (521 samples, 2.22%)</title><rect x="33.2282%" y="2661" width="2.2200%" height="15" fill="rgb(237,225,39)" fg:x="7798" fg:w="521"/><text x="33.4782%" y="2671.50">r..</text></g><g><title>rayon_core::unwind::halt_unwinding (261 samples, 1.11%)</title><rect x="34.3361%" y="2645" width="1.1122%" height="15" fill="rgb(221,88,26)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (261 samples, 1.11%)</title><rect x="34.3361%" y="2629" width="1.1122%" height="15" fill="rgb(205,45,48)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2639.50"></text></g><g><title>std::panicking::try (261 samples, 1.11%)</title><rect x="34.3361%" y="2613" width="1.1122%" height="15" fill="rgb(234,216,37)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (261 samples, 1.11%)</title><rect x="34.3361%" y="2597" width="1.1122%" height="15" fill="rgb(243,210,39)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (261 samples, 1.11%)</title><rect x="34.3361%" y="2581" width="1.1122%" height="15" fill="rgb(232,86,47)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (261 samples, 1.11%)</title><rect x="34.3361%" y="2565" width="1.1122%" height="15" fill="rgb(234,222,31)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (261 samples, 1.11%)</title><rect x="34.3361%" y="2549" width="1.1122%" height="15" fill="rgb(211,202,13)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (261 samples, 1.11%)</title><rect x="34.3361%" y="2533" width="1.1122%" height="15" fill="rgb(237,138,3)" fg:x="8058" fg:w="261"/><text x="34.5861%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (175 samples, 0.75%)</title><rect x="34.7026%" y="2517" width="0.7457%" height="15" fill="rgb(225,74,1)" fg:x="8144" fg:w="175"/><text x="34.9526%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (175 samples, 0.75%)</title><rect x="34.7026%" y="2501" width="0.7457%" height="15" fill="rgb(252,76,17)" fg:x="8144" fg:w="175"/><text x="34.9526%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (175 samples, 0.75%)</title><rect x="34.7026%" y="2485" width="0.7457%" height="15" fill="rgb(217,109,21)" fg:x="8144" fg:w="175"/><text x="34.9526%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (90 samples, 0.38%)</title><rect x="35.0648%" y="2469" width="0.3835%" height="15" fill="rgb(235,7,3)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (90 samples, 0.38%)</title><rect x="35.0648%" y="2453" width="0.3835%" height="15" fill="rgb(238,16,13)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2463.50"></text></g><g><title>std::panicking::try (90 samples, 0.38%)</title><rect x="35.0648%" y="2437" width="0.3835%" height="15" fill="rgb(242,32,47)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (90 samples, 0.38%)</title><rect x="35.0648%" y="2421" width="0.3835%" height="15" fill="rgb(241,38,43)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (90 samples, 0.38%)</title><rect x="35.0648%" y="2405" width="0.3835%" height="15" fill="rgb(213,124,26)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (90 samples, 0.38%)</title><rect x="35.0648%" y="2389" width="0.3835%" height="15" fill="rgb(208,183,39)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (90 samples, 0.38%)</title><rect x="35.0648%" y="2373" width="0.3835%" height="15" fill="rgb(222,116,36)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (90 samples, 0.38%)</title><rect x="35.0648%" y="2357" width="0.3835%" height="15" fill="rgb(214,36,24)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (90 samples, 0.38%)</title><rect x="35.0648%" y="2341" width="0.3835%" height="15" fill="rgb(254,64,37)" fg:x="8229" fg:w="90"/><text x="35.3148%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="35.4014%" y="2325" width="0.0469%" height="15" fill="rgb(216,166,14)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2335.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="35.4014%" y="2309" width="0.0469%" height="15" fill="rgb(242,144,17)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="35.4014%" y="2293" width="0.0469%" height="15" fill="rgb(233,229,42)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="35.4014%" y="2277" width="0.0469%" height="15" fill="rgb(221,204,47)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="35.4014%" y="2261" width="0.0469%" height="15" fill="rgb(230,26,44)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (11 samples, 0.05%)</title><rect x="35.4014%" y="2245" width="0.0469%" height="15" fill="rgb(242,209,3)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (11 samples, 0.05%)</title><rect x="35.4014%" y="2229" width="0.0469%" height="15" fill="rgb(229,32,19)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (11 samples, 0.05%)</title><rect x="35.4014%" y="2213" width="0.0469%" height="15" fill="rgb(211,49,50)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (11 samples, 0.05%)</title><rect x="35.4014%" y="2197" width="0.0469%" height="15" fill="rgb(208,171,21)" fg:x="8308" fg:w="11"/><text x="35.6514%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="35.4312%" y="2181" width="0.0170%" height="15" fill="rgb(240,86,9)" fg:x="8315" fg:w="4"/><text x="35.6812%" y="2191.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="35.4653%" y="2101" width="0.0128%" height="15" fill="rgb(207,169,47)" fg:x="8323" fg:w="3"/><text x="35.7153%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="35.4653%" y="2085" width="0.0128%" height="15" fill="rgb(212,103,33)" fg:x="8323" fg:w="3"/><text x="35.7153%" y="2095.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.4653%" y="2069" width="0.0128%" height="15" fill="rgb(209,86,21)" fg:x="8323" fg:w="3"/><text x="35.7153%" y="2079.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.4653%" y="2053" width="0.0128%" height="15" fill="rgb(221,77,49)" fg:x="8323" fg:w="3"/><text x="35.7153%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="35.4568%" y="2533" width="0.0298%" height="15" fill="rgb(244,188,21)" fg:x="8321" fg:w="7"/><text x="35.7068%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="35.4568%" y="2517" width="0.0298%" height="15" fill="rgb(228,11,38)" fg:x="8321" fg:w="7"/><text x="35.7068%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="35.4568%" y="2501" width="0.0298%" height="15" fill="rgb(222,158,25)" fg:x="8321" fg:w="7"/><text x="35.7068%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.4568%" y="2485" width="0.0298%" height="15" fill="rgb(232,223,3)" fg:x="8321" fg:w="7"/><text x="35.7068%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="35.4568%" y="2469" width="0.0298%" height="15" fill="rgb(218,55,0)" fg:x="8321" fg:w="7"/><text x="35.7068%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="35.4568%" y="2453" width="0.0298%" height="15" fill="rgb(223,130,7)" fg:x="8321" fg:w="7"/><text x="35.7068%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="35.4568%" y="2437" width="0.0298%" height="15" fill="rgb(246,183,32)" fg:x="8321" fg:w="7"/><text x="35.7068%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="35.4653%" y="2421" width="0.0213%" height="15" fill="rgb(233,194,27)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="35.4653%" y="2405" width="0.0213%" height="15" fill="rgb(244,187,35)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2415.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="35.4653%" y="2389" width="0.0213%" height="15" fill="rgb(238,33,29)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="35.4653%" y="2373" width="0.0213%" height="15" fill="rgb(235,216,15)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="35.4653%" y="2357" width="0.0213%" height="15" fill="rgb(211,167,33)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="35.4653%" y="2341" width="0.0213%" height="15" fill="rgb(235,74,3)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="35.4653%" y="2325" width="0.0213%" height="15" fill="rgb(241,103,0)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.4653%" y="2309" width="0.0213%" height="15" fill="rgb(223,138,54)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="35.4653%" y="2293" width="0.0213%" height="15" fill="rgb(228,24,36)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="35.4653%" y="2277" width="0.0213%" height="15" fill="rgb(215,14,8)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="35.4653%" y="2261" width="0.0213%" height="15" fill="rgb(231,9,2)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="35.4653%" y="2245" width="0.0213%" height="15" fill="rgb(215,150,51)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="35.4653%" y="2229" width="0.0213%" height="15" fill="rgb(254,124,6)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="35.4653%" y="2213" width="0.0213%" height="15" fill="rgb(216,111,25)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="35.4653%" y="2197" width="0.0213%" height="15" fill="rgb(237,87,46)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="35.4653%" y="2181" width="0.0213%" height="15" fill="rgb(216,183,42)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="35.4653%" y="2165" width="0.0213%" height="15" fill="rgb(214,175,46)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="35.4653%" y="2149" width="0.0213%" height="15" fill="rgb(247,223,23)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="35.4653%" y="2133" width="0.0213%" height="15" fill="rgb(240,132,12)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="35.4653%" y="2117" width="0.0213%" height="15" fill="rgb(245,123,48)" fg:x="8323" fg:w="5"/><text x="35.7153%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="35.4866%" y="2133" width="0.0170%" height="15" fill="rgb(245,156,12)" fg:x="8328" fg:w="4"/><text x="35.7366%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="35.4866%" y="2117" width="0.0170%" height="15" fill="rgb(212,48,35)" fg:x="8328" fg:w="4"/><text x="35.7366%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="35.4866%" y="2101" width="0.0170%" height="15" fill="rgb(213,21,25)" fg:x="8328" fg:w="4"/><text x="35.7366%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.4866%" y="2085" width="0.0170%" height="15" fill="rgb(215,17,16)" fg:x="8328" fg:w="4"/><text x="35.7366%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="35.4866%" y="2069" width="0.0170%" height="15" fill="rgb(235,160,36)" fg:x="8328" fg:w="4"/><text x="35.7366%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.4866%" y="2053" width="0.0170%" height="15" fill="rgb(248,141,20)" fg:x="8328" fg:w="4"/><text x="35.7366%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="35.4866%" y="2037" width="0.0170%" height="15" fill="rgb(253,123,32)" fg:x="8328" fg:w="4"/><text x="35.7366%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="35.4866%" y="2245" width="0.0341%" height="15" fill="rgb(214,72,40)" fg:x="8328" fg:w="8"/><text x="35.7366%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="35.4866%" y="2229" width="0.0341%" height="15" fill="rgb(234,122,41)" fg:x="8328" fg:w="8"/><text x="35.7366%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="35.4866%" y="2213" width="0.0341%" height="15" fill="rgb(236,55,21)" fg:x="8328" fg:w="8"/><text x="35.7366%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="35.4866%" y="2197" width="0.0341%" height="15" fill="rgb(222,162,54)" fg:x="8328" fg:w="8"/><text x="35.7366%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="35.4866%" y="2181" width="0.0341%" height="15" fill="rgb(219,74,8)" fg:x="8328" fg:w="8"/><text x="35.7366%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="35.4866%" y="2165" width="0.0341%" height="15" fill="rgb(222,106,42)" fg:x="8328" fg:w="8"/><text x="35.7366%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="35.4866%" y="2149" width="0.0341%" height="15" fill="rgb(223,40,43)" fg:x="8328" fg:w="8"/><text x="35.7366%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="35.5037%" y="2133" width="0.0170%" height="15" fill="rgb(229,216,28)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="35.5037%" y="2117" width="0.0170%" height="15" fill="rgb(222,17,5)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2127.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="35.5037%" y="2101" width="0.0170%" height="15" fill="rgb(212,51,2)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="35.5037%" y="2085" width="0.0170%" height="15" fill="rgb(243,213,35)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="35.5037%" y="2069" width="0.0170%" height="15" fill="rgb(218,68,26)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5037%" y="2053" width="0.0170%" height="15" fill="rgb(214,135,33)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5037%" y="2037" width="0.0170%" height="15" fill="rgb(248,7,20)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.5037%" y="2021" width="0.0170%" height="15" fill="rgb(209,147,4)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="35.5037%" y="2005" width="0.0170%" height="15" fill="rgb(251,48,10)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.5037%" y="1989" width="0.0170%" height="15" fill="rgb(226,62,22)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5037%" y="1973" width="0.0170%" height="15" fill="rgb(218,5,25)" fg:x="8332" fg:w="4"/><text x="35.7537%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="35.5207%" y="2069" width="0.0170%" height="15" fill="rgb(240,229,8)" fg:x="8336" fg:w="4"/><text x="35.7707%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5207%" y="2053" width="0.0170%" height="15" fill="rgb(219,123,53)" fg:x="8336" fg:w="4"/><text x="35.7707%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5207%" y="2037" width="0.0170%" height="15" fill="rgb(239,77,49)" fg:x="8336" fg:w="4"/><text x="35.7707%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.5207%" y="2021" width="0.0170%" height="15" fill="rgb(247,22,15)" fg:x="8336" fg:w="4"/><text x="35.7707%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="35.5207%" y="2005" width="0.0170%" height="15" fill="rgb(210,55,17)" fg:x="8336" fg:w="4"/><text x="35.7707%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.5207%" y="1989" width="0.0170%" height="15" fill="rgb(228,130,51)" fg:x="8336" fg:w="4"/><text x="35.7707%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5207%" y="1973" width="0.0170%" height="15" fill="rgb(206,81,33)" fg:x="8336" fg:w="4"/><text x="35.7707%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (17 samples, 0.07%)</title><rect x="35.4866%" y="2533" width="0.0724%" height="15" fill="rgb(241,104,30)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="35.4866%" y="2517" width="0.0724%" height="15" fill="rgb(240,88,12)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (17 samples, 0.07%)</title><rect x="35.4866%" y="2501" width="0.0724%" height="15" fill="rgb(249,116,19)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (17 samples, 0.07%)</title><rect x="35.4866%" y="2485" width="0.0724%" height="15" fill="rgb(250,218,1)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (17 samples, 0.07%)</title><rect x="35.4866%" y="2469" width="0.0724%" height="15" fill="rgb(233,220,16)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (17 samples, 0.07%)</title><rect x="35.4866%" y="2453" width="0.0724%" height="15" fill="rgb(248,195,9)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="35.4866%" y="2437" width="0.0724%" height="15" fill="rgb(230,58,11)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="35.4866%" y="2421" width="0.0724%" height="15" fill="rgb(217,125,51)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2431.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="35.4866%" y="2405" width="0.0724%" height="15" fill="rgb(252,119,13)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="35.4866%" y="2389" width="0.0724%" height="15" fill="rgb(245,23,2)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="35.4866%" y="2373" width="0.0724%" height="15" fill="rgb(216,98,41)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (17 samples, 0.07%)</title><rect x="35.4866%" y="2357" width="0.0724%" height="15" fill="rgb(228,181,52)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="35.4866%" y="2341" width="0.0724%" height="15" fill="rgb(238,203,39)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="35.4866%" y="2325" width="0.0724%" height="15" fill="rgb(214,56,7)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="35.4866%" y="2309" width="0.0724%" height="15" fill="rgb(229,167,38)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="35.4866%" y="2293" width="0.0724%" height="15" fill="rgb(242,135,4)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="35.4866%" y="2277" width="0.0724%" height="15" fill="rgb(211,228,4)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="35.4866%" y="2261" width="0.0724%" height="15" fill="rgb(206,139,51)" fg:x="8328" fg:w="17"/><text x="35.7366%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="35.5207%" y="2245" width="0.0384%" height="15" fill="rgb(236,70,25)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="35.5207%" y="2229" width="0.0384%" height="15" fill="rgb(224,211,44)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2239.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="35.5207%" y="2213" width="0.0384%" height="15" fill="rgb(226,160,45)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="35.5207%" y="2197" width="0.0384%" height="15" fill="rgb(235,150,10)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="35.5207%" y="2181" width="0.0384%" height="15" fill="rgb(253,222,52)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="35.5207%" y="2165" width="0.0384%" height="15" fill="rgb(248,159,14)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="35.5207%" y="2149" width="0.0384%" height="15" fill="rgb(252,161,4)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.5207%" y="2133" width="0.0384%" height="15" fill="rgb(227,107,7)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="35.5207%" y="2117" width="0.0384%" height="15" fill="rgb(248,227,35)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="35.5207%" y="2101" width="0.0384%" height="15" fill="rgb(240,68,14)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="35.5207%" y="2085" width="0.0384%" height="15" fill="rgb(243,5,47)" fg:x="8336" fg:w="9"/><text x="35.7707%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="35.5378%" y="2069" width="0.0213%" height="15" fill="rgb(225,134,14)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="35.5378%" y="2053" width="0.0213%" height="15" fill="rgb(225,207,41)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="2063.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="35.5378%" y="2037" width="0.0213%" height="15" fill="rgb(207,214,21)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="35.5378%" y="2021" width="0.0213%" height="15" fill="rgb(230,100,48)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="35.5378%" y="2005" width="0.0213%" height="15" fill="rgb(231,155,51)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="35.5378%" y="1989" width="0.0213%" height="15" fill="rgb(252,98,23)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="35.5378%" y="1973" width="0.0213%" height="15" fill="rgb(216,151,14)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.5378%" y="1957" width="0.0213%" height="15" fill="rgb(250,20,49)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="35.5378%" y="1941" width="0.0213%" height="15" fill="rgb(217,134,33)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.5378%" y="1925" width="0.0213%" height="15" fill="rgb(205,94,24)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="35.5378%" y="1909" width="0.0213%" height="15" fill="rgb(244,96,26)" fg:x="8340" fg:w="5"/><text x="35.7878%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="35.5463%" y="1893" width="0.0128%" height="15" fill="rgb(218,48,4)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="35.5463%" y="1877" width="0.0128%" height="15" fill="rgb(210,74,37)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="35.5463%" y="1861" width="0.0128%" height="15" fill="rgb(240,170,7)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="35.5463%" y="1845" width="0.0128%" height="15" fill="rgb(251,120,48)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="35.5463%" y="1829" width="0.0128%" height="15" fill="rgb(219,149,25)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="35.5463%" y="1813" width="0.0128%" height="15" fill="rgb(223,222,45)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.5463%" y="1797" width="0.0128%" height="15" fill="rgb(216,18,1)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5463%" y="1781" width="0.0128%" height="15" fill="rgb(251,184,12)" fg:x="8342" fg:w="3"/><text x="35.7963%" y="1791.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="35.5591%" y="2101" width="0.0170%" height="15" fill="rgb(222,116,37)" fg:x="8345" fg:w="4"/><text x="35.8091%" y="2111.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="35.5591%" y="2085" width="0.0170%" height="15" fill="rgb(236,223,24)" fg:x="8345" fg:w="4"/><text x="35.8091%" y="2095.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="35.5591%" y="2069" width="0.0170%" height="15" fill="rgb(229,38,32)" fg:x="8345" fg:w="4"/><text x="35.8091%" y="2079.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="35.5591%" y="2053" width="0.0170%" height="15" fill="rgb(251,208,7)" fg:x="8345" fg:w="4"/><text x="35.8091%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="35.5591%" y="2357" width="0.0256%" height="15" fill="rgb(207,226,43)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="35.5591%" y="2341" width="0.0256%" height="15" fill="rgb(247,229,43)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="35.5591%" y="2325" width="0.0256%" height="15" fill="rgb(217,201,52)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.5591%" y="2309" width="0.0256%" height="15" fill="rgb(228,68,39)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="35.5591%" y="2293" width="0.0256%" height="15" fill="rgb(218,138,7)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="35.5591%" y="2277" width="0.0256%" height="15" fill="rgb(230,78,37)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="35.5591%" y="2261" width="0.0256%" height="15" fill="rgb(246,177,36)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="35.5591%" y="2245" width="0.0256%" height="15" fill="rgb(231,190,6)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="35.5591%" y="2229" width="0.0256%" height="15" fill="rgb(234,217,25)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="35.5591%" y="2213" width="0.0256%" height="15" fill="rgb(249,131,38)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="35.5591%" y="2197" width="0.0256%" height="15" fill="rgb(253,168,16)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="35.5591%" y="2181" width="0.0256%" height="15" fill="rgb(232,181,39)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="35.5591%" y="2165" width="0.0256%" height="15" fill="rgb(216,167,0)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="35.5591%" y="2149" width="0.0256%" height="15" fill="rgb(247,77,10)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="35.5591%" y="2133" width="0.0256%" height="15" fill="rgb(220,28,10)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="35.5591%" y="2117" width="0.0256%" height="15" fill="rgb(251,163,49)" fg:x="8345" fg:w="6"/><text x="35.8091%" y="2127.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="35.5846%" y="2037" width="0.0128%" height="15" fill="rgb(249,148,50)" fg:x="8351" fg:w="3"/><text x="35.8346%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="35.5846%" y="2021" width="0.0128%" height="15" fill="rgb(238,149,36)" fg:x="8351" fg:w="3"/><text x="35.8346%" y="2031.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.5846%" y="2005" width="0.0128%" height="15" fill="rgb(248,191,13)" fg:x="8351" fg:w="3"/><text x="35.8346%" y="2015.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.5846%" y="1989" width="0.0128%" height="15" fill="rgb(233,73,17)" fg:x="8351" fg:w="3"/><text x="35.8346%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="35.5846%" y="2229" width="0.0170%" height="15" fill="rgb(233,197,11)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="35.5846%" y="2213" width="0.0170%" height="15" fill="rgb(245,42,8)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="35.5846%" y="2197" width="0.0170%" height="15" fill="rgb(217,39,50)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="35.5846%" y="2181" width="0.0170%" height="15" fill="rgb(250,23,13)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="35.5846%" y="2165" width="0.0170%" height="15" fill="rgb(219,204,45)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="35.5846%" y="2149" width="0.0170%" height="15" fill="rgb(248,54,16)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="35.5846%" y="2133" width="0.0170%" height="15" fill="rgb(213,16,14)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5846%" y="2117" width="0.0170%" height="15" fill="rgb(245,18,44)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="35.5846%" y="2101" width="0.0170%" height="15" fill="rgb(232,10,47)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="35.5846%" y="2085" width="0.0170%" height="15" fill="rgb(237,185,33)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="35.5846%" y="2069" width="0.0170%" height="15" fill="rgb(224,223,44)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="35.5846%" y="2053" width="0.0170%" height="15" fill="rgb(238,98,11)" fg:x="8351" fg:w="4"/><text x="35.8346%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (36 samples, 0.15%)</title><rect x="35.4525%" y="2645" width="0.1534%" height="15" fill="rgb(217,33,34)" fg:x="8320" fg:w="36"/><text x="35.7025%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (36 samples, 0.15%)</title><rect x="35.4525%" y="2629" width="0.1534%" height="15" fill="rgb(232,193,38)" fg:x="8320" fg:w="36"/><text x="35.7025%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (36 samples, 0.15%)</title><rect x="35.4525%" y="2613" width="0.1534%" height="15" fill="rgb(231,23,4)" fg:x="8320" fg:w="36"/><text x="35.7025%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.15%)</title><rect x="35.4525%" y="2597" width="0.1534%" height="15" fill="rgb(218,154,4)" fg:x="8320" fg:w="36"/><text x="35.7025%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (35 samples, 0.15%)</title><rect x="35.4568%" y="2581" width="0.1491%" height="15" fill="rgb(243,171,32)" fg:x="8321" fg:w="35"/><text x="35.7068%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.15%)</title><rect x="35.4568%" y="2565" width="0.1491%" height="15" fill="rgb(210,102,6)" fg:x="8321" fg:w="35"/><text x="35.7068%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (35 samples, 0.15%)</title><rect x="35.4568%" y="2549" width="0.1491%" height="15" fill="rgb(205,134,8)" fg:x="8321" fg:w="35"/><text x="35.7068%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="35.5591%" y="2533" width="0.0469%" height="15" fill="rgb(240,115,17)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="35.5591%" y="2517" width="0.0469%" height="15" fill="rgb(213,62,14)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2527.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="35.5591%" y="2501" width="0.0469%" height="15" fill="rgb(249,149,16)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="35.5591%" y="2485" width="0.0469%" height="15" fill="rgb(220,195,22)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="35.5591%" y="2469" width="0.0469%" height="15" fill="rgb(211,106,49)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="35.5591%" y="2453" width="0.0469%" height="15" fill="rgb(214,176,52)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="35.5591%" y="2437" width="0.0469%" height="15" fill="rgb(212,121,30)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="35.5591%" y="2421" width="0.0469%" height="15" fill="rgb(231,167,39)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="35.5591%" y="2405" width="0.0469%" height="15" fill="rgb(233,93,22)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="35.5591%" y="2389" width="0.0469%" height="15" fill="rgb(242,187,26)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="35.5591%" y="2373" width="0.0469%" height="15" fill="rgb(209,152,0)" fg:x="8345" fg:w="11"/><text x="35.8091%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="35.5846%" y="2357" width="0.0213%" height="15" fill="rgb(208,174,22)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="35.5846%" y="2341" width="0.0213%" height="15" fill="rgb(216,172,41)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2351.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="35.5846%" y="2325" width="0.0213%" height="15" fill="rgb(238,206,48)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="35.5846%" y="2309" width="0.0213%" height="15" fill="rgb(229,70,36)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="35.5846%" y="2293" width="0.0213%" height="15" fill="rgb(230,152,25)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="35.5846%" y="2277" width="0.0213%" height="15" fill="rgb(243,173,54)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="35.5846%" y="2261" width="0.0213%" height="15" fill="rgb(252,104,23)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.5846%" y="2245" width="0.0213%" height="15" fill="rgb(224,24,50)" fg:x="8351" fg:w="5"/><text x="35.8346%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="35.6059%" y="2357" width="0.0256%" height="15" fill="rgb(212,13,43)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="35.6059%" y="2341" width="0.0256%" height="15" fill="rgb(243,34,26)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="35.6059%" y="2325" width="0.0256%" height="15" fill="rgb(239,209,5)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="35.6059%" y="2309" width="0.0256%" height="15" fill="rgb(239,212,43)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="35.6059%" y="2293" width="0.0256%" height="15" fill="rgb(228,72,25)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="35.6059%" y="2277" width="0.0256%" height="15" fill="rgb(205,82,49)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="35.6059%" y="2261" width="0.0256%" height="15" fill="rgb(221,205,24)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="35.6059%" y="2245" width="0.0256%" height="15" fill="rgb(206,213,29)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2255.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="35.6059%" y="2229" width="0.0256%" height="15" fill="rgb(228,180,8)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="35.6059%" y="2213" width="0.0256%" height="15" fill="rgb(217,131,9)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="35.6059%" y="2197" width="0.0256%" height="15" fill="rgb(207,188,14)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="35.6059%" y="2181" width="0.0256%" height="15" fill="rgb(254,82,24)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="35.6059%" y="2165" width="0.0256%" height="15" fill="rgb(209,29,48)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="35.6059%" y="2149" width="0.0256%" height="15" fill="rgb(248,24,3)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.6059%" y="2133" width="0.0256%" height="15" fill="rgb(209,134,11)" fg:x="8356" fg:w="6"/><text x="35.8559%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="35.6145%" y="2117" width="0.0170%" height="15" fill="rgb(253,54,47)" fg:x="8358" fg:w="4"/><text x="35.8645%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.6145%" y="2101" width="0.0170%" height="15" fill="rgb(214,163,42)" fg:x="8358" fg:w="4"/><text x="35.8645%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="35.6145%" y="2085" width="0.0170%" height="15" fill="rgb(206,25,12)" fg:x="8358" fg:w="4"/><text x="35.8645%" y="2095.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="35.6315%" y="1957" width="0.0170%" height="15" fill="rgb(240,49,44)" fg:x="8362" fg:w="4"/><text x="35.8815%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="35.6315%" y="1941" width="0.0170%" height="15" fill="rgb(245,4,38)" fg:x="8362" fg:w="4"/><text x="35.8815%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="35.6315%" y="1925" width="0.0170%" height="15" fill="rgb(215,72,38)" fg:x="8362" fg:w="4"/><text x="35.8815%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.6315%" y="1909" width="0.0170%" height="15" fill="rgb(215,123,24)" fg:x="8362" fg:w="4"/><text x="35.8815%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="35.6315%" y="1893" width="0.0170%" height="15" fill="rgb(242,140,44)" fg:x="8362" fg:w="4"/><text x="35.8815%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.6315%" y="1877" width="0.0170%" height="15" fill="rgb(243,36,26)" fg:x="8362" fg:w="4"/><text x="35.8815%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="35.6315%" y="1861" width="0.0170%" height="15" fill="rgb(207,91,21)" fg:x="8362" fg:w="4"/><text x="35.8815%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="35.6315%" y="2069" width="0.0256%" height="15" fill="rgb(253,111,50)" fg:x="8362" fg:w="6"/><text x="35.8815%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="35.6315%" y="2053" width="0.0256%" height="15" fill="rgb(228,163,27)" fg:x="8362" fg:w="6"/><text x="35.8815%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="35.6315%" y="2037" width="0.0256%" height="15" fill="rgb(205,182,13)" fg:x="8362" fg:w="6"/><text x="35.8815%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.6315%" y="2021" width="0.0256%" height="15" fill="rgb(247,194,0)" fg:x="8362" fg:w="6"/><text x="35.8815%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="35.6315%" y="2005" width="0.0256%" height="15" fill="rgb(241,58,47)" fg:x="8362" fg:w="6"/><text x="35.8815%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="35.6315%" y="1989" width="0.0256%" height="15" fill="rgb(219,25,53)" fg:x="8362" fg:w="6"/><text x="35.8815%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="35.6315%" y="1973" width="0.0256%" height="15" fill="rgb(210,11,24)" fg:x="8362" fg:w="6"/><text x="35.8815%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="35.6571%" y="1093" width="0.0256%" height="15" fill="rgb(247,114,30)" fg:x="8368" fg:w="6"/><text x="35.9071%" y="1103.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="35.6571%" y="1077" width="0.0256%" height="15" fill="rgb(213,74,28)" fg:x="8368" fg:w="6"/><text x="35.9071%" y="1087.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (6 samples, 0.03%)</title><rect x="35.6571%" y="1061" width="0.0256%" height="15" fill="rgb(208,210,48)" fg:x="8368" fg:w="6"/><text x="35.9071%" y="1071.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="35.6613%" y="1045" width="0.0213%" height="15" fill="rgb(218,46,19)" fg:x="8369" fg:w="5"/><text x="35.9113%" y="1055.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="35.6613%" y="1029" width="0.0213%" height="15" fill="rgb(242,194,21)" fg:x="8369" fg:w="5"/><text x="35.9113%" y="1039.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="35.6613%" y="1013" width="0.0213%" height="15" fill="rgb(229,72,4)" fg:x="8369" fg:w="5"/><text x="35.9113%" y="1023.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="35.6613%" y="997" width="0.0213%" height="15" fill="rgb(231,58,6)" fg:x="8369" fg:w="5"/><text x="35.9113%" y="1007.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="35.6613%" y="981" width="0.0213%" height="15" fill="rgb(252,78,15)" fg:x="8369" fg:w="5"/><text x="35.9113%" y="991.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="35.6613%" y="965" width="0.0213%" height="15" fill="rgb(246,64,50)" fg:x="8369" fg:w="5"/><text x="35.9113%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="35.6571%" y="1381" width="0.0341%" height="15" fill="rgb(217,41,24)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1391.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="35.6571%" y="1365" width="0.0341%" height="15" fill="rgb(246,48,46)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1375.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="35.6571%" y="1349" width="0.0341%" height="15" fill="rgb(210,188,31)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1359.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="35.6571%" y="1333" width="0.0341%" height="15" fill="rgb(211,152,13)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1343.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="35.6571%" y="1317" width="0.0341%" height="15" fill="rgb(225,3,9)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1327.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="35.6571%" y="1301" width="0.0341%" height="15" fill="rgb(209,228,2)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1311.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="35.6571%" y="1285" width="0.0341%" height="15" fill="rgb(238,228,1)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1295.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="35.6571%" y="1269" width="0.0341%" height="15" fill="rgb(211,198,35)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1279.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="35.6571%" y="1253" width="0.0341%" height="15" fill="rgb(248,76,52)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1263.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="35.6571%" y="1237" width="0.0341%" height="15" fill="rgb(227,204,49)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1247.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="35.6571%" y="1221" width="0.0341%" height="15" fill="rgb(254,148,46)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1231.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="35.6571%" y="1205" width="0.0341%" height="15" fill="rgb(252,97,43)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="35.6571%" y="1189" width="0.0341%" height="15" fill="rgb(212,80,12)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="35.6571%" y="1173" width="0.0341%" height="15" fill="rgb(254,99,49)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="35.6571%" y="1157" width="0.0341%" height="15" fill="rgb(206,194,15)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1167.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="35.6571%" y="1141" width="0.0341%" height="15" fill="rgb(226,19,53)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="35.6571%" y="1125" width="0.0341%" height="15" fill="rgb(246,39,21)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="35.6571%" y="1109" width="0.0341%" height="15" fill="rgb(208,4,51)" fg:x="8368" fg:w="8"/><text x="35.9071%" y="1119.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="35.6571%" y="1493" width="0.0426%" height="15" fill="rgb(205,70,9)" fg:x="8368" fg:w="10"/><text x="35.9071%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="35.6571%" y="1477" width="0.0426%" height="15" fill="rgb(238,107,40)" fg:x="8368" fg:w="10"/><text x="35.9071%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="35.6571%" y="1461" width="0.0426%" height="15" fill="rgb(251,94,20)" fg:x="8368" fg:w="10"/><text x="35.9071%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="35.6571%" y="1445" width="0.0426%" height="15" fill="rgb(238,124,23)" fg:x="8368" fg:w="10"/><text x="35.9071%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="35.6571%" y="1429" width="0.0426%" height="15" fill="rgb(236,18,23)" fg:x="8368" fg:w="10"/><text x="35.9071%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="35.6571%" y="1413" width="0.0426%" height="15" fill="rgb(236,56,32)" fg:x="8368" fg:w="10"/><text x="35.9071%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="35.6571%" y="1397" width="0.0426%" height="15" fill="rgb(244,115,51)" fg:x="8368" fg:w="10"/><text x="35.9071%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (15 samples, 0.06%)</title><rect x="35.6571%" y="1781" width="0.0639%" height="15" fill="rgb(228,170,36)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.06%)</title><rect x="35.6571%" y="1765" width="0.0639%" height="15" fill="rgb(205,135,5)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (15 samples, 0.06%)</title><rect x="35.6571%" y="1749" width="0.0639%" height="15" fill="rgb(244,153,21)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (15 samples, 0.06%)</title><rect x="35.6571%" y="1733" width="0.0639%" height="15" fill="rgb(241,51,45)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (15 samples, 0.06%)</title><rect x="35.6571%" y="1717" width="0.0639%" height="15" fill="rgb(235,30,2)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (15 samples, 0.06%)</title><rect x="35.6571%" y="1701" width="0.0639%" height="15" fill="rgb(230,138,17)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="35.6571%" y="1685" width="0.0639%" height="15" fill="rgb(225,227,46)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="35.6571%" y="1669" width="0.0639%" height="15" fill="rgb(242,120,29)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1679.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="35.6571%" y="1653" width="0.0639%" height="15" fill="rgb(214,204,1)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="35.6571%" y="1637" width="0.0639%" height="15" fill="rgb(239,202,12)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="35.6571%" y="1621" width="0.0639%" height="15" fill="rgb(221,101,34)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (15 samples, 0.06%)</title><rect x="35.6571%" y="1605" width="0.0639%" height="15" fill="rgb(215,109,50)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="35.6571%" y="1589" width="0.0639%" height="15" fill="rgb(229,199,13)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="35.6571%" y="1573" width="0.0639%" height="15" fill="rgb(253,82,26)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="35.6571%" y="1557" width="0.0639%" height="15" fill="rgb(205,57,20)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="35.6571%" y="1541" width="0.0639%" height="15" fill="rgb(207,57,32)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="35.6571%" y="1525" width="0.0639%" height="15" fill="rgb(235,173,42)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="35.6571%" y="1509" width="0.0639%" height="15" fill="rgb(230,147,10)" fg:x="8368" fg:w="15"/><text x="35.9071%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="35.6997%" y="1493" width="0.0213%" height="15" fill="rgb(220,135,16)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="35.6997%" y="1477" width="0.0213%" height="15" fill="rgb(239,28,10)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1487.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="35.6997%" y="1461" width="0.0213%" height="15" fill="rgb(220,197,38)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="35.6997%" y="1445" width="0.0213%" height="15" fill="rgb(217,13,1)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="35.6997%" y="1429" width="0.0213%" height="15" fill="rgb(225,34,30)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="35.6997%" y="1413" width="0.0213%" height="15" fill="rgb(234,19,10)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="35.6997%" y="1397" width="0.0213%" height="15" fill="rgb(237,68,47)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.6997%" y="1381" width="0.0213%" height="15" fill="rgb(210,125,44)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="35.6997%" y="1365" width="0.0213%" height="15" fill="rgb(206,207,2)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.6997%" y="1349" width="0.0213%" height="15" fill="rgb(207,198,43)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="35.6997%" y="1333" width="0.0213%" height="15" fill="rgb(249,58,35)" fg:x="8378" fg:w="5"/><text x="35.9497%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="35.7082%" y="1317" width="0.0128%" height="15" fill="rgb(236,66,11)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="35.7082%" y="1301" width="0.0128%" height="15" fill="rgb(215,104,28)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1311.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="35.7082%" y="1285" width="0.0128%" height="15" fill="rgb(221,172,14)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="35.7082%" y="1269" width="0.0128%" height="15" fill="rgb(251,215,21)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="35.7082%" y="1253" width="0.0128%" height="15" fill="rgb(215,154,36)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7082%" y="1237" width="0.0128%" height="15" fill="rgb(245,85,25)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7082%" y="1221" width="0.0128%" height="15" fill="rgb(254,37,10)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.7082%" y="1205" width="0.0128%" height="15" fill="rgb(248,63,2)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="35.7082%" y="1189" width="0.0128%" height="15" fill="rgb(222,195,50)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1199.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="35.7082%" y="1173" width="0.0128%" height="15" fill="rgb(218,157,4)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="35.7082%" y="1157" width="0.0128%" height="15" fill="rgb(217,186,23)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1167.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="35.7082%" y="1141" width="0.0128%" height="15" fill="rgb(211,100,12)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1151.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="35.7082%" y="1125" width="0.0128%" height="15" fill="rgb(252,7,25)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1135.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="35.7082%" y="1109" width="0.0128%" height="15" fill="rgb(219,6,30)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1119.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="35.7082%" y="1093" width="0.0128%" height="15" fill="rgb(228,68,4)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1103.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7082%" y="1077" width="0.0128%" height="15" fill="rgb(238,104,53)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1087.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="35.7082%" y="1061" width="0.0128%" height="15" fill="rgb(209,110,10)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1071.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="35.7082%" y="1045" width="0.0128%" height="15" fill="rgb(214,190,40)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7082%" y="1029" width="0.0128%" height="15" fill="rgb(222,103,43)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1039.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="35.7082%" y="1013" width="0.0128%" height="15" fill="rgb(247,105,41)" fg:x="8380" fg:w="3"/><text x="35.9582%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="35.7380%" y="1317" width="0.0170%" height="15" fill="rgb(249,173,41)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1327.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="35.7380%" y="1301" width="0.0170%" height="15" fill="rgb(229,171,54)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1311.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="35.7380%" y="1285" width="0.0170%" height="15" fill="rgb(223,229,10)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1295.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="35.7380%" y="1269" width="0.0170%" height="15" fill="rgb(243,218,44)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1279.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="35.7380%" y="1253" width="0.0170%" height="15" fill="rgb(215,188,5)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1263.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="35.7380%" y="1237" width="0.0170%" height="15" fill="rgb(239,133,39)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="35.7380%" y="1221" width="0.0170%" height="15" fill="rgb(229,215,45)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="35.7380%" y="1205" width="0.0170%" height="15" fill="rgb(237,222,4)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1215.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="35.7380%" y="1189" width="0.0170%" height="15" fill="rgb(219,191,34)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="35.7380%" y="1173" width="0.0170%" height="15" fill="rgb(236,20,29)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="35.7380%" y="1157" width="0.0170%" height="15" fill="rgb(206,19,36)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1167.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="35.7380%" y="1141" width="0.0170%" height="15" fill="rgb(234,192,51)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="35.7380%" y="1125" width="0.0170%" height="15" fill="rgb(243,23,26)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="35.7380%" y="1109" width="0.0170%" height="15" fill="rgb(253,92,16)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.7380%" y="1093" width="0.0170%" height="15" fill="rgb(218,82,11)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="35.7380%" y="1077" width="0.0170%" height="15" fill="rgb(214,207,16)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.7380%" y="1061" width="0.0170%" height="15" fill="rgb(207,202,38)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="35.7380%" y="1045" width="0.0170%" height="15" fill="rgb(216,51,45)" fg:x="8387" fg:w="4"/><text x="35.9880%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="35.7295%" y="1605" width="0.0469%" height="15" fill="rgb(233,185,52)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="35.7295%" y="1589" width="0.0469%" height="15" fill="rgb(217,21,41)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="35.7295%" y="1573" width="0.0469%" height="15" fill="rgb(251,137,39)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1583.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="35.7295%" y="1557" width="0.0469%" height="15" fill="rgb(241,93,18)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1567.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="35.7295%" y="1541" width="0.0469%" height="15" fill="rgb(212,224,28)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1551.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="35.7295%" y="1525" width="0.0469%" height="15" fill="rgb(221,151,41)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1535.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="35.7295%" y="1509" width="0.0469%" height="15" fill="rgb(248,215,5)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1519.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="35.7295%" y="1493" width="0.0469%" height="15" fill="rgb(207,34,23)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1503.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="35.7295%" y="1477" width="0.0469%" height="15" fill="rgb(235,209,54)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1487.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="35.7295%" y="1461" width="0.0469%" height="15" fill="rgb(205,12,35)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1471.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="35.7295%" y="1445" width="0.0469%" height="15" fill="rgb(250,83,24)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1455.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="35.7295%" y="1429" width="0.0469%" height="15" fill="rgb(241,127,6)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="35.7295%" y="1413" width="0.0469%" height="15" fill="rgb(207,19,46)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="35.7295%" y="1397" width="0.0469%" height="15" fill="rgb(233,9,54)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="35.7295%" y="1381" width="0.0469%" height="15" fill="rgb(209,229,48)" fg:x="8385" fg:w="11"/><text x="35.9795%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="35.7380%" y="1365" width="0.0384%" height="15" fill="rgb(231,110,47)" fg:x="8387" fg:w="9"/><text x="35.9880%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="35.7380%" y="1349" width="0.0384%" height="15" fill="rgb(225,200,45)" fg:x="8387" fg:w="9"/><text x="35.9880%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="35.7380%" y="1333" width="0.0384%" height="15" fill="rgb(208,153,32)" fg:x="8387" fg:w="9"/><text x="35.9880%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="35.7551%" y="1317" width="0.0213%" height="15" fill="rgb(208,35,2)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="35.7551%" y="1301" width="0.0213%" height="15" fill="rgb(252,120,50)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1311.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="35.7551%" y="1285" width="0.0213%" height="15" fill="rgb(251,83,29)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="35.7551%" y="1269" width="0.0213%" height="15" fill="rgb(207,183,43)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="35.7551%" y="1253" width="0.0213%" height="15" fill="rgb(230,100,25)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="35.7551%" y="1237" width="0.0213%" height="15" fill="rgb(231,117,24)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="35.7551%" y="1221" width="0.0213%" height="15" fill="rgb(222,12,48)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.7551%" y="1205" width="0.0213%" height="15" fill="rgb(251,18,48)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="35.7551%" y="1189" width="0.0213%" height="15" fill="rgb(242,225,24)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.7551%" y="1173" width="0.0213%" height="15" fill="rgb(253,162,42)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="35.7551%" y="1157" width="0.0213%" height="15" fill="rgb(212,34,6)" fg:x="8391" fg:w="5"/><text x="36.0051%" y="1167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="35.7636%" y="1141" width="0.0128%" height="15" fill="rgb(237,158,6)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="35.7636%" y="1125" width="0.0128%" height="15" fill="rgb(219,93,8)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1135.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="35.7636%" y="1109" width="0.0128%" height="15" fill="rgb(222,112,13)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="35.7636%" y="1093" width="0.0128%" height="15" fill="rgb(230,77,36)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="35.7636%" y="1077" width="0.0128%" height="15" fill="rgb(236,71,34)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7636%" y="1061" width="0.0128%" height="15" fill="rgb(211,176,26)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7636%" y="1045" width="0.0128%" height="15" fill="rgb(235,184,14)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.7636%" y="1029" width="0.0128%" height="15" fill="rgb(205,205,54)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="35.7636%" y="1013" width="0.0128%" height="15" fill="rgb(219,118,46)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1023.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="35.7636%" y="997" width="0.0128%" height="15" fill="rgb(219,187,54)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="35.7636%" y="981" width="0.0128%" height="15" fill="rgb(228,42,5)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="991.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="35.7636%" y="965" width="0.0128%" height="15" fill="rgb(232,134,35)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="975.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="35.7636%" y="949" width="0.0128%" height="15" fill="rgb(248,57,6)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="959.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="35.7636%" y="933" width="0.0128%" height="15" fill="rgb(244,78,46)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="943.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="35.7636%" y="917" width="0.0128%" height="15" fill="rgb(220,132,41)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="927.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7636%" y="901" width="0.0128%" height="15" fill="rgb(238,14,54)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="35.7636%" y="885" width="0.0128%" height="15" fill="rgb(206,75,49)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="895.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="35.7636%" y="869" width="0.0128%" height="15" fill="rgb(234,70,47)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="879.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7636%" y="853" width="0.0128%" height="15" fill="rgb(225,66,18)" fg:x="8393" fg:w="3"/><text x="36.0136%" y="863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="35.7764%" y="1429" width="0.0128%" height="15" fill="rgb(242,56,6)" fg:x="8396" fg:w="3"/><text x="36.0264%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7764%" y="1413" width="0.0128%" height="15" fill="rgb(221,184,32)" fg:x="8396" fg:w="3"/><text x="36.0264%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7764%" y="1397" width="0.0128%" height="15" fill="rgb(209,16,24)" fg:x="8396" fg:w="3"/><text x="36.0264%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.7764%" y="1381" width="0.0128%" height="15" fill="rgb(215,7,25)" fg:x="8396" fg:w="3"/><text x="36.0264%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="35.7764%" y="1365" width="0.0128%" height="15" fill="rgb(218,149,6)" fg:x="8396" fg:w="3"/><text x="36.0264%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.7764%" y="1349" width="0.0128%" height="15" fill="rgb(251,164,43)" fg:x="8396" fg:w="3"/><text x="36.0264%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="35.7764%" y="1333" width="0.0128%" height="15" fill="rgb(205,140,26)" fg:x="8396" fg:w="3"/><text x="36.0264%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (35 samples, 0.15%)</title><rect x="35.6571%" y="2069" width="0.1491%" height="15" fill="rgb(246,4,17)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (35 samples, 0.15%)</title><rect x="35.6571%" y="2053" width="0.1491%" height="15" fill="rgb(241,107,34)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (35 samples, 0.15%)</title><rect x="35.6571%" y="2037" width="0.1491%" height="15" fill="rgb(217,221,1)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (35 samples, 0.15%)</title><rect x="35.6571%" y="2021" width="0.1491%" height="15" fill="rgb(229,28,23)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (35 samples, 0.15%)</title><rect x="35.6571%" y="2005" width="0.1491%" height="15" fill="rgb(225,217,45)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (35 samples, 0.15%)</title><rect x="35.6571%" y="1989" width="0.1491%" height="15" fill="rgb(246,170,39)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (35 samples, 0.15%)</title><rect x="35.6571%" y="1973" width="0.1491%" height="15" fill="rgb(205,183,44)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (35 samples, 0.15%)</title><rect x="35.6571%" y="1957" width="0.1491%" height="15" fill="rgb(206,200,29)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1967.50"></text></g><g><title>std::panicking::try (35 samples, 0.15%)</title><rect x="35.6571%" y="1941" width="0.1491%" height="15" fill="rgb(245,56,1)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (35 samples, 0.15%)</title><rect x="35.6571%" y="1925" width="0.1491%" height="15" fill="rgb(253,122,1)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (35 samples, 0.15%)</title><rect x="35.6571%" y="1909" width="0.1491%" height="15" fill="rgb(219,155,50)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (35 samples, 0.15%)</title><rect x="35.6571%" y="1893" width="0.1491%" height="15" fill="rgb(226,14,49)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (35 samples, 0.15%)</title><rect x="35.6571%" y="1877" width="0.1491%" height="15" fill="rgb(216,109,54)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (35 samples, 0.15%)</title><rect x="35.6571%" y="1861" width="0.1491%" height="15" fill="rgb(209,180,14)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.15%)</title><rect x="35.6571%" y="1845" width="0.1491%" height="15" fill="rgb(245,113,8)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (35 samples, 0.15%)</title><rect x="35.6571%" y="1829" width="0.1491%" height="15" fill="rgb(246,126,24)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.15%)</title><rect x="35.6571%" y="1813" width="0.1491%" height="15" fill="rgb(220,77,11)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (35 samples, 0.15%)</title><rect x="35.6571%" y="1797" width="0.1491%" height="15" fill="rgb(229,44,8)" fg:x="8368" fg:w="35"/><text x="35.9071%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="35.7210%" y="1781" width="0.0852%" height="15" fill="rgb(211,151,33)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="35.7210%" y="1765" width="0.0852%" height="15" fill="rgb(223,50,37)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1775.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="35.7210%" y="1749" width="0.0852%" height="15" fill="rgb(207,138,32)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="35.7210%" y="1733" width="0.0852%" height="15" fill="rgb(241,19,54)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="35.7210%" y="1717" width="0.0852%" height="15" fill="rgb(254,74,52)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="35.7210%" y="1701" width="0.0852%" height="15" fill="rgb(235,134,9)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="35.7210%" y="1685" width="0.0852%" height="15" fill="rgb(246,190,27)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="35.7210%" y="1669" width="0.0852%" height="15" fill="rgb(210,159,52)" fg:x="8383" fg:w="20"/><text x="35.9710%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="35.7295%" y="1653" width="0.0767%" height="15" fill="rgb(213,153,4)" fg:x="8385" fg:w="18"/><text x="35.9795%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="35.7295%" y="1637" width="0.0767%" height="15" fill="rgb(222,217,31)" fg:x="8385" fg:w="18"/><text x="35.9795%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="35.7295%" y="1621" width="0.0767%" height="15" fill="rgb(219,121,28)" fg:x="8385" fg:w="18"/><text x="35.9795%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="35.7764%" y="1605" width="0.0298%" height="15" fill="rgb(242,229,44)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="35.7764%" y="1589" width="0.0298%" height="15" fill="rgb(205,18,44)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1599.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="35.7764%" y="1573" width="0.0298%" height="15" fill="rgb(240,84,34)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="35.7764%" y="1557" width="0.0298%" height="15" fill="rgb(208,23,25)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="35.7764%" y="1541" width="0.0298%" height="15" fill="rgb(239,65,6)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="35.7764%" y="1525" width="0.0298%" height="15" fill="rgb(222,86,0)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="35.7764%" y="1509" width="0.0298%" height="15" fill="rgb(233,72,40)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.7764%" y="1493" width="0.0298%" height="15" fill="rgb(218,153,22)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="35.7764%" y="1477" width="0.0298%" height="15" fill="rgb(216,227,21)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="35.7764%" y="1461" width="0.0298%" height="15" fill="rgb(206,30,3)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="35.7764%" y="1445" width="0.0298%" height="15" fill="rgb(235,47,48)" fg:x="8396" fg:w="7"/><text x="36.0264%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="35.7892%" y="1429" width="0.0170%" height="15" fill="rgb(249,101,39)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="35.7892%" y="1413" width="0.0170%" height="15" fill="rgb(219,68,12)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1423.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="35.7892%" y="1397" width="0.0170%" height="15" fill="rgb(235,71,54)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="35.7892%" y="1381" width="0.0170%" height="15" fill="rgb(236,173,42)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="35.7892%" y="1365" width="0.0170%" height="15" fill="rgb(249,184,22)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="35.7892%" y="1349" width="0.0170%" height="15" fill="rgb(243,217,22)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="35.7892%" y="1333" width="0.0170%" height="15" fill="rgb(209,173,0)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.7892%" y="1317" width="0.0170%" height="15" fill="rgb(224,64,31)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="35.7892%" y="1301" width="0.0170%" height="15" fill="rgb(252,58,39)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.7892%" y="1285" width="0.0170%" height="15" fill="rgb(214,104,22)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="35.7892%" y="1269" width="0.0170%" height="15" fill="rgb(233,160,5)" fg:x="8399" fg:w="4"/><text x="36.0392%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="35.8062%" y="1941" width="0.0128%" height="15" fill="rgb(217,188,8)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="35.8062%" y="1925" width="0.0128%" height="15" fill="rgb(235,9,47)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="35.8062%" y="1909" width="0.0128%" height="15" fill="rgb(219,103,15)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="35.8062%" y="1893" width="0.0128%" height="15" fill="rgb(217,83,31)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="35.8062%" y="1877" width="0.0128%" height="15" fill="rgb(236,56,24)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="35.8062%" y="1861" width="0.0128%" height="15" fill="rgb(230,126,27)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="35.8062%" y="1845" width="0.0128%" height="15" fill="rgb(206,65,43)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8062%" y="1829" width="0.0128%" height="15" fill="rgb(250,125,28)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="35.8062%" y="1813" width="0.0128%" height="15" fill="rgb(247,179,53)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="35.8062%" y="1797" width="0.0128%" height="15" fill="rgb(243,197,21)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8062%" y="1781" width="0.0128%" height="15" fill="rgb(237,144,43)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="35.8062%" y="1765" width="0.0128%" height="15" fill="rgb(236,198,30)" fg:x="8403" fg:w="3"/><text x="36.0562%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="35.8190%" y="1893" width="0.0128%" height="15" fill="rgb(247,36,5)" fg:x="8406" fg:w="3"/><text x="36.0690%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8190%" y="1877" width="0.0128%" height="15" fill="rgb(245,203,15)" fg:x="8406" fg:w="3"/><text x="36.0690%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8190%" y="1861" width="0.0128%" height="15" fill="rgb(227,125,51)" fg:x="8406" fg:w="3"/><text x="36.0690%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.8190%" y="1845" width="0.0128%" height="15" fill="rgb(230,130,13)" fg:x="8406" fg:w="3"/><text x="36.0690%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="35.8190%" y="1829" width="0.0128%" height="15" fill="rgb(232,40,46)" fg:x="8406" fg:w="3"/><text x="36.0690%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.8190%" y="1813" width="0.0128%" height="15" fill="rgb(213,3,44)" fg:x="8406" fg:w="3"/><text x="36.0690%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8190%" y="1797" width="0.0128%" height="15" fill="rgb(239,161,30)" fg:x="8406" fg:w="3"/><text x="36.0690%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (50 samples, 0.21%)</title><rect x="35.6315%" y="2181" width="0.2131%" height="15" fill="rgb(231,191,11)" fg:x="8362" fg:w="50"/><text x="35.8815%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (50 samples, 0.21%)</title><rect x="35.6315%" y="2165" width="0.2131%" height="15" fill="rgb(214,97,49)" fg:x="8362" fg:w="50"/><text x="35.8815%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (50 samples, 0.21%)</title><rect x="35.6315%" y="2149" width="0.2131%" height="15" fill="rgb(252,222,2)" fg:x="8362" fg:w="50"/><text x="35.8815%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.21%)</title><rect x="35.6315%" y="2133" width="0.2131%" height="15" fill="rgb(236,164,34)" fg:x="8362" fg:w="50"/><text x="35.8815%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (50 samples, 0.21%)</title><rect x="35.6315%" y="2117" width="0.2131%" height="15" fill="rgb(214,34,54)" fg:x="8362" fg:w="50"/><text x="35.8815%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (50 samples, 0.21%)</title><rect x="35.6315%" y="2101" width="0.2131%" height="15" fill="rgb(219,108,29)" fg:x="8362" fg:w="50"/><text x="35.8815%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (50 samples, 0.21%)</title><rect x="35.6315%" y="2085" width="0.2131%" height="15" fill="rgb(206,157,9)" fg:x="8362" fg:w="50"/><text x="35.8815%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="35.8062%" y="2069" width="0.0384%" height="15" fill="rgb(230,67,35)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="35.8062%" y="2053" width="0.0384%" height="15" fill="rgb(234,183,23)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="2063.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="35.8062%" y="2037" width="0.0384%" height="15" fill="rgb(214,123,37)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="35.8062%" y="2021" width="0.0384%" height="15" fill="rgb(246,95,28)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="35.8062%" y="2005" width="0.0384%" height="15" fill="rgb(207,89,5)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="35.8062%" y="1989" width="0.0384%" height="15" fill="rgb(254,169,2)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="35.8062%" y="1973" width="0.0384%" height="15" fill="rgb(237,192,42)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.8062%" y="1957" width="0.0384%" height="15" fill="rgb(250,5,42)" fg:x="8403" fg:w="9"/><text x="36.0562%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="35.8190%" y="1941" width="0.0256%" height="15" fill="rgb(240,162,4)" fg:x="8406" fg:w="6"/><text x="36.0690%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="35.8190%" y="1925" width="0.0256%" height="15" fill="rgb(205,124,21)" fg:x="8406" fg:w="6"/><text x="36.0690%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="35.8190%" y="1909" width="0.0256%" height="15" fill="rgb(223,202,28)" fg:x="8406" fg:w="6"/><text x="36.0690%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="35.8318%" y="1893" width="0.0128%" height="15" fill="rgb(212,31,41)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="35.8318%" y="1877" width="0.0128%" height="15" fill="rgb(248,96,40)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="35.8318%" y="1861" width="0.0128%" height="15" fill="rgb(248,89,15)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="35.8318%" y="1845" width="0.0128%" height="15" fill="rgb(243,119,36)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="35.8318%" y="1829" width="0.0128%" height="15" fill="rgb(251,141,50)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8318%" y="1813" width="0.0128%" height="15" fill="rgb(214,44,43)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8318%" y="1797" width="0.0128%" height="15" fill="rgb(243,207,4)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.8318%" y="1781" width="0.0128%" height="15" fill="rgb(229,156,40)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="35.8318%" y="1765" width="0.0128%" height="15" fill="rgb(230,99,47)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.8318%" y="1749" width="0.0128%" height="15" fill="rgb(243,84,11)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8318%" y="1733" width="0.0128%" height="15" fill="rgb(254,199,14)" fg:x="8409" fg:w="3"/><text x="36.0818%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="35.8446%" y="1941" width="0.0128%" height="15" fill="rgb(215,37,54)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="35.8446%" y="1925" width="0.0128%" height="15" fill="rgb(234,167,27)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="35.8446%" y="1909" width="0.0128%" height="15" fill="rgb(229,84,50)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="35.8446%" y="1893" width="0.0128%" height="15" fill="rgb(225,191,9)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="35.8446%" y="1877" width="0.0128%" height="15" fill="rgb(220,10,35)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="35.8446%" y="1861" width="0.0128%" height="15" fill="rgb(207,221,41)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="35.8446%" y="1845" width="0.0128%" height="15" fill="rgb(227,202,3)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8446%" y="1829" width="0.0128%" height="15" fill="rgb(216,52,42)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="35.8446%" y="1813" width="0.0128%" height="15" fill="rgb(243,72,21)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="35.8446%" y="1797" width="0.0128%" height="15" fill="rgb(244,145,40)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8446%" y="1781" width="0.0128%" height="15" fill="rgb(250,82,20)" fg:x="8412" fg:w="3"/><text x="36.0946%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="35.8573%" y="1893" width="0.0128%" height="15" fill="rgb(233,45,24)" fg:x="8415" fg:w="3"/><text x="36.1073%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8573%" y="1877" width="0.0128%" height="15" fill="rgb(240,115,33)" fg:x="8415" fg:w="3"/><text x="36.1073%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8573%" y="1861" width="0.0128%" height="15" fill="rgb(247,26,51)" fg:x="8415" fg:w="3"/><text x="36.1073%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.8573%" y="1845" width="0.0128%" height="15" fill="rgb(211,178,32)" fg:x="8415" fg:w="3"/><text x="36.1073%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="35.8573%" y="1829" width="0.0128%" height="15" fill="rgb(210,49,33)" fg:x="8415" fg:w="3"/><text x="36.1073%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.8573%" y="1813" width="0.0128%" height="15" fill="rgb(206,49,19)" fg:x="8415" fg:w="3"/><text x="36.1073%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8573%" y="1797" width="0.0128%" height="15" fill="rgb(222,209,26)" fg:x="8415" fg:w="3"/><text x="36.1073%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="35.8446%" y="2005" width="0.0384%" height="15" fill="rgb(218,163,12)" fg:x="8412" fg:w="9"/><text x="36.0946%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="35.8446%" y="1989" width="0.0384%" height="15" fill="rgb(231,156,28)" fg:x="8412" fg:w="9"/><text x="36.0946%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="35.8446%" y="1973" width="0.0384%" height="15" fill="rgb(228,134,28)" fg:x="8412" fg:w="9"/><text x="36.0946%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.8446%" y="1957" width="0.0384%" height="15" fill="rgb(215,195,0)" fg:x="8412" fg:w="9"/><text x="36.0946%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="35.8573%" y="1941" width="0.0256%" height="15" fill="rgb(228,207,6)" fg:x="8415" fg:w="6"/><text x="36.1073%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="35.8573%" y="1925" width="0.0256%" height="15" fill="rgb(216,227,49)" fg:x="8415" fg:w="6"/><text x="36.1073%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="35.8573%" y="1909" width="0.0256%" height="15" fill="rgb(220,104,35)" fg:x="8415" fg:w="6"/><text x="36.1073%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="35.8701%" y="1893" width="0.0128%" height="15" fill="rgb(247,218,44)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="35.8701%" y="1877" width="0.0128%" height="15" fill="rgb(229,130,2)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="35.8701%" y="1861" width="0.0128%" height="15" fill="rgb(232,69,24)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="35.8701%" y="1845" width="0.0128%" height="15" fill="rgb(215,25,11)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="35.8701%" y="1829" width="0.0128%" height="15" fill="rgb(226,106,4)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8701%" y="1813" width="0.0128%" height="15" fill="rgb(229,211,41)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8701%" y="1797" width="0.0128%" height="15" fill="rgb(213,44,51)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.8701%" y="1781" width="0.0128%" height="15" fill="rgb(233,74,16)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="35.8701%" y="1765" width="0.0128%" height="15" fill="rgb(241,65,49)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.8701%" y="1749" width="0.0128%" height="15" fill="rgb(227,73,37)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8701%" y="1733" width="0.0128%" height="15" fill="rgb(212,157,23)" fg:x="8418" fg:w="3"/><text x="36.1201%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="35.8829%" y="1877" width="0.0170%" height="15" fill="rgb(244,200,9)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="35.8829%" y="1861" width="0.0170%" height="15" fill="rgb(224,166,51)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="35.8829%" y="1845" width="0.0170%" height="15" fill="rgb(230,66,14)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="35.8829%" y="1829" width="0.0170%" height="15" fill="rgb(215,201,4)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="35.8829%" y="1813" width="0.0170%" height="15" fill="rgb(207,226,5)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="35.8829%" y="1797" width="0.0170%" height="15" fill="rgb(238,142,26)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="35.8829%" y="1781" width="0.0170%" height="15" fill="rgb(248,54,36)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="35.8829%" y="1765" width="0.0170%" height="15" fill="rgb(207,220,26)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="35.8829%" y="1749" width="0.0170%" height="15" fill="rgb(232,17,1)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="35.8829%" y="1733" width="0.0170%" height="15" fill="rgb(213,71,30)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="35.8829%" y="1717" width="0.0170%" height="15" fill="rgb(254,9,36)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="35.8829%" y="1701" width="0.0170%" height="15" fill="rgb(212,35,28)" fg:x="8421" fg:w="4"/><text x="36.1329%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="35.8999%" y="1829" width="0.0128%" height="15" fill="rgb(234,187,50)" fg:x="8425" fg:w="3"/><text x="36.1499%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8999%" y="1813" width="0.0128%" height="15" fill="rgb(233,81,25)" fg:x="8425" fg:w="3"/><text x="36.1499%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8999%" y="1797" width="0.0128%" height="15" fill="rgb(207,17,1)" fg:x="8425" fg:w="3"/><text x="36.1499%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.8999%" y="1781" width="0.0128%" height="15" fill="rgb(244,6,8)" fg:x="8425" fg:w="3"/><text x="36.1499%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="35.8999%" y="1765" width="0.0128%" height="15" fill="rgb(210,212,14)" fg:x="8425" fg:w="3"/><text x="36.1499%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.8999%" y="1749" width="0.0128%" height="15" fill="rgb(207,53,24)" fg:x="8425" fg:w="3"/><text x="36.1499%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="35.8999%" y="1733" width="0.0128%" height="15" fill="rgb(242,14,2)" fg:x="8425" fg:w="3"/><text x="36.1499%" y="1743.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (74 samples, 0.32%)</title><rect x="35.6059%" y="2645" width="0.3153%" height="15" fill="rgb(247,23,47)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (74 samples, 0.32%)</title><rect x="35.6059%" y="2629" width="0.3153%" height="15" fill="rgb(236,151,41)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (74 samples, 0.32%)</title><rect x="35.6059%" y="2613" width="0.3153%" height="15" fill="rgb(223,139,54)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (74 samples, 0.32%)</title><rect x="35.6059%" y="2597" width="0.3153%" height="15" fill="rgb(220,143,25)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (74 samples, 0.32%)</title><rect x="35.6059%" y="2581" width="0.3153%" height="15" fill="rgb(243,1,48)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (74 samples, 0.32%)</title><rect x="35.6059%" y="2565" width="0.3153%" height="15" fill="rgb(225,117,53)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (74 samples, 0.32%)</title><rect x="35.6059%" y="2549" width="0.3153%" height="15" fill="rgb(242,19,48)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (74 samples, 0.32%)</title><rect x="35.6059%" y="2533" width="0.3153%" height="15" fill="rgb(216,160,14)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2543.50"></text></g><g><title>std::panicking::try (74 samples, 0.32%)</title><rect x="35.6059%" y="2517" width="0.3153%" height="15" fill="rgb(235,38,17)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (74 samples, 0.32%)</title><rect x="35.6059%" y="2501" width="0.3153%" height="15" fill="rgb(236,51,41)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (74 samples, 0.32%)</title><rect x="35.6059%" y="2485" width="0.3153%" height="15" fill="rgb(237,177,4)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (74 samples, 0.32%)</title><rect x="35.6059%" y="2469" width="0.3153%" height="15" fill="rgb(207,72,17)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (74 samples, 0.32%)</title><rect x="35.6059%" y="2453" width="0.3153%" height="15" fill="rgb(235,29,34)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (74 samples, 0.32%)</title><rect x="35.6059%" y="2437" width="0.3153%" height="15" fill="rgb(212,13,22)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.32%)</title><rect x="35.6059%" y="2421" width="0.3153%" height="15" fill="rgb(243,95,11)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (74 samples, 0.32%)</title><rect x="35.6059%" y="2405" width="0.3153%" height="15" fill="rgb(214,76,28)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (74 samples, 0.32%)</title><rect x="35.6059%" y="2389" width="0.3153%" height="15" fill="rgb(237,73,9)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (74 samples, 0.32%)</title><rect x="35.6059%" y="2373" width="0.3153%" height="15" fill="rgb(229,115,50)" fg:x="8356" fg:w="74"/><text x="35.8559%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (68 samples, 0.29%)</title><rect x="35.6315%" y="2357" width="0.2898%" height="15" fill="rgb(246,226,7)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (68 samples, 0.29%)</title><rect x="35.6315%" y="2341" width="0.2898%" height="15" fill="rgb(249,14,18)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2351.50"></text></g><g><title>std::panicking::try (68 samples, 0.29%)</title><rect x="35.6315%" y="2325" width="0.2898%" height="15" fill="rgb(243,24,30)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (68 samples, 0.29%)</title><rect x="35.6315%" y="2309" width="0.2898%" height="15" fill="rgb(230,122,18)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (68 samples, 0.29%)</title><rect x="35.6315%" y="2293" width="0.2898%" height="15" fill="rgb(231,203,37)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (68 samples, 0.29%)</title><rect x="35.6315%" y="2277" width="0.2898%" height="15" fill="rgb(251,178,31)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (68 samples, 0.29%)</title><rect x="35.6315%" y="2261" width="0.2898%" height="15" fill="rgb(249,185,23)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (68 samples, 0.29%)</title><rect x="35.6315%" y="2245" width="0.2898%" height="15" fill="rgb(207,96,33)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (68 samples, 0.29%)</title><rect x="35.6315%" y="2229" width="0.2898%" height="15" fill="rgb(225,53,53)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (68 samples, 0.29%)</title><rect x="35.6315%" y="2213" width="0.2898%" height="15" fill="rgb(227,103,48)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (68 samples, 0.29%)</title><rect x="35.6315%" y="2197" width="0.2898%" height="15" fill="rgb(228,48,4)" fg:x="8362" fg:w="68"/><text x="35.8815%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="35.8446%" y="2181" width="0.0767%" height="15" fill="rgb(229,68,8)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="35.8446%" y="2165" width="0.0767%" height="15" fill="rgb(209,58,36)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2175.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="35.8446%" y="2149" width="0.0767%" height="15" fill="rgb(252,131,4)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="35.8446%" y="2133" width="0.0767%" height="15" fill="rgb(243,23,0)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="35.8446%" y="2117" width="0.0767%" height="15" fill="rgb(248,96,1)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18 samples, 0.08%)</title><rect x="35.8446%" y="2101" width="0.0767%" height="15" fill="rgb(236,24,0)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="35.8446%" y="2085" width="0.0767%" height="15" fill="rgb(241,197,35)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="35.8446%" y="2069" width="0.0767%" height="15" fill="rgb(252,12,0)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="35.8446%" y="2053" width="0.0767%" height="15" fill="rgb(218,27,6)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="35.8446%" y="2037" width="0.0767%" height="15" fill="rgb(205,175,0)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="35.8446%" y="2021" width="0.0767%" height="15" fill="rgb(247,192,24)" fg:x="8412" fg:w="18"/><text x="36.0946%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="35.8829%" y="2005" width="0.0384%" height="15" fill="rgb(242,165,20)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="35.8829%" y="1989" width="0.0384%" height="15" fill="rgb(238,105,5)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="1999.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="35.8829%" y="1973" width="0.0384%" height="15" fill="rgb(220,213,4)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="35.8829%" y="1957" width="0.0384%" height="15" fill="rgb(219,154,9)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="35.8829%" y="1941" width="0.0384%" height="15" fill="rgb(211,39,13)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="35.8829%" y="1925" width="0.0384%" height="15" fill="rgb(251,193,26)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="35.8829%" y="1909" width="0.0384%" height="15" fill="rgb(222,74,36)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.8829%" y="1893" width="0.0384%" height="15" fill="rgb(233,227,51)" fg:x="8421" fg:w="9"/><text x="36.1329%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="35.8999%" y="1877" width="0.0213%" height="15" fill="rgb(251,92,35)" fg:x="8425" fg:w="5"/><text x="36.1499%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.8999%" y="1861" width="0.0213%" height="15" fill="rgb(241,214,21)" fg:x="8425" fg:w="5"/><text x="36.1499%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="35.8999%" y="1845" width="0.0213%" height="15" fill="rgb(217,61,34)" fg:x="8425" fg:w="5"/><text x="36.1499%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="35.9213%" y="2341" width="0.0128%" height="15" fill="rgb(238,5,15)" fg:x="8430" fg:w="3"/><text x="36.1713%" y="2351.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="35.9213%" y="2501" width="0.0170%" height="15" fill="rgb(206,144,16)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="35.9213%" y="2485" width="0.0170%" height="15" fill="rgb(214,192,44)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="35.9213%" y="2469" width="0.0170%" height="15" fill="rgb(232,184,51)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="35.9213%" y="2453" width="0.0170%" height="15" fill="rgb(228,151,52)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="35.9213%" y="2437" width="0.0170%" height="15" fill="rgb(224,156,24)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="35.9213%" y="2421" width="0.0170%" height="15" fill="rgb(254,170,12)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="35.9213%" y="2405" width="0.0170%" height="15" fill="rgb(213,175,36)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="35.9213%" y="2389" width="0.0170%" height="15" fill="rgb(207,78,2)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="35.9213%" y="2373" width="0.0170%" height="15" fill="rgb(215,227,14)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="35.9213%" y="2357" width="0.0170%" height="15" fill="rgb(254,124,9)" fg:x="8430" fg:w="4"/><text x="36.1713%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="35.9213%" y="2517" width="0.0298%" height="15" fill="rgb(224,14,29)" fg:x="8430" fg:w="7"/><text x="36.1713%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="35.9383%" y="2501" width="0.0128%" height="15" fill="rgb(235,48,48)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2511.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="35.9383%" y="2485" width="0.0128%" height="15" fill="rgb(225,114,34)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="35.9383%" y="2469" width="0.0128%" height="15" fill="rgb(246,13,1)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="35.9383%" y="2453" width="0.0128%" height="15" fill="rgb(213,218,0)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2463.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="35.9383%" y="2437" width="0.0128%" height="15" fill="rgb(240,122,9)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2447.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="35.9383%" y="2421" width="0.0128%" height="15" fill="rgb(220,37,6)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="35.9383%" y="2405" width="0.0128%" height="15" fill="rgb(212,80,13)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2415.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="35.9383%" y="2389" width="0.0128%" height="15" fill="rgb(222,198,39)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2399.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="35.9383%" y="2373" width="0.0128%" height="15" fill="rgb(235,168,43)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2383.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="35.9383%" y="2357" width="0.0128%" height="15" fill="rgb(205,40,14)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="35.9383%" y="2341" width="0.0128%" height="15" fill="rgb(210,221,42)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2351.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="35.9383%" y="2325" width="0.0128%" height="15" fill="rgb(231,153,26)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="35.9383%" y="2309" width="0.0128%" height="15" fill="rgb(253,8,32)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="35.9383%" y="2293" width="0.0128%" height="15" fill="rgb(215,14,32)" fg:x="8434" fg:w="3"/><text x="36.1883%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="35.9639%" y="2101" width="0.0170%" height="15" fill="rgb(252,104,40)" fg:x="8440" fg:w="4"/><text x="36.2139%" y="2111.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="35.9639%" y="2085" width="0.0170%" height="15" fill="rgb(221,183,54)" fg:x="8440" fg:w="4"/><text x="36.2139%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="35.9553%" y="2293" width="0.0298%" height="15" fill="rgb(230,225,15)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2303.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="35.9553%" y="2277" width="0.0298%" height="15" fill="rgb(221,35,39)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="35.9553%" y="2261" width="0.0298%" height="15" fill="rgb(249,33,34)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="35.9553%" y="2245" width="0.0298%" height="15" fill="rgb(234,176,53)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2255.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="35.9553%" y="2229" width="0.0298%" height="15" fill="rgb(208,165,47)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="35.9553%" y="2213" width="0.0298%" height="15" fill="rgb(208,206,21)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="35.9553%" y="2197" width="0.0298%" height="15" fill="rgb(207,52,54)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="35.9553%" y="2181" width="0.0298%" height="15" fill="rgb(211,64,13)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="35.9553%" y="2165" width="0.0298%" height="15" fill="rgb(244,5,48)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2175.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="35.9553%" y="2149" width="0.0298%" height="15" fill="rgb(245,72,34)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="35.9553%" y="2133" width="0.0298%" height="15" fill="rgb(220,47,16)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="35.9553%" y="2117" width="0.0298%" height="15" fill="rgb(229,102,25)" fg:x="8438" fg:w="7"/><text x="36.2053%" y="2127.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="35.9852%" y="2005" width="0.0128%" height="15" fill="rgb(215,163,43)" fg:x="8445" fg:w="3"/><text x="36.2352%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="35.9852%" y="2181" width="0.0170%" height="15" fill="rgb(243,123,17)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="35.9852%" y="2165" width="0.0170%" height="15" fill="rgb(252,195,36)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="35.9852%" y="2149" width="0.0170%" height="15" fill="rgb(205,47,8)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="35.9852%" y="2133" width="0.0170%" height="15" fill="rgb(221,158,32)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="35.9852%" y="2117" width="0.0170%" height="15" fill="rgb(212,186,31)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="35.9852%" y="2101" width="0.0170%" height="15" fill="rgb(232,136,38)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="35.9852%" y="2085" width="0.0170%" height="15" fill="rgb(248,188,54)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="35.9852%" y="2069" width="0.0170%" height="15" fill="rgb(224,158,51)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="35.9852%" y="2053" width="0.0170%" height="15" fill="rgb(215,143,35)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="35.9852%" y="2037" width="0.0170%" height="15" fill="rgb(247,163,14)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="35.9852%" y="2021" width="0.0170%" height="15" fill="rgb(215,81,13)" fg:x="8445" fg:w="4"/><text x="36.2352%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="36.0022%" y="1733" width="0.0170%" height="15" fill="rgb(227,205,25)" fg:x="8449" fg:w="4"/><text x="36.2522%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0022%" y="1717" width="0.0170%" height="15" fill="rgb(237,173,24)" fg:x="8449" fg:w="4"/><text x="36.2522%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0022%" y="1701" width="0.0170%" height="15" fill="rgb(221,147,54)" fg:x="8449" fg:w="4"/><text x="36.2522%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.0022%" y="1685" width="0.0170%" height="15" fill="rgb(243,141,18)" fg:x="8449" fg:w="4"/><text x="36.2522%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.0022%" y="1669" width="0.0170%" height="15" fill="rgb(245,2,30)" fg:x="8449" fg:w="4"/><text x="36.2522%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.0022%" y="1653" width="0.0170%" height="15" fill="rgb(217,4,4)" fg:x="8449" fg:w="4"/><text x="36.2522%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0022%" y="1637" width="0.0170%" height="15" fill="rgb(236,173,11)" fg:x="8449" fg:w="4"/><text x="36.2522%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="36.0022%" y="1845" width="0.0341%" height="15" fill="rgb(235,9,44)" fg:x="8449" fg:w="8"/><text x="36.2522%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="36.0022%" y="1829" width="0.0341%" height="15" fill="rgb(213,229,12)" fg:x="8449" fg:w="8"/><text x="36.2522%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="36.0022%" y="1813" width="0.0341%" height="15" fill="rgb(220,139,4)" fg:x="8449" fg:w="8"/><text x="36.2522%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="36.0022%" y="1797" width="0.0341%" height="15" fill="rgb(241,123,19)" fg:x="8449" fg:w="8"/><text x="36.2522%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="36.0022%" y="1781" width="0.0341%" height="15" fill="rgb(247,8,43)" fg:x="8449" fg:w="8"/><text x="36.2522%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="36.0022%" y="1765" width="0.0341%" height="15" fill="rgb(219,77,38)" fg:x="8449" fg:w="8"/><text x="36.2522%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="36.0022%" y="1749" width="0.0341%" height="15" fill="rgb(229,116,25)" fg:x="8449" fg:w="8"/><text x="36.2522%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.0193%" y="1733" width="0.0170%" height="15" fill="rgb(253,18,49)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.0193%" y="1717" width="0.0170%" height="15" fill="rgb(242,124,25)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1727.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.0193%" y="1701" width="0.0170%" height="15" fill="rgb(219,219,6)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.0193%" y="1685" width="0.0170%" height="15" fill="rgb(230,12,48)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.0193%" y="1669" width="0.0170%" height="15" fill="rgb(233,166,37)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0193%" y="1653" width="0.0170%" height="15" fill="rgb(209,22,8)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0193%" y="1637" width="0.0170%" height="15" fill="rgb(209,224,25)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.0193%" y="1621" width="0.0170%" height="15" fill="rgb(235,223,50)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.0193%" y="1605" width="0.0170%" height="15" fill="rgb(210,181,44)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.0193%" y="1589" width="0.0170%" height="15" fill="rgb(232,5,0)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0193%" y="1573" width="0.0170%" height="15" fill="rgb(209,8,16)" fg:x="8453" fg:w="4"/><text x="36.2693%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="36.0363%" y="1669" width="0.0128%" height="15" fill="rgb(251,60,49)" fg:x="8457" fg:w="3"/><text x="36.2863%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="36.0363%" y="1653" width="0.0128%" height="15" fill="rgb(211,109,18)" fg:x="8457" fg:w="3"/><text x="36.2863%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.0363%" y="1637" width="0.0128%" height="15" fill="rgb(215,190,19)" fg:x="8457" fg:w="3"/><text x="36.2863%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.0363%" y="1621" width="0.0128%" height="15" fill="rgb(227,51,42)" fg:x="8457" fg:w="3"/><text x="36.2863%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="36.0363%" y="1605" width="0.0128%" height="15" fill="rgb(240,76,6)" fg:x="8457" fg:w="3"/><text x="36.2863%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="36.0363%" y="1589" width="0.0128%" height="15" fill="rgb(216,205,0)" fg:x="8457" fg:w="3"/><text x="36.2863%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="36.0363%" y="1573" width="0.0128%" height="15" fill="rgb(208,54,2)" fg:x="8457" fg:w="3"/><text x="36.2863%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (15 samples, 0.06%)</title><rect x="36.0022%" y="2133" width="0.0639%" height="15" fill="rgb(211,115,27)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.06%)</title><rect x="36.0022%" y="2117" width="0.0639%" height="15" fill="rgb(220,144,48)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (15 samples, 0.06%)</title><rect x="36.0022%" y="2101" width="0.0639%" height="15" fill="rgb(209,156,5)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (15 samples, 0.06%)</title><rect x="36.0022%" y="2085" width="0.0639%" height="15" fill="rgb(254,47,34)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (15 samples, 0.06%)</title><rect x="36.0022%" y="2069" width="0.0639%" height="15" fill="rgb(225,206,16)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (15 samples, 0.06%)</title><rect x="36.0022%" y="2053" width="0.0639%" height="15" fill="rgb(219,110,12)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="36.0022%" y="2037" width="0.0639%" height="15" fill="rgb(252,178,9)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="36.0022%" y="2021" width="0.0639%" height="15" fill="rgb(214,136,2)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2031.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="36.0022%" y="2005" width="0.0639%" height="15" fill="rgb(210,188,2)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="36.0022%" y="1989" width="0.0639%" height="15" fill="rgb(228,158,1)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="36.0022%" y="1973" width="0.0639%" height="15" fill="rgb(212,85,54)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (15 samples, 0.06%)</title><rect x="36.0022%" y="1957" width="0.0639%" height="15" fill="rgb(242,139,40)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="36.0022%" y="1941" width="0.0639%" height="15" fill="rgb(237,32,13)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="36.0022%" y="1925" width="0.0639%" height="15" fill="rgb(230,194,3)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="36.0022%" y="1909" width="0.0639%" height="15" fill="rgb(245,211,49)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="36.0022%" y="1893" width="0.0639%" height="15" fill="rgb(225,163,15)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="36.0022%" y="1877" width="0.0639%" height="15" fill="rgb(234,27,49)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="36.0022%" y="1861" width="0.0639%" height="15" fill="rgb(253,218,38)" fg:x="8449" fg:w="15"/><text x="36.2522%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="36.0363%" y="1845" width="0.0298%" height="15" fill="rgb(245,151,8)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="36.0363%" y="1829" width="0.0298%" height="15" fill="rgb(230,226,43)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1839.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="36.0363%" y="1813" width="0.0298%" height="15" fill="rgb(249,1,50)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="36.0363%" y="1797" width="0.0298%" height="15" fill="rgb(240,74,16)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="36.0363%" y="1781" width="0.0298%" height="15" fill="rgb(215,152,4)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="36.0363%" y="1765" width="0.0298%" height="15" fill="rgb(222,144,4)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="36.0363%" y="1749" width="0.0298%" height="15" fill="rgb(213,157,43)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="36.0363%" y="1733" width="0.0298%" height="15" fill="rgb(213,151,37)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="36.0363%" y="1717" width="0.0298%" height="15" fill="rgb(234,80,2)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="36.0363%" y="1701" width="0.0298%" height="15" fill="rgb(248,80,48)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="36.0363%" y="1685" width="0.0298%" height="15" fill="rgb(245,11,51)" fg:x="8457" fg:w="7"/><text x="36.2863%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.0491%" y="1669" width="0.0170%" height="15" fill="rgb(241,81,3)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.0491%" y="1653" width="0.0170%" height="15" fill="rgb(228,28,48)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1663.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.0491%" y="1637" width="0.0170%" height="15" fill="rgb(250,100,34)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.0491%" y="1621" width="0.0170%" height="15" fill="rgb(224,62,45)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.0491%" y="1605" width="0.0170%" height="15" fill="rgb(212,189,36)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0491%" y="1589" width="0.0170%" height="15" fill="rgb(212,181,29)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0491%" y="1573" width="0.0170%" height="15" fill="rgb(242,17,15)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.0491%" y="1557" width="0.0170%" height="15" fill="rgb(244,157,41)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.0491%" y="1541" width="0.0170%" height="15" fill="rgb(241,54,47)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.0491%" y="1525" width="0.0170%" height="15" fill="rgb(244,226,25)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0491%" y="1509" width="0.0170%" height="15" fill="rgb(224,23,34)" fg:x="8460" fg:w="4"/><text x="36.2991%" y="1519.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="35.9852%" y="2245" width="0.0852%" height="15" fill="rgb(240,84,31)" fg:x="8445" fg:w="20"/><text x="36.2352%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="35.9852%" y="2229" width="0.0852%" height="15" fill="rgb(234,80,35)" fg:x="8445" fg:w="20"/><text x="36.2352%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="35.9852%" y="2213" width="0.0852%" height="15" fill="rgb(221,69,4)" fg:x="8445" fg:w="20"/><text x="36.2352%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="35.9852%" y="2197" width="0.0852%" height="15" fill="rgb(235,90,29)" fg:x="8445" fg:w="20"/><text x="36.2352%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="36.0022%" y="2181" width="0.0682%" height="15" fill="rgb(205,131,11)" fg:x="8449" fg:w="16"/><text x="36.2522%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="36.0022%" y="2165" width="0.0682%" height="15" fill="rgb(229,165,1)" fg:x="8449" fg:w="16"/><text x="36.2522%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="36.0022%" y="2149" width="0.0682%" height="15" fill="rgb(217,194,23)" fg:x="8449" fg:w="16"/><text x="36.2522%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.0704%" y="2117" width="0.0128%" height="15" fill="rgb(237,58,37)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.0704%" y="2101" width="0.0128%" height="15" fill="rgb(251,105,43)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.0704%" y="2085" width="0.0128%" height="15" fill="rgb(242,39,25)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.0704%" y="2069" width="0.0128%" height="15" fill="rgb(244,219,13)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.0704%" y="2053" width="0.0128%" height="15" fill="rgb(233,8,47)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.0704%" y="2037" width="0.0128%" height="15" fill="rgb(218,22,5)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.0704%" y="2021" width="0.0128%" height="15" fill="rgb(246,40,46)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.0704%" y="2005" width="0.0128%" height="15" fill="rgb(228,97,12)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.0704%" y="1989" width="0.0128%" height="15" fill="rgb(254,9,42)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.0704%" y="1973" width="0.0128%" height="15" fill="rgb(222,223,34)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.0704%" y="1957" width="0.0128%" height="15" fill="rgb(254,77,33)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.0704%" y="1941" width="0.0128%" height="15" fill="rgb(209,91,34)" fg:x="8465" fg:w="3"/><text x="36.3204%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (34 samples, 0.14%)</title><rect x="35.9553%" y="2357" width="0.1449%" height="15" fill="rgb(232,111,5)" fg:x="8438" fg:w="34"/><text x="36.2053%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (34 samples, 0.14%)</title><rect x="35.9553%" y="2341" width="0.1449%" height="15" fill="rgb(214,167,47)" fg:x="8438" fg:w="34"/><text x="36.2053%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (34 samples, 0.14%)</title><rect x="35.9553%" y="2325" width="0.1449%" height="15" fill="rgb(249,150,36)" fg:x="8438" fg:w="34"/><text x="36.2053%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.14%)</title><rect x="35.9553%" y="2309" width="0.1449%" height="15" fill="rgb(233,90,31)" fg:x="8438" fg:w="34"/><text x="36.2053%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="35.9852%" y="2293" width="0.1151%" height="15" fill="rgb(238,38,48)" fg:x="8445" fg:w="27"/><text x="36.2352%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="35.9852%" y="2277" width="0.1151%" height="15" fill="rgb(251,110,5)" fg:x="8445" fg:w="27"/><text x="36.2352%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="35.9852%" y="2261" width="0.1151%" height="15" fill="rgb(216,3,12)" fg:x="8445" fg:w="27"/><text x="36.2352%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="36.0704%" y="2245" width="0.0298%" height="15" fill="rgb(253,137,17)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="36.0704%" y="2229" width="0.0298%" height="15" fill="rgb(210,117,42)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2239.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="36.0704%" y="2213" width="0.0298%" height="15" fill="rgb(242,65,18)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="36.0704%" y="2197" width="0.0298%" height="15" fill="rgb(246,167,8)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="36.0704%" y="2181" width="0.0298%" height="15" fill="rgb(239,83,16)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="36.0704%" y="2165" width="0.0298%" height="15" fill="rgb(240,61,34)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="36.0704%" y="2149" width="0.0298%" height="15" fill="rgb(229,3,26)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="36.0704%" y="2133" width="0.0298%" height="15" fill="rgb(242,199,20)" fg:x="8465" fg:w="7"/><text x="36.3204%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.0832%" y="2117" width="0.0170%" height="15" fill="rgb(215,145,18)" fg:x="8468" fg:w="4"/><text x="36.3332%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.0832%" y="2101" width="0.0170%" height="15" fill="rgb(221,109,0)" fg:x="8468" fg:w="4"/><text x="36.3332%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.0832%" y="2085" width="0.0170%" height="15" fill="rgb(234,64,37)" fg:x="8468" fg:w="4"/><text x="36.3332%" y="2095.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="36.1087%" y="2037" width="0.0128%" height="15" fill="rgb(222,78,43)" fg:x="8474" fg:w="3"/><text x="36.3587%" y="2047.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="36.1087%" y="2021" width="0.0128%" height="15" fill="rgb(216,219,34)" fg:x="8474" fg:w="3"/><text x="36.3587%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="36.1002%" y="2229" width="0.0341%" height="15" fill="rgb(252,24,13)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="36.1002%" y="2213" width="0.0341%" height="15" fill="rgb(224,16,27)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="36.1002%" y="2197" width="0.0341%" height="15" fill="rgb(242,190,38)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="36.1002%" y="2181" width="0.0341%" height="15" fill="rgb(242,72,24)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="36.1002%" y="2165" width="0.0341%" height="15" fill="rgb(212,76,2)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="36.1002%" y="2149" width="0.0341%" height="15" fill="rgb(229,0,19)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="36.1002%" y="2133" width="0.0341%" height="15" fill="rgb(238,189,46)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="36.1002%" y="2117" width="0.0341%" height="15" fill="rgb(227,112,10)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="36.1002%" y="2101" width="0.0341%" height="15" fill="rgb(230,95,38)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="36.1002%" y="2085" width="0.0341%" height="15" fill="rgb(220,44,33)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="36.1002%" y="2069" width="0.0341%" height="15" fill="rgb(226,17,21)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="36.1002%" y="2053" width="0.0341%" height="15" fill="rgb(227,61,20)" fg:x="8472" fg:w="8"/><text x="36.3502%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="36.1215%" y="2037" width="0.0128%" height="15" fill="rgb(214,24,13)" fg:x="8477" fg:w="3"/><text x="36.3715%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="36.1215%" y="2021" width="0.0128%" height="15" fill="rgb(217,223,4)" fg:x="8477" fg:w="3"/><text x="36.3715%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.1343%" y="1941" width="0.0128%" height="15" fill="rgb(206,82,16)" fg:x="8480" fg:w="3"/><text x="36.3843%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="36.1343%" y="2117" width="0.0170%" height="15" fill="rgb(234,181,27)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="36.1343%" y="2101" width="0.0170%" height="15" fill="rgb(239,52,42)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="36.1343%" y="2085" width="0.0170%" height="15" fill="rgb(230,227,11)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="36.1343%" y="2069" width="0.0170%" height="15" fill="rgb(213,8,49)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="36.1343%" y="2053" width="0.0170%" height="15" fill="rgb(247,12,53)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="36.1343%" y="2037" width="0.0170%" height="15" fill="rgb(226,42,12)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="36.1343%" y="2021" width="0.0170%" height="15" fill="rgb(210,5,28)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1343%" y="2005" width="0.0170%" height="15" fill="rgb(233,135,38)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="36.1343%" y="1989" width="0.0170%" height="15" fill="rgb(209,31,49)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="36.1343%" y="1973" width="0.0170%" height="15" fill="rgb(218,99,43)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1343%" y="1957" width="0.0170%" height="15" fill="rgb(233,171,20)" fg:x="8480" fg:w="4"/><text x="36.3843%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="36.1514%" y="2069" width="0.0213%" height="15" fill="rgb(239,61,3)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="36.1514%" y="2053" width="0.0213%" height="15" fill="rgb(227,3,9)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="36.1514%" y="2037" width="0.0213%" height="15" fill="rgb(206,44,44)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="36.1514%" y="2021" width="0.0213%" height="15" fill="rgb(233,86,47)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="36.1514%" y="2005" width="0.0213%" height="15" fill="rgb(231,84,23)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="36.1514%" y="1989" width="0.0213%" height="15" fill="rgb(234,206,20)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="36.1514%" y="1973" width="0.0213%" height="15" fill="rgb(240,41,34)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="36.1514%" y="1957" width="0.0213%" height="15" fill="rgb(222,211,41)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="36.1514%" y="1941" width="0.0213%" height="15" fill="rgb(216,205,46)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="36.1514%" y="1925" width="0.0213%" height="15" fill="rgb(241,162,33)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="36.1514%" y="1909" width="0.0213%" height="15" fill="rgb(254,166,51)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="36.1514%" y="1893" width="0.0213%" height="15" fill="rgb(232,60,51)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="36.1514%" y="1877" width="0.0213%" height="15" fill="rgb(211,222,17)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="36.1514%" y="1861" width="0.0213%" height="15" fill="rgb(249,200,18)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="36.1514%" y="1845" width="0.0213%" height="15" fill="rgb(236,140,49)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="36.1514%" y="1829" width="0.0213%" height="15" fill="rgb(232,213,10)" fg:x="8484" fg:w="5"/><text x="36.4014%" y="1839.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="36.1599%" y="1813" width="0.0128%" height="15" fill="rgb(215,43,29)" fg:x="8486" fg:w="3"/><text x="36.4099%" y="1823.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="36.1599%" y="1797" width="0.0128%" height="15" fill="rgb(212,135,42)" fg:x="8486" fg:w="3"/><text x="36.4099%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="36.1343%" y="2181" width="0.0554%" height="15" fill="rgb(238,44,13)" fg:x="8480" fg:w="13"/><text x="36.3843%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="36.1343%" y="2165" width="0.0554%" height="15" fill="rgb(234,196,45)" fg:x="8480" fg:w="13"/><text x="36.3843%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="36.1343%" y="2149" width="0.0554%" height="15" fill="rgb(222,145,28)" fg:x="8480" fg:w="13"/><text x="36.3843%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="36.1343%" y="2133" width="0.0554%" height="15" fill="rgb(242,55,54)" fg:x="8480" fg:w="13"/><text x="36.3843%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="36.1514%" y="2117" width="0.0384%" height="15" fill="rgb(228,105,34)" fg:x="8484" fg:w="9"/><text x="36.4014%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="36.1514%" y="2101" width="0.0384%" height="15" fill="rgb(219,193,8)" fg:x="8484" fg:w="9"/><text x="36.4014%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="36.1514%" y="2085" width="0.0384%" height="15" fill="rgb(224,101,25)" fg:x="8484" fg:w="9"/><text x="36.4014%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.1727%" y="2069" width="0.0170%" height="15" fill="rgb(228,80,5)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.1727%" y="2053" width="0.0170%" height="15" fill="rgb(211,99,32)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.1727%" y="2037" width="0.0170%" height="15" fill="rgb(222,178,50)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.1727%" y="2021" width="0.0170%" height="15" fill="rgb(219,0,36)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.1727%" y="2005" width="0.0170%" height="15" fill="rgb(237,111,29)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1727%" y="1989" width="0.0170%" height="15" fill="rgb(216,105,32)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1727%" y="1973" width="0.0170%" height="15" fill="rgb(242,79,21)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.1727%" y="1957" width="0.0170%" height="15" fill="rgb(230,183,53)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="36.1727%" y="1941" width="0.0170%" height="15" fill="rgb(243,123,4)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="36.1727%" y="1925" width="0.0170%" height="15" fill="rgb(212,42,12)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="36.1727%" y="1909" width="0.0170%" height="15" fill="rgb(207,184,3)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="36.1727%" y="1893" width="0.0170%" height="15" fill="rgb(233,16,48)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="36.1727%" y="1877" width="0.0170%" height="15" fill="rgb(206,10,28)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="36.1727%" y="1861" width="0.0170%" height="15" fill="rgb(208,123,33)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="36.1727%" y="1845" width="0.0170%" height="15" fill="rgb(238,184,51)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1727%" y="1829" width="0.0170%" height="15" fill="rgb(214,167,54)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="36.1727%" y="1813" width="0.0170%" height="15" fill="rgb(238,196,26)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="36.1727%" y="1797" width="0.0170%" height="15" fill="rgb(223,191,50)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1727%" y="1781" width="0.0170%" height="15" fill="rgb(220,34,49)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="36.1727%" y="1765" width="0.0170%" height="15" fill="rgb(251,171,48)" fg:x="8489" fg:w="4"/><text x="36.4227%" y="1775.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.1940%" y="1765" width="0.0128%" height="15" fill="rgb(254,99,49)" fg:x="8494" fg:w="3"/><text x="36.4440%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="36.1940%" y="2005" width="0.0170%" height="15" fill="rgb(226,68,33)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1940%" y="1989" width="0.0170%" height="15" fill="rgb(228,213,19)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1940%" y="1973" width="0.0170%" height="15" fill="rgb(225,41,32)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.1940%" y="1957" width="0.0170%" height="15" fill="rgb(243,16,28)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="36.1940%" y="1941" width="0.0170%" height="15" fill="rgb(240,127,14)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="36.1940%" y="1925" width="0.0170%" height="15" fill="rgb(205,204,41)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="36.1940%" y="1909" width="0.0170%" height="15" fill="rgb(238,151,38)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="36.1940%" y="1893" width="0.0170%" height="15" fill="rgb(224,123,20)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="36.1940%" y="1877" width="0.0170%" height="15" fill="rgb(234,61,0)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="36.1940%" y="1861" width="0.0170%" height="15" fill="rgb(207,11,41)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="36.1940%" y="1845" width="0.0170%" height="15" fill="rgb(252,27,37)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1940%" y="1829" width="0.0170%" height="15" fill="rgb(227,198,49)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="36.1940%" y="1813" width="0.0170%" height="15" fill="rgb(222,16,13)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="36.1940%" y="1797" width="0.0170%" height="15" fill="rgb(231,216,10)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="36.1940%" y="1781" width="0.0170%" height="15" fill="rgb(252,197,41)" fg:x="8494" fg:w="4"/><text x="36.4440%" y="1791.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="36.2110%" y="1685" width="0.0128%" height="15" fill="rgb(242,109,27)" fg:x="8498" fg:w="3"/><text x="36.4610%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="36.2110%" y="1669" width="0.0128%" height="15" fill="rgb(214,111,47)" fg:x="8498" fg:w="3"/><text x="36.4610%" y="1679.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="36.2110%" y="1653" width="0.0128%" height="15" fill="rgb(212,92,33)" fg:x="8498" fg:w="3"/><text x="36.4610%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (66 samples, 0.28%)</title><rect x="35.9511%" y="2469" width="0.2812%" height="15" fill="rgb(247,210,0)" fg:x="8437" fg:w="66"/><text x="36.2011%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (66 samples, 0.28%)</title><rect x="35.9511%" y="2453" width="0.2812%" height="15" fill="rgb(234,112,54)" fg:x="8437" fg:w="66"/><text x="36.2011%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (66 samples, 0.28%)</title><rect x="35.9511%" y="2437" width="0.2812%" height="15" fill="rgb(237,63,37)" fg:x="8437" fg:w="66"/><text x="36.2011%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 0.28%)</title><rect x="35.9511%" y="2421" width="0.2812%" height="15" fill="rgb(229,96,46)" fg:x="8437" fg:w="66"/><text x="36.2011%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (65 samples, 0.28%)</title><rect x="35.9553%" y="2405" width="0.2770%" height="15" fill="rgb(231,201,44)" fg:x="8438" fg:w="65"/><text x="36.2053%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (65 samples, 0.28%)</title><rect x="35.9553%" y="2389" width="0.2770%" height="15" fill="rgb(219,174,37)" fg:x="8438" fg:w="65"/><text x="36.2053%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (65 samples, 0.28%)</title><rect x="35.9553%" y="2373" width="0.2770%" height="15" fill="rgb(254,38,45)" fg:x="8438" fg:w="65"/><text x="36.2053%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (31 samples, 0.13%)</title><rect x="36.1002%" y="2357" width="0.1321%" height="15" fill="rgb(228,197,15)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (31 samples, 0.13%)</title><rect x="36.1002%" y="2341" width="0.1321%" height="15" fill="rgb(251,43,52)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2351.50"></text></g><g><title>std::panicking::try (31 samples, 0.13%)</title><rect x="36.1002%" y="2325" width="0.1321%" height="15" fill="rgb(243,49,36)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (31 samples, 0.13%)</title><rect x="36.1002%" y="2309" width="0.1321%" height="15" fill="rgb(252,27,28)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (31 samples, 0.13%)</title><rect x="36.1002%" y="2293" width="0.1321%" height="15" fill="rgb(216,71,0)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (31 samples, 0.13%)</title><rect x="36.1002%" y="2277" width="0.1321%" height="15" fill="rgb(225,26,31)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (31 samples, 0.13%)</title><rect x="36.1002%" y="2261" width="0.1321%" height="15" fill="rgb(226,75,43)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.13%)</title><rect x="36.1002%" y="2245" width="0.1321%" height="15" fill="rgb(225,219,9)" fg:x="8472" fg:w="31"/><text x="36.3502%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="36.1343%" y="2229" width="0.0980%" height="15" fill="rgb(245,70,41)" fg:x="8480" fg:w="23"/><text x="36.3843%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="36.1343%" y="2213" width="0.0980%" height="15" fill="rgb(218,169,31)" fg:x="8480" fg:w="23"/><text x="36.3843%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="36.1343%" y="2197" width="0.0980%" height="15" fill="rgb(237,179,22)" fg:x="8480" fg:w="23"/><text x="36.3843%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="36.1897%" y="2181" width="0.0426%" height="15" fill="rgb(226,216,46)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="36.1897%" y="2165" width="0.0426%" height="15" fill="rgb(210,142,42)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2175.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="36.1897%" y="2149" width="0.0426%" height="15" fill="rgb(254,36,20)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="36.1897%" y="2133" width="0.0426%" height="15" fill="rgb(205,132,15)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="36.1897%" y="2117" width="0.0426%" height="15" fill="rgb(215,32,34)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="36.1897%" y="2101" width="0.0426%" height="15" fill="rgb(225,129,11)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="36.1897%" y="2085" width="0.0426%" height="15" fill="rgb(218,216,29)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="36.1897%" y="2069" width="0.0426%" height="15" fill="rgb(244,93,41)" fg:x="8493" fg:w="10"/><text x="36.4397%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="36.1940%" y="2053" width="0.0384%" height="15" fill="rgb(209,160,18)" fg:x="8494" fg:w="9"/><text x="36.4440%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="36.1940%" y="2037" width="0.0384%" height="15" fill="rgb(236,221,48)" fg:x="8494" fg:w="9"/><text x="36.4440%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="36.1940%" y="2021" width="0.0384%" height="15" fill="rgb(230,46,49)" fg:x="8494" fg:w="9"/><text x="36.4440%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="36.2110%" y="2005" width="0.0213%" height="15" fill="rgb(243,201,16)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="36.2110%" y="1989" width="0.0213%" height="15" fill="rgb(209,74,53)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1999.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="36.2110%" y="1973" width="0.0213%" height="15" fill="rgb(226,184,9)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="36.2110%" y="1957" width="0.0213%" height="15" fill="rgb(205,208,26)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="36.2110%" y="1941" width="0.0213%" height="15" fill="rgb(223,40,8)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="36.2110%" y="1925" width="0.0213%" height="15" fill="rgb(251,59,31)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="36.2110%" y="1909" width="0.0213%" height="15" fill="rgb(226,162,36)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="36.2110%" y="1893" width="0.0213%" height="15" fill="rgb(206,74,25)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="36.2110%" y="1877" width="0.0213%" height="15" fill="rgb(229,66,3)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="36.2110%" y="1861" width="0.0213%" height="15" fill="rgb(252,25,50)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="36.2110%" y="1845" width="0.0213%" height="15" fill="rgb(228,216,27)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="36.2110%" y="1829" width="0.0213%" height="15" fill="rgb(232,62,30)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="36.2110%" y="1813" width="0.0213%" height="15" fill="rgb(249,157,21)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="36.2110%" y="1797" width="0.0213%" height="15" fill="rgb(236,143,50)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="36.2110%" y="1781" width="0.0213%" height="15" fill="rgb(228,145,40)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="36.2110%" y="1765" width="0.0213%" height="15" fill="rgb(231,189,4)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="36.2110%" y="1749" width="0.0213%" height="15" fill="rgb(237,56,17)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="36.2110%" y="1733" width="0.0213%" height="15" fill="rgb(254,194,39)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="36.2110%" y="1717" width="0.0213%" height="15" fill="rgb(215,44,14)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="36.2110%" y="1701" width="0.0213%" height="15" fill="rgb(243,175,19)" fg:x="8498" fg:w="5"/><text x="36.4610%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.2323%" y="2229" width="0.0128%" height="15" fill="rgb(227,63,45)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.2323%" y="2213" width="0.0128%" height="15" fill="rgb(245,68,5)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.2323%" y="2197" width="0.0128%" height="15" fill="rgb(220,213,13)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.2323%" y="2181" width="0.0128%" height="15" fill="rgb(253,185,34)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.2323%" y="2165" width="0.0128%" height="15" fill="rgb(215,220,19)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.2323%" y="2149" width="0.0128%" height="15" fill="rgb(247,83,3)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.2323%" y="2133" width="0.0128%" height="15" fill="rgb(246,163,33)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.2323%" y="2117" width="0.0128%" height="15" fill="rgb(213,8,17)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.2323%" y="2101" width="0.0128%" height="15" fill="rgb(237,214,13)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.2323%" y="2085" width="0.0128%" height="15" fill="rgb(213,47,9)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.2323%" y="2069" width="0.0128%" height="15" fill="rgb(235,27,48)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.2323%" y="2053" width="0.0128%" height="15" fill="rgb(212,90,48)" fg:x="8503" fg:w="3"/><text x="36.4823%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="36.2451%" y="1717" width="0.0256%" height="15" fill="rgb(220,54,49)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1701" width="0.0256%" height="15" fill="rgb(234,28,17)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1685" width="0.0256%" height="15" fill="rgb(241,96,10)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="36.2451%" y="1669" width="0.0256%" height="15" fill="rgb(246,151,18)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="36.2451%" y="1653" width="0.0256%" height="15" fill="rgb(251,225,36)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="36.2451%" y="1637" width="0.0256%" height="15" fill="rgb(212,144,20)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1621" width="0.0256%" height="15" fill="rgb(243,189,31)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="36.2451%" y="1605" width="0.0256%" height="15" fill="rgb(233,190,43)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="36.2451%" y="1589" width="0.0256%" height="15" fill="rgb(226,67,13)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="36.2451%" y="1573" width="0.0256%" height="15" fill="rgb(243,34,52)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1583.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="36.2451%" y="1557" width="0.0256%" height="15" fill="rgb(240,25,5)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1567.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="36.2451%" y="1541" width="0.0256%" height="15" fill="rgb(226,4,43)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1551.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="36.2451%" y="1525" width="0.0256%" height="15" fill="rgb(223,102,14)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1535.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="36.2451%" y="1509" width="0.0256%" height="15" fill="rgb(238,178,4)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1519.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="36.2451%" y="1493" width="0.0256%" height="15" fill="rgb(221,109,29)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1503.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="36.2451%" y="1477" width="0.0256%" height="15" fill="rgb(208,82,12)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1487.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="36.2451%" y="1461" width="0.0256%" height="15" fill="rgb(242,148,43)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1471.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="36.2451%" y="1445" width="0.0256%" height="15" fill="rgb(250,213,17)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1455.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1429" width="0.0256%" height="15" fill="rgb(211,2,29)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1413" width="0.0256%" height="15" fill="rgb(228,66,13)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1397" width="0.0256%" height="15" fill="rgb(205,3,20)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="36.2451%" y="1381" width="0.0256%" height="15" fill="rgb(225,148,14)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="36.2451%" y="1365" width="0.0256%" height="15" fill="rgb(252,161,6)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1375.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="36.2451%" y="1349" width="0.0256%" height="15" fill="rgb(231,154,17)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="36.2451%" y="1333" width="0.0256%" height="15" fill="rgb(253,149,14)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1343.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="36.2451%" y="1317" width="0.0256%" height="15" fill="rgb(226,57,40)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1327.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="36.2451%" y="1301" width="0.0256%" height="15" fill="rgb(210,57,53)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1311.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="36.2451%" y="1285" width="0.0256%" height="15" fill="rgb(226,196,31)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="36.2451%" y="1269" width="0.0256%" height="15" fill="rgb(252,93,21)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1253" width="0.0256%" height="15" fill="rgb(251,184,45)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1263.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="36.2451%" y="1237" width="0.0256%" height="15" fill="rgb(234,129,23)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1247.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="36.2451%" y="1221" width="0.0256%" height="15" fill="rgb(242,13,48)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1231.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="36.2451%" y="1205" width="0.0256%" height="15" fill="rgb(208,94,31)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1215.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="36.2451%" y="1189" width="0.0256%" height="15" fill="rgb(250,220,5)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1199.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="36.2451%" y="1173" width="0.0256%" height="15" fill="rgb(207,220,11)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1183.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="36.2451%" y="1157" width="0.0256%" height="15" fill="rgb(229,139,32)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1167.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="36.2451%" y="1141" width="0.0256%" height="15" fill="rgb(248,38,23)" fg:x="8506" fg:w="6"/><text x="36.4951%" y="1151.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="36.2494%" y="1125" width="0.0213%" height="15" fill="rgb(214,36,53)" fg:x="8507" fg:w="5"/><text x="36.4994%" y="1135.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="36.2707%" y="1541" width="0.0128%" height="15" fill="rgb(219,216,10)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="36.2707%" y="1525" width="0.0128%" height="15" fill="rgb(223,62,35)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.2707%" y="1509" width="0.0128%" height="15" fill="rgb(219,224,20)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.2707%" y="1493" width="0.0128%" height="15" fill="rgb(239,12,51)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.2707%" y="1477" width="0.0128%" height="15" fill="rgb(210,2,4)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.2707%" y="1461" width="0.0128%" height="15" fill="rgb(214,68,39)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.2707%" y="1445" width="0.0128%" height="15" fill="rgb(254,27,28)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.2707%" y="1429" width="0.0128%" height="15" fill="rgb(237,181,3)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.2707%" y="1413" width="0.0128%" height="15" fill="rgb(248,37,37)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.2707%" y="1397" width="0.0128%" height="15" fill="rgb(226,46,23)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.2707%" y="1381" width="0.0128%" height="15" fill="rgb(206,142,41)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.2707%" y="1365" width="0.0128%" height="15" fill="rgb(210,73,43)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.2707%" y="1349" width="0.0128%" height="15" fill="rgb(241,152,41)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.2707%" y="1333" width="0.0128%" height="15" fill="rgb(252,26,52)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.2707%" y="1317" width="0.0128%" height="15" fill="rgb(205,13,4)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1327.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.2707%" y="1301" width="0.0128%" height="15" fill="rgb(214,6,29)" fg:x="8512" fg:w="3"/><text x="36.5207%" y="1311.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="36.2451%" y="2181" width="0.0469%" height="15" fill="rgb(211,70,24)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="36.2451%" y="2165" width="0.0469%" height="15" fill="rgb(216,135,14)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2175.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="36.2451%" y="2149" width="0.0469%" height="15" fill="rgb(227,68,5)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2159.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="36.2451%" y="2133" width="0.0469%" height="15" fill="rgb(237,200,1)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2143.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="36.2451%" y="2117" width="0.0469%" height="15" fill="rgb(247,68,39)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2127.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="36.2451%" y="2101" width="0.0469%" height="15" fill="rgb(217,197,13)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2111.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="36.2451%" y="2085" width="0.0469%" height="15" fill="rgb(246,192,36)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2095.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="36.2451%" y="2069" width="0.0469%" height="15" fill="rgb(238,229,51)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2079.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="36.2451%" y="2053" width="0.0469%" height="15" fill="rgb(225,1,14)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2063.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="36.2451%" y="2037" width="0.0469%" height="15" fill="rgb(222,41,40)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2047.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="36.2451%" y="2021" width="0.0469%" height="15" fill="rgb(207,198,20)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2031.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="36.2451%" y="2005" width="0.0469%" height="15" fill="rgb(231,15,2)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="36.2451%" y="1989" width="0.0469%" height="15" fill="rgb(211,101,39)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="36.2451%" y="1973" width="0.0469%" height="15" fill="rgb(224,116,18)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="36.2451%" y="1957" width="0.0469%" height="15" fill="rgb(210,192,4)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="36.2451%" y="1941" width="0.0469%" height="15" fill="rgb(254,35,36)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="36.2451%" y="1925" width="0.0469%" height="15" fill="rgb(213,148,50)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="36.2451%" y="1909" width="0.0469%" height="15" fill="rgb(205,220,20)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="36.2451%" y="1893" width="0.0469%" height="15" fill="rgb(213,189,37)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="36.2451%" y="1877" width="0.0469%" height="15" fill="rgb(241,153,3)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1887.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="36.2451%" y="1861" width="0.0469%" height="15" fill="rgb(248,100,28)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="36.2451%" y="1845" width="0.0469%" height="15" fill="rgb(237,138,46)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="36.2451%" y="1829" width="0.0469%" height="15" fill="rgb(243,16,15)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="36.2451%" y="1813" width="0.0469%" height="15" fill="rgb(212,37,16)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="36.2451%" y="1797" width="0.0469%" height="15" fill="rgb(222,169,27)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="36.2451%" y="1781" width="0.0469%" height="15" fill="rgb(222,220,50)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="36.2451%" y="1765" width="0.0469%" height="15" fill="rgb(254,93,1)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="36.2451%" y="1749" width="0.0469%" height="15" fill="rgb(252,192,40)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="36.2451%" y="1733" width="0.0469%" height="15" fill="rgb(251,75,4)" fg:x="8506" fg:w="11"/><text x="36.4951%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="36.2707%" y="1717" width="0.0213%" height="15" fill="rgb(213,75,21)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="36.2707%" y="1701" width="0.0213%" height="15" fill="rgb(254,128,32)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1711.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="36.2707%" y="1685" width="0.0213%" height="15" fill="rgb(207,166,6)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="36.2707%" y="1669" width="0.0213%" height="15" fill="rgb(228,12,8)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="36.2707%" y="1653" width="0.0213%" height="15" fill="rgb(219,5,50)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="36.2707%" y="1637" width="0.0213%" height="15" fill="rgb(231,220,14)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="36.2707%" y="1621" width="0.0213%" height="15" fill="rgb(246,76,50)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="36.2707%" y="1605" width="0.0213%" height="15" fill="rgb(243,185,38)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="36.2707%" y="1589" width="0.0213%" height="15" fill="rgb(241,184,48)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="36.2707%" y="1573" width="0.0213%" height="15" fill="rgb(211,227,40)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="36.2707%" y="1557" width="0.0213%" height="15" fill="rgb(237,167,16)" fg:x="8512" fg:w="5"/><text x="36.5207%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (18 samples, 0.08%)</title><rect x="36.2323%" y="2469" width="0.0767%" height="15" fill="rgb(254,92,50)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.08%)</title><rect x="36.2323%" y="2453" width="0.0767%" height="15" fill="rgb(207,127,52)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2463.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (18 samples, 0.08%)</title><rect x="36.2323%" y="2437" width="0.0767%" height="15" fill="rgb(223,25,43)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2447.50"></text></g><g><title>rayon_core::job::JobRef::execute (18 samples, 0.08%)</title><rect x="36.2323%" y="2421" width="0.0767%" height="15" fill="rgb(226,7,21)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2431.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (18 samples, 0.08%)</title><rect x="36.2323%" y="2405" width="0.0767%" height="15" fill="rgb(220,46,6)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2415.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (18 samples, 0.08%)</title><rect x="36.2323%" y="2389" width="0.0767%" height="15" fill="rgb(217,87,12)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2399.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="36.2323%" y="2373" width="0.0767%" height="15" fill="rgb(244,218,30)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2383.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="36.2323%" y="2357" width="0.0767%" height="15" fill="rgb(218,3,54)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2367.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="36.2323%" y="2341" width="0.0767%" height="15" fill="rgb(226,92,52)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2351.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="36.2323%" y="2325" width="0.0767%" height="15" fill="rgb(234,46,35)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2335.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="36.2323%" y="2309" width="0.0767%" height="15" fill="rgb(208,171,38)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2319.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (18 samples, 0.08%)</title><rect x="36.2323%" y="2293" width="0.0767%" height="15" fill="rgb(252,31,5)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="36.2323%" y="2277" width="0.0767%" height="15" fill="rgb(238,211,9)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="36.2323%" y="2261" width="0.0767%" height="15" fill="rgb(238,214,12)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="36.2323%" y="2245" width="0.0767%" height="15" fill="rgb(225,21,25)" fg:x="8503" fg:w="18"/><text x="36.4823%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="36.2451%" y="2229" width="0.0639%" height="15" fill="rgb(218,15,41)" fg:x="8506" fg:w="15"/><text x="36.4951%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="36.2451%" y="2213" width="0.0639%" height="15" fill="rgb(231,31,37)" fg:x="8506" fg:w="15"/><text x="36.4951%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="36.2451%" y="2197" width="0.0639%" height="15" fill="rgb(219,202,27)" fg:x="8506" fg:w="15"/><text x="36.4951%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.2920%" y="2181" width="0.0170%" height="15" fill="rgb(246,43,52)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.2920%" y="2165" width="0.0170%" height="15" fill="rgb(231,116,14)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2175.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.2920%" y="2149" width="0.0170%" height="15" fill="rgb(210,216,29)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.2920%" y="2133" width="0.0170%" height="15" fill="rgb(205,178,44)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.2920%" y="2117" width="0.0170%" height="15" fill="rgb(215,155,29)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.2920%" y="2101" width="0.0170%" height="15" fill="rgb(221,168,6)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.2920%" y="2085" width="0.0170%" height="15" fill="rgb(207,37,7)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.2920%" y="2069" width="0.0170%" height="15" fill="rgb(247,195,33)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.2920%" y="2053" width="0.0170%" height="15" fill="rgb(249,217,11)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.2920%" y="2037" width="0.0170%" height="15" fill="rgb(227,78,20)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.2920%" y="2021" width="0.0170%" height="15" fill="rgb(205,128,8)" fg:x="8517" fg:w="4"/><text x="36.5420%" y="2031.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (6 samples, 0.03%)</title><rect x="36.3133%" y="2037" width="0.0256%" height="15" fill="rgb(221,148,37)" fg:x="8522" fg:w="6"/><text x="36.5633%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (6 samples, 0.03%)</title><rect x="36.3133%" y="2021" width="0.0256%" height="15" fill="rgb(251,33,10)" fg:x="8522" fg:w="6"/><text x="36.5633%" y="2031.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="36.3133%" y="2005" width="0.0256%" height="15" fill="rgb(207,152,7)" fg:x="8522" fg:w="6"/><text x="36.5633%" y="2015.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="36.3218%" y="1989" width="0.0170%" height="15" fill="rgb(221,13,54)" fg:x="8524" fg:w="4"/><text x="36.5718%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="36.3133%" y="2229" width="0.0298%" height="15" fill="rgb(244,139,9)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="36.3133%" y="2213" width="0.0298%" height="15" fill="rgb(227,188,38)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="36.3133%" y="2197" width="0.0298%" height="15" fill="rgb(220,148,7)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="36.3133%" y="2181" width="0.0298%" height="15" fill="rgb(254,48,6)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="36.3133%" y="2165" width="0.0298%" height="15" fill="rgb(254,154,39)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="36.3133%" y="2149" width="0.0298%" height="15" fill="rgb(209,72,27)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="36.3133%" y="2133" width="0.0298%" height="15" fill="rgb(227,22,54)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="36.3133%" y="2117" width="0.0298%" height="15" fill="rgb(208,29,0)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="36.3133%" y="2101" width="0.0298%" height="15" fill="rgb(239,170,28)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="36.3133%" y="2085" width="0.0298%" height="15" fill="rgb(220,66,14)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="36.3133%" y="2069" width="0.0298%" height="15" fill="rgb(207,177,24)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="36.3133%" y="2053" width="0.0298%" height="15" fill="rgb(228,150,22)" fg:x="8522" fg:w="7"/><text x="36.5633%" y="2063.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.3431%" y="1941" width="0.0128%" height="15" fill="rgb(253,29,29)" fg:x="8529" fg:w="3"/><text x="36.5931%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="36.3431%" y="2117" width="0.0170%" height="15" fill="rgb(225,62,27)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="36.3431%" y="2101" width="0.0170%" height="15" fill="rgb(239,47,16)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="36.3431%" y="2085" width="0.0170%" height="15" fill="rgb(208,172,25)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="36.3431%" y="2069" width="0.0170%" height="15" fill="rgb(215,150,20)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="36.3431%" y="2053" width="0.0170%" height="15" fill="rgb(223,179,2)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="36.3431%" y="2037" width="0.0170%" height="15" fill="rgb(242,225,22)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="36.3431%" y="2021" width="0.0170%" height="15" fill="rgb(211,211,23)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="36.3431%" y="2005" width="0.0170%" height="15" fill="rgb(221,212,52)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="36.3431%" y="1989" width="0.0170%" height="15" fill="rgb(212,77,25)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="36.3431%" y="1973" width="0.0170%" height="15" fill="rgb(245,197,16)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="36.3431%" y="1957" width="0.0170%" height="15" fill="rgb(224,161,34)" fg:x="8529" fg:w="4"/><text x="36.5931%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="36.3601%" y="2005" width="0.0213%" height="15" fill="rgb(229,211,47)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="36.3601%" y="1989" width="0.0213%" height="15" fill="rgb(235,67,15)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="36.3601%" y="1973" width="0.0213%" height="15" fill="rgb(237,188,29)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="36.3601%" y="1957" width="0.0213%" height="15" fill="rgb(231,26,25)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="36.3601%" y="1941" width="0.0213%" height="15" fill="rgb(229,48,38)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="36.3601%" y="1925" width="0.0213%" height="15" fill="rgb(213,70,50)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="36.3601%" y="1909" width="0.0213%" height="15" fill="rgb(250,131,53)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="36.3601%" y="1893" width="0.0213%" height="15" fill="rgb(244,98,29)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="36.3601%" y="1877" width="0.0213%" height="15" fill="rgb(209,62,53)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="36.3601%" y="1861" width="0.0213%" height="15" fill="rgb(250,78,48)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="36.3601%" y="1845" width="0.0213%" height="15" fill="rgb(237,114,47)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="36.3601%" y="1829" width="0.0213%" height="15" fill="rgb(226,71,28)" fg:x="8533" fg:w="5"/><text x="36.6101%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="36.3601%" y="2069" width="0.0426%" height="15" fill="rgb(221,71,41)" fg:x="8533" fg:w="10"/><text x="36.6101%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="36.3601%" y="2053" width="0.0426%" height="15" fill="rgb(208,215,7)" fg:x="8533" fg:w="10"/><text x="36.6101%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="36.3601%" y="2037" width="0.0426%" height="15" fill="rgb(242,88,51)" fg:x="8533" fg:w="10"/><text x="36.6101%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="36.3601%" y="2021" width="0.0426%" height="15" fill="rgb(225,199,20)" fg:x="8533" fg:w="10"/><text x="36.6101%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="36.3815%" y="2005" width="0.0213%" height="15" fill="rgb(226,31,31)" fg:x="8538" fg:w="5"/><text x="36.6315%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="36.3815%" y="1989" width="0.0213%" height="15" fill="rgb(251,116,44)" fg:x="8538" fg:w="5"/><text x="36.6315%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="36.3815%" y="1973" width="0.0213%" height="15" fill="rgb(207,10,6)" fg:x="8538" fg:w="5"/><text x="36.6315%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="36.3900%" y="1957" width="0.0128%" height="15" fill="rgb(254,113,27)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="36.3900%" y="1941" width="0.0128%" height="15" fill="rgb(218,6,26)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1951.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="36.3900%" y="1925" width="0.0128%" height="15" fill="rgb(243,103,4)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="36.3900%" y="1909" width="0.0128%" height="15" fill="rgb(218,122,49)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="36.3900%" y="1893" width="0.0128%" height="15" fill="rgb(249,33,14)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="36.3900%" y="1877" width="0.0128%" height="15" fill="rgb(238,168,38)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.3900%" y="1861" width="0.0128%" height="15" fill="rgb(211,0,15)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.3900%" y="1845" width="0.0128%" height="15" fill="rgb(229,191,9)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.3900%" y="1829" width="0.0128%" height="15" fill="rgb(214,214,32)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.3900%" y="1813" width="0.0128%" height="15" fill="rgb(232,28,4)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.3900%" y="1797" width="0.0128%" height="15" fill="rgb(214,187,3)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.3900%" y="1781" width="0.0128%" height="15" fill="rgb(206,126,5)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.3900%" y="1765" width="0.0128%" height="15" fill="rgb(219,193,52)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.3900%" y="1749" width="0.0128%" height="15" fill="rgb(238,182,9)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.3900%" y="1733" width="0.0128%" height="15" fill="rgb(230,51,17)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.3900%" y="1717" width="0.0128%" height="15" fill="rgb(220,23,0)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.3900%" y="1701" width="0.0128%" height="15" fill="rgb(229,187,48)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.3900%" y="1685" width="0.0128%" height="15" fill="rgb(247,88,54)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.3900%" y="1669" width="0.0128%" height="15" fill="rgb(244,5,20)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.3900%" y="1653" width="0.0128%" height="15" fill="rgb(236,2,2)" fg:x="8540" fg:w="3"/><text x="36.6400%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="36.4028%" y="1941" width="0.0213%" height="15" fill="rgb(244,54,18)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="36.4028%" y="1925" width="0.0213%" height="15" fill="rgb(216,44,42)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="36.4028%" y="1909" width="0.0213%" height="15" fill="rgb(233,181,13)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="36.4028%" y="1893" width="0.0213%" height="15" fill="rgb(244,31,49)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="36.4028%" y="1877" width="0.0213%" height="15" fill="rgb(212,197,51)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="36.4028%" y="1861" width="0.0213%" height="15" fill="rgb(229,11,50)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="36.4028%" y="1845" width="0.0213%" height="15" fill="rgb(244,102,0)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="36.4028%" y="1829" width="0.0213%" height="15" fill="rgb(230,18,14)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="36.4028%" y="1813" width="0.0213%" height="15" fill="rgb(238,152,14)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="36.4028%" y="1797" width="0.0213%" height="15" fill="rgb(231,212,25)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="36.4028%" y="1781" width="0.0213%" height="15" fill="rgb(241,17,2)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="36.4028%" y="1765" width="0.0213%" height="15" fill="rgb(210,162,37)" fg:x="8543" fg:w="5"/><text x="36.6528%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (23 samples, 0.10%)</title><rect x="36.3431%" y="2181" width="0.0980%" height="15" fill="rgb(253,195,17)" fg:x="8529" fg:w="23"/><text x="36.5931%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (23 samples, 0.10%)</title><rect x="36.3431%" y="2165" width="0.0980%" height="15" fill="rgb(212,31,5)" fg:x="8529" fg:w="23"/><text x="36.5931%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="36.3431%" y="2149" width="0.0980%" height="15" fill="rgb(234,144,35)" fg:x="8529" fg:w="23"/><text x="36.5931%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="36.3431%" y="2133" width="0.0980%" height="15" fill="rgb(237,41,23)" fg:x="8529" fg:w="23"/><text x="36.5931%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="36.3601%" y="2117" width="0.0810%" height="15" fill="rgb(242,76,0)" fg:x="8533" fg:w="19"/><text x="36.6101%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="36.3601%" y="2101" width="0.0810%" height="15" fill="rgb(231,97,49)" fg:x="8533" fg:w="19"/><text x="36.6101%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="36.3601%" y="2085" width="0.0810%" height="15" fill="rgb(233,99,12)" fg:x="8533" fg:w="19"/><text x="36.6101%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="36.4028%" y="2069" width="0.0384%" height="15" fill="rgb(222,114,1)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="36.4028%" y="2053" width="0.0384%" height="15" fill="rgb(243,15,14)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="2063.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="36.4028%" y="2037" width="0.0384%" height="15" fill="rgb(206,188,47)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="36.4028%" y="2021" width="0.0384%" height="15" fill="rgb(234,55,16)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="36.4028%" y="2005" width="0.0384%" height="15" fill="rgb(248,101,52)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="36.4028%" y="1989" width="0.0384%" height="15" fill="rgb(223,161,52)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="36.4028%" y="1973" width="0.0384%" height="15" fill="rgb(242,35,2)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="36.4028%" y="1957" width="0.0384%" height="15" fill="rgb(233,89,41)" fg:x="8543" fg:w="9"/><text x="36.6528%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.4241%" y="1941" width="0.0170%" height="15" fill="rgb(229,13,51)" fg:x="8548" fg:w="4"/><text x="36.6741%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.4241%" y="1925" width="0.0170%" height="15" fill="rgb(222,31,50)" fg:x="8548" fg:w="4"/><text x="36.6741%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.4241%" y="1909" width="0.0170%" height="15" fill="rgb(231,62,14)" fg:x="8548" fg:w="4"/><text x="36.6741%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="36.4411%" y="1717" width="0.0213%" height="15" fill="rgb(248,193,48)" fg:x="8552" fg:w="5"/><text x="36.6911%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="36.4411%" y="1701" width="0.0213%" height="15" fill="rgb(254,115,43)" fg:x="8552" fg:w="5"/><text x="36.6911%" y="1711.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (4 samples, 0.02%)</title><rect x="36.4454%" y="1685" width="0.0170%" height="15" fill="rgb(230,121,31)" fg:x="8553" fg:w="4"/><text x="36.6954%" y="1695.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="36.4454%" y="1669" width="0.0170%" height="15" fill="rgb(226,144,6)" fg:x="8553" fg:w="4"/><text x="36.6954%" y="1679.50"></text></g><g><title>std::sync::condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="36.4454%" y="1653" width="0.0170%" height="15" fill="rgb(253,98,17)" fg:x="8553" fg:w="4"/><text x="36.6954%" y="1663.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="36.4454%" y="1637" width="0.0170%" height="15" fill="rgb(229,1,18)" fg:x="8553" fg:w="4"/><text x="36.6954%" y="1647.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="36.4454%" y="1621" width="0.0170%" height="15" fill="rgb(218,80,44)" fg:x="8553" fg:w="4"/><text x="36.6954%" y="1631.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="36.4454%" y="1605" width="0.0170%" height="15" fill="rgb(234,211,27)" fg:x="8553" fg:w="4"/><text x="36.6954%" y="1615.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="36.4454%" y="1589" width="0.0170%" height="15" fill="rgb(253,96,18)" fg:x="8553" fg:w="4"/><text x="36.6954%" y="1599.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="36.4624%" y="1541" width="0.0213%" height="15" fill="rgb(233,48,29)" fg:x="8557" fg:w="5"/><text x="36.7124%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="36.4624%" y="1525" width="0.0213%" height="15" fill="rgb(228,37,50)" fg:x="8557" fg:w="5"/><text x="36.7124%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="36.4624%" y="1509" width="0.0213%" height="15" fill="rgb(239,122,15)" fg:x="8557" fg:w="5"/><text x="36.7124%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="36.4624%" y="1493" width="0.0213%" height="15" fill="rgb(211,34,39)" fg:x="8557" fg:w="5"/><text x="36.7124%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="36.4624%" y="1477" width="0.0213%" height="15" fill="rgb(248,16,47)" fg:x="8557" fg:w="5"/><text x="36.7124%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="36.4624%" y="1461" width="0.0213%" height="15" fill="rgb(231,222,13)" fg:x="8557" fg:w="5"/><text x="36.7124%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="36.4624%" y="1445" width="0.0213%" height="15" fill="rgb(224,52,16)" fg:x="8557" fg:w="5"/><text x="36.7124%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="36.4709%" y="1429" width="0.0128%" height="15" fill="rgb(244,153,48)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="36.4709%" y="1413" width="0.0128%" height="15" fill="rgb(222,159,23)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1423.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="36.4709%" y="1397" width="0.0128%" height="15" fill="rgb(249,83,4)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="36.4709%" y="1381" width="0.0128%" height="15" fill="rgb(254,166,45)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="36.4709%" y="1365" width="0.0128%" height="15" fill="rgb(234,69,20)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="36.4709%" y="1349" width="0.0128%" height="15" fill="rgb(208,100,0)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.4709%" y="1333" width="0.0128%" height="15" fill="rgb(240,141,50)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.4709%" y="1317" width="0.0128%" height="15" fill="rgb(233,63,32)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="36.4709%" y="1301" width="0.0128%" height="15" fill="rgb(218,187,43)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="36.4709%" y="1285" width="0.0128%" height="15" fill="rgb(241,57,32)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="36.4709%" y="1269" width="0.0128%" height="15" fill="rgb(234,159,16)" fg:x="8559" fg:w="3"/><text x="36.7209%" y="1279.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="36.4837%" y="1365" width="0.0170%" height="15" fill="rgb(223,144,34)" fg:x="8562" fg:w="4"/><text x="36.7337%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="36.4837%" y="1349" width="0.0170%" height="15" fill="rgb(237,144,26)" fg:x="8562" fg:w="4"/><text x="36.7337%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.4837%" y="1333" width="0.0170%" height="15" fill="rgb(251,225,43)" fg:x="8562" fg:w="4"/><text x="36.7337%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.4837%" y="1317" width="0.0170%" height="15" fill="rgb(254,118,41)" fg:x="8562" fg:w="4"/><text x="36.7337%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.4837%" y="1301" width="0.0170%" height="15" fill="rgb(207,209,47)" fg:x="8562" fg:w="4"/><text x="36.7337%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.4837%" y="1285" width="0.0170%" height="15" fill="rgb(253,87,27)" fg:x="8562" fg:w="4"/><text x="36.7337%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.4837%" y="1269" width="0.0170%" height="15" fill="rgb(231,186,33)" fg:x="8562" fg:w="4"/><text x="36.7337%" y="1279.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (18 samples, 0.08%)</title><rect x="36.4411%" y="2181" width="0.0767%" height="15" fill="rgb(229,150,49)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.08%)</title><rect x="36.4411%" y="2165" width="0.0767%" height="15" fill="rgb(206,46,23)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2175.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (18 samples, 0.08%)</title><rect x="36.4411%" y="2149" width="0.0767%" height="15" fill="rgb(247,119,54)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2159.50"></text></g><g><title>rayon_core::job::JobRef::execute (18 samples, 0.08%)</title><rect x="36.4411%" y="2133" width="0.0767%" height="15" fill="rgb(240,213,34)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2143.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (18 samples, 0.08%)</title><rect x="36.4411%" y="2117" width="0.0767%" height="15" fill="rgb(216,80,54)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2127.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (18 samples, 0.08%)</title><rect x="36.4411%" y="2101" width="0.0767%" height="15" fill="rgb(230,197,24)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2111.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="36.4411%" y="2085" width="0.0767%" height="15" fill="rgb(243,43,15)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2095.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="36.4411%" y="2069" width="0.0767%" height="15" fill="rgb(232,121,54)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2079.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="36.4411%" y="2053" width="0.0767%" height="15" fill="rgb(222,55,8)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2063.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="36.4411%" y="2037" width="0.0767%" height="15" fill="rgb(243,56,6)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2047.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="36.4411%" y="2021" width="0.0767%" height="15" fill="rgb(212,73,7)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2031.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (18 samples, 0.08%)</title><rect x="36.4411%" y="2005" width="0.0767%" height="15" fill="rgb(238,108,29)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="36.4411%" y="1989" width="0.0767%" height="15" fill="rgb(253,46,43)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="36.4411%" y="1973" width="0.0767%" height="15" fill="rgb(237,108,20)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="36.4411%" y="1957" width="0.0767%" height="15" fill="rgb(220,78,0)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="36.4411%" y="1941" width="0.0767%" height="15" fill="rgb(214,199,22)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="36.4411%" y="1925" width="0.0767%" height="15" fill="rgb(239,68,27)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="36.4411%" y="1909" width="0.0767%" height="15" fill="rgb(243,205,21)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="36.4411%" y="1893" width="0.0767%" height="15" fill="rgb(234,223,16)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="36.4411%" y="1877" width="0.0767%" height="15" fill="rgb(227,52,5)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1887.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="36.4411%" y="1861" width="0.0767%" height="15" fill="rgb(222,122,47)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="36.4411%" y="1845" width="0.0767%" height="15" fill="rgb(235,14,51)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="36.4411%" y="1829" width="0.0767%" height="15" fill="rgb(221,123,52)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18 samples, 0.08%)</title><rect x="36.4411%" y="1813" width="0.0767%" height="15" fill="rgb(207,22,18)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="36.4411%" y="1797" width="0.0767%" height="15" fill="rgb(238,204,10)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="36.4411%" y="1781" width="0.0767%" height="15" fill="rgb(221,105,25)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="36.4411%" y="1765" width="0.0767%" height="15" fill="rgb(208,135,15)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="36.4411%" y="1749" width="0.0767%" height="15" fill="rgb(218,81,28)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="36.4411%" y="1733" width="0.0767%" height="15" fill="rgb(224,45,47)" fg:x="8552" fg:w="18"/><text x="36.6911%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="36.4624%" y="1717" width="0.0554%" height="15" fill="rgb(252,156,44)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="36.4624%" y="1701" width="0.0554%" height="15" fill="rgb(236,83,32)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1711.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="36.4624%" y="1685" width="0.0554%" height="15" fill="rgb(243,117,35)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="36.4624%" y="1669" width="0.0554%" height="15" fill="rgb(209,17,20)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="36.4624%" y="1653" width="0.0554%" height="15" fill="rgb(237,164,2)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="36.4624%" y="1637" width="0.0554%" height="15" fill="rgb(216,12,30)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="36.4624%" y="1621" width="0.0554%" height="15" fill="rgb(235,168,4)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="36.4624%" y="1605" width="0.0554%" height="15" fill="rgb(230,36,1)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="36.4624%" y="1589" width="0.0554%" height="15" fill="rgb(209,89,49)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="36.4624%" y="1573" width="0.0554%" height="15" fill="rgb(247,193,3)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="36.4624%" y="1557" width="0.0554%" height="15" fill="rgb(239,141,36)" fg:x="8557" fg:w="13"/><text x="36.7124%" y="1567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="36.4837%" y="1541" width="0.0341%" height="15" fill="rgb(243,133,13)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1551.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="36.4837%" y="1525" width="0.0341%" height="15" fill="rgb(225,197,45)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1535.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="36.4837%" y="1509" width="0.0341%" height="15" fill="rgb(225,197,50)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1519.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="36.4837%" y="1493" width="0.0341%" height="15" fill="rgb(219,107,18)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="36.4837%" y="1477" width="0.0341%" height="15" fill="rgb(248,79,16)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="36.4837%" y="1461" width="0.0341%" height="15" fill="rgb(216,57,13)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="36.4837%" y="1445" width="0.0341%" height="15" fill="rgb(216,102,47)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="36.4837%" y="1429" width="0.0341%" height="15" fill="rgb(252,30,43)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1439.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="36.4837%" y="1413" width="0.0341%" height="15" fill="rgb(218,198,40)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1423.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="36.4837%" y="1397" width="0.0341%" height="15" fill="rgb(248,194,46)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="36.4837%" y="1381" width="0.0341%" height="15" fill="rgb(248,189,11)" fg:x="8562" fg:w="8"/><text x="36.7337%" y="1391.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.5008%" y="1365" width="0.0170%" height="15" fill="rgb(227,26,52)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1375.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.5008%" y="1349" width="0.0170%" height="15" fill="rgb(230,177,25)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1359.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.5008%" y="1333" width="0.0170%" height="15" fill="rgb(252,206,0)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1343.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.5008%" y="1317" width="0.0170%" height="15" fill="rgb(245,184,10)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1327.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.5008%" y="1301" width="0.0170%" height="15" fill="rgb(235,171,30)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.5008%" y="1285" width="0.0170%" height="15" fill="rgb(242,128,53)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.5008%" y="1269" width="0.0170%" height="15" fill="rgb(240,76,1)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.5008%" y="1253" width="0.0170%" height="15" fill="rgb(205,104,52)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1263.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.5008%" y="1237" width="0.0170%" height="15" fill="rgb(246,68,15)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1247.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.5008%" y="1221" width="0.0170%" height="15" fill="rgb(247,153,11)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.5008%" y="1205" width="0.0170%" height="15" fill="rgb(252,170,2)" fg:x="8566" fg:w="4"/><text x="36.7508%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.5178%" y="2053" width="0.0128%" height="15" fill="rgb(248,9,51)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.5178%" y="2037" width="0.0128%" height="15" fill="rgb(217,62,40)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.5178%" y="2021" width="0.0128%" height="15" fill="rgb(222,202,10)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.5178%" y="2005" width="0.0128%" height="15" fill="rgb(216,82,10)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.5178%" y="1989" width="0.0128%" height="15" fill="rgb(254,33,34)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.5178%" y="1973" width="0.0128%" height="15" fill="rgb(237,97,0)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.5178%" y="1957" width="0.0128%" height="15" fill="rgb(254,90,4)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.5178%" y="1941" width="0.0128%" height="15" fill="rgb(246,148,20)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.5178%" y="1925" width="0.0128%" height="15" fill="rgb(222,150,40)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.5178%" y="1909" width="0.0128%" height="15" fill="rgb(233,199,45)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.5178%" y="1893" width="0.0128%" height="15" fill="rgb(251,9,45)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.5178%" y="1877" width="0.0128%" height="15" fill="rgb(253,80,25)" fg:x="8570" fg:w="3"/><text x="36.7678%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="36.5306%" y="1749" width="0.0170%" height="15" fill="rgb(248,74,46)" fg:x="8573" fg:w="4"/><text x="36.7806%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="36.5306%" y="1733" width="0.0170%" height="15" fill="rgb(244,52,5)" fg:x="8573" fg:w="4"/><text x="36.7806%" y="1743.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="36.5349%" y="1717" width="0.0128%" height="15" fill="rgb(253,164,12)" fg:x="8574" fg:w="3"/><text x="36.7849%" y="1727.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="36.5349%" y="1701" width="0.0128%" height="15" fill="rgb(254,87,17)" fg:x="8574" fg:w="3"/><text x="36.7849%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="36.5306%" y="1941" width="0.0298%" height="15" fill="rgb(233,155,14)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="36.5306%" y="1925" width="0.0298%" height="15" fill="rgb(230,192,38)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="36.5306%" y="1909" width="0.0298%" height="15" fill="rgb(224,224,42)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="36.5306%" y="1893" width="0.0298%" height="15" fill="rgb(236,130,41)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="36.5306%" y="1877" width="0.0298%" height="15" fill="rgb(221,181,49)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="36.5306%" y="1861" width="0.0298%" height="15" fill="rgb(229,36,7)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="36.5306%" y="1845" width="0.0298%" height="15" fill="rgb(205,155,34)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="36.5306%" y="1829" width="0.0298%" height="15" fill="rgb(234,223,35)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="36.5306%" y="1813" width="0.0298%" height="15" fill="rgb(226,190,37)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="36.5306%" y="1797" width="0.0298%" height="15" fill="rgb(205,210,53)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="36.5306%" y="1781" width="0.0298%" height="15" fill="rgb(222,23,40)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="36.5306%" y="1765" width="0.0298%" height="15" fill="rgb(219,76,24)" fg:x="8573" fg:w="7"/><text x="36.7806%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="36.5306%" y="2005" width="0.0511%" height="15" fill="rgb(209,99,44)" fg:x="8573" fg:w="12"/><text x="36.7806%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="36.5306%" y="1989" width="0.0511%" height="15" fill="rgb(206,54,45)" fg:x="8573" fg:w="12"/><text x="36.7806%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="36.5306%" y="1973" width="0.0511%" height="15" fill="rgb(244,187,20)" fg:x="8573" fg:w="12"/><text x="36.7806%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="36.5306%" y="1957" width="0.0511%" height="15" fill="rgb(245,190,35)" fg:x="8573" fg:w="12"/><text x="36.7806%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="36.5604%" y="1941" width="0.0213%" height="15" fill="rgb(228,65,18)" fg:x="8580" fg:w="5"/><text x="36.8104%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="36.5604%" y="1925" width="0.0213%" height="15" fill="rgb(239,48,11)" fg:x="8580" fg:w="5"/><text x="36.8104%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="36.5604%" y="1909" width="0.0213%" height="15" fill="rgb(253,229,10)" fg:x="8580" fg:w="5"/><text x="36.8104%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="36.5689%" y="1893" width="0.0128%" height="15" fill="rgb(231,138,37)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="36.5689%" y="1877" width="0.0128%" height="15" fill="rgb(235,215,48)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="36.5689%" y="1861" width="0.0128%" height="15" fill="rgb(224,125,13)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="36.5689%" y="1845" width="0.0128%" height="15" fill="rgb(205,3,35)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="36.5689%" y="1829" width="0.0128%" height="15" fill="rgb(226,94,32)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="36.5689%" y="1813" width="0.0128%" height="15" fill="rgb(222,183,31)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.5689%" y="1797" width="0.0128%" height="15" fill="rgb(234,54,7)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.5689%" y="1781" width="0.0128%" height="15" fill="rgb(250,212,36)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.5689%" y="1765" width="0.0128%" height="15" fill="rgb(208,209,22)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.5689%" y="1749" width="0.0128%" height="15" fill="rgb(212,16,41)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.5689%" y="1733" width="0.0128%" height="15" fill="rgb(229,206,22)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.5689%" y="1717" width="0.0128%" height="15" fill="rgb(216,53,12)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.5689%" y="1701" width="0.0128%" height="15" fill="rgb(205,200,3)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.5689%" y="1685" width="0.0128%" height="15" fill="rgb(253,186,26)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.5689%" y="1669" width="0.0128%" height="15" fill="rgb(252,20,38)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.5689%" y="1653" width="0.0128%" height="15" fill="rgb(214,132,43)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.5689%" y="1637" width="0.0128%" height="15" fill="rgb(208,40,26)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.5689%" y="1621" width="0.0128%" height="15" fill="rgb(218,36,54)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.5689%" y="1605" width="0.0128%" height="15" fill="rgb(233,174,54)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.5689%" y="1589" width="0.0128%" height="15" fill="rgb(216,110,1)" fg:x="8582" fg:w="3"/><text x="36.8189%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="36.5817%" y="1685" width="0.0128%" height="15" fill="rgb(254,93,36)" fg:x="8585" fg:w="3"/><text x="36.8317%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="36.5817%" y="1669" width="0.0128%" height="15" fill="rgb(220,30,14)" fg:x="8585" fg:w="3"/><text x="36.8317%" y="1679.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="36.5817%" y="1653" width="0.0128%" height="15" fill="rgb(226,131,42)" fg:x="8585" fg:w="3"/><text x="36.8317%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="36.5817%" y="1877" width="0.0298%" height="15" fill="rgb(238,154,37)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="36.5817%" y="1861" width="0.0298%" height="15" fill="rgb(254,175,1)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="36.5817%" y="1845" width="0.0298%" height="15" fill="rgb(214,179,21)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="36.5817%" y="1829" width="0.0298%" height="15" fill="rgb(241,75,7)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="36.5817%" y="1813" width="0.0298%" height="15" fill="rgb(223,93,44)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="36.5817%" y="1797" width="0.0298%" height="15" fill="rgb(224,214,14)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="36.5817%" y="1781" width="0.0298%" height="15" fill="rgb(245,104,50)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="36.5817%" y="1765" width="0.0298%" height="15" fill="rgb(236,39,0)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="36.5817%" y="1749" width="0.0298%" height="15" fill="rgb(246,122,46)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="36.5817%" y="1733" width="0.0298%" height="15" fill="rgb(207,43,23)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="36.5817%" y="1717" width="0.0298%" height="15" fill="rgb(243,224,0)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="36.5817%" y="1701" width="0.0298%" height="15" fill="rgb(226,78,44)" fg:x="8585" fg:w="7"/><text x="36.8317%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (74 samples, 0.32%)</title><rect x="36.3133%" y="2293" width="0.3153%" height="15" fill="rgb(222,158,33)" fg:x="8522" fg:w="74"/><text x="36.5633%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (74 samples, 0.32%)</title><rect x="36.3133%" y="2277" width="0.3153%" height="15" fill="rgb(252,46,24)" fg:x="8522" fg:w="74"/><text x="36.5633%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (74 samples, 0.32%)</title><rect x="36.3133%" y="2261" width="0.3153%" height="15" fill="rgb(251,65,38)" fg:x="8522" fg:w="74"/><text x="36.5633%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.32%)</title><rect x="36.3133%" y="2245" width="0.3153%" height="15" fill="rgb(238,39,31)" fg:x="8522" fg:w="74"/><text x="36.5633%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (67 samples, 0.29%)</title><rect x="36.3431%" y="2229" width="0.2855%" height="15" fill="rgb(228,104,44)" fg:x="8529" fg:w="67"/><text x="36.5931%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (67 samples, 0.29%)</title><rect x="36.3431%" y="2213" width="0.2855%" height="15" fill="rgb(223,32,40)" fg:x="8529" fg:w="67"/><text x="36.5931%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (67 samples, 0.29%)</title><rect x="36.3431%" y="2197" width="0.2855%" height="15" fill="rgb(234,146,13)" fg:x="8529" fg:w="67"/><text x="36.5931%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="36.5178%" y="2181" width="0.1108%" height="15" fill="rgb(240,10,5)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="36.5178%" y="2165" width="0.1108%" height="15" fill="rgb(220,109,32)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2175.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="36.5178%" y="2149" width="0.1108%" height="15" fill="rgb(218,150,29)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="36.5178%" y="2133" width="0.1108%" height="15" fill="rgb(208,161,42)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="36.5178%" y="2117" width="0.1108%" height="15" fill="rgb(236,167,27)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (26 samples, 0.11%)</title><rect x="36.5178%" y="2101" width="0.1108%" height="15" fill="rgb(239,39,40)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="36.5178%" y="2085" width="0.1108%" height="15" fill="rgb(243,39,42)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="36.5178%" y="2069" width="0.1108%" height="15" fill="rgb(248,162,16)" fg:x="8570" fg:w="26"/><text x="36.7678%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="36.5306%" y="2053" width="0.0980%" height="15" fill="rgb(214,14,47)" fg:x="8573" fg:w="23"/><text x="36.7806%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="36.5306%" y="2037" width="0.0980%" height="15" fill="rgb(254,114,49)" fg:x="8573" fg:w="23"/><text x="36.7806%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="36.5306%" y="2021" width="0.0980%" height="15" fill="rgb(253,116,47)" fg:x="8573" fg:w="23"/><text x="36.7806%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="36.5817%" y="2005" width="0.0469%" height="15" fill="rgb(206,23,40)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="36.5817%" y="1989" width="0.0469%" height="15" fill="rgb(224,10,18)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="1999.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="36.5817%" y="1973" width="0.0469%" height="15" fill="rgb(248,55,26)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="36.5817%" y="1957" width="0.0469%" height="15" fill="rgb(225,21,6)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="36.5817%" y="1941" width="0.0469%" height="15" fill="rgb(209,131,35)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="36.5817%" y="1925" width="0.0469%" height="15" fill="rgb(225,3,19)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="36.5817%" y="1909" width="0.0469%" height="15" fill="rgb(225,186,11)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="36.5817%" y="1893" width="0.0469%" height="15" fill="rgb(236,168,40)" fg:x="8585" fg:w="11"/><text x="36.8317%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.6116%" y="1877" width="0.0170%" height="15" fill="rgb(228,58,6)" fg:x="8592" fg:w="4"/><text x="36.8616%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.6116%" y="1861" width="0.0170%" height="15" fill="rgb(247,154,21)" fg:x="8592" fg:w="4"/><text x="36.8616%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.6116%" y="1845" width="0.0170%" height="15" fill="rgb(247,145,40)" fg:x="8592" fg:w="4"/><text x="36.8616%" y="1855.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="36.6456%" y="501" width="0.0128%" height="15" fill="rgb(227,90,19)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="511.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6456%" y="485" width="0.0128%" height="15" fill="rgb(232,65,16)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6456%" y="469" width="0.0128%" height="15" fill="rgb(244,229,35)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.6456%" y="453" width="0.0128%" height="15" fill="rgb(251,88,29)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="463.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.6456%" y="437" width="0.0128%" height="15" fill="rgb(207,30,7)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="447.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.6456%" y="421" width="0.0128%" height="15" fill="rgb(235,204,5)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="431.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.6456%" y="405" width="0.0128%" height="15" fill="rgb(226,146,24)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.6456%" y="389" width="0.0128%" height="15" fill="rgb(242,213,30)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="399.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.6456%" y="373" width="0.0128%" height="15" fill="rgb(221,120,18)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.6456%" y="357" width="0.0128%" height="15" fill="rgb(237,199,49)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.6456%" y="341" width="0.0128%" height="15" fill="rgb(236,129,53)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="351.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6456%" y="325" width="0.0128%" height="15" fill="rgb(211,3,32)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.6456%" y="309" width="0.0128%" height="15" fill="rgb(224,148,3)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="319.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.6456%" y="293" width="0.0128%" height="15" fill="rgb(254,177,34)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6456%" y="277" width="0.0128%" height="15" fill="rgb(250,83,13)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="287.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.6456%" y="261" width="0.0128%" height="15" fill="rgb(214,176,18)" fg:x="8600" fg:w="3"/><text x="36.8956%" y="271.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="36.6371%" y="965" width="0.0341%" height="15" fill="rgb(222,143,9)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="36.6371%" y="949" width="0.0341%" height="15" fill="rgb(245,120,38)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="36.6371%" y="933" width="0.0341%" height="15" fill="rgb(213,7,40)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="943.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="36.6371%" y="917" width="0.0341%" height="15" fill="rgb(234,108,29)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="927.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="36.6371%" y="901" width="0.0341%" height="15" fill="rgb(211,166,41)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="911.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="36.6371%" y="885" width="0.0341%" height="15" fill="rgb(227,91,15)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="895.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="36.6371%" y="869" width="0.0341%" height="15" fill="rgb(246,227,50)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="879.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="36.6371%" y="853" width="0.0341%" height="15" fill="rgb(244,8,32)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="863.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="36.6371%" y="837" width="0.0341%" height="15" fill="rgb(211,4,3)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="847.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="36.6371%" y="821" width="0.0341%" height="15" fill="rgb(249,90,33)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="831.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="36.6371%" y="805" width="0.0341%" height="15" fill="rgb(221,81,19)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="815.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="36.6371%" y="789" width="0.0341%" height="15" fill="rgb(220,41,42)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="36.6371%" y="773" width="0.0341%" height="15" fill="rgb(237,134,28)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="36.6371%" y="757" width="0.0341%" height="15" fill="rgb(209,170,28)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="36.6371%" y="741" width="0.0341%" height="15" fill="rgb(224,143,27)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="751.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="36.6371%" y="725" width="0.0341%" height="15" fill="rgb(235,12,23)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="36.6371%" y="709" width="0.0341%" height="15" fill="rgb(247,115,36)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="36.6371%" y="693" width="0.0341%" height="15" fill="rgb(224,134,16)" fg:x="8598" fg:w="8"/><text x="36.8871%" y="703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="36.6456%" y="677" width="0.0256%" height="15" fill="rgb(237,143,21)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="687.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="36.6456%" y="661" width="0.0256%" height="15" fill="rgb(210,213,14)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="671.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="36.6456%" y="645" width="0.0256%" height="15" fill="rgb(224,50,54)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="655.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="36.6456%" y="629" width="0.0256%" height="15" fill="rgb(224,2,16)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="36.6456%" y="613" width="0.0256%" height="15" fill="rgb(254,32,23)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="623.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="36.6456%" y="597" width="0.0256%" height="15" fill="rgb(253,182,37)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="36.6456%" y="581" width="0.0256%" height="15" fill="rgb(249,105,43)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="36.6456%" y="565" width="0.0256%" height="15" fill="rgb(243,210,54)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="575.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="36.6456%" y="549" width="0.0256%" height="15" fill="rgb(233,126,50)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="36.6456%" y="533" width="0.0256%" height="15" fill="rgb(211,179,19)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="36.6456%" y="517" width="0.0256%" height="15" fill="rgb(245,101,13)" fg:x="8600" fg:w="6"/><text x="36.8956%" y="527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="36.6584%" y="501" width="0.0128%" height="15" fill="rgb(250,106,20)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="511.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="36.6584%" y="485" width="0.0128%" height="15" fill="rgb(250,77,36)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="495.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="36.6584%" y="469" width="0.0128%" height="15" fill="rgb(222,53,43)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="479.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="36.6584%" y="453" width="0.0128%" height="15" fill="rgb(227,105,42)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="36.6584%" y="437" width="0.0128%" height="15" fill="rgb(209,58,48)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="447.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6584%" y="421" width="0.0128%" height="15" fill="rgb(207,132,2)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6584%" y="405" width="0.0128%" height="15" fill="rgb(230,216,0)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.6584%" y="389" width="0.0128%" height="15" fill="rgb(235,100,53)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="399.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.6584%" y="373" width="0.0128%" height="15" fill="rgb(227,16,10)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="383.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.6584%" y="357" width="0.0128%" height="15" fill="rgb(215,99,18)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="367.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.6584%" y="341" width="0.0128%" height="15" fill="rgb(208,69,34)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.6584%" y="325" width="0.0128%" height="15" fill="rgb(205,25,45)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="335.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.6584%" y="309" width="0.0128%" height="15" fill="rgb(230,155,10)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="319.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.6584%" y="293" width="0.0128%" height="15" fill="rgb(244,223,36)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.6584%" y="277" width="0.0128%" height="15" fill="rgb(236,212,32)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="287.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6584%" y="261" width="0.0128%" height="15" fill="rgb(235,138,14)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.6584%" y="245" width="0.0128%" height="15" fill="rgb(208,221,31)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="255.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.6584%" y="229" width="0.0128%" height="15" fill="rgb(211,206,50)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6584%" y="213" width="0.0128%" height="15" fill="rgb(252,10,8)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="223.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.6584%" y="197" width="0.0128%" height="15" fill="rgb(243,155,30)" fg:x="8603" fg:w="3"/><text x="36.9084%" y="207.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="36.6712%" y="789" width="0.0170%" height="15" fill="rgb(215,163,18)" fg:x="8606" fg:w="4"/><text x="36.9212%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="36.6712%" y="773" width="0.0170%" height="15" fill="rgb(252,122,43)" fg:x="8606" fg:w="4"/><text x="36.9212%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.6712%" y="757" width="0.0170%" height="15" fill="rgb(231,152,3)" fg:x="8606" fg:w="4"/><text x="36.9212%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.6712%" y="741" width="0.0170%" height="15" fill="rgb(247,79,47)" fg:x="8606" fg:w="4"/><text x="36.9212%" y="751.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.6712%" y="725" width="0.0170%" height="15" fill="rgb(226,43,29)" fg:x="8606" fg:w="4"/><text x="36.9212%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.6712%" y="709" width="0.0170%" height="15" fill="rgb(232,134,20)" fg:x="8606" fg:w="4"/><text x="36.9212%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.6712%" y="693" width="0.0170%" height="15" fill="rgb(213,213,6)" fg:x="8606" fg:w="4"/><text x="36.9212%" y="703.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="36.6883%" y="613" width="0.0128%" height="15" fill="rgb(205,168,33)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="623.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6883%" y="597" width="0.0128%" height="15" fill="rgb(223,6,33)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6883%" y="581" width="0.0128%" height="15" fill="rgb(208,213,9)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.6883%" y="565" width="0.0128%" height="15" fill="rgb(208,16,26)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="575.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.6883%" y="549" width="0.0128%" height="15" fill="rgb(251,86,3)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="559.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.6883%" y="533" width="0.0128%" height="15" fill="rgb(229,110,48)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="543.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.6883%" y="517" width="0.0128%" height="15" fill="rgb(214,179,54)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.6883%" y="501" width="0.0128%" height="15" fill="rgb(215,113,38)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="511.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.6883%" y="485" width="0.0128%" height="15" fill="rgb(245,75,17)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.6883%" y="469" width="0.0128%" height="15" fill="rgb(245,158,43)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.6883%" y="453" width="0.0128%" height="15" fill="rgb(235,47,29)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="463.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6883%" y="437" width="0.0128%" height="15" fill="rgb(206,124,8)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.6883%" y="421" width="0.0128%" height="15" fill="rgb(214,156,53)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="431.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.6883%" y="405" width="0.0128%" height="15" fill="rgb(215,6,25)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.6883%" y="389" width="0.0128%" height="15" fill="rgb(231,196,19)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="399.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.6883%" y="373" width="0.0128%" height="15" fill="rgb(230,121,1)" fg:x="8610" fg:w="3"/><text x="36.9383%" y="383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (17 samples, 0.07%)</title><rect x="36.6371%" y="1429" width="0.0724%" height="15" fill="rgb(236,124,23)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="36.6371%" y="1413" width="0.0724%" height="15" fill="rgb(220,198,14)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (17 samples, 0.07%)</title><rect x="36.6371%" y="1397" width="0.0724%" height="15" fill="rgb(222,30,31)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1407.50"></text></g><g><title>rayon_core::job::JobRef::execute (17 samples, 0.07%)</title><rect x="36.6371%" y="1381" width="0.0724%" height="15" fill="rgb(230,38,53)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1391.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (17 samples, 0.07%)</title><rect x="36.6371%" y="1365" width="0.0724%" height="15" fill="rgb(233,209,29)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1375.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (17 samples, 0.07%)</title><rect x="36.6371%" y="1349" width="0.0724%" height="15" fill="rgb(235,198,4)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1359.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="36.6371%" y="1333" width="0.0724%" height="15" fill="rgb(229,49,27)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1343.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="36.6371%" y="1317" width="0.0724%" height="15" fill="rgb(223,156,46)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1327.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="36.6371%" y="1301" width="0.0724%" height="15" fill="rgb(217,133,23)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1311.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="36.6371%" y="1285" width="0.0724%" height="15" fill="rgb(216,215,16)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1295.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="36.6371%" y="1269" width="0.0724%" height="15" fill="rgb(233,39,41)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1279.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (17 samples, 0.07%)</title><rect x="36.6371%" y="1253" width="0.0724%" height="15" fill="rgb(254,140,47)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="36.6371%" y="1237" width="0.0724%" height="15" fill="rgb(249,54,42)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="36.6371%" y="1221" width="0.0724%" height="15" fill="rgb(218,207,53)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="36.6371%" y="1205" width="0.0724%" height="15" fill="rgb(224,153,32)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="36.6371%" y="1189" width="0.0724%" height="15" fill="rgb(239,94,9)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="36.6371%" y="1173" width="0.0724%" height="15" fill="rgb(253,71,6)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="36.6371%" y="1157" width="0.0724%" height="15" fill="rgb(241,112,26)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="36.6371%" y="1141" width="0.0724%" height="15" fill="rgb(226,214,44)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="36.6371%" y="1125" width="0.0724%" height="15" fill="rgb(242,19,40)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1135.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="36.6371%" y="1109" width="0.0724%" height="15" fill="rgb(254,31,12)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="36.6371%" y="1093" width="0.0724%" height="15" fill="rgb(229,74,8)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="36.6371%" y="1077" width="0.0724%" height="15" fill="rgb(243,176,23)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="36.6371%" y="1061" width="0.0724%" height="15" fill="rgb(251,123,35)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="36.6371%" y="1045" width="0.0724%" height="15" fill="rgb(231,153,38)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="36.6371%" y="1029" width="0.0724%" height="15" fill="rgb(253,214,39)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1039.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="36.6371%" y="1013" width="0.0724%" height="15" fill="rgb(242,52,45)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="36.6371%" y="997" width="0.0724%" height="15" fill="rgb(207,146,25)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="36.6371%" y="981" width="0.0724%" height="15" fill="rgb(223,8,22)" fg:x="8598" fg:w="17"/><text x="36.8871%" y="991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="36.6712%" y="965" width="0.0384%" height="15" fill="rgb(234,50,18)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="975.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="36.6712%" y="949" width="0.0384%" height="15" fill="rgb(208,102,25)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="959.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="36.6712%" y="933" width="0.0384%" height="15" fill="rgb(225,147,47)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="943.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="36.6712%" y="917" width="0.0384%" height="15" fill="rgb(214,51,48)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="36.6712%" y="901" width="0.0384%" height="15" fill="rgb(236,220,19)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="36.6712%" y="885" width="0.0384%" height="15" fill="rgb(205,9,31)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="36.6712%" y="869" width="0.0384%" height="15" fill="rgb(205,113,27)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="36.6712%" y="853" width="0.0384%" height="15" fill="rgb(244,109,45)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="863.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="36.6712%" y="837" width="0.0384%" height="15" fill="rgb(241,78,22)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="36.6712%" y="821" width="0.0384%" height="15" fill="rgb(210,202,13)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="36.6712%" y="805" width="0.0384%" height="15" fill="rgb(237,157,54)" fg:x="8606" fg:w="9"/><text x="36.9212%" y="815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="36.6883%" y="789" width="0.0213%" height="15" fill="rgb(234,6,42)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="799.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="36.6883%" y="773" width="0.0213%" height="15" fill="rgb(242,48,3)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="783.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="36.6883%" y="757" width="0.0213%" height="15" fill="rgb(240,182,19)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="767.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="36.6883%" y="741" width="0.0213%" height="15" fill="rgb(232,24,12)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="36.6883%" y="725" width="0.0213%" height="15" fill="rgb(229,147,53)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="735.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="36.6883%" y="709" width="0.0213%" height="15" fill="rgb(220,99,36)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="36.6883%" y="693" width="0.0213%" height="15" fill="rgb(253,24,30)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="36.6883%" y="677" width="0.0213%" height="15" fill="rgb(248,92,37)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="687.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="36.6883%" y="661" width="0.0213%" height="15" fill="rgb(232,81,25)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="36.6883%" y="645" width="0.0213%" height="15" fill="rgb(205,215,28)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="655.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="36.6883%" y="629" width="0.0213%" height="15" fill="rgb(229,40,34)" fg:x="8610" fg:w="5"/><text x="36.9383%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (25 samples, 0.11%)</title><rect x="36.6286%" y="1717" width="0.1065%" height="15" fill="rgb(239,130,28)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (25 samples, 0.11%)</title><rect x="36.6286%" y="1701" width="0.1065%" height="15" fill="rgb(226,111,43)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (25 samples, 0.11%)</title><rect x="36.6286%" y="1685" width="0.1065%" height="15" fill="rgb(216,162,29)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1695.50"></text></g><g><title>rayon_core::job::JobRef::execute (25 samples, 0.11%)</title><rect x="36.6286%" y="1669" width="0.1065%" height="15" fill="rgb(240,71,7)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1679.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (25 samples, 0.11%)</title><rect x="36.6286%" y="1653" width="0.1065%" height="15" fill="rgb(253,217,5)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1663.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (25 samples, 0.11%)</title><rect x="36.6286%" y="1637" width="0.1065%" height="15" fill="rgb(225,67,3)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1647.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (25 samples, 0.11%)</title><rect x="36.6286%" y="1621" width="0.1065%" height="15" fill="rgb(230,86,28)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1631.50"></text></g><g><title>std::panic::catch_unwind (25 samples, 0.11%)</title><rect x="36.6286%" y="1605" width="0.1065%" height="15" fill="rgb(217,178,1)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1615.50"></text></g><g><title>std::panicking::try (25 samples, 0.11%)</title><rect x="36.6286%" y="1589" width="0.1065%" height="15" fill="rgb(216,223,43)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1599.50"></text></g><g><title>std::panicking::try::do_call (25 samples, 0.11%)</title><rect x="36.6286%" y="1573" width="0.1065%" height="15" fill="rgb(226,8,16)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1583.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (25 samples, 0.11%)</title><rect x="36.6286%" y="1557" width="0.1065%" height="15" fill="rgb(232,211,12)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1567.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (25 samples, 0.11%)</title><rect x="36.6286%" y="1541" width="0.1065%" height="15" fill="rgb(226,147,13)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="36.6286%" y="1525" width="0.1065%" height="15" fill="rgb(207,205,0)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="36.6286%" y="1509" width="0.1065%" height="15" fill="rgb(235,84,22)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="36.6286%" y="1493" width="0.1065%" height="15" fill="rgb(225,25,54)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="36.6286%" y="1477" width="0.1065%" height="15" fill="rgb(217,22,54)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="36.6286%" y="1461" width="0.1065%" height="15" fill="rgb(217,195,3)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="36.6286%" y="1445" width="0.1065%" height="15" fill="rgb(210,50,20)" fg:x="8596" fg:w="25"/><text x="36.8786%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="36.7096%" y="1429" width="0.0256%" height="15" fill="rgb(248,187,21)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="36.7096%" y="1413" width="0.0256%" height="15" fill="rgb(248,92,51)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1423.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="36.7096%" y="1397" width="0.0256%" height="15" fill="rgb(248,150,4)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="36.7096%" y="1381" width="0.0256%" height="15" fill="rgb(207,158,17)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="36.7096%" y="1365" width="0.0256%" height="15" fill="rgb(226,209,7)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="36.7096%" y="1349" width="0.0256%" height="15" fill="rgb(244,111,6)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="36.7096%" y="1333" width="0.0256%" height="15" fill="rgb(234,123,5)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="36.7096%" y="1317" width="0.0256%" height="15" fill="rgb(238,27,37)" fg:x="8615" fg:w="6"/><text x="36.9596%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.7181%" y="1301" width="0.0170%" height="15" fill="rgb(227,155,20)" fg:x="8617" fg:w="4"/><text x="36.9681%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.7181%" y="1285" width="0.0170%" height="15" fill="rgb(249,116,26)" fg:x="8617" fg:w="4"/><text x="36.9681%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7181%" y="1269" width="0.0170%" height="15" fill="rgb(233,90,40)" fg:x="8617" fg:w="4"/><text x="36.9681%" y="1279.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="36.7351%" y="1541" width="0.0128%" height="15" fill="rgb(212,33,39)" fg:x="8621" fg:w="3"/><text x="36.9851%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="36.7351%" y="1525" width="0.0128%" height="15" fill="rgb(208,21,17)" fg:x="8621" fg:w="3"/><text x="36.9851%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.7351%" y="1509" width="0.0128%" height="15" fill="rgb(240,32,11)" fg:x="8621" fg:w="3"/><text x="36.9851%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.7351%" y="1493" width="0.0128%" height="15" fill="rgb(227,84,37)" fg:x="8621" fg:w="3"/><text x="36.9851%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="36.7351%" y="1477" width="0.0128%" height="15" fill="rgb(229,209,39)" fg:x="8621" fg:w="3"/><text x="36.9851%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="36.7351%" y="1461" width="0.0128%" height="15" fill="rgb(220,225,24)" fg:x="8621" fg:w="3"/><text x="36.9851%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="36.7351%" y="1445" width="0.0128%" height="15" fill="rgb(221,224,52)" fg:x="8621" fg:w="3"/><text x="36.9851%" y="1455.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (32 samples, 0.14%)</title><rect x="36.6286%" y="1829" width="0.1364%" height="15" fill="rgb(253,19,28)" fg:x="8596" fg:w="32"/><text x="36.8786%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="36.6286%" y="1813" width="0.1364%" height="15" fill="rgb(232,57,37)" fg:x="8596" fg:w="32"/><text x="36.8786%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="36.6286%" y="1797" width="0.1364%" height="15" fill="rgb(239,52,14)" fg:x="8596" fg:w="32"/><text x="36.8786%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="36.6286%" y="1781" width="0.1364%" height="15" fill="rgb(223,186,39)" fg:x="8596" fg:w="32"/><text x="36.8786%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="36.6286%" y="1765" width="0.1364%" height="15" fill="rgb(241,155,23)" fg:x="8596" fg:w="32"/><text x="36.8786%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="36.6286%" y="1749" width="0.1364%" height="15" fill="rgb(209,157,15)" fg:x="8596" fg:w="32"/><text x="36.8786%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="36.6286%" y="1733" width="0.1364%" height="15" fill="rgb(251,49,9)" fg:x="8596" fg:w="32"/><text x="36.8786%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="36.7351%" y="1717" width="0.0298%" height="15" fill="rgb(208,107,3)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="36.7351%" y="1701" width="0.0298%" height="15" fill="rgb(215,212,12)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1711.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="36.7351%" y="1685" width="0.0298%" height="15" fill="rgb(239,85,48)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="36.7351%" y="1669" width="0.0298%" height="15" fill="rgb(246,159,0)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="36.7351%" y="1653" width="0.0298%" height="15" fill="rgb(228,111,24)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="36.7351%" y="1637" width="0.0298%" height="15" fill="rgb(233,97,12)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="36.7351%" y="1621" width="0.0298%" height="15" fill="rgb(228,175,6)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="36.7351%" y="1605" width="0.0298%" height="15" fill="rgb(219,149,46)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="36.7351%" y="1589" width="0.0298%" height="15" fill="rgb(220,185,46)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="36.7351%" y="1573" width="0.0298%" height="15" fill="rgb(225,51,15)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="36.7351%" y="1557" width="0.0298%" height="15" fill="rgb(216,24,17)" fg:x="8621" fg:w="7"/><text x="36.9851%" y="1567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.7479%" y="1541" width="0.0170%" height="15" fill="rgb(254,191,34)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1551.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.7479%" y="1525" width="0.0170%" height="15" fill="rgb(250,177,5)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1535.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.7479%" y="1509" width="0.0170%" height="15" fill="rgb(215,97,11)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1519.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.7479%" y="1493" width="0.0170%" height="15" fill="rgb(243,33,13)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.7479%" y="1477" width="0.0170%" height="15" fill="rgb(213,45,32)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7479%" y="1461" width="0.0170%" height="15" fill="rgb(227,40,23)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7479%" y="1445" width="0.0170%" height="15" fill="rgb(234,114,27)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.7479%" y="1429" width="0.0170%" height="15" fill="rgb(226,39,43)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1439.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.7479%" y="1413" width="0.0170%" height="15" fill="rgb(239,146,23)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1423.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.7479%" y="1397" width="0.0170%" height="15" fill="rgb(244,197,53)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7479%" y="1381" width="0.0170%" height="15" fill="rgb(224,64,28)" fg:x="8624" fg:w="4"/><text x="36.9979%" y="1391.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="36.7650%" y="1653" width="0.0256%" height="15" fill="rgb(235,99,37)" fg:x="8628" fg:w="6"/><text x="37.0150%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="36.7650%" y="1637" width="0.0256%" height="15" fill="rgb(230,195,36)" fg:x="8628" fg:w="6"/><text x="37.0150%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="36.7650%" y="1621" width="0.0256%" height="15" fill="rgb(225,187,28)" fg:x="8628" fg:w="6"/><text x="37.0150%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="36.7650%" y="1605" width="0.0256%" height="15" fill="rgb(209,196,13)" fg:x="8628" fg:w="6"/><text x="37.0150%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="36.7650%" y="1589" width="0.0256%" height="15" fill="rgb(214,147,53)" fg:x="8628" fg:w="6"/><text x="37.0150%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="36.7650%" y="1573" width="0.0256%" height="15" fill="rgb(230,214,15)" fg:x="8628" fg:w="6"/><text x="37.0150%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="36.7650%" y="1557" width="0.0256%" height="15" fill="rgb(241,192,13)" fg:x="8628" fg:w="6"/><text x="37.0150%" y="1567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.7735%" y="1541" width="0.0170%" height="15" fill="rgb(239,71,46)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1551.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.7735%" y="1525" width="0.0170%" height="15" fill="rgb(227,41,5)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1535.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.7735%" y="1509" width="0.0170%" height="15" fill="rgb(220,104,20)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1519.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.7735%" y="1493" width="0.0170%" height="15" fill="rgb(205,15,50)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.7735%" y="1477" width="0.0170%" height="15" fill="rgb(249,20,13)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7735%" y="1461" width="0.0170%" height="15" fill="rgb(233,177,44)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7735%" y="1445" width="0.0170%" height="15" fill="rgb(248,34,25)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.7735%" y="1429" width="0.0170%" height="15" fill="rgb(212,140,51)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1439.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.7735%" y="1413" width="0.0170%" height="15" fill="rgb(213,224,14)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1423.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.7735%" y="1397" width="0.0170%" height="15" fill="rgb(236,199,21)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7735%" y="1381" width="0.0170%" height="15" fill="rgb(225,94,38)" fg:x="8630" fg:w="4"/><text x="37.0235%" y="1391.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="36.7905%" y="1477" width="0.0170%" height="15" fill="rgb(249,9,5)" fg:x="8634" fg:w="4"/><text x="37.0405%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7905%" y="1461" width="0.0170%" height="15" fill="rgb(219,180,54)" fg:x="8634" fg:w="4"/><text x="37.0405%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7905%" y="1445" width="0.0170%" height="15" fill="rgb(227,33,1)" fg:x="8634" fg:w="4"/><text x="37.0405%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.7905%" y="1429" width="0.0170%" height="15" fill="rgb(246,25,10)" fg:x="8634" fg:w="4"/><text x="37.0405%" y="1439.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.7905%" y="1413" width="0.0170%" height="15" fill="rgb(238,146,24)" fg:x="8634" fg:w="4"/><text x="37.0405%" y="1423.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.7905%" y="1397" width="0.0170%" height="15" fill="rgb(225,147,7)" fg:x="8634" fg:w="4"/><text x="37.0405%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.7905%" y="1381" width="0.0170%" height="15" fill="rgb(220,39,50)" fg:x="8634" fg:w="4"/><text x="37.0405%" y="1391.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (46 samples, 0.20%)</title><rect x="36.6286%" y="2293" width="0.1960%" height="15" fill="rgb(208,9,2)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (46 samples, 0.20%)</title><rect x="36.6286%" y="2277" width="0.1960%" height="15" fill="rgb(227,85,39)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2287.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (46 samples, 0.20%)</title><rect x="36.6286%" y="2261" width="0.1960%" height="15" fill="rgb(210,169,29)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2271.50"></text></g><g><title>rayon_core::job::JobRef::execute (46 samples, 0.20%)</title><rect x="36.6286%" y="2245" width="0.1960%" height="15" fill="rgb(208,9,54)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2255.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (46 samples, 0.20%)</title><rect x="36.6286%" y="2229" width="0.1960%" height="15" fill="rgb(208,16,12)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2239.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (46 samples, 0.20%)</title><rect x="36.6286%" y="2213" width="0.1960%" height="15" fill="rgb(218,70,19)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (46 samples, 0.20%)</title><rect x="36.6286%" y="2197" width="0.1960%" height="15" fill="rgb(253,101,52)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (46 samples, 0.20%)</title><rect x="36.6286%" y="2181" width="0.1960%" height="15" fill="rgb(248,16,13)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2191.50"></text></g><g><title>std::panicking::try (46 samples, 0.20%)</title><rect x="36.6286%" y="2165" width="0.1960%" height="15" fill="rgb(234,147,47)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (46 samples, 0.20%)</title><rect x="36.6286%" y="2149" width="0.1960%" height="15" fill="rgb(216,196,37)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (46 samples, 0.20%)</title><rect x="36.6286%" y="2133" width="0.1960%" height="15" fill="rgb(211,46,54)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2143.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (46 samples, 0.20%)</title><rect x="36.6286%" y="2117" width="0.1960%" height="15" fill="rgb(211,14,51)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (46 samples, 0.20%)</title><rect x="36.6286%" y="2101" width="0.1960%" height="15" fill="rgb(213,169,40)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46 samples, 0.20%)</title><rect x="36.6286%" y="2085" width="0.1960%" height="15" fill="rgb(224,163,21)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.20%)</title><rect x="36.6286%" y="2069" width="0.1960%" height="15" fill="rgb(236,174,19)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (46 samples, 0.20%)</title><rect x="36.6286%" y="2053" width="0.1960%" height="15" fill="rgb(232,223,37)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.20%)</title><rect x="36.6286%" y="2037" width="0.1960%" height="15" fill="rgb(213,51,16)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (46 samples, 0.20%)</title><rect x="36.6286%" y="2021" width="0.1960%" height="15" fill="rgb(235,196,23)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (46 samples, 0.20%)</title><rect x="36.6286%" y="2005" width="0.1960%" height="15" fill="rgb(207,11,37)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (46 samples, 0.20%)</title><rect x="36.6286%" y="1989" width="0.1960%" height="15" fill="rgb(235,2,53)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1999.50"></text></g><g><title>std::panicking::try (46 samples, 0.20%)</title><rect x="36.6286%" y="1973" width="0.1960%" height="15" fill="rgb(231,191,52)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (46 samples, 0.20%)</title><rect x="36.6286%" y="1957" width="0.1960%" height="15" fill="rgb(250,179,8)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (46 samples, 0.20%)</title><rect x="36.6286%" y="1941" width="0.1960%" height="15" fill="rgb(231,180,50)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (46 samples, 0.20%)</title><rect x="36.6286%" y="1925" width="0.1960%" height="15" fill="rgb(213,30,6)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46 samples, 0.20%)</title><rect x="36.6286%" y="1909" width="0.1960%" height="15" fill="rgb(233,10,47)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.20%)</title><rect x="36.6286%" y="1893" width="0.1960%" height="15" fill="rgb(209,30,37)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (46 samples, 0.20%)</title><rect x="36.6286%" y="1877" width="0.1960%" height="15" fill="rgb(208,72,24)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.20%)</title><rect x="36.6286%" y="1861" width="0.1960%" height="15" fill="rgb(223,96,35)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (46 samples, 0.20%)</title><rect x="36.6286%" y="1845" width="0.1960%" height="15" fill="rgb(233,81,29)" fg:x="8596" fg:w="46"/><text x="36.8786%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="36.7650%" y="1829" width="0.0597%" height="15" fill="rgb(242,52,42)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="36.7650%" y="1813" width="0.0597%" height="15" fill="rgb(234,158,49)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1823.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="36.7650%" y="1797" width="0.0597%" height="15" fill="rgb(241,172,45)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="36.7650%" y="1781" width="0.0597%" height="15" fill="rgb(207,114,37)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="36.7650%" y="1765" width="0.0597%" height="15" fill="rgb(246,36,29)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="36.7650%" y="1749" width="0.0597%" height="15" fill="rgb(246,19,12)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="36.7650%" y="1733" width="0.0597%" height="15" fill="rgb(218,202,32)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="36.7650%" y="1717" width="0.0597%" height="15" fill="rgb(223,204,10)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1727.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="36.7650%" y="1701" width="0.0597%" height="15" fill="rgb(215,161,43)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1711.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="36.7650%" y="1685" width="0.0597%" height="15" fill="rgb(225,228,29)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="36.7650%" y="1669" width="0.0597%" height="15" fill="rgb(241,62,52)" fg:x="8628" fg:w="14"/><text x="37.0150%" y="1679.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="36.7905%" y="1653" width="0.0341%" height="15" fill="rgb(205,186,18)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1663.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="36.7905%" y="1637" width="0.0341%" height="15" fill="rgb(209,71,12)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1647.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="36.7905%" y="1621" width="0.0341%" height="15" fill="rgb(233,65,34)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1631.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="36.7905%" y="1605" width="0.0341%" height="15" fill="rgb(217,98,0)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1615.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="36.7905%" y="1589" width="0.0341%" height="15" fill="rgb(217,210,30)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="36.7905%" y="1573" width="0.0341%" height="15" fill="rgb(225,193,8)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="36.7905%" y="1557" width="0.0341%" height="15" fill="rgb(221,87,3)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="36.7905%" y="1541" width="0.0341%" height="15" fill="rgb(231,150,26)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1551.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="36.7905%" y="1525" width="0.0341%" height="15" fill="rgb(244,48,47)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1535.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="36.7905%" y="1509" width="0.0341%" height="15" fill="rgb(251,6,2)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="36.7905%" y="1493" width="0.0341%" height="15" fill="rgb(228,114,32)" fg:x="8634" fg:w="8"/><text x="37.0405%" y="1503.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="36.8076%" y="1477" width="0.0170%" height="15" fill="rgb(210,4,47)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1487.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="36.8076%" y="1461" width="0.0170%" height="15" fill="rgb(244,87,24)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1471.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="36.8076%" y="1445" width="0.0170%" height="15" fill="rgb(226,117,27)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1455.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="36.8076%" y="1429" width="0.0170%" height="15" fill="rgb(217,193,29)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1439.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="36.8076%" y="1413" width="0.0170%" height="15" fill="rgb(237,48,3)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="36.8076%" y="1397" width="0.0170%" height="15" fill="rgb(219,34,54)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="36.8076%" y="1381" width="0.0170%" height="15" fill="rgb(252,74,13)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="36.8076%" y="1365" width="0.0170%" height="15" fill="rgb(218,156,20)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1375.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="36.8076%" y="1349" width="0.0170%" height="15" fill="rgb(221,4,36)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1359.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="36.8076%" y="1333" width="0.0170%" height="15" fill="rgb(247,193,27)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1343.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="36.8076%" y="1317" width="0.0170%" height="15" fill="rgb(245,108,32)" fg:x="8638" fg:w="4"/><text x="37.0576%" y="1327.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="36.8246%" y="1973" width="0.0213%" height="15" fill="rgb(244,181,31)" fg:x="8642" fg:w="5"/><text x="37.0746%" y="1983.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="36.8246%" y="1957" width="0.0213%" height="15" fill="rgb(229,115,11)" fg:x="8642" fg:w="5"/><text x="37.0746%" y="1967.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="36.8246%" y="1941" width="0.0213%" height="15" fill="rgb(241,135,34)" fg:x="8642" fg:w="5"/><text x="37.0746%" y="1951.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="36.8289%" y="1925" width="0.0170%" height="15" fill="rgb(226,194,4)" fg:x="8643" fg:w="4"/><text x="37.0789%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="36.8246%" y="2165" width="0.0384%" height="15" fill="rgb(251,188,6)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2175.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="36.8246%" y="2149" width="0.0384%" height="15" fill="rgb(240,120,50)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="36.8246%" y="2133" width="0.0384%" height="15" fill="rgb(205,101,41)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2143.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="36.8246%" y="2117" width="0.0384%" height="15" fill="rgb(219,218,7)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2127.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="36.8246%" y="2101" width="0.0384%" height="15" fill="rgb(211,146,6)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="36.8246%" y="2085" width="0.0384%" height="15" fill="rgb(250,175,37)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2095.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="36.8246%" y="2069" width="0.0384%" height="15" fill="rgb(238,183,44)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="36.8246%" y="2053" width="0.0384%" height="15" fill="rgb(234,61,47)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2063.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="36.8246%" y="2037" width="0.0384%" height="15" fill="rgb(242,216,14)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2047.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="36.8246%" y="2021" width="0.0384%" height="15" fill="rgb(247,202,8)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="36.8246%" y="2005" width="0.0384%" height="15" fill="rgb(212,127,29)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="2015.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="36.8246%" y="1989" width="0.0384%" height="15" fill="rgb(241,110,0)" fg:x="8642" fg:w="9"/><text x="37.0746%" y="1999.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="36.8459%" y="1973" width="0.0170%" height="15" fill="rgb(235,60,49)" fg:x="8647" fg:w="4"/><text x="37.0959%" y="1983.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="36.8459%" y="1957" width="0.0170%" height="15" fill="rgb(237,108,40)" fg:x="8647" fg:w="4"/><text x="37.0959%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.8630%" y="2053" width="0.0128%" height="15" fill="rgb(222,6,45)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.8630%" y="2037" width="0.0128%" height="15" fill="rgb(227,22,25)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.8630%" y="2021" width="0.0128%" height="15" fill="rgb(226,42,16)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.8630%" y="2005" width="0.0128%" height="15" fill="rgb(252,123,43)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.8630%" y="1989" width="0.0128%" height="15" fill="rgb(254,49,13)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.8630%" y="1973" width="0.0128%" height="15" fill="rgb(253,8,40)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.8630%" y="1957" width="0.0128%" height="15" fill="rgb(236,135,42)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.8630%" y="1941" width="0.0128%" height="15" fill="rgb(205,162,37)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.8630%" y="1925" width="0.0128%" height="15" fill="rgb(213,55,34)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.8630%" y="1909" width="0.0128%" height="15" fill="rgb(245,196,11)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.8630%" y="1893" width="0.0128%" height="15" fill="rgb(218,44,15)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.8630%" y="1877" width="0.0128%" height="15" fill="rgb(241,9,21)" fg:x="8651" fg:w="3"/><text x="37.1130%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (5 samples, 0.02%)</title><rect x="36.8843%" y="1749" width="0.0213%" height="15" fill="rgb(227,119,15)" fg:x="8656" fg:w="5"/><text x="37.1343%" y="1759.50"></text></g><g><title>core::f64::<impl f64>::recip (5 samples, 0.02%)</title><rect x="36.8843%" y="1733" width="0.0213%" height="15" fill="rgb(238,207,37)" fg:x="8656" fg:w="5"/><text x="37.1343%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="36.8757%" y="1941" width="0.0384%" height="15" fill="rgb(246,93,41)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="36.8757%" y="1925" width="0.0384%" height="15" fill="rgb(211,97,6)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="36.8757%" y="1909" width="0.0384%" height="15" fill="rgb(212,197,53)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="36.8757%" y="1893" width="0.0384%" height="15" fill="rgb(208,197,1)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="36.8757%" y="1877" width="0.0384%" height="15" fill="rgb(229,172,15)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="36.8757%" y="1861" width="0.0384%" height="15" fill="rgb(246,59,51)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="36.8757%" y="1845" width="0.0384%" height="15" fill="rgb(216,26,0)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="36.8757%" y="1829" width="0.0384%" height="15" fill="rgb(233,37,10)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="36.8757%" y="1813" width="0.0384%" height="15" fill="rgb(207,217,11)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="36.8757%" y="1797" width="0.0384%" height="15" fill="rgb(246,169,21)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="36.8757%" y="1781" width="0.0384%" height="15" fill="rgb(254,71,20)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="36.8757%" y="1765" width="0.0384%" height="15" fill="rgb(237,148,4)" fg:x="8654" fg:w="9"/><text x="37.1257%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="36.8757%" y="2005" width="0.0597%" height="15" fill="rgb(245,66,44)" fg:x="8654" fg:w="14"/><text x="37.1257%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="36.8757%" y="1989" width="0.0597%" height="15" fill="rgb(254,174,32)" fg:x="8654" fg:w="14"/><text x="37.1257%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="36.8757%" y="1973" width="0.0597%" height="15" fill="rgb(205,77,5)" fg:x="8654" fg:w="14"/><text x="37.1257%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="36.8757%" y="1957" width="0.0597%" height="15" fill="rgb(217,83,53)" fg:x="8654" fg:w="14"/><text x="37.1257%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="36.9141%" y="1941" width="0.0213%" height="15" fill="rgb(245,169,38)" fg:x="8663" fg:w="5"/><text x="37.1641%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="36.9141%" y="1925" width="0.0213%" height="15" fill="rgb(231,207,43)" fg:x="8663" fg:w="5"/><text x="37.1641%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="36.9141%" y="1909" width="0.0213%" height="15" fill="rgb(205,116,32)" fg:x="8663" fg:w="5"/><text x="37.1641%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="36.9226%" y="1893" width="0.0128%" height="15" fill="rgb(229,132,5)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="36.9226%" y="1877" width="0.0128%" height="15" fill="rgb(219,9,9)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="36.9226%" y="1861" width="0.0128%" height="15" fill="rgb(217,30,50)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="36.9226%" y="1845" width="0.0128%" height="15" fill="rgb(239,78,9)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="36.9226%" y="1829" width="0.0128%" height="15" fill="rgb(206,33,42)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9226%" y="1813" width="0.0128%" height="15" fill="rgb(246,85,34)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9226%" y="1797" width="0.0128%" height="15" fill="rgb(208,50,35)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.9226%" y="1781" width="0.0128%" height="15" fill="rgb(206,181,20)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.9226%" y="1765" width="0.0128%" height="15" fill="rgb(234,70,33)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.9226%" y="1749" width="0.0128%" height="15" fill="rgb(210,124,23)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.9226%" y="1733" width="0.0128%" height="15" fill="rgb(218,216,48)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.9226%" y="1717" width="0.0128%" height="15" fill="rgb(212,218,34)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.9226%" y="1701" width="0.0128%" height="15" fill="rgb(228,196,31)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.9226%" y="1685" width="0.0128%" height="15" fill="rgb(229,208,23)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.9226%" y="1669" width="0.0128%" height="15" fill="rgb(225,132,53)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9226%" y="1653" width="0.0128%" height="15" fill="rgb(225,178,33)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.9226%" y="1637" width="0.0128%" height="15" fill="rgb(225,223,14)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.9226%" y="1621" width="0.0128%" height="15" fill="rgb(230,188,38)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9226%" y="1605" width="0.0128%" height="15" fill="rgb(248,71,33)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="36.9226%" y="1589" width="0.0128%" height="15" fill="rgb(254,149,15)" fg:x="8665" fg:w="3"/><text x="37.1726%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="36.9354%" y="1685" width="0.0128%" height="15" fill="rgb(242,171,39)" fg:x="8668" fg:w="3"/><text x="37.1854%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="36.9354%" y="1669" width="0.0128%" height="15" fill="rgb(238,179,17)" fg:x="8668" fg:w="3"/><text x="37.1854%" y="1679.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="36.9354%" y="1653" width="0.0128%" height="15" fill="rgb(246,172,19)" fg:x="8668" fg:w="3"/><text x="37.1854%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="36.9482%" y="1685" width="0.0170%" height="15" fill="rgb(210,24,22)" fg:x="8671" fg:w="4"/><text x="37.1982%" y="1695.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="36.9482%" y="1669" width="0.0170%" height="15" fill="rgb(226,139,34)" fg:x="8671" fg:w="4"/><text x="37.1982%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="36.9354%" y="1877" width="0.0341%" height="15" fill="rgb(246,67,42)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="36.9354%" y="1861" width="0.0341%" height="15" fill="rgb(228,155,23)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="36.9354%" y="1845" width="0.0341%" height="15" fill="rgb(206,168,18)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="36.9354%" y="1829" width="0.0341%" height="15" fill="rgb(254,164,29)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="36.9354%" y="1813" width="0.0341%" height="15" fill="rgb(248,67,3)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="36.9354%" y="1797" width="0.0341%" height="15" fill="rgb(251,181,41)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="36.9354%" y="1781" width="0.0341%" height="15" fill="rgb(208,226,30)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="36.9354%" y="1765" width="0.0341%" height="15" fill="rgb(236,205,40)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="36.9354%" y="1749" width="0.0341%" height="15" fill="rgb(251,114,51)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="36.9354%" y="1733" width="0.0341%" height="15" fill="rgb(233,64,13)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="36.9354%" y="1717" width="0.0341%" height="15" fill="rgb(227,115,32)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="36.9354%" y="1701" width="0.0341%" height="15" fill="rgb(230,73,22)" fg:x="8668" fg:w="8"/><text x="37.1854%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (30 samples, 0.13%)</title><rect x="36.8630%" y="2117" width="0.1278%" height="15" fill="rgb(239,145,31)" fg:x="8651" fg:w="30"/><text x="37.1130%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (30 samples, 0.13%)</title><rect x="36.8630%" y="2101" width="0.1278%" height="15" fill="rgb(245,171,32)" fg:x="8651" fg:w="30"/><text x="37.1130%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (30 samples, 0.13%)</title><rect x="36.8630%" y="2085" width="0.1278%" height="15" fill="rgb(216,42,12)" fg:x="8651" fg:w="30"/><text x="37.1130%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.13%)</title><rect x="36.8630%" y="2069" width="0.1278%" height="15" fill="rgb(240,30,51)" fg:x="8651" fg:w="30"/><text x="37.1130%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="36.8757%" y="2053" width="0.1151%" height="15" fill="rgb(253,45,42)" fg:x="8654" fg:w="27"/><text x="37.1257%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="36.8757%" y="2037" width="0.1151%" height="15" fill="rgb(245,154,2)" fg:x="8654" fg:w="27"/><text x="37.1257%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="36.8757%" y="2021" width="0.1151%" height="15" fill="rgb(232,70,42)" fg:x="8654" fg:w="27"/><text x="37.1257%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="36.9354%" y="2005" width="0.0554%" height="15" fill="rgb(215,50,24)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="36.9354%" y="1989" width="0.0554%" height="15" fill="rgb(241,7,3)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="1999.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="36.9354%" y="1973" width="0.0554%" height="15" fill="rgb(237,157,32)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="36.9354%" y="1957" width="0.0554%" height="15" fill="rgb(222,182,33)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="36.9354%" y="1941" width="0.0554%" height="15" fill="rgb(229,120,42)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="36.9354%" y="1925" width="0.0554%" height="15" fill="rgb(246,7,41)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="36.9354%" y="1909" width="0.0554%" height="15" fill="rgb(212,207,25)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="36.9354%" y="1893" width="0.0554%" height="15" fill="rgb(239,141,21)" fg:x="8668" fg:w="13"/><text x="37.1854%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="36.9695%" y="1877" width="0.0213%" height="15" fill="rgb(248,135,20)" fg:x="8676" fg:w="5"/><text x="37.2195%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="36.9695%" y="1861" width="0.0213%" height="15" fill="rgb(225,206,47)" fg:x="8676" fg:w="5"/><text x="37.2195%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="36.9695%" y="1845" width="0.0213%" height="15" fill="rgb(209,61,46)" fg:x="8676" fg:w="5"/><text x="37.2195%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="36.9780%" y="1829" width="0.0128%" height="15" fill="rgb(238,114,17)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="36.9780%" y="1813" width="0.0128%" height="15" fill="rgb(215,211,32)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1823.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="36.9780%" y="1797" width="0.0128%" height="15" fill="rgb(215,158,51)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="36.9780%" y="1781" width="0.0128%" height="15" fill="rgb(223,138,49)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="36.9780%" y="1765" width="0.0128%" height="15" fill="rgb(226,197,36)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9780%" y="1749" width="0.0128%" height="15" fill="rgb(207,17,9)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9780%" y="1733" width="0.0128%" height="15" fill="rgb(250,133,44)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.9780%" y="1717" width="0.0128%" height="15" fill="rgb(231,35,53)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="36.9780%" y="1701" width="0.0128%" height="15" fill="rgb(213,186,51)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1711.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="36.9780%" y="1685" width="0.0128%" height="15" fill="rgb(229,207,5)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="36.9780%" y="1669" width="0.0128%" height="15" fill="rgb(206,132,48)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1679.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="36.9780%" y="1653" width="0.0128%" height="15" fill="rgb(206,193,18)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1663.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="36.9780%" y="1637" width="0.0128%" height="15" fill="rgb(223,40,40)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="36.9780%" y="1621" width="0.0128%" height="15" fill="rgb(254,89,26)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1631.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="36.9780%" y="1605" width="0.0128%" height="15" fill="rgb(225,122,3)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9780%" y="1589" width="0.0128%" height="15" fill="rgb(225,194,19)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1599.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="36.9780%" y="1573" width="0.0128%" height="15" fill="rgb(222,74,8)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1583.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="36.9780%" y="1557" width="0.0128%" height="15" fill="rgb(254,139,46)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="36.9780%" y="1541" width="0.0128%" height="15" fill="rgb(246,107,47)" fg:x="8678" fg:w="3"/><text x="37.2280%" y="1551.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="36.9908%" y="1797" width="0.0128%" height="15" fill="rgb(232,17,10)" fg:x="8681" fg:w="3"/><text x="37.2408%" y="1807.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="36.9908%" y="1781" width="0.0128%" height="15" fill="rgb(231,213,28)" fg:x="8681" fg:w="3"/><text x="37.2408%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="36.9908%" y="1813" width="0.0213%" height="15" fill="rgb(252,62,24)" fg:x="8681" fg:w="5"/><text x="37.2408%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="36.9908%" y="1989" width="0.0256%" height="15" fill="rgb(233,83,12)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1999.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="36.9908%" y="1973" width="0.0256%" height="15" fill="rgb(214,13,0)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="36.9908%" y="1957" width="0.0256%" height="15" fill="rgb(225,42,6)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1967.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="36.9908%" y="1941" width="0.0256%" height="15" fill="rgb(212,179,0)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1951.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="36.9908%" y="1925" width="0.0256%" height="15" fill="rgb(241,43,35)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="36.9908%" y="1909" width="0.0256%" height="15" fill="rgb(229,5,0)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1919.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="36.9908%" y="1893" width="0.0256%" height="15" fill="rgb(222,68,52)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="36.9908%" y="1877" width="0.0256%" height="15" fill="rgb(233,32,6)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1887.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="36.9908%" y="1861" width="0.0256%" height="15" fill="rgb(247,97,13)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1871.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="36.9908%" y="1845" width="0.0256%" height="15" fill="rgb(237,186,51)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="36.9908%" y="1829" width="0.0256%" height="15" fill="rgb(213,99,31)" fg:x="8681" fg:w="6"/><text x="37.2408%" y="1839.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="37.0164%" y="1701" width="0.0128%" height="15" fill="rgb(233,133,6)" fg:x="8687" fg:w="3"/><text x="37.2664%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="37.0164%" y="1877" width="0.0170%" height="15" fill="rgb(231,176,27)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="37.0164%" y="1861" width="0.0170%" height="15" fill="rgb(231,2,1)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="37.0164%" y="1845" width="0.0170%" height="15" fill="rgb(242,165,33)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="37.0164%" y="1829" width="0.0170%" height="15" fill="rgb(242,100,37)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="37.0164%" y="1813" width="0.0170%" height="15" fill="rgb(229,157,48)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="37.0164%" y="1797" width="0.0170%" height="15" fill="rgb(244,229,20)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="37.0164%" y="1781" width="0.0170%" height="15" fill="rgb(220,197,30)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="37.0164%" y="1765" width="0.0170%" height="15" fill="rgb(206,218,37)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="37.0164%" y="1749" width="0.0170%" height="15" fill="rgb(239,21,48)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="37.0164%" y="1733" width="0.0170%" height="15" fill="rgb(225,224,3)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="37.0164%" y="1717" width="0.0170%" height="15" fill="rgb(227,47,37)" fg:x="8687" fg:w="4"/><text x="37.2664%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="37.0164%" y="1941" width="0.0384%" height="15" fill="rgb(210,53,36)" fg:x="8687" fg:w="9"/><text x="37.2664%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="37.0164%" y="1925" width="0.0384%" height="15" fill="rgb(248,76,6)" fg:x="8687" fg:w="9"/><text x="37.2664%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="37.0164%" y="1909" width="0.0384%" height="15" fill="rgb(205,83,29)" fg:x="8687" fg:w="9"/><text x="37.2664%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="37.0164%" y="1893" width="0.0384%" height="15" fill="rgb(225,195,18)" fg:x="8687" fg:w="9"/><text x="37.2664%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="37.0334%" y="1877" width="0.0213%" height="15" fill="rgb(254,95,32)" fg:x="8691" fg:w="5"/><text x="37.2834%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="37.0334%" y="1861" width="0.0213%" height="15" fill="rgb(228,0,15)" fg:x="8691" fg:w="5"/><text x="37.2834%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="37.0334%" y="1845" width="0.0213%" height="15" fill="rgb(248,129,43)" fg:x="8691" fg:w="5"/><text x="37.2834%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="37.0419%" y="1829" width="0.0128%" height="15" fill="rgb(248,15,49)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="37.0419%" y="1813" width="0.0128%" height="15" fill="rgb(214,205,38)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1823.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="37.0419%" y="1797" width="0.0128%" height="15" fill="rgb(229,212,42)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="37.0419%" y="1781" width="0.0128%" height="15" fill="rgb(229,134,37)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="37.0419%" y="1765" width="0.0128%" height="15" fill="rgb(206,228,4)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="37.0419%" y="1749" width="0.0128%" height="15" fill="rgb(236,132,20)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="37.0419%" y="1733" width="0.0128%" height="15" fill="rgb(238,0,36)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.0419%" y="1717" width="0.0128%" height="15" fill="rgb(205,134,28)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="37.0419%" y="1701" width="0.0128%" height="15" fill="rgb(243,167,26)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1711.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="37.0419%" y="1685" width="0.0128%" height="15" fill="rgb(248,220,22)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="37.0419%" y="1669" width="0.0128%" height="15" fill="rgb(222,186,26)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1679.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="37.0419%" y="1653" width="0.0128%" height="15" fill="rgb(227,191,35)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1663.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="37.0419%" y="1637" width="0.0128%" height="15" fill="rgb(245,16,20)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="37.0419%" y="1621" width="0.0128%" height="15" fill="rgb(219,49,27)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1631.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="37.0419%" y="1605" width="0.0128%" height="15" fill="rgb(209,151,0)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="37.0419%" y="1589" width="0.0128%" height="15" fill="rgb(238,82,10)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1599.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="37.0419%" y="1573" width="0.0128%" height="15" fill="rgb(230,163,18)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1583.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="37.0419%" y="1557" width="0.0128%" height="15" fill="rgb(216,125,14)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="37.0419%" y="1541" width="0.0128%" height="15" fill="rgb(218,130,14)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1551.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="37.0419%" y="1525" width="0.0128%" height="15" fill="rgb(222,16,37)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1535.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="37.0419%" y="1509" width="0.0128%" height="15" fill="rgb(240,82,26)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1519.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="37.0419%" y="1493" width="0.0128%" height="15" fill="rgb(231,80,23)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1503.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="37.0419%" y="1477" width="0.0128%" height="15" fill="rgb(221,77,0)" fg:x="8693" fg:w="3"/><text x="37.2919%" y="1487.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="37.0547%" y="1621" width="0.0213%" height="15" fill="rgb(223,165,30)" fg:x="8696" fg:w="5"/><text x="37.3047%" y="1631.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="37.0547%" y="1605" width="0.0213%" height="15" fill="rgb(218,114,12)" fg:x="8696" fg:w="5"/><text x="37.3047%" y="1615.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="37.0547%" y="1589" width="0.0213%" height="15" fill="rgb(251,157,21)" fg:x="8696" fg:w="5"/><text x="37.3047%" y="1599.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="37.0590%" y="1573" width="0.0170%" height="15" fill="rgb(207,108,18)" fg:x="8697" fg:w="4"/><text x="37.3090%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (384 samples, 1.64%)</title><rect x="35.4483%" y="2901" width="1.6363%" height="15" fill="rgb(243,122,40)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2911.50"></text></g><g><title>rayon_core::job::JobRef::execute (384 samples, 1.64%)</title><rect x="35.4483%" y="2885" width="1.6363%" height="15" fill="rgb(205,46,32)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2895.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (384 samples, 1.64%)</title><rect x="35.4483%" y="2869" width="1.6363%" height="15" fill="rgb(233,182,29)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2879.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (384 samples, 1.64%)</title><rect x="35.4483%" y="2853" width="1.6363%" height="15" fill="rgb(241,109,13)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (384 samples, 1.64%)</title><rect x="35.4483%" y="2837" width="1.6363%" height="15" fill="rgb(216,112,26)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (384 samples, 1.64%)</title><rect x="35.4483%" y="2821" width="1.6363%" height="15" fill="rgb(246,159,10)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2831.50"></text></g><g><title>std::panicking::try (384 samples, 1.64%)</title><rect x="35.4483%" y="2805" width="1.6363%" height="15" fill="rgb(244,47,5)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (384 samples, 1.64%)</title><rect x="35.4483%" y="2789" width="1.6363%" height="15" fill="rgb(220,139,25)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (384 samples, 1.64%)</title><rect x="35.4483%" y="2773" width="1.6363%" height="15" fill="rgb(206,63,9)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2783.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (384 samples, 1.64%)</title><rect x="35.4483%" y="2757" width="1.6363%" height="15" fill="rgb(220,178,20)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (384 samples, 1.64%)</title><rect x="35.4483%" y="2741" width="1.6363%" height="15" fill="rgb(219,123,23)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (384 samples, 1.64%)</title><rect x="35.4483%" y="2725" width="1.6363%" height="15" fill="rgb(211,10,37)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (384 samples, 1.64%)</title><rect x="35.4483%" y="2709" width="1.6363%" height="15" fill="rgb(232,12,53)" fg:x="8319" fg:w="384"/><text x="35.6983%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (383 samples, 1.63%)</title><rect x="35.4525%" y="2693" width="1.6320%" height="15" fill="rgb(208,106,30)" fg:x="8320" fg:w="383"/><text x="35.7025%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (383 samples, 1.63%)</title><rect x="35.4525%" y="2677" width="1.6320%" height="15" fill="rgb(223,200,40)" fg:x="8320" fg:w="383"/><text x="35.7025%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (383 samples, 1.63%)</title><rect x="35.4525%" y="2661" width="1.6320%" height="15" fill="rgb(215,136,25)" fg:x="8320" fg:w="383"/><text x="35.7025%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (273 samples, 1.16%)</title><rect x="35.9213%" y="2645" width="1.1633%" height="15" fill="rgb(215,97,50)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (273 samples, 1.16%)</title><rect x="35.9213%" y="2629" width="1.1633%" height="15" fill="rgb(241,160,53)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2639.50"></text></g><g><title>std::panicking::try (273 samples, 1.16%)</title><rect x="35.9213%" y="2613" width="1.1633%" height="15" fill="rgb(213,2,45)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (273 samples, 1.16%)</title><rect x="35.9213%" y="2597" width="1.1633%" height="15" fill="rgb(240,158,23)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (273 samples, 1.16%)</title><rect x="35.9213%" y="2581" width="1.1633%" height="15" fill="rgb(224,124,51)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (273 samples, 1.16%)</title><rect x="35.9213%" y="2565" width="1.1633%" height="15" fill="rgb(225,182,16)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (273 samples, 1.16%)</title><rect x="35.9213%" y="2549" width="1.1633%" height="15" fill="rgb(229,40,19)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (273 samples, 1.16%)</title><rect x="35.9213%" y="2533" width="1.1633%" height="15" fill="rgb(207,183,54)" fg:x="8430" fg:w="273"/><text x="36.1713%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (266 samples, 1.13%)</title><rect x="35.9511%" y="2517" width="1.1335%" height="15" fill="rgb(231,138,33)" fg:x="8437" fg:w="266"/><text x="36.2011%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (266 samples, 1.13%)</title><rect x="35.9511%" y="2501" width="1.1335%" height="15" fill="rgb(220,80,45)" fg:x="8437" fg:w="266"/><text x="36.2011%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (266 samples, 1.13%)</title><rect x="35.9511%" y="2485" width="1.1335%" height="15" fill="rgb(216,209,23)" fg:x="8437" fg:w="266"/><text x="36.2011%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (182 samples, 0.78%)</title><rect x="36.3090%" y="2469" width="0.7755%" height="15" fill="rgb(235,17,3)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (182 samples, 0.78%)</title><rect x="36.3090%" y="2453" width="0.7755%" height="15" fill="rgb(213,94,43)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2463.50"></text></g><g><title>std::panicking::try (182 samples, 0.78%)</title><rect x="36.3090%" y="2437" width="0.7755%" height="15" fill="rgb(247,228,54)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (182 samples, 0.78%)</title><rect x="36.3090%" y="2421" width="0.7755%" height="15" fill="rgb(220,119,43)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (182 samples, 0.78%)</title><rect x="36.3090%" y="2405" width="0.7755%" height="15" fill="rgb(253,17,24)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (182 samples, 0.78%)</title><rect x="36.3090%" y="2389" width="0.7755%" height="15" fill="rgb(231,113,16)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (182 samples, 0.78%)</title><rect x="36.3090%" y="2373" width="0.7755%" height="15" fill="rgb(211,134,32)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (182 samples, 0.78%)</title><rect x="36.3090%" y="2357" width="0.7755%" height="15" fill="rgb(236,18,48)" fg:x="8521" fg:w="182"/><text x="36.5590%" y="2367.50"></text></g><g><title>rayon_core::join::join_context (181 samples, 0.77%)</title><rect x="36.3133%" y="2341" width="0.7713%" height="15" fill="rgb(224,138,12)" fg:x="8522" fg:w="181"/><text x="36.5633%" y="2351.50"></text></g><g><title>rayon_core::registry::in_worker (181 samples, 0.77%)</title><rect x="36.3133%" y="2325" width="0.7713%" height="15" fill="rgb(210,84,29)" fg:x="8522" fg:w="181"/><text x="36.5633%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (181 samples, 0.77%)</title><rect x="36.3133%" y="2309" width="0.7713%" height="15" fill="rgb(227,228,49)" fg:x="8522" fg:w="181"/><text x="36.5633%" y="2319.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (61 samples, 0.26%)</title><rect x="36.8246%" y="2293" width="0.2599%" height="15" fill="rgb(246,162,48)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2303.50"></text></g><g><title>std::panic::catch_unwind (61 samples, 0.26%)</title><rect x="36.8246%" y="2277" width="0.2599%" height="15" fill="rgb(220,76,10)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2287.50"></text></g><g><title>std::panicking::try (61 samples, 0.26%)</title><rect x="36.8246%" y="2261" width="0.2599%" height="15" fill="rgb(206,200,15)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2271.50"></text></g><g><title>std::panicking::try::do_call (61 samples, 0.26%)</title><rect x="36.8246%" y="2245" width="0.2599%" height="15" fill="rgb(224,103,51)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2255.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (61 samples, 0.26%)</title><rect x="36.8246%" y="2229" width="0.2599%" height="15" fill="rgb(211,187,18)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (61 samples, 0.26%)</title><rect x="36.8246%" y="2213" width="0.2599%" height="15" fill="rgb(236,185,28)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (61 samples, 0.26%)</title><rect x="36.8246%" y="2197" width="0.2599%" height="15" fill="rgb(219,181,30)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (61 samples, 0.26%)</title><rect x="36.8246%" y="2181" width="0.2599%" height="15" fill="rgb(213,54,40)" fg:x="8642" fg:w="61"/><text x="37.0746%" y="2191.50"></text></g><g><title>rayon_core::join::join_context (52 samples, 0.22%)</title><rect x="36.8630%" y="2165" width="0.2216%" height="15" fill="rgb(242,155,21)" fg:x="8651" fg:w="52"/><text x="37.1130%" y="2175.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.22%)</title><rect x="36.8630%" y="2149" width="0.2216%" height="15" fill="rgb(243,160,37)" fg:x="8651" fg:w="52"/><text x="37.1130%" y="2159.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (52 samples, 0.22%)</title><rect x="36.8630%" y="2133" width="0.2216%" height="15" fill="rgb(233,58,26)" fg:x="8651" fg:w="52"/><text x="37.1130%" y="2143.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="36.9908%" y="2117" width="0.0937%" height="15" fill="rgb(227,191,15)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2127.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="36.9908%" y="2101" width="0.0937%" height="15" fill="rgb(223,31,13)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2111.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="36.9908%" y="2085" width="0.0937%" height="15" fill="rgb(233,17,1)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2095.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="36.9908%" y="2069" width="0.0937%" height="15" fill="rgb(251,226,33)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2079.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="36.9908%" y="2053" width="0.0937%" height="15" fill="rgb(225,148,10)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (22 samples, 0.09%)</title><rect x="36.9908%" y="2037" width="0.0937%" height="15" fill="rgb(216,138,24)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="36.9908%" y="2021" width="0.0937%" height="15" fill="rgb(247,111,19)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="36.9908%" y="2005" width="0.0937%" height="15" fill="rgb(241,156,36)" fg:x="8681" fg:w="22"/><text x="37.2408%" y="2015.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="37.0164%" y="1989" width="0.0682%" height="15" fill="rgb(226,223,16)" fg:x="8687" fg:w="16"/><text x="37.2664%" y="1999.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="37.0164%" y="1973" width="0.0682%" height="15" fill="rgb(217,50,5)" fg:x="8687" fg:w="16"/><text x="37.2664%" y="1983.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="37.0164%" y="1957" width="0.0682%" height="15" fill="rgb(252,202,38)" fg:x="8687" fg:w="16"/><text x="37.2664%" y="1967.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="37.0547%" y="1941" width="0.0298%" height="15" fill="rgb(242,101,12)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1951.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="37.0547%" y="1925" width="0.0298%" height="15" fill="rgb(241,226,41)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1935.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="37.0547%" y="1909" width="0.0298%" height="15" fill="rgb(239,193,42)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1919.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="37.0547%" y="1893" width="0.0298%" height="15" fill="rgb(233,170,46)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1903.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="37.0547%" y="1877" width="0.0298%" height="15" fill="rgb(225,146,22)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="37.0547%" y="1861" width="0.0298%" height="15" fill="rgb(231,6,0)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="37.0547%" y="1845" width="0.0298%" height="15" fill="rgb(215,37,32)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="37.0547%" y="1829" width="0.0298%" height="15" fill="rgb(248,131,53)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="37.0547%" y="1813" width="0.0298%" height="15" fill="rgb(243,198,23)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1823.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="37.0547%" y="1797" width="0.0298%" height="15" fill="rgb(237,156,54)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="37.0547%" y="1781" width="0.0298%" height="15" fill="rgb(210,36,11)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1791.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="37.0547%" y="1765" width="0.0298%" height="15" fill="rgb(208,61,17)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1775.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="37.0547%" y="1749" width="0.0298%" height="15" fill="rgb(236,174,6)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="37.0547%" y="1733" width="0.0298%" height="15" fill="rgb(253,163,45)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1743.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="37.0547%" y="1717" width="0.0298%" height="15" fill="rgb(207,26,44)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="37.0547%" y="1701" width="0.0298%" height="15" fill="rgb(206,189,32)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1711.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="37.0547%" y="1685" width="0.0298%" height="15" fill="rgb(236,109,33)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1695.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="37.0547%" y="1669" width="0.0298%" height="15" fill="rgb(212,117,50)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="37.0547%" y="1653" width="0.0298%" height="15" fill="rgb(228,145,19)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1663.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="37.0547%" y="1637" width="0.0298%" height="15" fill="rgb(235,201,9)" fg:x="8696" fg:w="7"/><text x="37.3047%" y="1647.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (385 samples, 1.64%)</title><rect x="35.4483%" y="2933" width="1.6405%" height="15" fill="rgb(246,160,54)" fg:x="8319" fg:w="385"/><text x="35.6983%" y="2943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (385 samples, 1.64%)</title><rect x="35.4483%" y="2917" width="1.6405%" height="15" fill="rgb(247,128,45)" fg:x="8319" fg:w="385"/><text x="35.6983%" y="2927.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (39 samples, 0.17%)</title><rect x="37.0973%" y="2613" width="0.1662%" height="15" fill="rgb(254,116,33)" fg:x="8706" fg:w="39"/><text x="37.3473%" y="2623.50"></text></g><g><title>std::f64::<impl f64>::exp (39 samples, 0.17%)</title><rect x="37.0973%" y="2597" width="0.1662%" height="15" fill="rgb(209,207,36)" fg:x="8706" fg:w="39"/><text x="37.3473%" y="2607.50"></text></g><g><title>exp (34 samples, 0.14%)</title><rect x="37.1186%" y="2581" width="0.1449%" height="15" fill="rgb(215,75,12)" fg:x="8711" fg:w="34"/><text x="37.3686%" y="2591.50"></text></g><g><title>[libm.so.6] (29 samples, 0.12%)</title><rect x="37.1399%" y="2565" width="0.1236%" height="15" fill="rgb(225,102,51)" fg:x="8716" fg:w="29"/><text x="37.3899%" y="2575.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (21 samples, 0.09%)</title><rect x="37.2720%" y="2613" width="0.0895%" height="15" fill="rgb(247,104,35)" fg:x="8747" fg:w="21"/><text x="37.5220%" y="2623.50"></text></g><g><title>core::f64::<impl f64>::recip (21 samples, 0.09%)</title><rect x="37.2720%" y="2597" width="0.0895%" height="15" fill="rgb(225,186,22)" fg:x="8747" fg:w="21"/><text x="37.5220%" y="2607.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (81 samples, 0.35%)</title><rect x="37.0931%" y="2629" width="0.3452%" height="15" fill="rgb(239,130,28)" fg:x="8705" fg:w="81"/><text x="37.3431%" y="2639.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (18 samples, 0.08%)</title><rect x="37.3615%" y="2613" width="0.0767%" height="15" fill="rgb(252,228,26)" fg:x="8768" fg:w="18"/><text x="37.6115%" y="2623.50"></text></g><g><title>std::f64::<impl f64>::sqrt (18 samples, 0.08%)</title><rect x="37.3615%" y="2597" width="0.0767%" height="15" fill="rgb(237,150,10)" fg:x="8768" fg:w="18"/><text x="37.6115%" y="2607.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (91 samples, 0.39%)</title><rect x="37.0888%" y="2789" width="0.3878%" height="15" fill="rgb(228,167,41)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (91 samples, 0.39%)</title><rect x="37.0888%" y="2773" width="0.3878%" height="15" fill="rgb(209,77,32)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2783.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (91 samples, 0.39%)</title><rect x="37.0888%" y="2757" width="0.3878%" height="15" fill="rgb(237,88,7)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2767.50"></text></g><g><title>core::option::Option<T>::map (91 samples, 0.39%)</title><rect x="37.0888%" y="2741" width="0.3878%" height="15" fill="rgb(212,109,45)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (91 samples, 0.39%)</title><rect x="37.0888%" y="2725" width="0.3878%" height="15" fill="rgb(235,53,18)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2735.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (91 samples, 0.39%)</title><rect x="37.0888%" y="2709" width="0.3878%" height="15" fill="rgb(227,116,52)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (91 samples, 0.39%)</title><rect x="37.0888%" y="2693" width="0.3878%" height="15" fill="rgb(240,102,35)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2703.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (91 samples, 0.39%)</title><rect x="37.0888%" y="2677" width="0.3878%" height="15" fill="rgb(227,4,7)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2687.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (91 samples, 0.39%)</title><rect x="37.0888%" y="2661" width="0.3878%" height="15" fill="rgb(234,110,30)" fg:x="8704" fg:w="91"/><text x="37.3388%" y="2671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (90 samples, 0.38%)</title><rect x="37.0931%" y="2645" width="0.3835%" height="15" fill="rgb(208,25,51)" fg:x="8705" fg:w="90"/><text x="37.3431%" y="2655.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (9 samples, 0.04%)</title><rect x="37.4382%" y="2629" width="0.0384%" height="15" fill="rgb(210,6,39)" fg:x="8786" fg:w="9"/><text x="37.6882%" y="2639.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="37.4766%" y="2565" width="0.0128%" height="15" fill="rgb(229,83,32)" fg:x="8795" fg:w="3"/><text x="37.7266%" y="2575.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="37.4766%" y="2549" width="0.0128%" height="15" fill="rgb(207,123,21)" fg:x="8795" fg:w="3"/><text x="37.7266%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="37.4766%" y="2709" width="0.0256%" height="15" fill="rgb(218,129,12)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2719.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="37.4766%" y="2693" width="0.0256%" height="15" fill="rgb(217,83,42)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2703.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="37.4766%" y="2677" width="0.0256%" height="15" fill="rgb(209,16,0)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2687.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="37.4766%" y="2661" width="0.0256%" height="15" fill="rgb(246,75,12)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2671.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="37.4766%" y="2645" width="0.0256%" height="15" fill="rgb(226,213,24)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2655.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="37.4766%" y="2629" width="0.0256%" height="15" fill="rgb(235,224,45)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2639.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="37.4766%" y="2613" width="0.0256%" height="15" fill="rgb(226,118,12)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2623.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="37.4766%" y="2597" width="0.0256%" height="15" fill="rgb(242,162,52)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2607.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="37.4766%" y="2581" width="0.0256%" height="15" fill="rgb(242,186,10)" fg:x="8795" fg:w="6"/><text x="37.7266%" y="2591.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="37.4893%" y="2565" width="0.0128%" height="15" fill="rgb(218,28,3)" fg:x="8798" fg:w="3"/><text x="37.7393%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (98 samples, 0.42%)</title><rect x="37.0888%" y="2805" width="0.4176%" height="15" fill="rgb(243,116,10)" fg:x="8704" fg:w="98"/><text x="37.3388%" y="2815.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="37.4766%" y="2789" width="0.0298%" height="15" fill="rgb(246,217,14)" fg:x="8795" fg:w="7"/><text x="37.7266%" y="2799.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="37.4766%" y="2773" width="0.0298%" height="15" fill="rgb(217,3,9)" fg:x="8795" fg:w="7"/><text x="37.7266%" y="2783.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="37.4766%" y="2757" width="0.0298%" height="15" fill="rgb(246,164,7)" fg:x="8795" fg:w="7"/><text x="37.7266%" y="2767.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (7 samples, 0.03%)</title><rect x="37.4766%" y="2741" width="0.0298%" height="15" fill="rgb(208,130,17)" fg:x="8795" fg:w="7"/><text x="37.7266%" y="2751.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="37.4766%" y="2725" width="0.0298%" height="15" fill="rgb(250,140,40)" fg:x="8795" fg:w="7"/><text x="37.7266%" y="2735.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (43 samples, 0.18%)</title><rect x="37.5192%" y="2501" width="0.1832%" height="15" fill="rgb(238,153,1)" fg:x="8805" fg:w="43"/><text x="37.7692%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::exp (43 samples, 0.18%)</title><rect x="37.5192%" y="2485" width="0.1832%" height="15" fill="rgb(250,61,30)" fg:x="8805" fg:w="43"/><text x="37.7692%" y="2495.50"></text></g><g><title>exp (42 samples, 0.18%)</title><rect x="37.5234%" y="2469" width="0.1790%" height="15" fill="rgb(244,152,43)" fg:x="8806" fg:w="42"/><text x="37.7734%" y="2479.50"></text></g><g><title>[libm.so.6] (35 samples, 0.15%)</title><rect x="37.5533%" y="2453" width="0.1491%" height="15" fill="rgb(250,158,38)" fg:x="8813" fg:w="35"/><text x="37.8033%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (21 samples, 0.09%)</title><rect x="37.7067%" y="2501" width="0.0895%" height="15" fill="rgb(214,203,27)" fg:x="8849" fg:w="21"/><text x="37.9567%" y="2511.50"></text></g><g><title>core::f64::<impl f64>::recip (21 samples, 0.09%)</title><rect x="37.7067%" y="2485" width="0.0895%" height="15" fill="rgb(222,229,54)" fg:x="8849" fg:w="21"/><text x="37.9567%" y="2495.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (86 samples, 0.37%)</title><rect x="37.5192%" y="2517" width="0.3665%" height="15" fill="rgb(239,63,22)" fg:x="8805" fg:w="86"/><text x="37.7692%" y="2527.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (21 samples, 0.09%)</title><rect x="37.7961%" y="2501" width="0.0895%" height="15" fill="rgb(209,183,22)" fg:x="8870" fg:w="21"/><text x="38.0461%" y="2511.50"></text></g><g><title>std::f64::<impl f64>::sqrt (21 samples, 0.09%)</title><rect x="37.7961%" y="2485" width="0.0895%" height="15" fill="rgb(242,142,5)" fg:x="8870" fg:w="21"/><text x="38.0461%" y="2495.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (94 samples, 0.40%)</title><rect x="37.5064%" y="2677" width="0.4005%" height="15" fill="rgb(231,181,1)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (94 samples, 0.40%)</title><rect x="37.5064%" y="2661" width="0.4005%" height="15" fill="rgb(240,54,25)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (94 samples, 0.40%)</title><rect x="37.5064%" y="2645" width="0.4005%" height="15" fill="rgb(250,207,13)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2655.50"></text></g><g><title>core::option::Option<T>::map (94 samples, 0.40%)</title><rect x="37.5064%" y="2629" width="0.4005%" height="15" fill="rgb(212,94,10)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (94 samples, 0.40%)</title><rect x="37.5064%" y="2613" width="0.4005%" height="15" fill="rgb(234,46,22)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (94 samples, 0.40%)</title><rect x="37.5064%" y="2597" width="0.4005%" height="15" fill="rgb(241,173,5)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2607.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (94 samples, 0.40%)</title><rect x="37.5064%" y="2581" width="0.4005%" height="15" fill="rgb(234,56,30)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2591.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (94 samples, 0.40%)</title><rect x="37.5064%" y="2565" width="0.4005%" height="15" fill="rgb(235,160,47)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2575.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (94 samples, 0.40%)</title><rect x="37.5064%" y="2549" width="0.4005%" height="15" fill="rgb(220,156,8)" fg:x="8802" fg:w="94"/><text x="37.7564%" y="2559.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (91 samples, 0.39%)</title><rect x="37.5192%" y="2533" width="0.3878%" height="15" fill="rgb(206,88,29)" fg:x="8805" fg:w="91"/><text x="37.7692%" y="2543.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (5 samples, 0.02%)</title><rect x="37.8856%" y="2517" width="0.0213%" height="15" fill="rgb(207,35,4)" fg:x="8891" fg:w="5"/><text x="38.1356%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (100 samples, 0.43%)</title><rect x="37.5064%" y="2693" width="0.4261%" height="15" fill="rgb(211,162,10)" fg:x="8802" fg:w="100"/><text x="37.7564%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="37.9069%" y="2677" width="0.0256%" height="15" fill="rgb(209,90,21)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2687.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="37.9069%" y="2661" width="0.0256%" height="15" fill="rgb(213,181,31)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="37.9069%" y="2645" width="0.0256%" height="15" fill="rgb(219,222,4)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (6 samples, 0.03%)</title><rect x="37.9069%" y="2629" width="0.0256%" height="15" fill="rgb(223,104,40)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2639.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="37.9069%" y="2613" width="0.0256%" height="15" fill="rgb(241,219,47)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="37.9069%" y="2597" width="0.0256%" height="15" fill="rgb(210,174,53)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2607.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="37.9069%" y="2581" width="0.0256%" height="15" fill="rgb(228,194,2)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2591.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="37.9069%" y="2565" width="0.0256%" height="15" fill="rgb(221,40,35)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2575.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="37.9069%" y="2549" width="0.0256%" height="15" fill="rgb(222,193,13)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="37.9069%" y="2533" width="0.0256%" height="15" fill="rgb(219,198,17)" fg:x="8896" fg:w="6"/><text x="38.1569%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="37.9112%" y="2517" width="0.0213%" height="15" fill="rgb(235,105,22)" fg:x="8897" fg:w="5"/><text x="38.1612%" y="2527.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="37.9112%" y="2501" width="0.0213%" height="15" fill="rgb(214,70,0)" fg:x="8897" fg:w="5"/><text x="38.1612%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="37.9112%" y="2485" width="0.0213%" height="15" fill="rgb(231,102,48)" fg:x="8897" fg:w="5"/><text x="38.1612%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="37.9112%" y="2469" width="0.0213%" height="15" fill="rgb(215,216,17)" fg:x="8897" fg:w="5"/><text x="38.1612%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="37.9197%" y="2453" width="0.0128%" height="15" fill="rgb(245,21,4)" fg:x="8899" fg:w="3"/><text x="38.1697%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (27 samples, 0.12%)</title><rect x="37.9410%" y="2389" width="0.1151%" height="15" fill="rgb(228,213,32)" fg:x="8904" fg:w="27"/><text x="38.1910%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (27 samples, 0.12%)</title><rect x="37.9410%" y="2373" width="0.1151%" height="15" fill="rgb(222,207,11)" fg:x="8904" fg:w="27"/><text x="38.1910%" y="2383.50"></text></g><g><title>exp (27 samples, 0.12%)</title><rect x="37.9410%" y="2357" width="0.1151%" height="15" fill="rgb(214,224,7)" fg:x="8904" fg:w="27"/><text x="38.1910%" y="2367.50"></text></g><g><title>[libm.so.6] (25 samples, 0.11%)</title><rect x="37.9495%" y="2341" width="0.1065%" height="15" fill="rgb(244,226,10)" fg:x="8906" fg:w="25"/><text x="38.1995%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (10 samples, 0.04%)</title><rect x="38.0646%" y="2389" width="0.0426%" height="15" fill="rgb(238,203,48)" fg:x="8933" fg:w="10"/><text x="38.3146%" y="2399.50"></text></g><g><title>core::f64::<impl f64>::recip (10 samples, 0.04%)</title><rect x="38.0646%" y="2373" width="0.0426%" height="15" fill="rgb(254,127,1)" fg:x="8933" fg:w="10"/><text x="38.3146%" y="2383.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (63 samples, 0.27%)</title><rect x="37.9410%" y="2405" width="0.2685%" height="15" fill="rgb(226,73,36)" fg:x="8904" fg:w="63"/><text x="38.1910%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (24 samples, 0.10%)</title><rect x="38.1072%" y="2389" width="0.1023%" height="15" fill="rgb(208,104,3)" fg:x="8943" fg:w="24"/><text x="38.3572%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::sqrt (24 samples, 0.10%)</title><rect x="38.1072%" y="2373" width="0.1023%" height="15" fill="rgb(253,180,50)" fg:x="8943" fg:w="24"/><text x="38.3572%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (67 samples, 0.29%)</title><rect x="37.9368%" y="2581" width="0.2855%" height="15" fill="rgb(218,207,31)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (67 samples, 0.29%)</title><rect x="37.9368%" y="2565" width="0.2855%" height="15" fill="rgb(211,156,34)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (67 samples, 0.29%)</title><rect x="37.9368%" y="2549" width="0.2855%" height="15" fill="rgb(237,120,2)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (67 samples, 0.29%)</title><rect x="37.9368%" y="2533" width="0.2855%" height="15" fill="rgb(230,10,22)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (67 samples, 0.29%)</title><rect x="37.9368%" y="2517" width="0.2855%" height="15" fill="rgb(221,79,39)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (67 samples, 0.29%)</title><rect x="37.9368%" y="2501" width="0.2855%" height="15" fill="rgb(207,156,38)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (67 samples, 0.29%)</title><rect x="37.9368%" y="2485" width="0.2855%" height="15" fill="rgb(218,169,2)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (67 samples, 0.29%)</title><rect x="37.9368%" y="2469" width="0.2855%" height="15" fill="rgb(251,154,29)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (67 samples, 0.29%)</title><rect x="37.9368%" y="2453" width="0.2855%" height="15" fill="rgb(228,165,19)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (67 samples, 0.29%)</title><rect x="37.9368%" y="2437" width="0.2855%" height="15" fill="rgb(249,187,3)" fg:x="8903" fg:w="67"/><text x="38.1868%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (66 samples, 0.28%)</title><rect x="37.9410%" y="2421" width="0.2812%" height="15" fill="rgb(249,193,41)" fg:x="8904" fg:w="66"/><text x="38.1910%" y="2431.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="38.2095%" y="2405" width="0.0128%" height="15" fill="rgb(228,142,13)" fg:x="8967" fg:w="3"/><text x="38.4595%" y="2415.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (47 samples, 0.20%)</title><rect x="38.2265%" y="2277" width="0.2003%" height="15" fill="rgb(243,202,46)" fg:x="8971" fg:w="47"/><text x="38.4765%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::exp (47 samples, 0.20%)</title><rect x="38.2265%" y="2261" width="0.2003%" height="15" fill="rgb(240,202,39)" fg:x="8971" fg:w="47"/><text x="38.4765%" y="2271.50"></text></g><g><title>exp (43 samples, 0.18%)</title><rect x="38.2436%" y="2245" width="0.1832%" height="15" fill="rgb(226,53,22)" fg:x="8975" fg:w="43"/><text x="38.4936%" y="2255.50"></text></g><g><title>[libm.so.6] (38 samples, 0.16%)</title><rect x="38.2649%" y="2229" width="0.1619%" height="15" fill="rgb(218,197,6)" fg:x="8980" fg:w="38"/><text x="38.5149%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (24 samples, 0.10%)</title><rect x="38.4268%" y="2277" width="0.1023%" height="15" fill="rgb(233,73,27)" fg:x="9018" fg:w="24"/><text x="38.6768%" y="2287.50"></text></g><g><title>core::f64::<impl f64>::recip (24 samples, 0.10%)</title><rect x="38.4268%" y="2261" width="0.1023%" height="15" fill="rgb(239,85,34)" fg:x="9018" fg:w="24"/><text x="38.6768%" y="2271.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (95 samples, 0.40%)</title><rect x="38.2265%" y="2293" width="0.4048%" height="15" fill="rgb(211,91,17)" fg:x="8971" fg:w="95"/><text x="38.4765%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (24 samples, 0.10%)</title><rect x="38.5291%" y="2277" width="0.1023%" height="15" fill="rgb(253,192,1)" fg:x="9042" fg:w="24"/><text x="38.7791%" y="2287.50"></text></g><g><title>std::f64::<impl f64>::sqrt (24 samples, 0.10%)</title><rect x="38.5291%" y="2261" width="0.1023%" height="15" fill="rgb(216,80,10)" fg:x="9042" fg:w="24"/><text x="38.7791%" y="2271.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (103 samples, 0.44%)</title><rect x="38.2223%" y="2453" width="0.4389%" height="15" fill="rgb(212,198,52)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (103 samples, 0.44%)</title><rect x="38.2223%" y="2437" width="0.4389%" height="15" fill="rgb(248,119,23)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (103 samples, 0.44%)</title><rect x="38.2223%" y="2421" width="0.4389%" height="15" fill="rgb(248,74,50)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2431.50"></text></g><g><title>core::option::Option<T>::map (103 samples, 0.44%)</title><rect x="38.2223%" y="2405" width="0.4389%" height="15" fill="rgb(215,77,52)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (103 samples, 0.44%)</title><rect x="38.2223%" y="2389" width="0.4389%" height="15" fill="rgb(250,178,2)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (103 samples, 0.44%)</title><rect x="38.2223%" y="2373" width="0.4389%" height="15" fill="rgb(241,9,45)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (103 samples, 0.44%)</title><rect x="38.2223%" y="2357" width="0.4389%" height="15" fill="rgb(206,112,39)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (103 samples, 0.44%)</title><rect x="38.2223%" y="2341" width="0.4389%" height="15" fill="rgb(247,121,6)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2351.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (103 samples, 0.44%)</title><rect x="38.2223%" y="2325" width="0.4389%" height="15" fill="rgb(253,32,2)" fg:x="8970" fg:w="103"/><text x="38.4723%" y="2335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (102 samples, 0.43%)</title><rect x="38.2265%" y="2309" width="0.4346%" height="15" fill="rgb(242,89,5)" fg:x="8971" fg:w="102"/><text x="38.4765%" y="2319.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="38.6313%" y="2293" width="0.0298%" height="15" fill="rgb(247,134,43)" fg:x="9066" fg:w="7"/><text x="38.8813%" y="2303.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="38.6612%" y="2309" width="0.0213%" height="15" fill="rgb(248,5,18)" fg:x="9073" fg:w="5"/><text x="38.9112%" y="2319.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="38.6697%" y="2293" width="0.0128%" height="15" fill="rgb(243,136,36)" fg:x="9075" fg:w="3"/><text x="38.9197%" y="2303.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="38.6825%" y="2293" width="0.0128%" height="15" fill="rgb(237,171,51)" fg:x="9078" fg:w="3"/><text x="38.9325%" y="2303.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="38.6825%" y="2277" width="0.0128%" height="15" fill="rgb(221,107,44)" fg:x="9078" fg:w="3"/><text x="38.9325%" y="2287.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="38.6612%" y="2437" width="0.0384%" height="15" fill="rgb(212,30,15)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="38.6612%" y="2421" width="0.0384%" height="15" fill="rgb(245,67,25)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="38.6612%" y="2405" width="0.0384%" height="15" fill="rgb(223,28,44)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="38.6612%" y="2389" width="0.0384%" height="15" fill="rgb(216,131,22)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="38.6612%" y="2373" width="0.0384%" height="15" fill="rgb(233,53,35)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="38.6612%" y="2357" width="0.0384%" height="15" fill="rgb(225,22,34)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="38.6612%" y="2341" width="0.0384%" height="15" fill="rgb(253,173,8)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="38.6612%" y="2325" width="0.0384%" height="15" fill="rgb(214,107,48)" fg:x="9073" fg:w="9"/><text x="38.9112%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="38.6825%" y="2309" width="0.0170%" height="15" fill="rgb(235,88,44)" fg:x="9078" fg:w="4"/><text x="38.9325%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="38.6995%" y="2325" width="0.0341%" height="15" fill="rgb(210,146,43)" fg:x="9082" fg:w="8"/><text x="38.9495%" y="2335.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="38.6995%" y="2309" width="0.0341%" height="15" fill="rgb(251,145,1)" fg:x="9082" fg:w="8"/><text x="38.9495%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="38.6995%" y="2293" width="0.0341%" height="15" fill="rgb(236,30,31)" fg:x="9082" fg:w="8"/><text x="38.9495%" y="2303.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="38.6995%" y="2277" width="0.0341%" height="15" fill="rgb(211,34,29)" fg:x="9082" fg:w="8"/><text x="38.9495%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="38.6995%" y="2261" width="0.0341%" height="15" fill="rgb(216,153,21)" fg:x="9082" fg:w="8"/><text x="38.9495%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="38.6995%" y="2245" width="0.0341%" height="15" fill="rgb(214,33,37)" fg:x="9082" fg:w="8"/><text x="38.9495%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="38.7038%" y="2229" width="0.0298%" height="15" fill="rgb(215,14,22)" fg:x="9083" fg:w="7"/><text x="38.9538%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (124 samples, 0.53%)</title><rect x="38.2223%" y="2533" width="0.5284%" height="15" fill="rgb(238,84,6)" fg:x="8970" fg:w="124"/><text x="38.4723%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (124 samples, 0.53%)</title><rect x="38.2223%" y="2517" width="0.5284%" height="15" fill="rgb(243,99,37)" fg:x="8970" fg:w="124"/><text x="38.4723%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (124 samples, 0.53%)</title><rect x="38.2223%" y="2501" width="0.5284%" height="15" fill="rgb(221,186,35)" fg:x="8970" fg:w="124"/><text x="38.4723%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (124 samples, 0.53%)</title><rect x="38.2223%" y="2485" width="0.5284%" height="15" fill="rgb(234,33,23)" fg:x="8970" fg:w="124"/><text x="38.4723%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (124 samples, 0.53%)</title><rect x="38.2223%" y="2469" width="0.5284%" height="15" fill="rgb(217,209,52)" fg:x="8970" fg:w="124"/><text x="38.4723%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (21 samples, 0.09%)</title><rect x="38.6612%" y="2453" width="0.0895%" height="15" fill="rgb(247,79,46)" fg:x="9073" fg:w="21"/><text x="38.9112%" y="2463.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="38.6995%" y="2437" width="0.0511%" height="15" fill="rgb(232,155,15)" fg:x="9082" fg:w="12"/><text x="38.9495%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="38.6995%" y="2421" width="0.0511%" height="15" fill="rgb(250,14,42)" fg:x="9082" fg:w="12"/><text x="38.9495%" y="2431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (12 samples, 0.05%)</title><rect x="38.6995%" y="2405" width="0.0511%" height="15" fill="rgb(252,171,51)" fg:x="9082" fg:w="12"/><text x="38.9495%" y="2415.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (12 samples, 0.05%)</title><rect x="38.6995%" y="2389" width="0.0511%" height="15" fill="rgb(244,200,52)" fg:x="9082" fg:w="12"/><text x="38.9495%" y="2399.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="38.6995%" y="2373" width="0.0511%" height="15" fill="rgb(231,163,29)" fg:x="9082" fg:w="12"/><text x="38.9495%" y="2383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="38.6995%" y="2357" width="0.0511%" height="15" fill="rgb(241,39,30)" fg:x="9082" fg:w="12"/><text x="38.9495%" y="2367.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (12 samples, 0.05%)</title><rect x="38.6995%" y="2341" width="0.0511%" height="15" fill="rgb(215,41,21)" fg:x="9082" fg:w="12"/><text x="38.9495%" y="2351.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (4 samples, 0.02%)</title><rect x="38.7336%" y="2325" width="0.0170%" height="15" fill="rgb(205,40,11)" fg:x="9090" fg:w="4"/><text x="38.9836%" y="2335.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="38.7336%" y="2309" width="0.0170%" height="15" fill="rgb(211,157,49)" fg:x="9090" fg:w="4"/><text x="38.9836%" y="2319.50"></text></g><g><title>oorandom::Rand64::rand_u64 (4 samples, 0.02%)</title><rect x="38.7336%" y="2293" width="0.0170%" height="15" fill="rgb(224,124,8)" fg:x="9090" fg:w="4"/><text x="38.9836%" y="2303.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="38.7506%" y="2149" width="0.0128%" height="15" fill="rgb(209,52,42)" fg:x="9094" fg:w="3"/><text x="39.0006%" y="2159.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="38.7506%" y="2133" width="0.0128%" height="15" fill="rgb(248,113,41)" fg:x="9094" fg:w="3"/><text x="39.0006%" y="2143.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="38.7506%" y="2117" width="0.0128%" height="15" fill="rgb(239,97,16)" fg:x="9094" fg:w="3"/><text x="39.0006%" y="2127.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="38.7506%" y="2101" width="0.0128%" height="15" fill="rgb(217,4,0)" fg:x="9094" fg:w="3"/><text x="39.0006%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="38.7506%" y="2085" width="0.0128%" height="15" fill="rgb(228,58,53)" fg:x="9094" fg:w="3"/><text x="39.0006%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="38.7506%" y="2069" width="0.0128%" height="15" fill="rgb(238,99,21)" fg:x="9094" fg:w="3"/><text x="39.0006%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="38.7506%" y="2293" width="0.0170%" height="15" fill="rgb(251,225,41)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="38.7506%" y="2277" width="0.0170%" height="15" fill="rgb(246,81,51)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2287.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="38.7506%" y="2261" width="0.0170%" height="15" fill="rgb(235,144,13)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2271.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="38.7506%" y="2245" width="0.0170%" height="15" fill="rgb(206,222,53)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2255.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="38.7506%" y="2229" width="0.0170%" height="15" fill="rgb(247,182,27)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2239.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7506%" y="2213" width="0.0170%" height="15" fill="rgb(210,109,21)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2223.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7506%" y="2197" width="0.0170%" height="15" fill="rgb(222,73,54)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2207.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="38.7506%" y="2181" width="0.0170%" height="15" fill="rgb(207,50,1)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2191.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7506%" y="2165" width="0.0170%" height="15" fill="rgb(227,73,51)" fg:x="9094" fg:w="4"/><text x="39.0006%" y="2175.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="38.7677%" y="2245" width="0.0128%" height="15" fill="rgb(228,82,13)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="38.7677%" y="2229" width="0.0128%" height="15" fill="rgb(228,80,20)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="38.7677%" y="2213" width="0.0128%" height="15" fill="rgb(205,212,6)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.7677%" y="2197" width="0.0128%" height="15" fill="rgb(216,106,51)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="38.7677%" y="2181" width="0.0128%" height="15" fill="rgb(230,222,18)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2191.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="38.7677%" y="2165" width="0.0128%" height="15" fill="rgb(239,12,23)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2175.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="38.7677%" y="2149" width="0.0128%" height="15" fill="rgb(241,15,43)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="38.7677%" y="2133" width="0.0128%" height="15" fill="rgb(232,18,29)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2143.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="38.7677%" y="2117" width="0.0128%" height="15" fill="rgb(248,177,35)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2127.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="38.7677%" y="2101" width="0.0128%" height="15" fill="rgb(216,29,29)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2111.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="38.7677%" y="2085" width="0.0128%" height="15" fill="rgb(248,145,43)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2095.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="38.7677%" y="2069" width="0.0128%" height="15" fill="rgb(246,60,32)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2079.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="38.7677%" y="2053" width="0.0128%" height="15" fill="rgb(254,164,38)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2063.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="38.7677%" y="2037" width="0.0128%" height="15" fill="rgb(213,194,20)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2047.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="38.7677%" y="2021" width="0.0128%" height="15" fill="rgb(210,86,27)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2031.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="38.7677%" y="2005" width="0.0128%" height="15" fill="rgb(233,163,6)" fg:x="9098" fg:w="3"/><text x="39.0177%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="38.7805%" y="1669" width="0.0170%" height="15" fill="rgb(237,82,52)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="38.7805%" y="1653" width="0.0170%" height="15" fill="rgb(234,42,27)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="38.7805%" y="1637" width="0.0170%" height="15" fill="rgb(231,216,12)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1647.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="38.7805%" y="1621" width="0.0170%" height="15" fill="rgb(221,81,35)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1631.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="38.7805%" y="1605" width="0.0170%" height="15" fill="rgb(233,69,1)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1615.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="38.7805%" y="1589" width="0.0170%" height="15" fill="rgb(224,12,0)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1599.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="38.7805%" y="1573" width="0.0170%" height="15" fill="rgb(217,176,20)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1583.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="38.7805%" y="1557" width="0.0170%" height="15" fill="rgb(235,64,28)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1567.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="38.7805%" y="1541" width="0.0170%" height="15" fill="rgb(231,111,5)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1551.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="38.7805%" y="1525" width="0.0170%" height="15" fill="rgb(250,217,36)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1535.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="38.7805%" y="1509" width="0.0170%" height="15" fill="rgb(229,51,8)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1519.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7805%" y="1493" width="0.0170%" height="15" fill="rgb(244,0,24)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7805%" y="1477" width="0.0170%" height="15" fill="rgb(210,93,30)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7805%" y="1461" width="0.0170%" height="15" fill="rgb(207,150,6)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.7805%" y="1445" width="0.0170%" height="15" fill="rgb(209,137,28)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="38.7805%" y="1429" width="0.0170%" height="15" fill="rgb(232,140,12)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.7805%" y="1413" width="0.0170%" height="15" fill="rgb(205,223,25)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7805%" y="1397" width="0.0170%" height="15" fill="rgb(241,207,9)" fg:x="9101" fg:w="4"/><text x="39.0305%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="38.7805%" y="1957" width="0.0341%" height="15" fill="rgb(241,16,30)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="38.7805%" y="1941" width="0.0341%" height="15" fill="rgb(208,213,47)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="38.7805%" y="1925" width="0.0341%" height="15" fill="rgb(224,9,27)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="38.7805%" y="1909" width="0.0341%" height="15" fill="rgb(222,120,7)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="38.7805%" y="1893" width="0.0341%" height="15" fill="rgb(215,15,50)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="38.7805%" y="1877" width="0.0341%" height="15" fill="rgb(242,146,9)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="38.7805%" y="1861" width="0.0341%" height="15" fill="rgb(252,77,7)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="38.7805%" y="1845" width="0.0341%" height="15" fill="rgb(249,200,43)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1855.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="38.7805%" y="1829" width="0.0341%" height="15" fill="rgb(237,206,28)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="38.7805%" y="1813" width="0.0341%" height="15" fill="rgb(227,205,49)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="38.7805%" y="1797" width="0.0341%" height="15" fill="rgb(228,69,3)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="38.7805%" y="1781" width="0.0341%" height="15" fill="rgb(211,102,4)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="38.7805%" y="1765" width="0.0341%" height="15" fill="rgb(254,47,23)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="38.7805%" y="1749" width="0.0341%" height="15" fill="rgb(254,210,10)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="38.7805%" y="1733" width="0.0341%" height="15" fill="rgb(253,163,4)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="38.7805%" y="1717" width="0.0341%" height="15" fill="rgb(207,120,10)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="38.7805%" y="1701" width="0.0341%" height="15" fill="rgb(226,67,0)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="38.7805%" y="1685" width="0.0341%" height="15" fill="rgb(206,147,45)" fg:x="9101" fg:w="8"/><text x="39.0305%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="38.7975%" y="1669" width="0.0170%" height="15" fill="rgb(252,92,53)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="38.7975%" y="1653" width="0.0170%" height="15" fill="rgb(239,185,14)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1663.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="38.7975%" y="1637" width="0.0170%" height="15" fill="rgb(217,172,49)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="38.7975%" y="1621" width="0.0170%" height="15" fill="rgb(248,154,3)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="38.7975%" y="1605" width="0.0170%" height="15" fill="rgb(213,37,19)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7975%" y="1589" width="0.0170%" height="15" fill="rgb(248,123,31)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7975%" y="1573" width="0.0170%" height="15" fill="rgb(225,20,7)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.7975%" y="1557" width="0.0170%" height="15" fill="rgb(216,143,13)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="38.7975%" y="1541" width="0.0170%" height="15" fill="rgb(230,123,53)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="38.7975%" y="1525" width="0.0170%" height="15" fill="rgb(247,87,18)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="38.7975%" y="1509" width="0.0170%" height="15" fill="rgb(225,189,28)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="38.7975%" y="1493" width="0.0170%" height="15" fill="rgb(249,142,15)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="38.7975%" y="1477" width="0.0170%" height="15" fill="rgb(241,48,24)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="38.7975%" y="1461" width="0.0170%" height="15" fill="rgb(215,129,37)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="38.7975%" y="1445" width="0.0170%" height="15" fill="rgb(252,183,54)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7975%" y="1429" width="0.0170%" height="15" fill="rgb(234,195,4)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="38.7975%" y="1413" width="0.0170%" height="15" fill="rgb(222,156,20)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="38.7975%" y="1397" width="0.0170%" height="15" fill="rgb(239,92,6)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="38.7975%" y="1381" width="0.0170%" height="15" fill="rgb(222,44,32)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="38.7975%" y="1365" width="0.0170%" height="15" fill="rgb(217,23,37)" fg:x="9105" fg:w="4"/><text x="39.0475%" y="1375.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="38.8018%" y="1349" width="0.0128%" height="15" fill="rgb(232,216,15)" fg:x="9106" fg:w="3"/><text x="39.0518%" y="1359.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="38.8018%" y="1333" width="0.0128%" height="15" fill="rgb(210,48,36)" fg:x="9106" fg:w="3"/><text x="39.0518%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="38.7805%" y="2245" width="0.0511%" height="15" fill="rgb(250,208,12)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="38.7805%" y="2229" width="0.0511%" height="15" fill="rgb(209,1,20)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="38.7805%" y="2213" width="0.0511%" height="15" fill="rgb(244,174,22)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="38.7805%" y="2197" width="0.0511%" height="15" fill="rgb(212,60,37)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="38.7805%" y="2181" width="0.0511%" height="15" fill="rgb(250,55,21)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="38.7805%" y="2165" width="0.0511%" height="15" fill="rgb(250,41,31)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="38.7805%" y="2149" width="0.0511%" height="15" fill="rgb(247,69,36)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="38.7805%" y="2133" width="0.0511%" height="15" fill="rgb(223,99,6)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2143.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="38.7805%" y="2117" width="0.0511%" height="15" fill="rgb(236,125,0)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="38.7805%" y="2101" width="0.0511%" height="15" fill="rgb(230,120,43)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="38.7805%" y="2085" width="0.0511%" height="15" fill="rgb(250,34,12)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="38.7805%" y="2069" width="0.0511%" height="15" fill="rgb(235,159,38)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="38.7805%" y="2053" width="0.0511%" height="15" fill="rgb(209,9,33)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="38.7805%" y="2037" width="0.0511%" height="15" fill="rgb(233,220,12)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="38.7805%" y="2021" width="0.0511%" height="15" fill="rgb(209,15,13)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="38.7805%" y="2005" width="0.0511%" height="15" fill="rgb(245,140,41)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="38.7805%" y="1989" width="0.0511%" height="15" fill="rgb(223,227,17)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="38.7805%" y="1973" width="0.0511%" height="15" fill="rgb(233,178,40)" fg:x="9101" fg:w="12"/><text x="39.0305%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="38.8146%" y="1957" width="0.0170%" height="15" fill="rgb(230,194,6)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="38.8146%" y="1941" width="0.0170%" height="15" fill="rgb(234,215,49)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1951.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="38.8146%" y="1925" width="0.0170%" height="15" fill="rgb(227,166,24)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="38.8146%" y="1909" width="0.0170%" height="15" fill="rgb(215,112,34)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="38.8146%" y="1893" width="0.0170%" height="15" fill="rgb(250,169,20)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="38.8146%" y="1877" width="0.0170%" height="15" fill="rgb(230,75,44)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="38.8146%" y="1861" width="0.0170%" height="15" fill="rgb(247,76,38)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.8146%" y="1845" width="0.0170%" height="15" fill="rgb(224,23,35)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="38.8146%" y="1829" width="0.0170%" height="15" fill="rgb(228,93,40)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.8146%" y="1813" width="0.0170%" height="15" fill="rgb(244,219,15)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="38.8146%" y="1797" width="0.0170%" height="15" fill="rgb(227,50,49)" fg:x="9109" fg:w="4"/><text x="39.0646%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="38.8401%" y="2069" width="0.0298%" height="15" fill="rgb(220,122,14)" fg:x="9115" fg:w="7"/><text x="39.0901%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="38.8401%" y="2053" width="0.0298%" height="15" fill="rgb(220,61,30)" fg:x="9115" fg:w="7"/><text x="39.0901%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="38.8401%" y="2037" width="0.0298%" height="15" fill="rgb(218,149,53)" fg:x="9115" fg:w="7"/><text x="39.0901%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="38.8401%" y="2021" width="0.0298%" height="15" fill="rgb(225,218,40)" fg:x="9115" fg:w="7"/><text x="39.0901%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="38.8401%" y="2005" width="0.0298%" height="15" fill="rgb(224,19,3)" fg:x="9115" fg:w="7"/><text x="39.0901%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="38.8401%" y="1989" width="0.0298%" height="15" fill="rgb(228,2,15)" fg:x="9115" fg:w="7"/><text x="39.0901%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="38.8401%" y="1973" width="0.0298%" height="15" fill="rgb(237,76,12)" fg:x="9115" fg:w="7"/><text x="39.0901%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="38.8486%" y="1957" width="0.0213%" height="15" fill="rgb(244,220,33)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="38.8486%" y="1941" width="0.0213%" height="15" fill="rgb(240,110,21)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1951.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="38.8486%" y="1925" width="0.0213%" height="15" fill="rgb(242,175,38)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="38.8486%" y="1909" width="0.0213%" height="15" fill="rgb(215,178,34)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="38.8486%" y="1893" width="0.0213%" height="15" fill="rgb(252,196,49)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="38.8486%" y="1877" width="0.0213%" height="15" fill="rgb(253,202,4)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="38.8486%" y="1861" width="0.0213%" height="15" fill="rgb(205,26,38)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.8486%" y="1845" width="0.0213%" height="15" fill="rgb(223,129,46)" fg:x="9117" fg:w="5"/><text x="39.0986%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="38.8529%" y="1829" width="0.0170%" height="15" fill="rgb(225,34,39)" fg:x="9118" fg:w="4"/><text x="39.1029%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.8529%" y="1813" width="0.0170%" height="15" fill="rgb(228,56,13)" fg:x="9118" fg:w="4"/><text x="39.1029%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="38.8529%" y="1797" width="0.0170%" height="15" fill="rgb(211,170,18)" fg:x="9118" fg:w="4"/><text x="39.1029%" y="1807.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="38.8700%" y="1893" width="0.0256%" height="15" fill="rgb(243,156,31)" fg:x="9122" fg:w="6"/><text x="39.1200%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="38.8700%" y="1877" width="0.0256%" height="15" fill="rgb(228,59,41)" fg:x="9122" fg:w="6"/><text x="39.1200%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="38.8700%" y="1861" width="0.0256%" height="15" fill="rgb(251,188,39)" fg:x="9122" fg:w="6"/><text x="39.1200%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="38.8700%" y="1845" width="0.0256%" height="15" fill="rgb(206,199,8)" fg:x="9122" fg:w="6"/><text x="39.1200%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="38.8742%" y="1829" width="0.0213%" height="15" fill="rgb(245,94,26)" fg:x="9123" fg:w="5"/><text x="39.1242%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.8742%" y="1813" width="0.0213%" height="15" fill="rgb(251,24,32)" fg:x="9123" fg:w="5"/><text x="39.1242%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="38.8742%" y="1797" width="0.0213%" height="15" fill="rgb(224,117,17)" fg:x="9123" fg:w="5"/><text x="39.1242%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="38.8827%" y="1781" width="0.0128%" height="15" fill="rgb(227,187,33)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="38.8827%" y="1765" width="0.0128%" height="15" fill="rgb(207,96,10)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1775.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="38.8827%" y="1749" width="0.0128%" height="15" fill="rgb(243,187,42)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="38.8827%" y="1733" width="0.0128%" height="15" fill="rgb(240,117,47)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="38.8827%" y="1717" width="0.0128%" height="15" fill="rgb(214,43,41)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="38.8827%" y="1701" width="0.0128%" height="15" fill="rgb(235,186,26)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="38.8827%" y="1685" width="0.0128%" height="15" fill="rgb(235,226,13)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.8827%" y="1669" width="0.0128%" height="15" fill="rgb(218,169,49)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="38.8827%" y="1653" width="0.0128%" height="15" fill="rgb(235,46,36)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="38.8827%" y="1637" width="0.0128%" height="15" fill="rgb(227,78,3)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="38.8827%" y="1621" width="0.0128%" height="15" fill="rgb(254,184,11)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="38.8827%" y="1605" width="0.0128%" height="15" fill="rgb(205,131,52)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="38.8827%" y="1589" width="0.0128%" height="15" fill="rgb(253,210,9)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="38.8827%" y="1573" width="0.0128%" height="15" fill="rgb(240,28,49)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="38.8827%" y="1557" width="0.0128%" height="15" fill="rgb(240,133,45)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="38.8827%" y="1541" width="0.0128%" height="15" fill="rgb(212,178,4)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="38.8827%" y="1525" width="0.0128%" height="15" fill="rgb(254,93,11)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="38.8827%" y="1509" width="0.0128%" height="15" fill="rgb(235,139,9)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="38.8827%" y="1493" width="0.0128%" height="15" fill="rgb(226,90,38)" fg:x="9125" fg:w="3"/><text x="39.1327%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (41 samples, 0.17%)</title><rect x="38.7506%" y="2533" width="0.1747%" height="15" fill="rgb(245,115,13)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (41 samples, 0.17%)</title><rect x="38.7506%" y="2517" width="0.1747%" height="15" fill="rgb(210,20,5)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (41 samples, 0.17%)</title><rect x="38.7506%" y="2501" width="0.1747%" height="15" fill="rgb(234,64,12)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (41 samples, 0.17%)</title><rect x="38.7506%" y="2485" width="0.1747%" height="15" fill="rgb(236,155,4)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (41 samples, 0.17%)</title><rect x="38.7506%" y="2469" width="0.1747%" height="15" fill="rgb(222,110,13)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (41 samples, 0.17%)</title><rect x="38.7506%" y="2453" width="0.1747%" height="15" fill="rgb(227,116,7)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (41 samples, 0.17%)</title><rect x="38.7506%" y="2437" width="0.1747%" height="15" fill="rgb(214,125,53)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (41 samples, 0.17%)</title><rect x="38.7506%" y="2421" width="0.1747%" height="15" fill="rgb(240,56,17)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2431.50"></text></g><g><title>std::panicking::try (41 samples, 0.17%)</title><rect x="38.7506%" y="2405" width="0.1747%" height="15" fill="rgb(221,150,26)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (41 samples, 0.17%)</title><rect x="38.7506%" y="2389" width="0.1747%" height="15" fill="rgb(209,176,47)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (41 samples, 0.17%)</title><rect x="38.7506%" y="2373" width="0.1747%" height="15" fill="rgb(207,138,35)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (41 samples, 0.17%)</title><rect x="38.7506%" y="2357" width="0.1747%" height="15" fill="rgb(234,1,24)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (41 samples, 0.17%)</title><rect x="38.7506%" y="2341" width="0.1747%" height="15" fill="rgb(242,115,8)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (41 samples, 0.17%)</title><rect x="38.7506%" y="2325" width="0.1747%" height="15" fill="rgb(249,82,41)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.17%)</title><rect x="38.7506%" y="2309" width="0.1747%" height="15" fill="rgb(217,119,32)" fg:x="9094" fg:w="41"/><text x="39.0006%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (37 samples, 0.16%)</title><rect x="38.7677%" y="2293" width="0.1577%" height="15" fill="rgb(206,18,40)" fg:x="9098" fg:w="37"/><text x="39.0177%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (37 samples, 0.16%)</title><rect x="38.7677%" y="2277" width="0.1577%" height="15" fill="rgb(250,6,44)" fg:x="9098" fg:w="37"/><text x="39.0177%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37 samples, 0.16%)</title><rect x="38.7677%" y="2261" width="0.1577%" height="15" fill="rgb(220,199,5)" fg:x="9098" fg:w="37"/><text x="39.0177%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="38.8316%" y="2245" width="0.0937%" height="15" fill="rgb(215,98,10)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="38.8316%" y="2229" width="0.0937%" height="15" fill="rgb(249,146,42)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2239.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="38.8316%" y="2213" width="0.0937%" height="15" fill="rgb(223,99,10)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="38.8316%" y="2197" width="0.0937%" height="15" fill="rgb(235,15,42)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="38.8316%" y="2181" width="0.0937%" height="15" fill="rgb(223,213,6)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (22 samples, 0.09%)</title><rect x="38.8316%" y="2165" width="0.0937%" height="15" fill="rgb(206,185,19)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="38.8316%" y="2149" width="0.0937%" height="15" fill="rgb(245,97,11)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="38.8316%" y="2133" width="0.0937%" height="15" fill="rgb(224,63,51)" fg:x="9113" fg:w="22"/><text x="39.0816%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="38.8401%" y="2117" width="0.0852%" height="15" fill="rgb(247,187,11)" fg:x="9115" fg:w="20"/><text x="39.0901%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="38.8401%" y="2101" width="0.0852%" height="15" fill="rgb(211,45,0)" fg:x="9115" fg:w="20"/><text x="39.0901%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="38.8401%" y="2085" width="0.0852%" height="15" fill="rgb(214,17,29)" fg:x="9115" fg:w="20"/><text x="39.0901%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="38.8700%" y="2069" width="0.0554%" height="15" fill="rgb(232,150,50)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="38.8700%" y="2053" width="0.0554%" height="15" fill="rgb(246,25,13)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="2063.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="38.8700%" y="2037" width="0.0554%" height="15" fill="rgb(210,152,32)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="38.8700%" y="2021" width="0.0554%" height="15" fill="rgb(248,90,16)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="38.8700%" y="2005" width="0.0554%" height="15" fill="rgb(234,76,42)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="38.8700%" y="1989" width="0.0554%" height="15" fill="rgb(227,93,23)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="38.8700%" y="1973" width="0.0554%" height="15" fill="rgb(252,106,12)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="38.8700%" y="1957" width="0.0554%" height="15" fill="rgb(243,1,21)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="38.8700%" y="1941" width="0.0554%" height="15" fill="rgb(216,88,23)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="38.8700%" y="1925" width="0.0554%" height="15" fill="rgb(216,216,24)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="38.8700%" y="1909" width="0.0554%" height="15" fill="rgb(254,79,52)" fg:x="9122" fg:w="13"/><text x="39.1200%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="38.8955%" y="1893" width="0.0298%" height="15" fill="rgb(245,216,29)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="38.8955%" y="1877" width="0.0298%" height="15" fill="rgb(210,118,35)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1887.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="38.8955%" y="1861" width="0.0298%" height="15" fill="rgb(207,226,33)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="38.8955%" y="1845" width="0.0298%" height="15" fill="rgb(227,68,26)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="38.8955%" y="1829" width="0.0298%" height="15" fill="rgb(243,177,53)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="38.8955%" y="1813" width="0.0298%" height="15" fill="rgb(229,185,36)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="38.8955%" y="1797" width="0.0298%" height="15" fill="rgb(221,36,40)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="38.8955%" y="1781" width="0.0298%" height="15" fill="rgb(246,129,48)" fg:x="9128" fg:w="7"/><text x="39.1455%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="38.9040%" y="1765" width="0.0213%" height="15" fill="rgb(217,217,52)" fg:x="9130" fg:w="5"/><text x="39.1540%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.9040%" y="1749" width="0.0213%" height="15" fill="rgb(233,227,41)" fg:x="9130" fg:w="5"/><text x="39.1540%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="38.9040%" y="1733" width="0.0213%" height="15" fill="rgb(246,201,16)" fg:x="9130" fg:w="5"/><text x="39.1540%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="38.9126%" y="1717" width="0.0128%" height="15" fill="rgb(250,109,42)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="38.9126%" y="1701" width="0.0128%" height="15" fill="rgb(252,153,38)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1711.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="38.9126%" y="1685" width="0.0128%" height="15" fill="rgb(213,90,38)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="38.9126%" y="1669" width="0.0128%" height="15" fill="rgb(228,23,20)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="38.9126%" y="1653" width="0.0128%" height="15" fill="rgb(250,219,42)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="38.9126%" y="1637" width="0.0128%" height="15" fill="rgb(249,167,7)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="38.9126%" y="1621" width="0.0128%" height="15" fill="rgb(209,217,38)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.9126%" y="1605" width="0.0128%" height="15" fill="rgb(208,24,6)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="38.9126%" y="1589" width="0.0128%" height="15" fill="rgb(206,77,20)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1599.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="38.9126%" y="1573" width="0.0128%" height="15" fill="rgb(237,132,29)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="38.9126%" y="1557" width="0.0128%" height="15" fill="rgb(212,24,42)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1567.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="38.9126%" y="1541" width="0.0128%" height="15" fill="rgb(219,72,9)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1551.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="38.9126%" y="1525" width="0.0128%" height="15" fill="rgb(237,61,35)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="38.9126%" y="1509" width="0.0128%" height="15" fill="rgb(206,86,32)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1519.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="38.9126%" y="1493" width="0.0128%" height="15" fill="rgb(234,228,50)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="38.9126%" y="1477" width="0.0128%" height="15" fill="rgb(212,162,4)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1487.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="38.9126%" y="1461" width="0.0128%" height="15" fill="rgb(206,221,16)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1471.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="38.9126%" y="1445" width="0.0128%" height="15" fill="rgb(246,40,35)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="38.9126%" y="1429" width="0.0128%" height="15" fill="rgb(238,143,3)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1439.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="38.9126%" y="1413" width="0.0128%" height="15" fill="rgb(225,159,0)" fg:x="9132" fg:w="3"/><text x="39.1626%" y="1423.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (49 samples, 0.21%)</title><rect x="38.9339%" y="2213" width="0.2088%" height="15" fill="rgb(220,228,53)" fg:x="9137" fg:w="49"/><text x="39.1839%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (49 samples, 0.21%)</title><rect x="38.9339%" y="2197" width="0.2088%" height="15" fill="rgb(217,44,8)" fg:x="9137" fg:w="49"/><text x="39.1839%" y="2207.50"></text></g><g><title>exp (48 samples, 0.20%)</title><rect x="38.9381%" y="2181" width="0.2045%" height="15" fill="rgb(248,8,23)" fg:x="9138" fg:w="48"/><text x="39.1881%" y="2191.50"></text></g><g><title>[libm.so.6] (32 samples, 0.14%)</title><rect x="39.0063%" y="2165" width="0.1364%" height="15" fill="rgb(231,24,11)" fg:x="9154" fg:w="32"/><text x="39.2563%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (24 samples, 0.10%)</title><rect x="39.1512%" y="2213" width="0.1023%" height="15" fill="rgb(225,146,32)" fg:x="9188" fg:w="24"/><text x="39.4012%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (24 samples, 0.10%)</title><rect x="39.1512%" y="2197" width="0.1023%" height="15" fill="rgb(226,68,12)" fg:x="9188" fg:w="24"/><text x="39.4012%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (98 samples, 0.42%)</title><rect x="38.9339%" y="2229" width="0.4176%" height="15" fill="rgb(233,218,37)" fg:x="9137" fg:w="98"/><text x="39.1839%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (23 samples, 0.10%)</title><rect x="39.2535%" y="2213" width="0.0980%" height="15" fill="rgb(219,173,17)" fg:x="9212" fg:w="23"/><text x="39.5035%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (23 samples, 0.10%)</title><rect x="39.2535%" y="2197" width="0.0980%" height="15" fill="rgb(213,50,9)" fg:x="9212" fg:w="23"/><text x="39.5035%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (112 samples, 0.48%)</title><rect x="38.9253%" y="2389" width="0.4772%" height="15" fill="rgb(232,189,3)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (112 samples, 0.48%)</title><rect x="38.9253%" y="2373" width="0.4772%" height="15" fill="rgb(233,12,43)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (112 samples, 0.48%)</title><rect x="38.9253%" y="2357" width="0.4772%" height="15" fill="rgb(214,148,39)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (112 samples, 0.48%)</title><rect x="38.9253%" y="2341" width="0.4772%" height="15" fill="rgb(210,169,24)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (112 samples, 0.48%)</title><rect x="38.9253%" y="2325" width="0.4772%" height="15" fill="rgb(246,24,28)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (112 samples, 0.48%)</title><rect x="38.9253%" y="2309" width="0.4772%" height="15" fill="rgb(252,37,45)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (112 samples, 0.48%)</title><rect x="38.9253%" y="2293" width="0.4772%" height="15" fill="rgb(222,98,26)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (112 samples, 0.48%)</title><rect x="38.9253%" y="2277" width="0.4772%" height="15" fill="rgb(216,208,52)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (112 samples, 0.48%)</title><rect x="38.9253%" y="2261" width="0.4772%" height="15" fill="rgb(239,178,45)" fg:x="9135" fg:w="112"/><text x="39.1753%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (110 samples, 0.47%)</title><rect x="38.9339%" y="2245" width="0.4687%" height="15" fill="rgb(229,186,20)" fg:x="9137" fg:w="110"/><text x="39.1839%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (12 samples, 0.05%)</title><rect x="39.3515%" y="2229" width="0.0511%" height="15" fill="rgb(226,181,21)" fg:x="9235" fg:w="12"/><text x="39.6015%" y="2239.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="39.4026%" y="2245" width="0.0128%" height="15" fill="rgb(222,164,54)" fg:x="9247" fg:w="3"/><text x="39.6526%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="39.4026%" y="2229" width="0.0128%" height="15" fill="rgb(254,174,20)" fg:x="9247" fg:w="3"/><text x="39.6526%" y="2239.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::mean (3 samples, 0.01%)</title><rect x="39.4154%" y="2197" width="0.0128%" height="15" fill="rgb(250,215,26)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::sum (3 samples, 0.01%)</title><rect x="39.4154%" y="2181" width="0.0128%" height="15" fill="rgb(233,226,51)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2191.50"></text></g><g><title>criterion::stats::sum (3 samples, 0.01%)</title><rect x="39.4154%" y="2165" width="0.0128%" height="15" fill="rgb(220,72,18)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2175.50"></text></g><g><title><core::iter::adapters::cloned::Cloned<I> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.4154%" y="2149" width="0.0128%" height="15" fill="rgb(221,64,14)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.4154%" y="2133" width="0.0128%" height="15" fill="rgb(227,18,11)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2143.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.4154%" y="2117" width="0.0128%" height="15" fill="rgb(227,25,2)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2127.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="39.4154%" y="2101" width="0.0128%" height="15" fill="rgb(226,179,13)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2111.50"></text></g><g><title>core::ops::function::FnMut::call_mut (3 samples, 0.01%)</title><rect x="39.4154%" y="2085" width="0.0128%" height="15" fill="rgb(229,123,23)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2095.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="39.4154%" y="2069" width="0.0128%" height="15" fill="rgb(209,227,8)" fg:x="9250" fg:w="3"/><text x="39.6654%" y="2079.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="39.4154%" y="2229" width="0.0213%" height="15" fill="rgb(218,222,14)" fg:x="9250" fg:w="5"/><text x="39.6654%" y="2239.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="39.4154%" y="2213" width="0.0213%" height="15" fill="rgb(224,34,19)" fg:x="9250" fg:w="5"/><text x="39.6654%" y="2223.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="39.4026%" y="2373" width="0.0469%" height="15" fill="rgb(239,71,37)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="39.4026%" y="2357" width="0.0469%" height="15" fill="rgb(219,227,43)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="39.4026%" y="2341" width="0.0469%" height="15" fill="rgb(230,133,46)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="39.4026%" y="2325" width="0.0469%" height="15" fill="rgb(248,106,20)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (11 samples, 0.05%)</title><rect x="39.4026%" y="2309" width="0.0469%" height="15" fill="rgb(236,191,19)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (11 samples, 0.05%)</title><rect x="39.4026%" y="2293" width="0.0469%" height="15" fill="rgb(251,154,7)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (11 samples, 0.05%)</title><rect x="39.4026%" y="2277" width="0.0469%" height="15" fill="rgb(244,33,18)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (11 samples, 0.05%)</title><rect x="39.4026%" y="2261" width="0.0469%" height="15" fill="rgb(218,125,38)" fg:x="9247" fg:w="11"/><text x="39.6526%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="39.4154%" y="2245" width="0.0341%" height="15" fill="rgb(205,156,16)" fg:x="9250" fg:w="8"/><text x="39.6654%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="39.4367%" y="2229" width="0.0128%" height="15" fill="rgb(230,199,20)" fg:x="9255" fg:w="3"/><text x="39.6867%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (4 samples, 0.02%)</title><rect x="39.4537%" y="2165" width="0.0170%" height="15" fill="rgb(238,94,2)" fg:x="9259" fg:w="4"/><text x="39.7037%" y="2175.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="39.4708%" y="2165" width="0.0128%" height="15" fill="rgb(223,117,12)" fg:x="9263" fg:w="3"/><text x="39.7208%" y="2175.50"></text></g><g><title>core::ops::function::Fn::call (14 samples, 0.06%)</title><rect x="39.4495%" y="2261" width="0.0597%" height="15" fill="rgb(253,28,28)" fg:x="9258" fg:w="14"/><text x="39.6995%" y="2271.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (14 samples, 0.06%)</title><rect x="39.4495%" y="2245" width="0.0597%" height="15" fill="rgb(205,187,1)" fg:x="9258" fg:w="14"/><text x="39.6995%" y="2255.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (13 samples, 0.06%)</title><rect x="39.4537%" y="2229" width="0.0554%" height="15" fill="rgb(241,194,0)" fg:x="9259" fg:w="13"/><text x="39.7037%" y="2239.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (13 samples, 0.06%)</title><rect x="39.4537%" y="2213" width="0.0554%" height="15" fill="rgb(252,200,11)" fg:x="9259" fg:w="13"/><text x="39.7037%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (13 samples, 0.06%)</title><rect x="39.4537%" y="2197" width="0.0554%" height="15" fill="rgb(241,123,7)" fg:x="9259" fg:w="13"/><text x="39.7037%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.06%)</title><rect x="39.4537%" y="2181" width="0.0554%" height="15" fill="rgb(253,31,4)" fg:x="9259" fg:w="13"/><text x="39.7037%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="39.4836%" y="2165" width="0.0256%" height="15" fill="rgb(231,60,1)" fg:x="9266" fg:w="6"/><text x="39.7336%" y="2175.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="39.4921%" y="2149" width="0.0170%" height="15" fill="rgb(235,66,21)" fg:x="9268" fg:w="4"/><text x="39.7421%" y="2159.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (371 samples, 1.58%)</title><rect x="37.9325%" y="2645" width="1.5809%" height="15" fill="rgb(238,9,17)" fg:x="8902" fg:w="371"/><text x="38.1825%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (371 samples, 1.58%)</title><rect x="37.9325%" y="2629" width="1.5809%" height="15" fill="rgb(240,106,43)" fg:x="8902" fg:w="371"/><text x="38.1825%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (371 samples, 1.58%)</title><rect x="37.9325%" y="2613" width="1.5809%" height="15" fill="rgb(240,143,42)" fg:x="8902" fg:w="371"/><text x="38.1825%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (371 samples, 1.58%)</title><rect x="37.9325%" y="2597" width="1.5809%" height="15" fill="rgb(248,170,21)" fg:x="8902" fg:w="371"/><text x="38.1825%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (303 samples, 1.29%)</title><rect x="38.2223%" y="2581" width="1.2911%" height="15" fill="rgb(228,159,43)" fg:x="8970" fg:w="303"/><text x="38.4723%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (303 samples, 1.29%)</title><rect x="38.2223%" y="2565" width="1.2911%" height="15" fill="rgb(237,212,10)" fg:x="8970" fg:w="303"/><text x="38.4723%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (303 samples, 1.29%)</title><rect x="38.2223%" y="2549" width="1.2911%" height="15" fill="rgb(246,17,20)" fg:x="8970" fg:w="303"/><text x="38.4723%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (138 samples, 0.59%)</title><rect x="38.9253%" y="2533" width="0.5880%" height="15" fill="rgb(211,65,11)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (138 samples, 0.59%)</title><rect x="38.9253%" y="2517" width="0.5880%" height="15" fill="rgb(220,222,33)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2527.50"></text></g><g><title>std::panicking::try (138 samples, 0.59%)</title><rect x="38.9253%" y="2501" width="0.5880%" height="15" fill="rgb(241,35,51)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (138 samples, 0.59%)</title><rect x="38.9253%" y="2485" width="0.5880%" height="15" fill="rgb(254,28,19)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (138 samples, 0.59%)</title><rect x="38.9253%" y="2469" width="0.5880%" height="15" fill="rgb(208,104,26)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (138 samples, 0.59%)</title><rect x="38.9253%" y="2453" width="0.5880%" height="15" fill="rgb(234,140,19)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (138 samples, 0.59%)</title><rect x="38.9253%" y="2437" width="0.5880%" height="15" fill="rgb(205,36,43)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (138 samples, 0.59%)</title><rect x="38.9253%" y="2421" width="0.5880%" height="15" fill="rgb(253,71,31)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (138 samples, 0.59%)</title><rect x="38.9253%" y="2405" width="0.5880%" height="15" fill="rgb(251,199,54)" fg:x="9135" fg:w="138"/><text x="39.1753%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (26 samples, 0.11%)</title><rect x="39.4026%" y="2389" width="0.1108%" height="15" fill="rgb(222,162,1)" fg:x="9247" fg:w="26"/><text x="39.6526%" y="2399.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="39.4495%" y="2373" width="0.0639%" height="15" fill="rgb(219,205,28)" fg:x="9258" fg:w="15"/><text x="39.6995%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (15 samples, 0.06%)</title><rect x="39.4495%" y="2357" width="0.0639%" height="15" fill="rgb(254,141,13)" fg:x="9258" fg:w="15"/><text x="39.6995%" y="2367.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (15 samples, 0.06%)</title><rect x="39.4495%" y="2341" width="0.0639%" height="15" fill="rgb(214,47,13)" fg:x="9258" fg:w="15"/><text x="39.6995%" y="2351.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (15 samples, 0.06%)</title><rect x="39.4495%" y="2325" width="0.0639%" height="15" fill="rgb(244,22,14)" fg:x="9258" fg:w="15"/><text x="39.6995%" y="2335.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (15 samples, 0.06%)</title><rect x="39.4495%" y="2309" width="0.0639%" height="15" fill="rgb(206,194,12)" fg:x="9258" fg:w="15"/><text x="39.6995%" y="2319.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (15 samples, 0.06%)</title><rect x="39.4495%" y="2293" width="0.0639%" height="15" fill="rgb(238,53,29)" fg:x="9258" fg:w="15"/><text x="39.6995%" y="2303.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (15 samples, 0.06%)</title><rect x="39.4495%" y="2277" width="0.0639%" height="15" fill="rgb(240,60,51)" fg:x="9258" fg:w="15"/><text x="39.6995%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="39.5134%" y="2213" width="0.0128%" height="15" fill="rgb(232,101,22)" fg:x="9273" fg:w="3"/><text x="39.7634%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="39.5134%" y="2197" width="0.0128%" height="15" fill="rgb(244,31,20)" fg:x="9273" fg:w="3"/><text x="39.7634%" y="2207.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.5134%" y="2181" width="0.0128%" height="15" fill="rgb(230,13,20)" fg:x="9273" fg:w="3"/><text x="39.7634%" y="2191.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.5134%" y="2165" width="0.0128%" height="15" fill="rgb(233,13,31)" fg:x="9273" fg:w="3"/><text x="39.7634%" y="2175.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="39.5134%" y="2389" width="0.0213%" height="15" fill="rgb(233,224,35)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="39.5134%" y="2373" width="0.0213%" height="15" fill="rgb(207,38,7)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="39.5134%" y="2357" width="0.0213%" height="15" fill="rgb(223,140,27)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="39.5134%" y="2341" width="0.0213%" height="15" fill="rgb(223,131,51)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="39.5134%" y="2325" width="0.0213%" height="15" fill="rgb(251,112,26)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="39.5134%" y="2309" width="0.0213%" height="15" fill="rgb(254,73,6)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="39.5134%" y="2293" width="0.0213%" height="15" fill="rgb(254,62,15)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="39.5134%" y="2277" width="0.0213%" height="15" fill="rgb(226,103,2)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="39.5134%" y="2261" width="0.0213%" height="15" fill="rgb(206,173,32)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="39.5134%" y="2245" width="0.0213%" height="15" fill="rgb(253,121,5)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="39.5134%" y="2229" width="0.0213%" height="15" fill="rgb(252,143,10)" fg:x="9273" fg:w="5"/><text x="39.7634%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="39.5134%" y="2405" width="0.0256%" height="15" fill="rgb(251,94,27)" fg:x="9273" fg:w="6"/><text x="39.7634%" y="2415.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="39.5432%" y="2005" width="0.0213%" height="15" fill="rgb(228,205,8)" fg:x="9280" fg:w="5"/><text x="39.7932%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="39.5517%" y="1989" width="0.0128%" height="15" fill="rgb(234,123,37)" fg:x="9282" fg:w="3"/><text x="39.8017%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="39.5517%" y="1973" width="0.0128%" height="15" fill="rgb(230,191,22)" fg:x="9282" fg:w="3"/><text x="39.8017%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="39.5432%" y="2245" width="0.0256%" height="15" fill="rgb(230,117,18)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="39.5432%" y="2229" width="0.0256%" height="15" fill="rgb(227,139,54)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="39.5432%" y="2213" width="0.0256%" height="15" fill="rgb(209,0,42)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.5432%" y="2197" width="0.0256%" height="15" fill="rgb(238,22,3)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="39.5432%" y="2181" width="0.0256%" height="15" fill="rgb(237,201,11)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="39.5432%" y="2165" width="0.0256%" height="15" fill="rgb(235,11,24)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="39.5432%" y="2149" width="0.0256%" height="15" fill="rgb(246,49,32)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="39.5432%" y="2133" width="0.0256%" height="15" fill="rgb(236,25,51)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="39.5432%" y="2117" width="0.0256%" height="15" fill="rgb(214,107,15)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="39.5432%" y="2101" width="0.0256%" height="15" fill="rgb(250,159,51)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="39.5432%" y="2085" width="0.0256%" height="15" fill="rgb(226,43,18)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="39.5432%" y="2069" width="0.0256%" height="15" fill="rgb(242,0,44)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="39.5432%" y="2053" width="0.0256%" height="15" fill="rgb(251,30,40)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="39.5432%" y="2037" width="0.0256%" height="15" fill="rgb(208,169,24)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="39.5432%" y="2021" width="0.0256%" height="15" fill="rgb(209,108,6)" fg:x="9280" fg:w="6"/><text x="39.7932%" y="2031.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="39.5858%" y="1925" width="0.0128%" height="15" fill="rgb(206,95,31)" fg:x="9290" fg:w="3"/><text x="39.8358%" y="1935.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="39.5858%" y="1909" width="0.0128%" height="15" fill="rgb(231,123,23)" fg:x="9290" fg:w="3"/><text x="39.8358%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="39.5773%" y="2117" width="0.0298%" height="15" fill="rgb(225,176,33)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="39.5773%" y="2101" width="0.0298%" height="15" fill="rgb(209,45,53)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="39.5773%" y="2085" width="0.0298%" height="15" fill="rgb(215,184,25)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="39.5773%" y="2069" width="0.0298%" height="15" fill="rgb(252,152,9)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="39.5773%" y="2053" width="0.0298%" height="15" fill="rgb(235,24,24)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="39.5773%" y="2037" width="0.0298%" height="15" fill="rgb(246,217,3)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="39.5773%" y="2021" width="0.0298%" height="15" fill="rgb(250,47,12)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="39.5773%" y="2005" width="0.0298%" height="15" fill="rgb(215,41,40)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="39.5773%" y="1989" width="0.0298%" height="15" fill="rgb(233,218,21)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="39.5773%" y="1973" width="0.0298%" height="15" fill="rgb(240,85,24)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="39.5773%" y="1957" width="0.0298%" height="15" fill="rgb(211,208,21)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="39.5773%" y="1941" width="0.0298%" height="15" fill="rgb(224,94,14)" fg:x="9288" fg:w="7"/><text x="39.8273%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="39.6071%" y="2037" width="0.0170%" height="15" fill="rgb(224,57,41)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="39.6071%" y="2021" width="0.0170%" height="15" fill="rgb(240,133,44)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="39.6071%" y="2005" width="0.0170%" height="15" fill="rgb(232,104,40)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="39.6071%" y="1989" width="0.0170%" height="15" fill="rgb(249,131,38)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="39.6071%" y="1973" width="0.0170%" height="15" fill="rgb(244,184,53)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="39.6071%" y="1957" width="0.0170%" height="15" fill="rgb(233,55,15)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1967.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="39.6071%" y="1941" width="0.0170%" height="15" fill="rgb(245,67,23)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="39.6071%" y="1925" width="0.0170%" height="15" fill="rgb(234,189,14)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="39.6071%" y="1909" width="0.0170%" height="15" fill="rgb(213,214,11)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="39.6071%" y="1893" width="0.0170%" height="15" fill="rgb(242,220,40)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="39.6071%" y="1877" width="0.0170%" height="15" fill="rgb(223,214,48)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="39.6071%" y="1861" width="0.0170%" height="15" fill="rgb(224,0,15)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.6071%" y="1845" width="0.0170%" height="15" fill="rgb(223,59,40)" fg:x="9295" fg:w="4"/><text x="39.8571%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="39.6114%" y="1829" width="0.0128%" height="15" fill="rgb(220,187,54)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.6114%" y="1813" width="0.0128%" height="15" fill="rgb(232,20,4)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6114%" y="1797" width="0.0128%" height="15" fill="rgb(245,66,30)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="39.6114%" y="1781" width="0.0128%" height="15" fill="rgb(231,199,5)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="39.6114%" y="1765" width="0.0128%" height="15" fill="rgb(218,92,44)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1775.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="39.6114%" y="1749" width="0.0128%" height="15" fill="rgb(218,187,21)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="39.6114%" y="1733" width="0.0128%" height="15" fill="rgb(240,147,32)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="39.6114%" y="1717" width="0.0128%" height="15" fill="rgb(241,120,46)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6114%" y="1701" width="0.0128%" height="15" fill="rgb(249,81,29)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6114%" y="1685" width="0.0128%" height="15" fill="rgb(223,140,41)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.6114%" y="1669" width="0.0128%" height="15" fill="rgb(230,184,46)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="39.6114%" y="1653" width="0.0128%" height="15" fill="rgb(229,103,52)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="39.6114%" y="1637" width="0.0128%" height="15" fill="rgb(216,195,14)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="39.6114%" y="1621" width="0.0128%" height="15" fill="rgb(240,17,28)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="39.6114%" y="1605" width="0.0128%" height="15" fill="rgb(228,155,48)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="39.6114%" y="1589" width="0.0128%" height="15" fill="rgb(215,190,36)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="39.6114%" y="1573" width="0.0128%" height="15" fill="rgb(217,201,33)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="39.6114%" y="1557" width="0.0128%" height="15" fill="rgb(211,222,2)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6114%" y="1541" width="0.0128%" height="15" fill="rgb(244,159,25)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="39.6114%" y="1525" width="0.0128%" height="15" fill="rgb(228,108,12)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.6114%" y="1509" width="0.0128%" height="15" fill="rgb(247,29,42)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6114%" y="1493" width="0.0128%" height="15" fill="rgb(219,119,3)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="39.6114%" y="1477" width="0.0128%" height="15" fill="rgb(213,25,52)" fg:x="9296" fg:w="3"/><text x="39.8614%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10 samples, 0.04%)</title><rect x="39.6071%" y="2069" width="0.0426%" height="15" fill="rgb(210,26,8)" fg:x="9295" fg:w="10"/><text x="39.8571%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="39.6071%" y="2053" width="0.0426%" height="15" fill="rgb(227,118,54)" fg:x="9295" fg:w="10"/><text x="39.8571%" y="2063.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="39.6284%" y="2037" width="0.0213%" height="15" fill="rgb(225,193,12)" fg:x="9300" fg:w="5"/><text x="39.8784%" y="2047.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="39.6284%" y="2021" width="0.0213%" height="15" fill="rgb(228,180,0)" fg:x="9300" fg:w="5"/><text x="39.8784%" y="2031.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="39.6284%" y="2005" width="0.0213%" height="15" fill="rgb(230,184,0)" fg:x="9300" fg:w="5"/><text x="39.8784%" y="2015.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="39.6284%" y="1989" width="0.0213%" height="15" fill="rgb(216,49,10)" fg:x="9300" fg:w="5"/><text x="39.8784%" y="1999.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="39.6284%" y="1973" width="0.0213%" height="15" fill="rgb(252,12,38)" fg:x="9300" fg:w="5"/><text x="39.8784%" y="1983.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="39.6284%" y="1957" width="0.0213%" height="15" fill="rgb(208,176,9)" fg:x="9300" fg:w="5"/><text x="39.8784%" y="1967.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="39.6284%" y="1941" width="0.0213%" height="15" fill="rgb(217,153,18)" fg:x="9300" fg:w="5"/><text x="39.8784%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (28 samples, 0.12%)</title><rect x="39.5389%" y="2357" width="0.1193%" height="15" fill="rgb(222,118,41)" fg:x="9279" fg:w="28"/><text x="39.7889%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (28 samples, 0.12%)</title><rect x="39.5389%" y="2341" width="0.1193%" height="15" fill="rgb(233,88,4)" fg:x="9279" fg:w="28"/><text x="39.7889%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (28 samples, 0.12%)</title><rect x="39.5389%" y="2325" width="0.1193%" height="15" fill="rgb(233,218,40)" fg:x="9279" fg:w="28"/><text x="39.7889%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.12%)</title><rect x="39.5389%" y="2309" width="0.1193%" height="15" fill="rgb(245,113,2)" fg:x="9279" fg:w="28"/><text x="39.7889%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="39.5432%" y="2293" width="0.1151%" height="15" fill="rgb(253,48,33)" fg:x="9280" fg:w="27"/><text x="39.7932%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="39.5432%" y="2277" width="0.1151%" height="15" fill="rgb(227,163,30)" fg:x="9280" fg:w="27"/><text x="39.7932%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="39.5432%" y="2261" width="0.1151%" height="15" fill="rgb(240,192,27)" fg:x="9280" fg:w="27"/><text x="39.7932%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="39.5773%" y="2245" width="0.0810%" height="15" fill="rgb(236,42,29)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="39.5773%" y="2229" width="0.0810%" height="15" fill="rgb(244,190,27)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2239.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="39.5773%" y="2213" width="0.0810%" height="15" fill="rgb(217,117,42)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="39.5773%" y="2197" width="0.0810%" height="15" fill="rgb(254,120,3)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="39.5773%" y="2181" width="0.0810%" height="15" fill="rgb(250,203,39)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="39.5773%" y="2165" width="0.0810%" height="15" fill="rgb(217,204,25)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="39.5773%" y="2149" width="0.0810%" height="15" fill="rgb(221,136,37)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="39.5773%" y="2133" width="0.0810%" height="15" fill="rgb(250,192,29)" fg:x="9288" fg:w="19"/><text x="39.8273%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="39.6071%" y="2117" width="0.0511%" height="15" fill="rgb(224,199,28)" fg:x="9295" fg:w="12"/><text x="39.8571%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="39.6071%" y="2101" width="0.0511%" height="15" fill="rgb(251,60,10)" fg:x="9295" fg:w="12"/><text x="39.8571%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="39.6071%" y="2085" width="0.0511%" height="15" fill="rgb(216,140,31)" fg:x="9295" fg:w="12"/><text x="39.8571%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="39.6583%" y="2117" width="0.0128%" height="15" fill="rgb(219,222,0)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="39.6583%" y="2101" width="0.0128%" height="15" fill="rgb(237,19,17)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="39.6583%" y="2085" width="0.0128%" height="15" fill="rgb(230,52,7)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="39.6583%" y="2069" width="0.0128%" height="15" fill="rgb(221,166,40)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="39.6583%" y="2053" width="0.0128%" height="15" fill="rgb(230,175,26)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="39.6583%" y="2037" width="0.0128%" height="15" fill="rgb(238,36,2)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="39.6583%" y="2021" width="0.0128%" height="15" fill="rgb(248,151,19)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6583%" y="2005" width="0.0128%" height="15" fill="rgb(205,181,9)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="39.6583%" y="1989" width="0.0128%" height="15" fill="rgb(250,148,7)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.6583%" y="1973" width="0.0128%" height="15" fill="rgb(240,170,54)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6583%" y="1957" width="0.0128%" height="15" fill="rgb(235,42,51)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="39.6583%" y="1941" width="0.0128%" height="15" fill="rgb(234,149,45)" fg:x="9307" fg:w="3"/><text x="39.9083%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="39.6710%" y="2069" width="0.0128%" height="15" fill="rgb(210,208,35)" fg:x="9310" fg:w="3"/><text x="39.9210%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6710%" y="2053" width="0.0128%" height="15" fill="rgb(215,51,54)" fg:x="9310" fg:w="3"/><text x="39.9210%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6710%" y="2037" width="0.0128%" height="15" fill="rgb(254,149,10)" fg:x="9310" fg:w="3"/><text x="39.9210%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.6710%" y="2021" width="0.0128%" height="15" fill="rgb(247,207,16)" fg:x="9310" fg:w="3"/><text x="39.9210%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="39.6710%" y="2005" width="0.0128%" height="15" fill="rgb(224,38,37)" fg:x="9310" fg:w="3"/><text x="39.9210%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.6710%" y="1989" width="0.0128%" height="15" fill="rgb(210,165,27)" fg:x="9310" fg:w="3"/><text x="39.9210%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="39.6710%" y="1973" width="0.0128%" height="15" fill="rgb(251,147,8)" fg:x="9310" fg:w="3"/><text x="39.9210%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="39.6838%" y="1829" width="0.0170%" height="15" fill="rgb(205,140,21)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="39.6838%" y="1813" width="0.0170%" height="15" fill="rgb(207,55,29)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="39.6838%" y="1797" width="0.0170%" height="15" fill="rgb(208,147,41)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="39.6838%" y="1781" width="0.0170%" height="15" fill="rgb(243,69,48)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="39.6838%" y="1765" width="0.0170%" height="15" fill="rgb(234,180,50)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="39.6838%" y="1749" width="0.0170%" height="15" fill="rgb(249,0,45)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="39.6838%" y="1733" width="0.0170%" height="15" fill="rgb(222,178,3)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="39.6838%" y="1717" width="0.0170%" height="15" fill="rgb(217,191,41)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="39.6838%" y="1701" width="0.0170%" height="15" fill="rgb(228,1,20)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="39.6838%" y="1685" width="0.0170%" height="15" fill="rgb(220,3,38)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="39.6838%" y="1669" width="0.0170%" height="15" fill="rgb(244,90,35)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="39.6838%" y="1653" width="0.0170%" height="15" fill="rgb(248,166,38)" fg:x="9313" fg:w="4"/><text x="39.9338%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="39.7009%" y="1781" width="0.0170%" height="15" fill="rgb(212,64,39)" fg:x="9317" fg:w="4"/><text x="39.9509%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="39.7009%" y="1765" width="0.0170%" height="15" fill="rgb(221,145,14)" fg:x="9317" fg:w="4"/><text x="39.9509%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="39.7009%" y="1749" width="0.0170%" height="15" fill="rgb(225,82,37)" fg:x="9317" fg:w="4"/><text x="39.9509%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.7009%" y="1733" width="0.0170%" height="15" fill="rgb(222,50,47)" fg:x="9317" fg:w="4"/><text x="39.9509%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="39.7009%" y="1717" width="0.0170%" height="15" fill="rgb(222,88,51)" fg:x="9317" fg:w="4"/><text x="39.9509%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.7009%" y="1701" width="0.0170%" height="15" fill="rgb(206,160,34)" fg:x="9317" fg:w="4"/><text x="39.9509%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="39.7009%" y="1685" width="0.0170%" height="15" fill="rgb(223,12,7)" fg:x="9317" fg:w="4"/><text x="39.9509%" y="1695.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="39.6838%" y="2069" width="0.0469%" height="15" fill="rgb(213,203,19)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="39.6838%" y="2053" width="0.0469%" height="15" fill="rgb(207,210,4)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="39.6838%" y="2037" width="0.0469%" height="15" fill="rgb(252,209,43)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="39.6838%" y="2021" width="0.0469%" height="15" fill="rgb(254,37,45)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="39.6838%" y="2005" width="0.0469%" height="15" fill="rgb(224,217,36)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="39.6838%" y="1989" width="0.0469%" height="15" fill="rgb(219,200,6)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="39.6838%" y="1973" width="0.0469%" height="15" fill="rgb(208,103,13)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="39.6838%" y="1957" width="0.0469%" height="15" fill="rgb(224,213,13)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1967.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="39.6838%" y="1941" width="0.0469%" height="15" fill="rgb(248,63,48)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="39.6838%" y="1925" width="0.0469%" height="15" fill="rgb(248,68,47)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="39.6838%" y="1909" width="0.0469%" height="15" fill="rgb(247,62,21)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="39.6838%" y="1893" width="0.0469%" height="15" fill="rgb(241,225,3)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="39.6838%" y="1877" width="0.0469%" height="15" fill="rgb(222,185,4)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="39.6838%" y="1861" width="0.0469%" height="15" fill="rgb(247,18,34)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="39.6838%" y="1845" width="0.0469%" height="15" fill="rgb(235,17,40)" fg:x="9313" fg:w="11"/><text x="39.9338%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="39.7009%" y="1829" width="0.0298%" height="15" fill="rgb(223,68,50)" fg:x="9317" fg:w="7"/><text x="39.9509%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.7009%" y="1813" width="0.0298%" height="15" fill="rgb(227,165,26)" fg:x="9317" fg:w="7"/><text x="39.9509%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="39.7009%" y="1797" width="0.0298%" height="15" fill="rgb(211,223,43)" fg:x="9317" fg:w="7"/><text x="39.9509%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="39.7179%" y="1781" width="0.0128%" height="15" fill="rgb(232,166,21)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="39.7179%" y="1765" width="0.0128%" height="15" fill="rgb(247,225,20)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1775.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="39.7179%" y="1749" width="0.0128%" height="15" fill="rgb(238,83,30)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="39.7179%" y="1733" width="0.0128%" height="15" fill="rgb(246,62,35)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="39.7179%" y="1717" width="0.0128%" height="15" fill="rgb(250,217,27)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="39.7179%" y="1701" width="0.0128%" height="15" fill="rgb(224,123,27)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="39.7179%" y="1685" width="0.0128%" height="15" fill="rgb(251,135,4)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.7179%" y="1669" width="0.0128%" height="15" fill="rgb(222,163,40)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="39.7179%" y="1653" width="0.0128%" height="15" fill="rgb(243,210,30)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.7179%" y="1637" width="0.0128%" height="15" fill="rgb(243,12,4)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="39.7179%" y="1621" width="0.0128%" height="15" fill="rgb(246,116,18)" fg:x="9321" fg:w="3"/><text x="39.9679%" y="1631.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="39.7307%" y="1765" width="0.0170%" height="15" fill="rgb(246,101,33)" fg:x="9324" fg:w="4"/><text x="39.9807%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="39.7307%" y="1749" width="0.0170%" height="15" fill="rgb(234,72,53)" fg:x="9324" fg:w="4"/><text x="39.9807%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="39.7307%" y="1733" width="0.0170%" height="15" fill="rgb(231,165,14)" fg:x="9324" fg:w="4"/><text x="39.9807%" y="1743.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="39.7307%" y="1717" width="0.0170%" height="15" fill="rgb(213,194,34)" fg:x="9324" fg:w="4"/><text x="39.9807%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="39.7307%" y="1941" width="0.0213%" height="15" fill="rgb(249,56,45)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="39.7307%" y="1925" width="0.0213%" height="15" fill="rgb(224,174,34)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="39.7307%" y="1909" width="0.0213%" height="15" fill="rgb(228,15,17)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="39.7307%" y="1893" width="0.0213%" height="15" fill="rgb(237,105,15)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="39.7307%" y="1877" width="0.0213%" height="15" fill="rgb(212,55,20)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="39.7307%" y="1861" width="0.0213%" height="15" fill="rgb(225,156,34)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="39.7307%" y="1845" width="0.0213%" height="15" fill="rgb(221,24,30)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="39.7307%" y="1829" width="0.0213%" height="15" fill="rgb(218,154,31)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="39.7307%" y="1813" width="0.0213%" height="15" fill="rgb(227,59,40)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="39.7307%" y="1797" width="0.0213%" height="15" fill="rgb(211,195,49)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="39.7307%" y="1781" width="0.0213%" height="15" fill="rgb(220,221,18)" fg:x="9324" fg:w="5"/><text x="39.9807%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (29 samples, 0.12%)</title><rect x="39.6583%" y="2357" width="0.1236%" height="15" fill="rgb(250,45,3)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (29 samples, 0.12%)</title><rect x="39.6583%" y="2341" width="0.1236%" height="15" fill="rgb(237,121,30)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (29 samples, 0.12%)</title><rect x="39.6583%" y="2325" width="0.1236%" height="15" fill="rgb(220,85,2)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (29 samples, 0.12%)</title><rect x="39.6583%" y="2309" width="0.1236%" height="15" fill="rgb(244,85,17)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (29 samples, 0.12%)</title><rect x="39.6583%" y="2293" width="0.1236%" height="15" fill="rgb(223,141,30)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (29 samples, 0.12%)</title><rect x="39.6583%" y="2277" width="0.1236%" height="15" fill="rgb(230,142,4)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29 samples, 0.12%)</title><rect x="39.6583%" y="2261" width="0.1236%" height="15" fill="rgb(234,96,13)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (29 samples, 0.12%)</title><rect x="39.6583%" y="2245" width="0.1236%" height="15" fill="rgb(209,32,46)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2255.50"></text></g><g><title>std::panicking::try (29 samples, 0.12%)</title><rect x="39.6583%" y="2229" width="0.1236%" height="15" fill="rgb(228,128,28)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (29 samples, 0.12%)</title><rect x="39.6583%" y="2213" width="0.1236%" height="15" fill="rgb(223,228,12)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (29 samples, 0.12%)</title><rect x="39.6583%" y="2197" width="0.1236%" height="15" fill="rgb(232,74,52)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (29 samples, 0.12%)</title><rect x="39.6583%" y="2181" width="0.1236%" height="15" fill="rgb(210,217,38)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (29 samples, 0.12%)</title><rect x="39.6583%" y="2165" width="0.1236%" height="15" fill="rgb(211,18,1)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="39.6583%" y="2149" width="0.1236%" height="15" fill="rgb(207,106,9)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="39.6583%" y="2133" width="0.1236%" height="15" fill="rgb(229,148,35)" fg:x="9307" fg:w="29"/><text x="39.9083%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="39.6710%" y="2117" width="0.1108%" height="15" fill="rgb(226,73,6)" fg:x="9310" fg:w="26"/><text x="39.9210%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="39.6710%" y="2101" width="0.1108%" height="15" fill="rgb(217,99,45)" fg:x="9310" fg:w="26"/><text x="39.9210%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="39.6710%" y="2085" width="0.1108%" height="15" fill="rgb(246,206,7)" fg:x="9310" fg:w="26"/><text x="39.9210%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="39.7307%" y="2069" width="0.0511%" height="15" fill="rgb(234,151,37)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="39.7307%" y="2053" width="0.0511%" height="15" fill="rgb(241,128,50)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="2063.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="39.7307%" y="2037" width="0.0511%" height="15" fill="rgb(251,188,36)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="39.7307%" y="2021" width="0.0511%" height="15" fill="rgb(253,207,43)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="39.7307%" y="2005" width="0.0511%" height="15" fill="rgb(244,145,23)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="39.7307%" y="1989" width="0.0511%" height="15" fill="rgb(238,0,27)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="39.7307%" y="1973" width="0.0511%" height="15" fill="rgb(215,17,8)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="39.7307%" y="1957" width="0.0511%" height="15" fill="rgb(223,19,43)" fg:x="9324" fg:w="12"/><text x="39.9807%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="39.7520%" y="1941" width="0.0298%" height="15" fill="rgb(253,203,9)" fg:x="9329" fg:w="7"/><text x="40.0020%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.7520%" y="1925" width="0.0298%" height="15" fill="rgb(236,138,14)" fg:x="9329" fg:w="7"/><text x="40.0020%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="39.7520%" y="1909" width="0.0298%" height="15" fill="rgb(207,82,21)" fg:x="9329" fg:w="7"/><text x="40.0020%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="39.7690%" y="1893" width="0.0128%" height="15" fill="rgb(213,48,38)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="39.7690%" y="1877" width="0.0128%" height="15" fill="rgb(217,110,2)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="39.7690%" y="1861" width="0.0128%" height="15" fill="rgb(212,25,23)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="39.7690%" y="1845" width="0.0128%" height="15" fill="rgb(222,133,14)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="39.7690%" y="1829" width="0.0128%" height="15" fill="rgb(223,148,28)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="39.7690%" y="1813" width="0.0128%" height="15" fill="rgb(254,50,47)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="39.7690%" y="1797" width="0.0128%" height="15" fill="rgb(232,128,39)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.7690%" y="1781" width="0.0128%" height="15" fill="rgb(236,38,10)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="39.7690%" y="1765" width="0.0128%" height="15" fill="rgb(229,169,36)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="39.7690%" y="1749" width="0.0128%" height="15" fill="rgb(210,23,49)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="39.7690%" y="1733" width="0.0128%" height="15" fill="rgb(233,48,5)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="39.7690%" y="1717" width="0.0128%" height="15" fill="rgb(231,53,18)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="39.7690%" y="1701" width="0.0128%" height="15" fill="rgb(227,151,17)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="39.7690%" y="1685" width="0.0128%" height="15" fill="rgb(253,147,53)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="39.7690%" y="1669" width="0.0128%" height="15" fill="rgb(212,194,41)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="39.7690%" y="1653" width="0.0128%" height="15" fill="rgb(254,78,48)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="39.7690%" y="1637" width="0.0128%" height="15" fill="rgb(233,146,46)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.7690%" y="1621" width="0.0128%" height="15" fill="rgb(227,208,4)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="39.7690%" y="1605" width="0.0128%" height="15" fill="rgb(208,189,15)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="39.7690%" y="1589" width="0.0128%" height="15" fill="rgb(208,142,27)" fg:x="9333" fg:w="3"/><text x="40.0190%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="39.7818%" y="2037" width="0.0128%" height="15" fill="rgb(223,110,28)" fg:x="9336" fg:w="3"/><text x="40.0318%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="39.7818%" y="2021" width="0.0128%" height="15" fill="rgb(246,134,46)" fg:x="9336" fg:w="3"/><text x="40.0318%" y="2031.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.7818%" y="2005" width="0.0128%" height="15" fill="rgb(239,215,17)" fg:x="9336" fg:w="3"/><text x="40.0318%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="39.7818%" y="2229" width="0.0256%" height="15" fill="rgb(232,168,20)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2239.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="39.7818%" y="2213" width="0.0256%" height="15" fill="rgb(228,9,42)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="39.7818%" y="2197" width="0.0256%" height="15" fill="rgb(215,6,53)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="39.7818%" y="2181" width="0.0256%" height="15" fill="rgb(252,221,33)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="39.7818%" y="2165" width="0.0256%" height="15" fill="rgb(240,222,13)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="39.7818%" y="2149" width="0.0256%" height="15" fill="rgb(238,200,0)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="39.7818%" y="2133" width="0.0256%" height="15" fill="rgb(220,98,45)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="39.7818%" y="2117" width="0.0256%" height="15" fill="rgb(211,189,26)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="39.7818%" y="2101" width="0.0256%" height="15" fill="rgb(232,34,11)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="39.7818%" y="2085" width="0.0256%" height="15" fill="rgb(247,112,13)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="39.7818%" y="2069" width="0.0256%" height="15" fill="rgb(242,105,13)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="39.7818%" y="2053" width="0.0256%" height="15" fill="rgb(246,227,12)" fg:x="9336" fg:w="6"/><text x="40.0318%" y="2063.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="39.8117%" y="1925" width="0.0170%" height="15" fill="rgb(231,145,18)" fg:x="9343" fg:w="4"/><text x="40.0617%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="39.8117%" y="1909" width="0.0170%" height="15" fill="rgb(252,92,42)" fg:x="9343" fg:w="4"/><text x="40.0617%" y="1919.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="39.8117%" y="1893" width="0.0170%" height="15" fill="rgb(223,166,28)" fg:x="9343" fg:w="4"/><text x="40.0617%" y="1903.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.8159%" y="1877" width="0.0128%" height="15" fill="rgb(224,215,36)" fg:x="9344" fg:w="3"/><text x="40.0659%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="39.8287%" y="1925" width="0.0170%" height="15" fill="rgb(208,137,21)" fg:x="9347" fg:w="4"/><text x="40.0787%" y="1935.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="39.8287%" y="1909" width="0.0170%" height="15" fill="rgb(251,34,16)" fg:x="9347" fg:w="4"/><text x="40.0787%" y="1919.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="39.8117%" y="1941" width="0.0384%" height="15" fill="rgb(243,11,23)" fg:x="9343" fg:w="9"/><text x="40.0617%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="39.8074%" y="2117" width="0.0469%" height="15" fill="rgb(244,116,36)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="39.8074%" y="2101" width="0.0469%" height="15" fill="rgb(249,192,29)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (11 samples, 0.05%)</title><rect x="39.8074%" y="2085" width="0.0469%" height="15" fill="rgb(252,197,53)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (11 samples, 0.05%)</title><rect x="39.8074%" y="2069" width="0.0469%" height="15" fill="rgb(210,96,49)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (11 samples, 0.05%)</title><rect x="39.8074%" y="2053" width="0.0469%" height="15" fill="rgb(210,96,8)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (11 samples, 0.05%)</title><rect x="39.8074%" y="2037" width="0.0469%" height="15" fill="rgb(242,17,38)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (11 samples, 0.05%)</title><rect x="39.8074%" y="2021" width="0.0469%" height="15" fill="rgb(209,100,53)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (11 samples, 0.05%)</title><rect x="39.8074%" y="2005" width="0.0469%" height="15" fill="rgb(232,16,5)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (11 samples, 0.05%)</title><rect x="39.8074%" y="1989" width="0.0469%" height="15" fill="rgb(217,118,16)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="39.8074%" y="1973" width="0.0469%" height="15" fill="rgb(230,200,15)" fg:x="9342" fg:w="11"/><text x="40.0574%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (10 samples, 0.04%)</title><rect x="39.8117%" y="1957" width="0.0426%" height="15" fill="rgb(253,17,33)" fg:x="9343" fg:w="10"/><text x="40.0617%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="39.8543%" y="2005" width="0.0128%" height="15" fill="rgb(236,220,44)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="39.8543%" y="1989" width="0.0128%" height="15" fill="rgb(233,103,31)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="39.8543%" y="1973" width="0.0128%" height="15" fill="rgb(207,8,23)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="39.8543%" y="1957" width="0.0128%" height="15" fill="rgb(246,206,33)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="39.8543%" y="1941" width="0.0128%" height="15" fill="rgb(238,159,35)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="39.8543%" y="1925" width="0.0128%" height="15" fill="rgb(240,214,6)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="39.8543%" y="1909" width="0.0128%" height="15" fill="rgb(242,99,46)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="39.8543%" y="1893" width="0.0128%" height="15" fill="rgb(244,168,14)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="39.8543%" y="1877" width="0.0128%" height="15" fill="rgb(219,122,16)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.8543%" y="1861" width="0.0128%" height="15" fill="rgb(214,89,18)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="39.8543%" y="1845" width="0.0128%" height="15" fill="rgb(216,8,40)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="39.8543%" y="1829" width="0.0128%" height="15" fill="rgb(244,143,47)" fg:x="9353" fg:w="3"/><text x="40.1043%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="39.8543%" y="2069" width="0.0256%" height="15" fill="rgb(213,94,3)" fg:x="9353" fg:w="6"/><text x="40.1043%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="39.8543%" y="2053" width="0.0256%" height="15" fill="rgb(220,200,26)" fg:x="9353" fg:w="6"/><text x="40.1043%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="39.8543%" y="2037" width="0.0256%" height="15" fill="rgb(217,42,26)" fg:x="9353" fg:w="6"/><text x="40.1043%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.8543%" y="2021" width="0.0256%" height="15" fill="rgb(210,129,53)" fg:x="9353" fg:w="6"/><text x="40.1043%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="39.8671%" y="2005" width="0.0128%" height="15" fill="rgb(206,14,14)" fg:x="9356" fg:w="3"/><text x="40.1171%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.8671%" y="1989" width="0.0128%" height="15" fill="rgb(226,57,23)" fg:x="9356" fg:w="3"/><text x="40.1171%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="39.8671%" y="1973" width="0.0128%" height="15" fill="rgb(215,116,31)" fg:x="9356" fg:w="3"/><text x="40.1171%" y="1983.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="39.8074%" y="2181" width="0.0937%" height="15" fill="rgb(218,138,13)" fg:x="9342" fg:w="22"/><text x="40.0574%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="39.8074%" y="2165" width="0.0937%" height="15" fill="rgb(231,192,34)" fg:x="9342" fg:w="22"/><text x="40.0574%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="39.8074%" y="2149" width="0.0937%" height="15" fill="rgb(234,120,36)" fg:x="9342" fg:w="22"/><text x="40.0574%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="39.8074%" y="2133" width="0.0937%" height="15" fill="rgb(206,76,7)" fg:x="9342" fg:w="22"/><text x="40.0574%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="39.8543%" y="2117" width="0.0469%" height="15" fill="rgb(238,39,43)" fg:x="9353" fg:w="11"/><text x="40.1043%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="39.8543%" y="2101" width="0.0469%" height="15" fill="rgb(226,138,47)" fg:x="9353" fg:w="11"/><text x="40.1043%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="39.8543%" y="2085" width="0.0469%" height="15" fill="rgb(233,67,17)" fg:x="9353" fg:w="11"/><text x="40.1043%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="39.8798%" y="2069" width="0.0213%" height="15" fill="rgb(224,49,5)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="39.8798%" y="2053" width="0.0213%" height="15" fill="rgb(231,227,13)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="2063.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="39.8798%" y="2037" width="0.0213%" height="15" fill="rgb(242,198,8)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="39.8798%" y="2021" width="0.0213%" height="15" fill="rgb(209,155,21)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="39.8798%" y="2005" width="0.0213%" height="15" fill="rgb(230,70,4)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="39.8798%" y="1989" width="0.0213%" height="15" fill="rgb(214,173,46)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="39.8798%" y="1973" width="0.0213%" height="15" fill="rgb(214,43,32)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.8798%" y="1957" width="0.0213%" height="15" fill="rgb(207,135,11)" fg:x="9359" fg:w="5"/><text x="40.1298%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="39.8841%" y="1941" width="0.0170%" height="15" fill="rgb(244,187,44)" fg:x="9360" fg:w="4"/><text x="40.1341%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.8841%" y="1925" width="0.0170%" height="15" fill="rgb(229,78,0)" fg:x="9360" fg:w="4"/><text x="40.1341%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="39.8841%" y="1909" width="0.0170%" height="15" fill="rgb(229,104,35)" fg:x="9360" fg:w="4"/><text x="40.1341%" y="1919.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="39.9011%" y="1861" width="0.0128%" height="15" fill="rgb(217,115,0)" fg:x="9364" fg:w="3"/><text x="40.1511%" y="1871.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="39.9011%" y="1845" width="0.0128%" height="15" fill="rgb(229,209,9)" fg:x="9364" fg:w="3"/><text x="40.1511%" y="1855.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.9011%" y="1829" width="0.0128%" height="15" fill="rgb(228,227,31)" fg:x="9364" fg:w="3"/><text x="40.1511%" y="1839.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.9011%" y="1813" width="0.0128%" height="15" fill="rgb(224,174,52)" fg:x="9364" fg:w="3"/><text x="40.1511%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="39.9011%" y="2053" width="0.0298%" height="15" fill="rgb(206,112,41)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="39.9011%" y="2037" width="0.0298%" height="15" fill="rgb(248,108,7)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="39.9011%" y="2021" width="0.0298%" height="15" fill="rgb(213,85,41)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="39.9011%" y="2005" width="0.0298%" height="15" fill="rgb(212,200,37)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="39.9011%" y="1989" width="0.0298%" height="15" fill="rgb(241,125,1)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="39.9011%" y="1973" width="0.0298%" height="15" fill="rgb(242,189,29)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="39.9011%" y="1957" width="0.0298%" height="15" fill="rgb(233,58,18)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="39.9011%" y="1941" width="0.0298%" height="15" fill="rgb(230,19,35)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="39.9011%" y="1925" width="0.0298%" height="15" fill="rgb(248,142,5)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="39.9011%" y="1909" width="0.0298%" height="15" fill="rgb(233,53,33)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="39.9011%" y="1893" width="0.0298%" height="15" fill="rgb(226,207,8)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="39.9011%" y="1877" width="0.0298%" height="15" fill="rgb(242,102,45)" fg:x="9364" fg:w="7"/><text x="40.1511%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="39.9139%" y="1861" width="0.0170%" height="15" fill="rgb(223,195,48)" fg:x="9367" fg:w="4"/><text x="40.1639%" y="1871.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="39.9139%" y="1845" width="0.0170%" height="15" fill="rgb(215,175,4)" fg:x="9367" fg:w="4"/><text x="40.1639%" y="1855.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="39.9310%" y="2005" width="0.0298%" height="15" fill="rgb(234,170,1)" fg:x="9371" fg:w="7"/><text x="40.1810%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="39.9310%" y="1989" width="0.0298%" height="15" fill="rgb(213,66,5)" fg:x="9371" fg:w="7"/><text x="40.1810%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="39.9310%" y="1973" width="0.0298%" height="15" fill="rgb(211,84,43)" fg:x="9371" fg:w="7"/><text x="40.1810%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="39.9310%" y="1957" width="0.0298%" height="15" fill="rgb(222,222,10)" fg:x="9371" fg:w="7"/><text x="40.1810%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="39.9395%" y="1941" width="0.0213%" height="15" fill="rgb(238,218,37)" fg:x="9373" fg:w="5"/><text x="40.1895%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.9395%" y="1925" width="0.0213%" height="15" fill="rgb(222,154,16)" fg:x="9373" fg:w="5"/><text x="40.1895%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="39.9395%" y="1909" width="0.0213%" height="15" fill="rgb(227,80,41)" fg:x="9373" fg:w="5"/><text x="40.1895%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="39.9480%" y="1893" width="0.0128%" height="15" fill="rgb(231,186,2)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="39.9480%" y="1877" width="0.0128%" height="15" fill="rgb(206,196,48)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="39.9480%" y="1861" width="0.0128%" height="15" fill="rgb(209,177,1)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="39.9480%" y="1845" width="0.0128%" height="15" fill="rgb(205,32,8)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="39.9480%" y="1829" width="0.0128%" height="15" fill="rgb(209,221,5)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="39.9480%" y="1813" width="0.0128%" height="15" fill="rgb(252,118,53)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="39.9480%" y="1797" width="0.0128%" height="15" fill="rgb(241,38,13)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.9480%" y="1781" width="0.0128%" height="15" fill="rgb(222,137,23)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="39.9480%" y="1765" width="0.0128%" height="15" fill="rgb(220,57,34)" fg:x="9375" fg:w="3"/><text x="40.1980%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="39.9651%" y="1765" width="0.0213%" height="15" fill="rgb(212,111,46)" fg:x="9379" fg:w="5"/><text x="40.2151%" y="1775.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="39.9736%" y="1749" width="0.0128%" height="15" fill="rgb(220,139,25)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1759.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="39.9736%" y="1733" width="0.0128%" height="15" fill="rgb(217,120,24)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="39.9736%" y="1717" width="0.0128%" height="15" fill="rgb(234,147,28)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1727.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="39.9736%" y="1701" width="0.0128%" height="15" fill="rgb(250,44,4)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1711.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="39.9736%" y="1685" width="0.0128%" height="15" fill="rgb(245,7,12)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1695.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="39.9736%" y="1669" width="0.0128%" height="15" fill="rgb(216,63,17)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1679.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="39.9736%" y="1653" width="0.0128%" height="15" fill="rgb(210,1,51)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1663.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="39.9736%" y="1637" width="0.0128%" height="15" fill="rgb(254,192,36)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1647.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="39.9736%" y="1621" width="0.0128%" height="15" fill="rgb(222,32,20)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1631.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="39.9736%" y="1605" width="0.0128%" height="15" fill="rgb(225,226,26)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1615.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="39.9736%" y="1589" width="0.0128%" height="15" fill="rgb(233,116,6)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1599.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="39.9736%" y="1573" width="0.0128%" height="15" fill="rgb(231,44,46)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1583.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="39.9736%" y="1557" width="0.0128%" height="15" fill="rgb(234,90,22)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1567.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="39.9736%" y="1541" width="0.0128%" height="15" fill="rgb(214,20,33)" fg:x="9381" fg:w="3"/><text x="40.2236%" y="1551.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="39.9651%" y="1829" width="0.0256%" height="15" fill="rgb(248,164,10)" fg:x="9379" fg:w="6"/><text x="40.2151%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="39.9651%" y="1813" width="0.0256%" height="15" fill="rgb(215,148,44)" fg:x="9379" fg:w="6"/><text x="40.2151%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="39.9651%" y="1797" width="0.0256%" height="15" fill="rgb(227,44,50)" fg:x="9379" fg:w="6"/><text x="40.2151%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.9651%" y="1781" width="0.0256%" height="15" fill="rgb(230,124,7)" fg:x="9379" fg:w="6"/><text x="40.2151%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (116 samples, 0.49%)</title><rect x="39.5134%" y="2645" width="0.4943%" height="15" fill="rgb(216,126,50)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (116 samples, 0.49%)</title><rect x="39.5134%" y="2629" width="0.4943%" height="15" fill="rgb(219,102,3)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (116 samples, 0.49%)</title><rect x="39.5134%" y="2613" width="0.4943%" height="15" fill="rgb(219,88,0)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (116 samples, 0.49%)</title><rect x="39.5134%" y="2597" width="0.4943%" height="15" fill="rgb(231,99,44)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (116 samples, 0.49%)</title><rect x="39.5134%" y="2581" width="0.4943%" height="15" fill="rgb(226,111,5)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (116 samples, 0.49%)</title><rect x="39.5134%" y="2565" width="0.4943%" height="15" fill="rgb(219,227,16)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (116 samples, 0.49%)</title><rect x="39.5134%" y="2549" width="0.4943%" height="15" fill="rgb(253,200,38)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (116 samples, 0.49%)</title><rect x="39.5134%" y="2533" width="0.4943%" height="15" fill="rgb(219,146,13)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2543.50"></text></g><g><title>std::panicking::try (116 samples, 0.49%)</title><rect x="39.5134%" y="2517" width="0.4943%" height="15" fill="rgb(242,86,6)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (116 samples, 0.49%)</title><rect x="39.5134%" y="2501" width="0.4943%" height="15" fill="rgb(248,219,8)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (116 samples, 0.49%)</title><rect x="39.5134%" y="2485" width="0.4943%" height="15" fill="rgb(243,162,20)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (116 samples, 0.49%)</title><rect x="39.5134%" y="2469" width="0.4943%" height="15" fill="rgb(239,176,23)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (116 samples, 0.49%)</title><rect x="39.5134%" y="2453" width="0.4943%" height="15" fill="rgb(248,130,26)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (116 samples, 0.49%)</title><rect x="39.5134%" y="2437" width="0.4943%" height="15" fill="rgb(219,73,44)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (116 samples, 0.49%)</title><rect x="39.5134%" y="2421" width="0.4943%" height="15" fill="rgb(208,115,47)" fg:x="9273" fg:w="116"/><text x="39.7634%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (110 samples, 0.47%)</title><rect x="39.5389%" y="2405" width="0.4687%" height="15" fill="rgb(207,157,19)" fg:x="9279" fg:w="110"/><text x="39.7889%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (110 samples, 0.47%)</title><rect x="39.5389%" y="2389" width="0.4687%" height="15" fill="rgb(211,176,3)" fg:x="9279" fg:w="110"/><text x="39.7889%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (110 samples, 0.47%)</title><rect x="39.5389%" y="2373" width="0.4687%" height="15" fill="rgb(230,201,30)" fg:x="9279" fg:w="110"/><text x="39.7889%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (53 samples, 0.23%)</title><rect x="39.7818%" y="2357" width="0.2258%" height="15" fill="rgb(205,44,43)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (53 samples, 0.23%)</title><rect x="39.7818%" y="2341" width="0.2258%" height="15" fill="rgb(210,38,1)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2351.50"></text></g><g><title>std::panicking::try (53 samples, 0.23%)</title><rect x="39.7818%" y="2325" width="0.2258%" height="15" fill="rgb(207,111,0)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (53 samples, 0.23%)</title><rect x="39.7818%" y="2309" width="0.2258%" height="15" fill="rgb(239,42,2)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (53 samples, 0.23%)</title><rect x="39.7818%" y="2293" width="0.2258%" height="15" fill="rgb(233,16,48)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (53 samples, 0.23%)</title><rect x="39.7818%" y="2277" width="0.2258%" height="15" fill="rgb(225,28,24)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (53 samples, 0.23%)</title><rect x="39.7818%" y="2261" width="0.2258%" height="15" fill="rgb(215,150,30)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.23%)</title><rect x="39.7818%" y="2245" width="0.2258%" height="15" fill="rgb(215,131,38)" fg:x="9336" fg:w="53"/><text x="40.0318%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (47 samples, 0.20%)</title><rect x="39.8074%" y="2229" width="0.2003%" height="15" fill="rgb(237,93,18)" fg:x="9342" fg:w="47"/><text x="40.0574%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (47 samples, 0.20%)</title><rect x="39.8074%" y="2213" width="0.2003%" height="15" fill="rgb(221,173,29)" fg:x="9342" fg:w="47"/><text x="40.0574%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (47 samples, 0.20%)</title><rect x="39.8074%" y="2197" width="0.2003%" height="15" fill="rgb(211,38,31)" fg:x="9342" fg:w="47"/><text x="40.0574%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (25 samples, 0.11%)</title><rect x="39.9011%" y="2181" width="0.1065%" height="15" fill="rgb(232,184,21)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (25 samples, 0.11%)</title><rect x="39.9011%" y="2165" width="0.1065%" height="15" fill="rgb(209,9,4)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2175.50"></text></g><g><title>std::panicking::try (25 samples, 0.11%)</title><rect x="39.9011%" y="2149" width="0.1065%" height="15" fill="rgb(222,187,5)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (25 samples, 0.11%)</title><rect x="39.9011%" y="2133" width="0.1065%" height="15" fill="rgb(219,60,41)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (25 samples, 0.11%)</title><rect x="39.9011%" y="2117" width="0.1065%" height="15" fill="rgb(223,57,18)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (25 samples, 0.11%)</title><rect x="39.9011%" y="2101" width="0.1065%" height="15" fill="rgb(238,52,23)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="39.9011%" y="2085" width="0.1065%" height="15" fill="rgb(205,64,43)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="39.9011%" y="2069" width="0.1065%" height="15" fill="rgb(206,137,10)" fg:x="9364" fg:w="25"/><text x="40.1511%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="39.9310%" y="2053" width="0.0767%" height="15" fill="rgb(208,102,7)" fg:x="9371" fg:w="18"/><text x="40.1810%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="39.9310%" y="2037" width="0.0767%" height="15" fill="rgb(232,196,18)" fg:x="9371" fg:w="18"/><text x="40.1810%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="39.9310%" y="2021" width="0.0767%" height="15" fill="rgb(249,84,40)" fg:x="9371" fg:w="18"/><text x="40.1810%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="39.9608%" y="2005" width="0.0469%" height="15" fill="rgb(249,11,6)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="39.9608%" y="1989" width="0.0469%" height="15" fill="rgb(223,57,24)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="1999.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="39.9608%" y="1973" width="0.0469%" height="15" fill="rgb(254,169,36)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="39.9608%" y="1957" width="0.0469%" height="15" fill="rgb(231,127,50)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="39.9608%" y="1941" width="0.0469%" height="15" fill="rgb(211,66,37)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="39.9608%" y="1925" width="0.0469%" height="15" fill="rgb(206,180,23)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="39.9608%" y="1909" width="0.0469%" height="15" fill="rgb(211,178,21)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="39.9608%" y="1893" width="0.0469%" height="15" fill="rgb(246,210,28)" fg:x="9378" fg:w="11"/><text x="40.2108%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="39.9651%" y="1877" width="0.0426%" height="15" fill="rgb(225,103,5)" fg:x="9379" fg:w="10"/><text x="40.2151%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="39.9651%" y="1861" width="0.0426%" height="15" fill="rgb(237,22,42)" fg:x="9379" fg:w="10"/><text x="40.2151%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="39.9651%" y="1845" width="0.0426%" height="15" fill="rgb(217,143,46)" fg:x="9379" fg:w="10"/><text x="40.2151%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="39.9906%" y="1829" width="0.0170%" height="15" fill="rgb(206,25,14)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="39.9906%" y="1813" width="0.0170%" height="15" fill="rgb(238,138,36)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1823.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="39.9906%" y="1797" width="0.0170%" height="15" fill="rgb(209,50,33)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="39.9906%" y="1781" width="0.0170%" height="15" fill="rgb(209,71,25)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="39.9906%" y="1765" width="0.0170%" height="15" fill="rgb(246,185,33)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="39.9906%" y="1749" width="0.0170%" height="15" fill="rgb(224,18,8)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="39.9906%" y="1733" width="0.0170%" height="15" fill="rgb(249,164,15)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.9906%" y="1717" width="0.0170%" height="15" fill="rgb(208,115,31)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="39.9906%" y="1701" width="0.0170%" height="15" fill="rgb(235,156,46)" fg:x="9385" fg:w="4"/><text x="40.2406%" y="1711.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (35 samples, 0.15%)</title><rect x="40.0162%" y="2325" width="0.1491%" height="15" fill="rgb(236,155,11)" fg:x="9391" fg:w="35"/><text x="40.2662%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::exp (35 samples, 0.15%)</title><rect x="40.0162%" y="2309" width="0.1491%" height="15" fill="rgb(207,116,10)" fg:x="9391" fg:w="35"/><text x="40.2662%" y="2319.50"></text></g><g><title>exp (34 samples, 0.14%)</title><rect x="40.0205%" y="2293" width="0.1449%" height="15" fill="rgb(248,155,1)" fg:x="9392" fg:w="34"/><text x="40.2705%" y="2303.50"></text></g><g><title>[libm.so.6] (26 samples, 0.11%)</title><rect x="40.0545%" y="2277" width="0.1108%" height="15" fill="rgb(214,181,20)" fg:x="9400" fg:w="26"/><text x="40.3045%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (14 samples, 0.06%)</title><rect x="40.1653%" y="2325" width="0.0597%" height="15" fill="rgb(237,120,33)" fg:x="9426" fg:w="14"/><text x="40.4153%" y="2335.50"></text></g><g><title>core::f64::<impl f64>::recip (14 samples, 0.06%)</title><rect x="40.1653%" y="2309" width="0.0597%" height="15" fill="rgb(237,155,54)" fg:x="9426" fg:w="14"/><text x="40.4153%" y="2319.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (62 samples, 0.26%)</title><rect x="40.0162%" y="2341" width="0.2642%" height="15" fill="rgb(210,169,0)" fg:x="9391" fg:w="62"/><text x="40.2662%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (13 samples, 0.06%)</title><rect x="40.2250%" y="2325" width="0.0554%" height="15" fill="rgb(220,181,5)" fg:x="9440" fg:w="13"/><text x="40.4750%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::sqrt (13 samples, 0.06%)</title><rect x="40.2250%" y="2309" width="0.0554%" height="15" fill="rgb(235,196,10)" fg:x="9440" fg:w="13"/><text x="40.4750%" y="2319.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (69 samples, 0.29%)</title><rect x="40.0077%" y="2501" width="0.2940%" height="15" fill="rgb(212,39,40)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (69 samples, 0.29%)</title><rect x="40.0077%" y="2485" width="0.2940%" height="15" fill="rgb(222,102,32)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (69 samples, 0.29%)</title><rect x="40.0077%" y="2469" width="0.2940%" height="15" fill="rgb(244,169,54)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (69 samples, 0.29%)</title><rect x="40.0077%" y="2453" width="0.2940%" height="15" fill="rgb(217,18,39)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (69 samples, 0.29%)</title><rect x="40.0077%" y="2437" width="0.2940%" height="15" fill="rgb(244,176,12)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (69 samples, 0.29%)</title><rect x="40.0077%" y="2421" width="0.2940%" height="15" fill="rgb(221,139,2)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (69 samples, 0.29%)</title><rect x="40.0077%" y="2405" width="0.2940%" height="15" fill="rgb(251,172,37)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (69 samples, 0.29%)</title><rect x="40.0077%" y="2389" width="0.2940%" height="15" fill="rgb(252,191,21)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (69 samples, 0.29%)</title><rect x="40.0077%" y="2373" width="0.2940%" height="15" fill="rgb(211,54,20)" fg:x="9389" fg:w="69"/><text x="40.2577%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (67 samples, 0.29%)</title><rect x="40.0162%" y="2357" width="0.2855%" height="15" fill="rgb(249,181,19)" fg:x="9391" fg:w="67"/><text x="40.2662%" y="2367.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (5 samples, 0.02%)</title><rect x="40.2804%" y="2341" width="0.0213%" height="15" fill="rgb(228,67,33)" fg:x="9453" fg:w="5"/><text x="40.5304%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="40.3059%" y="2277" width="0.0170%" height="15" fill="rgb(253,107,27)" fg:x="9459" fg:w="4"/><text x="40.5559%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="40.3102%" y="2261" width="0.0128%" height="15" fill="rgb(222,211,11)" fg:x="9460" fg:w="3"/><text x="40.5602%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (79 samples, 0.34%)</title><rect x="40.0077%" y="2517" width="0.3366%" height="15" fill="rgb(239,54,13)" fg:x="9389" fg:w="79"/><text x="40.2577%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="40.3017%" y="2501" width="0.0426%" height="15" fill="rgb(217,33,53)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2511.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="40.3017%" y="2485" width="0.0426%" height="15" fill="rgb(207,55,30)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="40.3017%" y="2469" width="0.0426%" height="15" fill="rgb(233,153,44)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="40.3017%" y="2453" width="0.0426%" height="15" fill="rgb(242,203,44)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2463.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="40.3017%" y="2437" width="0.0426%" height="15" fill="rgb(206,45,29)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2447.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="40.3017%" y="2421" width="0.0426%" height="15" fill="rgb(217,24,35)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="40.3017%" y="2405" width="0.0426%" height="15" fill="rgb(237,222,41)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2415.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="40.3017%" y="2389" width="0.0426%" height="15" fill="rgb(245,85,7)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2399.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="40.3017%" y="2373" width="0.0426%" height="15" fill="rgb(243,154,9)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2383.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (10 samples, 0.04%)</title><rect x="40.3017%" y="2357" width="0.0426%" height="15" fill="rgb(243,6,29)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (10 samples, 0.04%)</title><rect x="40.3017%" y="2341" width="0.0426%" height="15" fill="rgb(223,179,54)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2351.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (10 samples, 0.04%)</title><rect x="40.3017%" y="2325" width="0.0426%" height="15" fill="rgb(205,163,6)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (10 samples, 0.04%)</title><rect x="40.3017%" y="2309" width="0.0426%" height="15" fill="rgb(243,41,33)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (10 samples, 0.04%)</title><rect x="40.3017%" y="2293" width="0.0426%" height="15" fill="rgb(216,71,23)" fg:x="9458" fg:w="10"/><text x="40.5517%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="40.3230%" y="2277" width="0.0213%" height="15" fill="rgb(224,74,40)" fg:x="9463" fg:w="5"/><text x="40.5730%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="40.3315%" y="2261" width="0.0128%" height="15" fill="rgb(232,128,50)" fg:x="9465" fg:w="3"/><text x="40.5815%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="40.3315%" y="2245" width="0.0128%" height="15" fill="rgb(239,21,34)" fg:x="9465" fg:w="3"/><text x="40.5815%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (69 samples, 0.29%)</title><rect x="40.3486%" y="2213" width="0.2940%" height="15" fill="rgb(240,71,14)" fg:x="9469" fg:w="69"/><text x="40.5986%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (69 samples, 0.29%)</title><rect x="40.3486%" y="2197" width="0.2940%" height="15" fill="rgb(212,130,4)" fg:x="9469" fg:w="69"/><text x="40.5986%" y="2207.50"></text></g><g><title>exp (65 samples, 0.28%)</title><rect x="40.3656%" y="2181" width="0.2770%" height="15" fill="rgb(239,37,7)" fg:x="9473" fg:w="65"/><text x="40.6156%" y="2191.50"></text></g><g><title>[libm.so.6] (45 samples, 0.19%)</title><rect x="40.4508%" y="2165" width="0.1918%" height="15" fill="rgb(215,70,20)" fg:x="9493" fg:w="45"/><text x="40.7008%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (41 samples, 0.17%)</title><rect x="40.6468%" y="2213" width="0.1747%" height="15" fill="rgb(245,150,12)" fg:x="9539" fg:w="41"/><text x="40.8968%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (41 samples, 0.17%)</title><rect x="40.6468%" y="2197" width="0.1747%" height="15" fill="rgb(227,42,9)" fg:x="9539" fg:w="41"/><text x="40.8968%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (147 samples, 0.63%)</title><rect x="40.3443%" y="2229" width="0.6264%" height="15" fill="rgb(242,68,24)" fg:x="9468" fg:w="147"/><text x="40.5943%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (35 samples, 0.15%)</title><rect x="40.8215%" y="2213" width="0.1491%" height="15" fill="rgb(222,195,5)" fg:x="9580" fg:w="35"/><text x="41.0715%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (35 samples, 0.15%)</title><rect x="40.8215%" y="2197" width="0.1491%" height="15" fill="rgb(238,22,0)" fg:x="9580" fg:w="35"/><text x="41.0715%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (152 samples, 0.65%)</title><rect x="40.3443%" y="2389" width="0.6477%" height="15" fill="rgb(215,216,48)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (152 samples, 0.65%)</title><rect x="40.3443%" y="2373" width="0.6477%" height="15" fill="rgb(215,89,30)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (152 samples, 0.65%)</title><rect x="40.3443%" y="2357" width="0.6477%" height="15" fill="rgb(216,107,37)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (152 samples, 0.65%)</title><rect x="40.3443%" y="2341" width="0.6477%" height="15" fill="rgb(221,1,2)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (152 samples, 0.65%)</title><rect x="40.3443%" y="2325" width="0.6477%" height="15" fill="rgb(252,111,42)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (152 samples, 0.65%)</title><rect x="40.3443%" y="2309" width="0.6477%" height="15" fill="rgb(234,97,8)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (152 samples, 0.65%)</title><rect x="40.3443%" y="2293" width="0.6477%" height="15" fill="rgb(215,61,6)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (152 samples, 0.65%)</title><rect x="40.3443%" y="2277" width="0.6477%" height="15" fill="rgb(231,135,10)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (152 samples, 0.65%)</title><rect x="40.3443%" y="2261" width="0.6477%" height="15" fill="rgb(235,13,14)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (152 samples, 0.65%)</title><rect x="40.3443%" y="2245" width="0.6477%" height="15" fill="rgb(254,94,38)" fg:x="9468" fg:w="152"/><text x="40.5943%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (5 samples, 0.02%)</title><rect x="40.9707%" y="2229" width="0.0213%" height="15" fill="rgb(228,112,37)" fg:x="9615" fg:w="5"/><text x="41.2207%" y="2239.50"></text></g><g><title>criterion::analysis::compare::t_test::_{{closure}} (3 samples, 0.01%)</title><rect x="40.9920%" y="2229" width="0.0128%" height="15" fill="rgb(209,127,20)" fg:x="9620" fg:w="3"/><text x="41.2420%" y="2239.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::t (3 samples, 0.01%)</title><rect x="40.9920%" y="2213" width="0.0128%" height="15" fill="rgb(244,4,14)" fg:x="9620" fg:w="3"/><text x="41.2420%" y="2223.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="40.9920%" y="2245" width="0.0384%" height="15" fill="rgb(236,200,53)" fg:x="9620" fg:w="9"/><text x="41.2420%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (6 samples, 0.03%)</title><rect x="41.0048%" y="2229" width="0.0256%" height="15" fill="rgb(237,217,1)" fg:x="9623" fg:w="6"/><text x="41.2548%" y="2239.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="41.0176%" y="2213" width="0.0128%" height="15" fill="rgb(252,223,27)" fg:x="9626" fg:w="3"/><text x="41.2676%" y="2223.50"></text></g><g><title>oorandom::Rand64::rand_u64 (3 samples, 0.01%)</title><rect x="41.0176%" y="2197" width="0.0128%" height="15" fill="rgb(244,172,38)" fg:x="9626" fg:w="3"/><text x="41.2676%" y="2207.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="40.9920%" y="2373" width="0.0511%" height="15" fill="rgb(254,165,30)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="40.9920%" y="2357" width="0.0511%" height="15" fill="rgb(237,75,13)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="40.9920%" y="2341" width="0.0511%" height="15" fill="rgb(248,50,6)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="40.9920%" y="2325" width="0.0511%" height="15" fill="rgb(247,105,10)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (12 samples, 0.05%)</title><rect x="40.9920%" y="2309" width="0.0511%" height="15" fill="rgb(218,124,11)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (12 samples, 0.05%)</title><rect x="40.9920%" y="2293" width="0.0511%" height="15" fill="rgb(237,175,1)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="40.9920%" y="2277" width="0.0511%" height="15" fill="rgb(207,214,41)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="40.9920%" y="2261" width="0.0511%" height="15" fill="rgb(219,42,25)" fg:x="9620" fg:w="12"/><text x="41.2420%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="41.0303%" y="2245" width="0.0128%" height="15" fill="rgb(231,129,22)" fg:x="9629" fg:w="3"/><text x="41.2803%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="41.0559%" y="2149" width="0.0128%" height="15" fill="rgb(242,12,9)" fg:x="9635" fg:w="3"/><text x="41.3059%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="41.0559%" y="2133" width="0.0128%" height="15" fill="rgb(209,206,10)" fg:x="9635" fg:w="3"/><text x="41.3059%" y="2143.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (174 samples, 0.74%)</title><rect x="40.3443%" y="2469" width="0.7414%" height="15" fill="rgb(229,120,27)" fg:x="9468" fg:w="174"/><text x="40.5943%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (174 samples, 0.74%)</title><rect x="40.3443%" y="2453" width="0.7414%" height="15" fill="rgb(240,155,0)" fg:x="9468" fg:w="174"/><text x="40.5943%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (174 samples, 0.74%)</title><rect x="40.3443%" y="2437" width="0.7414%" height="15" fill="rgb(247,0,39)" fg:x="9468" fg:w="174"/><text x="40.5943%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (174 samples, 0.74%)</title><rect x="40.3443%" y="2421" width="0.7414%" height="15" fill="rgb(232,148,44)" fg:x="9468" fg:w="174"/><text x="40.5943%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (174 samples, 0.74%)</title><rect x="40.3443%" y="2405" width="0.7414%" height="15" fill="rgb(242,52,39)" fg:x="9468" fg:w="174"/><text x="40.5943%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (22 samples, 0.09%)</title><rect x="40.9920%" y="2389" width="0.0937%" height="15" fill="rgb(251,32,33)" fg:x="9620" fg:w="22"/><text x="41.2420%" y="2399.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="41.0431%" y="2373" width="0.0426%" height="15" fill="rgb(244,148,44)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="41.0431%" y="2357" width="0.0426%" height="15" fill="rgb(229,46,47)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2367.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="41.0431%" y="2341" width="0.0426%" height="15" fill="rgb(246,200,14)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2351.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="41.0431%" y="2325" width="0.0426%" height="15" fill="rgb(225,183,9)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2335.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="41.0431%" y="2309" width="0.0426%" height="15" fill="rgb(213,38,50)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2319.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="41.0431%" y="2293" width="0.0426%" height="15" fill="rgb(221,43,11)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2303.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="41.0431%" y="2277" width="0.0426%" height="15" fill="rgb(248,194,36)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2287.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="41.0431%" y="2261" width="0.0426%" height="15" fill="rgb(229,196,42)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2271.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (10 samples, 0.04%)</title><rect x="41.0431%" y="2245" width="0.0426%" height="15" fill="rgb(212,64,36)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2255.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (10 samples, 0.04%)</title><rect x="41.0431%" y="2229" width="0.0426%" height="15" fill="rgb(244,28,33)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2239.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (10 samples, 0.04%)</title><rect x="41.0431%" y="2213" width="0.0426%" height="15" fill="rgb(234,198,8)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (10 samples, 0.04%)</title><rect x="41.0431%" y="2197" width="0.0426%" height="15" fill="rgb(220,59,21)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::recurse (10 samples, 0.04%)</title><rect x="41.0431%" y="2181" width="0.0426%" height="15" fill="rgb(206,20,19)" fg:x="9632" fg:w="10"/><text x="41.2931%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="41.0559%" y="2165" width="0.0298%" height="15" fill="rgb(249,82,39)" fg:x="9635" fg:w="7"/><text x="41.3059%" y="2175.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="41.0687%" y="2149" width="0.0170%" height="15" fill="rgb(216,31,36)" fg:x="9638" fg:w="4"/><text x="41.3187%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="41.0730%" y="2133" width="0.0128%" height="15" fill="rgb(217,126,42)" fg:x="9639" fg:w="3"/><text x="41.3230%" y="2143.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (56 samples, 0.24%)</title><rect x="41.0857%" y="2149" width="0.2386%" height="15" fill="rgb(237,37,20)" fg:x="9642" fg:w="56"/><text x="41.3357%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::exp (56 samples, 0.24%)</title><rect x="41.0857%" y="2133" width="0.2386%" height="15" fill="rgb(219,171,26)" fg:x="9642" fg:w="56"/><text x="41.3357%" y="2143.50"></text></g><g><title>exp (53 samples, 0.23%)</title><rect x="41.0985%" y="2117" width="0.2258%" height="15" fill="rgb(213,29,41)" fg:x="9645" fg:w="53"/><text x="41.3485%" y="2127.50"></text></g><g><title>[libm.so.6] (45 samples, 0.19%)</title><rect x="41.1326%" y="2101" width="0.1918%" height="15" fill="rgb(205,31,42)" fg:x="9653" fg:w="45"/><text x="41.3826%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (52 samples, 0.22%)</title><rect x="41.3244%" y="2149" width="0.2216%" height="15" fill="rgb(210,88,34)" fg:x="9698" fg:w="52"/><text x="41.5744%" y="2159.50"></text></g><g><title>core::f64::<impl f64>::recip (52 samples, 0.22%)</title><rect x="41.3244%" y="2133" width="0.2216%" height="15" fill="rgb(208,189,11)" fg:x="9698" fg:w="52"/><text x="41.5744%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (143 samples, 0.61%)</title><rect x="41.0857%" y="2165" width="0.6093%" height="15" fill="rgb(229,63,18)" fg:x="9642" fg:w="143"/><text x="41.3357%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (35 samples, 0.15%)</title><rect x="41.5459%" y="2149" width="0.1491%" height="15" fill="rgb(210,119,9)" fg:x="9750" fg:w="35"/><text x="41.7959%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::sqrt (35 samples, 0.15%)</title><rect x="41.5459%" y="2133" width="0.1491%" height="15" fill="rgb(239,134,32)" fg:x="9750" fg:w="35"/><text x="41.7959%" y="2143.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (155 samples, 0.66%)</title><rect x="41.0857%" y="2325" width="0.6605%" height="15" fill="rgb(233,3,2)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (155 samples, 0.66%)</title><rect x="41.0857%" y="2309" width="0.6605%" height="15" fill="rgb(243,147,10)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (155 samples, 0.66%)</title><rect x="41.0857%" y="2293" width="0.6605%" height="15" fill="rgb(228,134,13)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (155 samples, 0.66%)</title><rect x="41.0857%" y="2277" width="0.6605%" height="15" fill="rgb(227,195,19)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (155 samples, 0.66%)</title><rect x="41.0857%" y="2261" width="0.6605%" height="15" fill="rgb(246,79,7)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (155 samples, 0.66%)</title><rect x="41.0857%" y="2245" width="0.6605%" height="15" fill="rgb(218,156,22)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (155 samples, 0.66%)</title><rect x="41.0857%" y="2229" width="0.6605%" height="15" fill="rgb(226,38,15)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (155 samples, 0.66%)</title><rect x="41.0857%" y="2213" width="0.6605%" height="15" fill="rgb(214,167,47)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (155 samples, 0.66%)</title><rect x="41.0857%" y="2197" width="0.6605%" height="15" fill="rgb(222,115,34)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (155 samples, 0.66%)</title><rect x="41.0857%" y="2181" width="0.6605%" height="15" fill="rgb(249,139,24)" fg:x="9642" fg:w="155"/><text x="41.3357%" y="2191.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (12 samples, 0.05%)</title><rect x="41.6951%" y="2165" width="0.0511%" height="15" fill="rgb(231,112,35)" fg:x="9785" fg:w="12"/><text x="41.9451%" y="2175.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="41.7462%" y="2181" width="0.0384%" height="15" fill="rgb(215,74,52)" fg:x="9797" fg:w="9"/><text x="41.9962%" y="2191.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (8 samples, 0.03%)</title><rect x="41.7505%" y="2165" width="0.0341%" height="15" fill="rgb(219,76,46)" fg:x="9798" fg:w="8"/><text x="42.0005%" y="2175.50"></text></g><g><title>oorandom::Rand64::rand_range (6 samples, 0.03%)</title><rect x="41.7590%" y="2149" width="0.0256%" height="15" fill="rgb(252,187,1)" fg:x="9800" fg:w="6"/><text x="42.0090%" y="2159.50"></text></g><g><title>oorandom::Rand64::rand_u64 (5 samples, 0.02%)</title><rect x="41.7633%" y="2133" width="0.0213%" height="15" fill="rgb(221,107,15)" fg:x="9801" fg:w="5"/><text x="42.0133%" y="2143.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="41.7462%" y="2309" width="0.0511%" height="15" fill="rgb(220,106,54)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="41.7462%" y="2293" width="0.0511%" height="15" fill="rgb(233,84,6)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="41.7462%" y="2277" width="0.0511%" height="15" fill="rgb(241,28,30)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="41.7462%" y="2261" width="0.0511%" height="15" fill="rgb(209,221,6)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (12 samples, 0.05%)</title><rect x="41.7462%" y="2245" width="0.0511%" height="15" fill="rgb(205,37,12)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (12 samples, 0.05%)</title><rect x="41.7462%" y="2229" width="0.0511%" height="15" fill="rgb(225,96,47)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="41.7462%" y="2213" width="0.0511%" height="15" fill="rgb(219,169,53)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="41.7462%" y="2197" width="0.0511%" height="15" fill="rgb(233,3,53)" fg:x="9797" fg:w="12"/><text x="41.9962%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="41.7846%" y="2181" width="0.0128%" height="15" fill="rgb(221,125,50)" fg:x="9806" fg:w="3"/><text x="42.0346%" y="2191.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="41.7846%" y="2165" width="0.0128%" height="15" fill="rgb(221,229,6)" fg:x="9806" fg:w="3"/><text x="42.0346%" y="2175.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="41.7846%" y="2149" width="0.0128%" height="15" fill="rgb(217,2,16)" fg:x="9806" fg:w="3"/><text x="42.0346%" y="2159.50"></text></g><g><title>oorandom::Rand64::rand_u64 (3 samples, 0.01%)</title><rect x="41.7846%" y="2133" width="0.0128%" height="15" fill="rgb(240,54,10)" fg:x="9806" fg:w="3"/><text x="42.0346%" y="2143.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="41.7973%" y="2197" width="0.0256%" height="15" fill="rgb(248,119,54)" fg:x="9809" fg:w="6"/><text x="42.0473%" y="2207.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="41.7973%" y="2181" width="0.0256%" height="15" fill="rgb(253,32,30)" fg:x="9809" fg:w="6"/><text x="42.0473%" y="2191.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="41.8016%" y="2165" width="0.0213%" height="15" fill="rgb(241,120,34)" fg:x="9810" fg:w="5"/><text x="42.0516%" y="2175.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="41.8016%" y="2149" width="0.0213%" height="15" fill="rgb(227,128,1)" fg:x="9810" fg:w="5"/><text x="42.0516%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="41.8016%" y="2133" width="0.0213%" height="15" fill="rgb(212,125,43)" fg:x="9810" fg:w="5"/><text x="42.0516%" y="2143.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="41.8016%" y="2117" width="0.0213%" height="15" fill="rgb(219,92,21)" fg:x="9810" fg:w="5"/><text x="42.0516%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="41.8101%" y="2101" width="0.0128%" height="15" fill="rgb(225,101,40)" fg:x="9812" fg:w="3"/><text x="42.0601%" y="2111.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (1,017 samples, 4.33%)</title><rect x="37.5064%" y="2757" width="4.3336%" height="15" fill="rgb(251,121,6)" fg:x="8802" fg:w="1017"/><text x="37.7564%" y="2767.50">rayon..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (1,017 samples, 4.33%)</title><rect x="37.5064%" y="2741" width="4.3336%" height="15" fill="rgb(250,48,20)" fg:x="8802" fg:w="1017"/><text x="37.7564%" y="2751.50">rayon..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (1,017 samples, 4.33%)</title><rect x="37.5064%" y="2725" width="4.3336%" height="15" fill="rgb(206,30,17)" fg:x="8802" fg:w="1017"/><text x="37.7564%" y="2735.50">rayon..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,017 samples, 4.33%)</title><rect x="37.5064%" y="2709" width="4.3336%" height="15" fill="rgb(216,156,42)" fg:x="8802" fg:w="1017"/><text x="37.7564%" y="2719.50">rayon..</text></g><g><title>rayon_core::join::join_context (917 samples, 3.91%)</title><rect x="37.9325%" y="2693" width="3.9074%" height="15" fill="rgb(224,169,26)" fg:x="8902" fg:w="917"/><text x="38.1825%" y="2703.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (917 samples, 3.91%)</title><rect x="37.9325%" y="2677" width="3.9074%" height="15" fill="rgb(244,213,18)" fg:x="8902" fg:w="917"/><text x="38.1825%" y="2687.50">rayo..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (917 samples, 3.91%)</title><rect x="37.9325%" y="2661" width="3.9074%" height="15" fill="rgb(250,47,11)" fg:x="8902" fg:w="917"/><text x="38.1825%" y="2671.50">rayo..</text></g><g><title>rayon_core::unwind::halt_unwinding (430 samples, 1.83%)</title><rect x="40.0077%" y="2645" width="1.8323%" height="15" fill="rgb(247,48,44)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2655.50">r..</text></g><g><title>std::panic::catch_unwind (430 samples, 1.83%)</title><rect x="40.0077%" y="2629" width="1.8323%" height="15" fill="rgb(235,157,19)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2639.50">s..</text></g><g><title>std::panicking::try (430 samples, 1.83%)</title><rect x="40.0077%" y="2613" width="1.8323%" height="15" fill="rgb(223,144,42)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2623.50">s..</text></g><g><title>std::panicking::try::do_call (430 samples, 1.83%)</title><rect x="40.0077%" y="2597" width="1.8323%" height="15" fill="rgb(246,179,24)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2607.50">s..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (430 samples, 1.83%)</title><rect x="40.0077%" y="2581" width="1.8323%" height="15" fill="rgb(211,67,24)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2591.50"><..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (430 samples, 1.83%)</title><rect x="40.0077%" y="2565" width="1.8323%" height="15" fill="rgb(227,177,28)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2575.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (430 samples, 1.83%)</title><rect x="40.0077%" y="2549" width="1.8323%" height="15" fill="rgb(244,13,17)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2559.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (430 samples, 1.83%)</title><rect x="40.0077%" y="2533" width="1.8323%" height="15" fill="rgb(232,37,18)" fg:x="9389" fg:w="430"/><text x="40.2577%" y="2543.50">r..</text></g><g><title>rayon_core::join::join_context (351 samples, 1.50%)</title><rect x="40.3443%" y="2517" width="1.4957%" height="15" fill="rgb(218,168,3)" fg:x="9468" fg:w="351"/><text x="40.5943%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (351 samples, 1.50%)</title><rect x="40.3443%" y="2501" width="1.4957%" height="15" fill="rgb(211,41,38)" fg:x="9468" fg:w="351"/><text x="40.5943%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (351 samples, 1.50%)</title><rect x="40.3443%" y="2485" width="1.4957%" height="15" fill="rgb(205,8,13)" fg:x="9468" fg:w="351"/><text x="40.5943%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (177 samples, 0.75%)</title><rect x="41.0857%" y="2469" width="0.7542%" height="15" fill="rgb(231,138,36)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (177 samples, 0.75%)</title><rect x="41.0857%" y="2453" width="0.7542%" height="15" fill="rgb(207,57,0)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2463.50"></text></g><g><title>std::panicking::try (177 samples, 0.75%)</title><rect x="41.0857%" y="2437" width="0.7542%" height="15" fill="rgb(228,204,48)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (177 samples, 0.75%)</title><rect x="41.0857%" y="2421" width="0.7542%" height="15" fill="rgb(213,123,44)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (177 samples, 0.75%)</title><rect x="41.0857%" y="2405" width="0.7542%" height="15" fill="rgb(222,2,54)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (177 samples, 0.75%)</title><rect x="41.0857%" y="2389" width="0.7542%" height="15" fill="rgb(251,206,33)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (177 samples, 0.75%)</title><rect x="41.0857%" y="2373" width="0.7542%" height="15" fill="rgb(222,105,26)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (177 samples, 0.75%)</title><rect x="41.0857%" y="2357" width="0.7542%" height="15" fill="rgb(213,99,4)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (177 samples, 0.75%)</title><rect x="41.0857%" y="2341" width="0.7542%" height="15" fill="rgb(218,23,24)" fg:x="9642" fg:w="177"/><text x="41.3357%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (22 samples, 0.09%)</title><rect x="41.7462%" y="2325" width="0.0937%" height="15" fill="rgb(232,169,29)" fg:x="9797" fg:w="22"/><text x="41.9962%" y="2335.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="41.7973%" y="2309" width="0.0426%" height="15" fill="rgb(251,24,53)" fg:x="9809" fg:w="10"/><text x="42.0473%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="41.7973%" y="2293" width="0.0426%" height="15" fill="rgb(242,218,10)" fg:x="9809" fg:w="10"/><text x="42.0473%" y="2303.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="41.7973%" y="2277" width="0.0426%" height="15" fill="rgb(254,120,46)" fg:x="9809" fg:w="10"/><text x="42.0473%" y="2287.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="41.7973%" y="2261" width="0.0426%" height="15" fill="rgb(226,198,30)" fg:x="9809" fg:w="10"/><text x="42.0473%" y="2271.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="41.7973%" y="2245" width="0.0426%" height="15" fill="rgb(232,151,1)" fg:x="9809" fg:w="10"/><text x="42.0473%" y="2255.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="41.7973%" y="2229" width="0.0426%" height="15" fill="rgb(219,64,5)" fg:x="9809" fg:w="10"/><text x="42.0473%" y="2239.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="41.7973%" y="2213" width="0.0426%" height="15" fill="rgb(242,227,15)" fg:x="9809" fg:w="10"/><text x="42.0473%" y="2223.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (4 samples, 0.02%)</title><rect x="41.8229%" y="2197" width="0.0170%" height="15" fill="rgb(205,70,9)" fg:x="9815" fg:w="4"/><text x="42.0729%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="41.8570%" y="1893" width="0.0170%" height="15" fill="rgb(224,78,34)" fg:x="9823" fg:w="4"/><text x="42.1070%" y="1903.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="41.8570%" y="2133" width="0.0213%" height="15" fill="rgb(246,87,14)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8570%" y="2117" width="0.0213%" height="15" fill="rgb(248,26,2)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8570%" y="2101" width="0.0213%" height="15" fill="rgb(229,69,41)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.8570%" y="2085" width="0.0213%" height="15" fill="rgb(252,180,40)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="41.8570%" y="2069" width="0.0213%" height="15" fill="rgb(236,71,13)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="41.8570%" y="2053" width="0.0213%" height="15" fill="rgb(249,161,37)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="41.8570%" y="2037" width="0.0213%" height="15" fill="rgb(251,127,46)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2047.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="41.8570%" y="2021" width="0.0213%" height="15" fill="rgb(212,157,49)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2031.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="41.8570%" y="2005" width="0.0213%" height="15" fill="rgb(249,172,18)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="2015.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="41.8570%" y="1989" width="0.0213%" height="15" fill="rgb(217,91,27)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="41.8570%" y="1973" width="0.0213%" height="15" fill="rgb(235,4,52)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8570%" y="1957" width="0.0213%" height="15" fill="rgb(224,162,36)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="41.8570%" y="1941" width="0.0213%" height="15" fill="rgb(220,181,10)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="1951.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="41.8570%" y="1925" width="0.0213%" height="15" fill="rgb(246,31,20)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="1935.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8570%" y="1909" width="0.0213%" height="15" fill="rgb(253,121,43)" fg:x="9823" fg:w="5"/><text x="42.1070%" y="1919.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="41.8570%" y="2245" width="0.0426%" height="15" fill="rgb(244,66,20)" fg:x="9823" fg:w="10"/><text x="42.1070%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="41.8570%" y="2229" width="0.0426%" height="15" fill="rgb(226,229,42)" fg:x="9823" fg:w="10"/><text x="42.1070%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="41.8570%" y="2213" width="0.0426%" height="15" fill="rgb(208,222,2)" fg:x="9823" fg:w="10"/><text x="42.1070%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="41.8570%" y="2197" width="0.0426%" height="15" fill="rgb(214,6,29)" fg:x="9823" fg:w="10"/><text x="42.1070%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="41.8570%" y="2181" width="0.0426%" height="15" fill="rgb(229,198,41)" fg:x="9823" fg:w="10"/><text x="42.1070%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="41.8570%" y="2165" width="0.0426%" height="15" fill="rgb(205,139,49)" fg:x="9823" fg:w="10"/><text x="42.1070%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="41.8570%" y="2149" width="0.0426%" height="15" fill="rgb(224,55,49)" fg:x="9823" fg:w="10"/><text x="42.1070%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="41.8783%" y="2133" width="0.0213%" height="15" fill="rgb(237,156,39)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="41.8783%" y="2117" width="0.0213%" height="15" fill="rgb(242,193,52)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2127.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="41.8783%" y="2101" width="0.0213%" height="15" fill="rgb(246,160,11)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="41.8783%" y="2085" width="0.0213%" height="15" fill="rgb(214,85,6)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="41.8783%" y="2069" width="0.0213%" height="15" fill="rgb(213,222,46)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8783%" y="2053" width="0.0213%" height="15" fill="rgb(205,165,18)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8783%" y="2037" width="0.0213%" height="15" fill="rgb(232,183,8)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.8783%" y="2021" width="0.0213%" height="15" fill="rgb(217,27,36)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="41.8783%" y="2005" width="0.0213%" height="15" fill="rgb(247,165,54)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="41.8783%" y="1989" width="0.0213%" height="15" fill="rgb(235,131,4)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="41.8783%" y="1973" width="0.0213%" height="15" fill="rgb(222,217,51)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="41.8783%" y="1957" width="0.0213%" height="15" fill="rgb(231,101,30)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="41.8783%" y="1941" width="0.0213%" height="15" fill="rgb(209,50,11)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="41.8783%" y="1925" width="0.0213%" height="15" fill="rgb(229,202,32)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="41.8783%" y="1909" width="0.0213%" height="15" fill="rgb(223,85,37)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8783%" y="1893" width="0.0213%" height="15" fill="rgb(228,193,39)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="41.8783%" y="1877" width="0.0213%" height="15" fill="rgb(216,126,51)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="41.8783%" y="1861" width="0.0213%" height="15" fill="rgb(247,6,6)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8783%" y="1845" width="0.0213%" height="15" fill="rgb(211,70,19)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="41.8783%" y="1829" width="0.0213%" height="15" fill="rgb(251,133,12)" fg:x="9828" fg:w="5"/><text x="42.1283%" y="1839.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="41.8996%" y="1813" width="0.0128%" height="15" fill="rgb(240,209,34)" fg:x="9833" fg:w="3"/><text x="42.1496%" y="1823.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="41.8996%" y="1797" width="0.0128%" height="15" fill="rgb(229,155,7)" fg:x="9833" fg:w="3"/><text x="42.1496%" y="1807.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.8996%" y="1781" width="0.0128%" height="15" fill="rgb(233,87,8)" fg:x="9833" fg:w="3"/><text x="42.1496%" y="1791.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="41.8996%" y="1765" width="0.0128%" height="15" fill="rgb(205,124,29)" fg:x="9833" fg:w="3"/><text x="42.1496%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="41.8996%" y="2069" width="0.0213%" height="15" fill="rgb(229,227,9)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8996%" y="2053" width="0.0213%" height="15" fill="rgb(251,41,53)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8996%" y="2037" width="0.0213%" height="15" fill="rgb(216,90,31)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.8996%" y="2021" width="0.0213%" height="15" fill="rgb(250,0,26)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="41.8996%" y="2005" width="0.0213%" height="15" fill="rgb(249,162,35)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="41.8996%" y="1989" width="0.0213%" height="15" fill="rgb(238,18,40)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="41.8996%" y="1973" width="0.0213%" height="15" fill="rgb(252,61,3)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="41.8996%" y="1957" width="0.0213%" height="15" fill="rgb(250,226,0)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="41.8996%" y="1941" width="0.0213%" height="15" fill="rgb(239,105,18)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="41.8996%" y="1925" width="0.0213%" height="15" fill="rgb(231,87,54)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="41.8996%" y="1909" width="0.0213%" height="15" fill="rgb(248,62,9)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8996%" y="1893" width="0.0213%" height="15" fill="rgb(218,55,29)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="41.8996%" y="1877" width="0.0213%" height="15" fill="rgb(246,90,22)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="41.8996%" y="1861" width="0.0213%" height="15" fill="rgb(246,67,35)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="41.8996%" y="1845" width="0.0213%" height="15" fill="rgb(209,161,5)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="41.8996%" y="1829" width="0.0213%" height="15" fill="rgb(210,64,0)" fg:x="9833" fg:w="5"/><text x="42.1496%" y="1839.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="41.9209%" y="1765" width="0.0213%" height="15" fill="rgb(237,41,14)" fg:x="9838" fg:w="5"/><text x="42.1709%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (21 samples, 0.09%)</title><rect x="41.8570%" y="2357" width="0.0895%" height="15" fill="rgb(241,9,29)" fg:x="9823" fg:w="21"/><text x="42.1070%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="41.8570%" y="2341" width="0.0895%" height="15" fill="rgb(236,124,30)" fg:x="9823" fg:w="21"/><text x="42.1070%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="41.8570%" y="2325" width="0.0895%" height="15" fill="rgb(234,111,52)" fg:x="9823" fg:w="21"/><text x="42.1070%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="41.8570%" y="2309" width="0.0895%" height="15" fill="rgb(233,16,51)" fg:x="9823" fg:w="21"/><text x="42.1070%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="41.8570%" y="2293" width="0.0895%" height="15" fill="rgb(236,54,36)" fg:x="9823" fg:w="21"/><text x="42.1070%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="41.8570%" y="2277" width="0.0895%" height="15" fill="rgb(248,122,33)" fg:x="9823" fg:w="21"/><text x="42.1070%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="41.8570%" y="2261" width="0.0895%" height="15" fill="rgb(230,45,7)" fg:x="9823" fg:w="21"/><text x="42.1070%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="41.8996%" y="2245" width="0.0469%" height="15" fill="rgb(208,133,37)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="41.8996%" y="2229" width="0.0469%" height="15" fill="rgb(252,62,39)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2239.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="41.8996%" y="2213" width="0.0469%" height="15" fill="rgb(239,29,17)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="41.8996%" y="2197" width="0.0469%" height="15" fill="rgb(226,18,38)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="41.8996%" y="2181" width="0.0469%" height="15" fill="rgb(243,52,39)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="41.8996%" y="2165" width="0.0469%" height="15" fill="rgb(219,97,13)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="41.8996%" y="2149" width="0.0469%" height="15" fill="rgb(209,176,24)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="41.8996%" y="2133" width="0.0469%" height="15" fill="rgb(253,221,2)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="41.8996%" y="2117" width="0.0469%" height="15" fill="rgb(234,102,21)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="41.8996%" y="2101" width="0.0469%" height="15" fill="rgb(232,167,48)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="41.8996%" y="2085" width="0.0469%" height="15" fill="rgb(246,40,49)" fg:x="9833" fg:w="11"/><text x="42.1496%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="41.9209%" y="2069" width="0.0256%" height="15" fill="rgb(247,138,31)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="41.9209%" y="2053" width="0.0256%" height="15" fill="rgb(235,215,18)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="2063.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="41.9209%" y="2037" width="0.0256%" height="15" fill="rgb(226,177,11)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="41.9209%" y="2021" width="0.0256%" height="15" fill="rgb(213,123,5)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="41.9209%" y="2005" width="0.0256%" height="15" fill="rgb(252,185,7)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9209%" y="1989" width="0.0256%" height="15" fill="rgb(241,147,6)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9209%" y="1973" width="0.0256%" height="15" fill="rgb(214,46,5)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="41.9209%" y="1957" width="0.0256%" height="15" fill="rgb(211,213,11)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="41.9209%" y="1941" width="0.0256%" height="15" fill="rgb(223,198,49)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="41.9209%" y="1925" width="0.0256%" height="15" fill="rgb(228,70,17)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="41.9209%" y="1909" width="0.0256%" height="15" fill="rgb(234,18,33)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="41.9209%" y="1893" width="0.0256%" height="15" fill="rgb(235,107,54)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="41.9209%" y="1877" width="0.0256%" height="15" fill="rgb(225,89,40)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="41.9209%" y="1861" width="0.0256%" height="15" fill="rgb(245,55,19)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="41.9209%" y="1845" width="0.0256%" height="15" fill="rgb(214,10,17)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9209%" y="1829" width="0.0256%" height="15" fill="rgb(229,15,42)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="41.9209%" y="1813" width="0.0256%" height="15" fill="rgb(237,205,44)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="41.9209%" y="1797" width="0.0256%" height="15" fill="rgb(247,158,32)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9209%" y="1781" width="0.0256%" height="15" fill="rgb(224,221,24)" fg:x="9838" fg:w="6"/><text x="42.1709%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="41.9465%" y="1829" width="0.0170%" height="15" fill="rgb(221,62,54)" fg:x="9844" fg:w="4"/><text x="42.1965%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="41.9465%" y="2069" width="0.0213%" height="15" fill="rgb(223,57,11)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9465%" y="2053" width="0.0213%" height="15" fill="rgb(250,52,53)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9465%" y="2037" width="0.0213%" height="15" fill="rgb(241,91,16)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.9465%" y="2021" width="0.0213%" height="15" fill="rgb(253,173,2)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="41.9465%" y="2005" width="0.0213%" height="15" fill="rgb(220,196,0)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="41.9465%" y="1989" width="0.0213%" height="15" fill="rgb(224,168,35)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="41.9465%" y="1973" width="0.0213%" height="15" fill="rgb(249,29,39)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="41.9465%" y="1957" width="0.0213%" height="15" fill="rgb(221,85,17)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="41.9465%" y="1941" width="0.0213%" height="15" fill="rgb(238,95,26)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="41.9465%" y="1925" width="0.0213%" height="15" fill="rgb(215,7,20)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="41.9465%" y="1909" width="0.0213%" height="15" fill="rgb(222,112,22)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9465%" y="1893" width="0.0213%" height="15" fill="rgb(218,159,16)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="41.9465%" y="1877" width="0.0213%" height="15" fill="rgb(249,40,38)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="41.9465%" y="1861" width="0.0213%" height="15" fill="rgb(214,130,30)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9465%" y="1845" width="0.0213%" height="15" fill="rgb(216,141,15)" fg:x="9844" fg:w="5"/><text x="42.1965%" y="1855.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="41.9720%" y="1749" width="0.0170%" height="15" fill="rgb(254,122,28)" fg:x="9850" fg:w="4"/><text x="42.2220%" y="1759.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="41.9720%" y="1733" width="0.0170%" height="15" fill="rgb(227,137,26)" fg:x="9850" fg:w="4"/><text x="42.2220%" y="1743.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="41.9465%" y="2181" width="0.0469%" height="15" fill="rgb(226,126,27)" fg:x="9844" fg:w="11"/><text x="42.1965%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="41.9465%" y="2165" width="0.0469%" height="15" fill="rgb(249,120,20)" fg:x="9844" fg:w="11"/><text x="42.1965%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="41.9465%" y="2149" width="0.0469%" height="15" fill="rgb(222,2,15)" fg:x="9844" fg:w="11"/><text x="42.1965%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="41.9465%" y="2133" width="0.0469%" height="15" fill="rgb(249,36,4)" fg:x="9844" fg:w="11"/><text x="42.1965%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="41.9465%" y="2117" width="0.0469%" height="15" fill="rgb(239,76,36)" fg:x="9844" fg:w="11"/><text x="42.1965%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="41.9465%" y="2101" width="0.0469%" height="15" fill="rgb(236,58,29)" fg:x="9844" fg:w="11"/><text x="42.1965%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="41.9465%" y="2085" width="0.0469%" height="15" fill="rgb(206,27,37)" fg:x="9844" fg:w="11"/><text x="42.1965%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="41.9678%" y="2069" width="0.0256%" height="15" fill="rgb(215,204,25)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="41.9678%" y="2053" width="0.0256%" height="15" fill="rgb(252,26,17)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="2063.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="41.9678%" y="2037" width="0.0256%" height="15" fill="rgb(239,119,30)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="41.9678%" y="2021" width="0.0256%" height="15" fill="rgb(220,50,54)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="41.9678%" y="2005" width="0.0256%" height="15" fill="rgb(237,132,40)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9678%" y="1989" width="0.0256%" height="15" fill="rgb(237,44,9)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9678%" y="1973" width="0.0256%" height="15" fill="rgb(213,196,40)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="41.9678%" y="1957" width="0.0256%" height="15" fill="rgb(208,77,31)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="41.9678%" y="1941" width="0.0256%" height="15" fill="rgb(208,229,16)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="41.9678%" y="1925" width="0.0256%" height="15" fill="rgb(244,218,6)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="41.9678%" y="1909" width="0.0256%" height="15" fill="rgb(218,21,39)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="41.9678%" y="1893" width="0.0256%" height="15" fill="rgb(249,204,48)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="41.9678%" y="1877" width="0.0256%" height="15" fill="rgb(218,43,9)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="41.9678%" y="1861" width="0.0256%" height="15" fill="rgb(214,209,7)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="41.9678%" y="1845" width="0.0256%" height="15" fill="rgb(219,127,10)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9678%" y="1829" width="0.0256%" height="15" fill="rgb(254,16,10)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="41.9678%" y="1813" width="0.0256%" height="15" fill="rgb(235,9,21)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="41.9678%" y="1797" width="0.0256%" height="15" fill="rgb(251,204,29)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="41.9678%" y="1781" width="0.0256%" height="15" fill="rgb(207,29,11)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="41.9678%" y="1765" width="0.0256%" height="15" fill="rgb(245,141,25)" fg:x="9849" fg:w="6"/><text x="42.2178%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="41.9934%" y="1749" width="0.0170%" height="15" fill="rgb(238,17,15)" fg:x="9855" fg:w="4"/><text x="42.2434%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="41.9934%" y="1733" width="0.0170%" height="15" fill="rgb(254,77,5)" fg:x="9855" fg:w="4"/><text x="42.2434%" y="1743.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="41.9934%" y="1717" width="0.0170%" height="15" fill="rgb(224,69,37)" fg:x="9855" fg:w="4"/><text x="42.2434%" y="1727.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="41.9976%" y="1701" width="0.0128%" height="15" fill="rgb(226,117,26)" fg:x="9856" fg:w="3"/><text x="42.2476%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="41.9934%" y="2005" width="0.0213%" height="15" fill="rgb(221,51,0)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9934%" y="1989" width="0.0213%" height="15" fill="rgb(245,96,51)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9934%" y="1973" width="0.0213%" height="15" fill="rgb(234,149,25)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.9934%" y="1957" width="0.0213%" height="15" fill="rgb(225,68,40)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="41.9934%" y="1941" width="0.0213%" height="15" fill="rgb(225,32,51)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="41.9934%" y="1925" width="0.0213%" height="15" fill="rgb(229,68,50)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="41.9934%" y="1909" width="0.0213%" height="15" fill="rgb(219,66,50)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="41.9934%" y="1893" width="0.0213%" height="15" fill="rgb(206,224,24)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="41.9934%" y="1877" width="0.0213%" height="15" fill="rgb(206,39,25)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="41.9934%" y="1861" width="0.0213%" height="15" fill="rgb(254,207,27)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="41.9934%" y="1845" width="0.0213%" height="15" fill="rgb(237,83,20)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9934%" y="1829" width="0.0213%" height="15" fill="rgb(229,106,26)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="41.9934%" y="1813" width="0.0213%" height="15" fill="rgb(246,25,49)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="41.9934%" y="1797" width="0.0213%" height="15" fill="rgb(249,60,14)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="41.9934%" y="1781" width="0.0213%" height="15" fill="rgb(241,172,39)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="41.9934%" y="1765" width="0.0213%" height="15" fill="rgb(219,53,13)" fg:x="9855" fg:w="5"/><text x="42.2434%" y="1775.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="42.0147%" y="1701" width="0.0128%" height="15" fill="rgb(250,94,29)" fg:x="9860" fg:w="3"/><text x="42.2647%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (44 samples, 0.19%)</title><rect x="41.8485%" y="2469" width="0.1875%" height="15" fill="rgb(254,119,54)" fg:x="9821" fg:w="44"/><text x="42.0985%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (44 samples, 0.19%)</title><rect x="41.8485%" y="2453" width="0.1875%" height="15" fill="rgb(217,228,43)" fg:x="9821" fg:w="44"/><text x="42.0985%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (44 samples, 0.19%)</title><rect x="41.8485%" y="2437" width="0.1875%" height="15" fill="rgb(224,11,36)" fg:x="9821" fg:w="44"/><text x="42.0985%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (44 samples, 0.19%)</title><rect x="41.8485%" y="2421" width="0.1875%" height="15" fill="rgb(234,41,8)" fg:x="9821" fg:w="44"/><text x="42.0985%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="41.8570%" y="2405" width="0.1790%" height="15" fill="rgb(247,218,24)" fg:x="9823" fg:w="42"/><text x="42.1070%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="41.8570%" y="2389" width="0.1790%" height="15" fill="rgb(253,208,34)" fg:x="9823" fg:w="42"/><text x="42.1070%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="41.8570%" y="2373" width="0.1790%" height="15" fill="rgb(242,191,30)" fg:x="9823" fg:w="42"/><text x="42.1070%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="41.9465%" y="2357" width="0.0895%" height="15" fill="rgb(229,140,25)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="41.9465%" y="2341" width="0.0895%" height="15" fill="rgb(226,39,1)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2351.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="41.9465%" y="2325" width="0.0895%" height="15" fill="rgb(241,200,19)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="41.9465%" y="2309" width="0.0895%" height="15" fill="rgb(231,60,42)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="41.9465%" y="2293" width="0.0895%" height="15" fill="rgb(248,216,12)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="41.9465%" y="2277" width="0.0895%" height="15" fill="rgb(231,26,34)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="41.9465%" y="2261" width="0.0895%" height="15" fill="rgb(233,187,42)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="41.9465%" y="2245" width="0.0895%" height="15" fill="rgb(240,192,5)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="41.9465%" y="2229" width="0.0895%" height="15" fill="rgb(234,92,18)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="41.9465%" y="2213" width="0.0895%" height="15" fill="rgb(240,188,23)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="41.9465%" y="2197" width="0.0895%" height="15" fill="rgb(208,172,17)" fg:x="9844" fg:w="21"/><text x="42.1965%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="41.9934%" y="2181" width="0.0426%" height="15" fill="rgb(254,178,34)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="41.9934%" y="2165" width="0.0426%" height="15" fill="rgb(250,55,19)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2175.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="41.9934%" y="2149" width="0.0426%" height="15" fill="rgb(234,166,11)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="41.9934%" y="2133" width="0.0426%" height="15" fill="rgb(228,171,51)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="41.9934%" y="2117" width="0.0426%" height="15" fill="rgb(223,187,25)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="41.9934%" y="2101" width="0.0426%" height="15" fill="rgb(211,39,33)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="41.9934%" y="2085" width="0.0426%" height="15" fill="rgb(229,207,46)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="41.9934%" y="2069" width="0.0426%" height="15" fill="rgb(215,175,33)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="41.9934%" y="2053" width="0.0426%" height="15" fill="rgb(217,15,29)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="41.9934%" y="2037" width="0.0426%" height="15" fill="rgb(207,112,47)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="41.9934%" y="2021" width="0.0426%" height="15" fill="rgb(239,89,53)" fg:x="9855" fg:w="10"/><text x="42.2434%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="42.0147%" y="2005" width="0.0213%" height="15" fill="rgb(206,130,12)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="42.0147%" y="1989" width="0.0213%" height="15" fill="rgb(240,159,12)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1999.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="42.0147%" y="1973" width="0.0213%" height="15" fill="rgb(215,18,49)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="42.0147%" y="1957" width="0.0213%" height="15" fill="rgb(216,201,39)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="42.0147%" y="1941" width="0.0213%" height="15" fill="rgb(211,95,32)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0147%" y="1925" width="0.0213%" height="15" fill="rgb(223,164,37)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0147%" y="1909" width="0.0213%" height="15" fill="rgb(217,131,16)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="42.0147%" y="1893" width="0.0213%" height="15" fill="rgb(247,21,0)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="42.0147%" y="1877" width="0.0213%" height="15" fill="rgb(210,9,10)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="42.0147%" y="1861" width="0.0213%" height="15" fill="rgb(237,67,17)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="42.0147%" y="1845" width="0.0213%" height="15" fill="rgb(239,191,22)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="42.0147%" y="1829" width="0.0213%" height="15" fill="rgb(235,120,17)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="42.0147%" y="1813" width="0.0213%" height="15" fill="rgb(207,86,47)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="42.0147%" y="1797" width="0.0213%" height="15" fill="rgb(251,177,6)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="42.0147%" y="1781" width="0.0213%" height="15" fill="rgb(231,56,0)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0147%" y="1765" width="0.0213%" height="15" fill="rgb(239,28,15)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="42.0147%" y="1749" width="0.0213%" height="15" fill="rgb(249,37,30)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="42.0147%" y="1733" width="0.0213%" height="15" fill="rgb(230,94,11)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0147%" y="1717" width="0.0213%" height="15" fill="rgb(242,174,14)" fg:x="9860" fg:w="5"/><text x="42.2647%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="42.0487%" y="2341" width="0.0128%" height="15" fill="rgb(246,96,17)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2351.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="42.0487%" y="2325" width="0.0128%" height="15" fill="rgb(219,119,22)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="42.0487%" y="2309" width="0.0128%" height="15" fill="rgb(214,130,3)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="42.0487%" y="2293" width="0.0128%" height="15" fill="rgb(211,81,18)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="42.0487%" y="2277" width="0.0128%" height="15" fill="rgb(249,143,54)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="42.0487%" y="2261" width="0.0128%" height="15" fill="rgb(222,116,53)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="42.0487%" y="2245" width="0.0128%" height="15" fill="rgb(246,62,32)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="42.0487%" y="2229" width="0.0128%" height="15" fill="rgb(247,129,20)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="42.0487%" y="2213" width="0.0128%" height="15" fill="rgb(252,157,17)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="42.0487%" y="2197" width="0.0128%" height="15" fill="rgb(210,132,45)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="42.0487%" y="2181" width="0.0128%" height="15" fill="rgb(213,172,46)" fg:x="9868" fg:w="3"/><text x="42.2987%" y="2191.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="42.0658%" y="1829" width="0.0170%" height="15" fill="rgb(219,27,5)" fg:x="9872" fg:w="4"/><text x="42.3158%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="42.0658%" y="2069" width="0.0213%" height="15" fill="rgb(213,32,32)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0658%" y="2053" width="0.0213%" height="15" fill="rgb(245,100,36)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0658%" y="2037" width="0.0213%" height="15" fill="rgb(250,157,21)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="42.0658%" y="2021" width="0.0213%" height="15" fill="rgb(230,98,29)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="42.0658%" y="2005" width="0.0213%" height="15" fill="rgb(214,129,36)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="42.0658%" y="1989" width="0.0213%" height="15" fill="rgb(240,169,43)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="42.0658%" y="1973" width="0.0213%" height="15" fill="rgb(241,53,23)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="42.0658%" y="1957" width="0.0213%" height="15" fill="rgb(213,0,44)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="42.0658%" y="1941" width="0.0213%" height="15" fill="rgb(213,125,8)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="42.0658%" y="1925" width="0.0213%" height="15" fill="rgb(216,201,19)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="42.0658%" y="1909" width="0.0213%" height="15" fill="rgb(228,209,21)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0658%" y="1893" width="0.0213%" height="15" fill="rgb(249,87,54)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="42.0658%" y="1877" width="0.0213%" height="15" fill="rgb(218,213,40)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="42.0658%" y="1861" width="0.0213%" height="15" fill="rgb(251,33,11)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="42.0658%" y="1845" width="0.0213%" height="15" fill="rgb(214,165,42)" fg:x="9872" fg:w="5"/><text x="42.3158%" y="1855.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="42.0615%" y="2181" width="0.0426%" height="15" fill="rgb(217,44,17)" fg:x="9871" fg:w="10"/><text x="42.3115%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="42.0615%" y="2165" width="0.0426%" height="15" fill="rgb(246,138,30)" fg:x="9871" fg:w="10"/><text x="42.3115%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="42.0615%" y="2149" width="0.0426%" height="15" fill="rgb(218,63,15)" fg:x="9871" fg:w="10"/><text x="42.3115%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="42.0615%" y="2133" width="0.0426%" height="15" fill="rgb(229,92,17)" fg:x="9871" fg:w="10"/><text x="42.3115%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="42.0658%" y="2117" width="0.0384%" height="15" fill="rgb(206,153,30)" fg:x="9872" fg:w="9"/><text x="42.3158%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="42.0658%" y="2101" width="0.0384%" height="15" fill="rgb(245,70,45)" fg:x="9872" fg:w="9"/><text x="42.3158%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="42.0658%" y="2085" width="0.0384%" height="15" fill="rgb(216,35,5)" fg:x="9872" fg:w="9"/><text x="42.3158%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="42.0871%" y="2069" width="0.0170%" height="15" fill="rgb(233,25,50)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="42.0871%" y="2053" width="0.0170%" height="15" fill="rgb(218,218,51)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="42.0871%" y="2037" width="0.0170%" height="15" fill="rgb(222,153,47)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="42.0871%" y="2021" width="0.0170%" height="15" fill="rgb(236,111,27)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="42.0871%" y="2005" width="0.0170%" height="15" fill="rgb(240,93,17)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="42.0871%" y="1989" width="0.0170%" height="15" fill="rgb(253,226,16)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="42.0871%" y="1973" width="0.0170%" height="15" fill="rgb(233,167,49)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.0871%" y="1957" width="0.0170%" height="15" fill="rgb(237,185,51)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="42.0871%" y="1941" width="0.0170%" height="15" fill="rgb(214,33,54)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="42.0871%" y="1925" width="0.0170%" height="15" fill="rgb(212,41,5)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="42.0871%" y="1909" width="0.0170%" height="15" fill="rgb(215,6,10)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="42.0871%" y="1893" width="0.0170%" height="15" fill="rgb(249,137,37)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="42.0871%" y="1877" width="0.0170%" height="15" fill="rgb(228,118,43)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="42.0871%" y="1861" width="0.0170%" height="15" fill="rgb(254,177,5)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="42.0871%" y="1845" width="0.0170%" height="15" fill="rgb(227,155,15)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="42.0871%" y="1829" width="0.0170%" height="15" fill="rgb(233,133,3)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="42.0871%" y="1813" width="0.0170%" height="15" fill="rgb(221,41,5)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="42.0871%" y="1797" width="0.0170%" height="15" fill="rgb(233,75,34)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="42.0871%" y="1781" width="0.0170%" height="15" fill="rgb(205,174,15)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="42.0871%" y="1765" width="0.0170%" height="15" fill="rgb(205,217,44)" fg:x="9877" fg:w="4"/><text x="42.3371%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="42.1041%" y="2053" width="0.0128%" height="15" fill="rgb(247,132,43)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="42.1041%" y="2037" width="0.0128%" height="15" fill="rgb(241,89,45)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="42.1041%" y="2021" width="0.0128%" height="15" fill="rgb(231,180,46)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="42.1041%" y="2005" width="0.0128%" height="15" fill="rgb(230,166,46)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="42.1041%" y="1989" width="0.0128%" height="15" fill="rgb(253,179,27)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="42.1041%" y="1973" width="0.0128%" height="15" fill="rgb(207,23,52)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="42.1041%" y="1957" width="0.0128%" height="15" fill="rgb(235,79,25)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="42.1041%" y="1941" width="0.0128%" height="15" fill="rgb(237,80,54)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="42.1041%" y="1925" width="0.0128%" height="15" fill="rgb(214,143,35)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="42.1041%" y="1909" width="0.0128%" height="15" fill="rgb(242,174,27)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="42.1041%" y="1893" width="0.0128%" height="15" fill="rgb(215,162,36)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="42.1041%" y="1877" width="0.0128%" height="15" fill="rgb(244,190,29)" fg:x="9881" fg:w="3"/><text x="42.3541%" y="1887.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="42.1169%" y="2005" width="0.0213%" height="15" fill="rgb(221,152,7)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="42.1169%" y="1989" width="0.0213%" height="15" fill="rgb(236,88,4)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="42.1169%" y="1973" width="0.0213%" height="15" fill="rgb(219,22,54)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="42.1169%" y="1957" width="0.0213%" height="15" fill="rgb(213,227,42)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="42.1169%" y="1941" width="0.0213%" height="15" fill="rgb(243,99,23)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="42.1169%" y="1925" width="0.0213%" height="15" fill="rgb(210,134,21)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="42.1169%" y="1909" width="0.0213%" height="15" fill="rgb(238,36,12)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="42.1169%" y="1893" width="0.0213%" height="15" fill="rgb(238,210,13)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="42.1169%" y="1877" width="0.0213%" height="15" fill="rgb(218,118,31)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="42.1169%" y="1861" width="0.0213%" height="15" fill="rgb(217,94,18)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="42.1169%" y="1845" width="0.0213%" height="15" fill="rgb(236,49,4)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="42.1169%" y="1829" width="0.0213%" height="15" fill="rgb(228,196,17)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="42.1169%" y="1813" width="0.0213%" height="15" fill="rgb(243,213,2)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="42.1169%" y="1797" width="0.0213%" height="15" fill="rgb(246,224,18)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="42.1169%" y="1781" width="0.0213%" height="15" fill="rgb(223,175,6)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="42.1169%" y="1765" width="0.0213%" height="15" fill="rgb(225,4,6)" fg:x="9884" fg:w="5"/><text x="42.3669%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (3 samples, 0.01%)</title><rect x="42.1254%" y="1749" width="0.0128%" height="15" fill="rgb(216,41,14)" fg:x="9886" fg:w="3"/><text x="42.3754%" y="1759.50"></text></g><g><title>core::f64::<impl f64>::recip (3 samples, 0.01%)</title><rect x="42.1254%" y="1733" width="0.0128%" height="15" fill="rgb(244,150,35)" fg:x="9886" fg:w="3"/><text x="42.3754%" y="1743.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="42.1382%" y="1685" width="0.0128%" height="15" fill="rgb(208,155,28)" fg:x="9889" fg:w="3"/><text x="42.3882%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="42.1382%" y="1669" width="0.0128%" height="15" fill="rgb(206,71,1)" fg:x="9889" fg:w="3"/><text x="42.3882%" y="1679.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="42.1382%" y="1653" width="0.0128%" height="15" fill="rgb(239,112,14)" fg:x="9889" fg:w="3"/><text x="42.3882%" y="1663.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="42.1382%" y="1701" width="0.0213%" height="15" fill="rgb(215,208,54)" fg:x="9889" fg:w="5"/><text x="42.3882%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (24 samples, 0.10%)</title><rect x="42.0615%" y="2293" width="0.1023%" height="15" fill="rgb(243,192,33)" fg:x="9871" fg:w="24"/><text x="42.3115%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (24 samples, 0.10%)</title><rect x="42.0615%" y="2277" width="0.1023%" height="15" fill="rgb(224,46,35)" fg:x="9871" fg:w="24"/><text x="42.3115%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (24 samples, 0.10%)</title><rect x="42.0615%" y="2261" width="0.1023%" height="15" fill="rgb(227,83,26)" fg:x="9871" fg:w="24"/><text x="42.3115%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.10%)</title><rect x="42.0615%" y="2245" width="0.1023%" height="15" fill="rgb(226,17,20)" fg:x="9871" fg:w="24"/><text x="42.3115%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (24 samples, 0.10%)</title><rect x="42.0615%" y="2229" width="0.1023%" height="15" fill="rgb(234,128,41)" fg:x="9871" fg:w="24"/><text x="42.3115%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.10%)</title><rect x="42.0615%" y="2213" width="0.1023%" height="15" fill="rgb(231,17,29)" fg:x="9871" fg:w="24"/><text x="42.3115%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (24 samples, 0.10%)</title><rect x="42.0615%" y="2197" width="0.1023%" height="15" fill="rgb(245,130,24)" fg:x="9871" fg:w="24"/><text x="42.3115%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="42.1041%" y="2181" width="0.0597%" height="15" fill="rgb(224,217,47)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="42.1041%" y="2165" width="0.0597%" height="15" fill="rgb(248,196,4)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2175.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="42.1041%" y="2149" width="0.0597%" height="15" fill="rgb(206,127,42)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="42.1041%" y="2133" width="0.0597%" height="15" fill="rgb(227,94,14)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="42.1041%" y="2117" width="0.0597%" height="15" fill="rgb(215,6,19)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="42.1041%" y="2101" width="0.0597%" height="15" fill="rgb(223,212,41)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="42.1041%" y="2085" width="0.0597%" height="15" fill="rgb(214,34,42)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="42.1041%" y="2069" width="0.0597%" height="15" fill="rgb(234,224,21)" fg:x="9881" fg:w="14"/><text x="42.3541%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="42.1169%" y="2053" width="0.0469%" height="15" fill="rgb(249,65,8)" fg:x="9884" fg:w="11"/><text x="42.3669%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="42.1169%" y="2037" width="0.0469%" height="15" fill="rgb(243,51,52)" fg:x="9884" fg:w="11"/><text x="42.3669%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="42.1169%" y="2021" width="0.0469%" height="15" fill="rgb(216,203,38)" fg:x="9884" fg:w="11"/><text x="42.3669%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="42.1382%" y="2005" width="0.0256%" height="15" fill="rgb(243,193,12)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="42.1382%" y="1989" width="0.0256%" height="15" fill="rgb(217,186,5)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1999.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="42.1382%" y="1973" width="0.0256%" height="15" fill="rgb(234,161,38)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="42.1382%" y="1957" width="0.0256%" height="15" fill="rgb(229,129,13)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="42.1382%" y="1941" width="0.0256%" height="15" fill="rgb(243,213,11)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="42.1382%" y="1925" width="0.0256%" height="15" fill="rgb(244,113,35)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="42.1382%" y="1909" width="0.0256%" height="15" fill="rgb(225,112,48)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.1382%" y="1893" width="0.0256%" height="15" fill="rgb(205,99,32)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="42.1382%" y="1877" width="0.0256%" height="15" fill="rgb(217,4,53)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="42.1382%" y="1861" width="0.0256%" height="15" fill="rgb(242,77,3)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="42.1382%" y="1845" width="0.0256%" height="15" fill="rgb(241,135,18)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="42.1382%" y="1829" width="0.0256%" height="15" fill="rgb(207,0,50)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="42.1382%" y="1813" width="0.0256%" height="15" fill="rgb(246,150,6)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="42.1382%" y="1797" width="0.0256%" height="15" fill="rgb(218,152,11)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="42.1382%" y="1781" width="0.0256%" height="15" fill="rgb(212,90,10)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="42.1382%" y="1765" width="0.0256%" height="15" fill="rgb(223,11,25)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="42.1382%" y="1749" width="0.0256%" height="15" fill="rgb(250,42,33)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="42.1382%" y="1733" width="0.0256%" height="15" fill="rgb(241,33,51)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="42.1382%" y="1717" width="0.0256%" height="15" fill="rgb(205,182,32)" fg:x="9889" fg:w="6"/><text x="42.3882%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="42.1723%" y="1765" width="0.0128%" height="15" fill="rgb(228,71,30)" fg:x="9897" fg:w="3"/><text x="42.4223%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="42.1723%" y="2005" width="0.0170%" height="15" fill="rgb(222,41,43)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1723%" y="1989" width="0.0170%" height="15" fill="rgb(236,111,46)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1723%" y="1973" width="0.0170%" height="15" fill="rgb(241,191,22)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.1723%" y="1957" width="0.0170%" height="15" fill="rgb(219,131,37)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="42.1723%" y="1941" width="0.0170%" height="15" fill="rgb(243,147,20)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="42.1723%" y="1925" width="0.0170%" height="15" fill="rgb(247,130,40)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="42.1723%" y="1909" width="0.0170%" height="15" fill="rgb(238,44,2)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="42.1723%" y="1893" width="0.0170%" height="15" fill="rgb(211,69,39)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="42.1723%" y="1877" width="0.0170%" height="15" fill="rgb(215,44,5)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="42.1723%" y="1861" width="0.0170%" height="15" fill="rgb(227,151,19)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="42.1723%" y="1845" width="0.0170%" height="15" fill="rgb(209,48,9)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1723%" y="1829" width="0.0170%" height="15" fill="rgb(234,131,7)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="42.1723%" y="1813" width="0.0170%" height="15" fill="rgb(236,197,42)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="42.1723%" y="1797" width="0.0170%" height="15" fill="rgb(245,122,27)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1723%" y="1781" width="0.0170%" height="15" fill="rgb(253,14,19)" fg:x="9897" fg:w="4"/><text x="42.4223%" y="1791.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="42.1894%" y="1685" width="0.0128%" height="15" fill="rgb(240,89,26)" fg:x="9901" fg:w="3"/><text x="42.4394%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="42.1894%" y="1669" width="0.0128%" height="15" fill="rgb(218,149,44)" fg:x="9901" fg:w="3"/><text x="42.4394%" y="1679.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="42.1894%" y="1653" width="0.0128%" height="15" fill="rgb(210,157,12)" fg:x="9901" fg:w="3"/><text x="42.4394%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="42.1638%" y="2117" width="0.0426%" height="15" fill="rgb(246,96,27)" fg:x="9895" fg:w="10"/><text x="42.4138%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="42.1638%" y="2101" width="0.0426%" height="15" fill="rgb(249,45,12)" fg:x="9895" fg:w="10"/><text x="42.4138%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="42.1638%" y="2085" width="0.0426%" height="15" fill="rgb(242,25,33)" fg:x="9895" fg:w="10"/><text x="42.4138%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="42.1638%" y="2069" width="0.0426%" height="15" fill="rgb(219,213,34)" fg:x="9895" fg:w="10"/><text x="42.4138%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="42.1723%" y="2053" width="0.0341%" height="15" fill="rgb(237,43,53)" fg:x="9897" fg:w="8"/><text x="42.4223%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="42.1723%" y="2037" width="0.0341%" height="15" fill="rgb(254,164,38)" fg:x="9897" fg:w="8"/><text x="42.4223%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="42.1723%" y="2021" width="0.0341%" height="15" fill="rgb(236,8,21)" fg:x="9897" fg:w="8"/><text x="42.4223%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="42.1894%" y="2005" width="0.0170%" height="15" fill="rgb(222,108,24)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="42.1894%" y="1989" width="0.0170%" height="15" fill="rgb(235,220,46)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1999.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="42.1894%" y="1973" width="0.0170%" height="15" fill="rgb(211,70,54)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="42.1894%" y="1957" width="0.0170%" height="15" fill="rgb(205,160,27)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="42.1894%" y="1941" width="0.0170%" height="15" fill="rgb(232,217,41)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1894%" y="1925" width="0.0170%" height="15" fill="rgb(250,22,34)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1894%" y="1909" width="0.0170%" height="15" fill="rgb(233,65,54)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.1894%" y="1893" width="0.0170%" height="15" fill="rgb(238,167,8)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="42.1894%" y="1877" width="0.0170%" height="15" fill="rgb(217,135,46)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="42.1894%" y="1861" width="0.0170%" height="15" fill="rgb(244,39,30)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="42.1894%" y="1845" width="0.0170%" height="15" fill="rgb(240,225,23)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="42.1894%" y="1829" width="0.0170%" height="15" fill="rgb(245,71,45)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="42.1894%" y="1813" width="0.0170%" height="15" fill="rgb(206,32,5)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="42.1894%" y="1797" width="0.0170%" height="15" fill="rgb(239,176,5)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="42.1894%" y="1781" width="0.0170%" height="15" fill="rgb(238,82,16)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1894%" y="1765" width="0.0170%" height="15" fill="rgb(209,78,47)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="42.1894%" y="1749" width="0.0170%" height="15" fill="rgb(231,141,29)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="42.1894%" y="1733" width="0.0170%" height="15" fill="rgb(208,59,36)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="42.1894%" y="1717" width="0.0170%" height="15" fill="rgb(218,225,47)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="42.1894%" y="1701" width="0.0170%" height="15" fill="rgb(241,94,15)" fg:x="9901" fg:w="4"/><text x="42.4394%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="42.2064%" y="2117" width="0.0170%" height="15" fill="rgb(244,161,35)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="42.2064%" y="2101" width="0.0170%" height="15" fill="rgb(239,75,34)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2111.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="42.2064%" y="2085" width="0.0170%" height="15" fill="rgb(231,101,29)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2095.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="42.2064%" y="2069" width="0.0170%" height="15" fill="rgb(252,25,11)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2079.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="42.2064%" y="2053" width="0.0170%" height="15" fill="rgb(242,142,42)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2063.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="42.2064%" y="2037" width="0.0170%" height="15" fill="rgb(231,190,27)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="42.2064%" y="2021" width="0.0170%" height="15" fill="rgb(241,106,3)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="42.2064%" y="2005" width="0.0170%" height="15" fill="rgb(225,168,41)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="2015.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="42.2064%" y="1989" width="0.0170%" height="15" fill="rgb(227,24,35)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="42.2064%" y="1973" width="0.0170%" height="15" fill="rgb(218,63,46)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="42.2064%" y="1957" width="0.0170%" height="15" fill="rgb(252,106,54)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1967.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="42.2064%" y="1941" width="0.0170%" height="15" fill="rgb(228,79,3)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="42.2064%" y="1925" width="0.0170%" height="15" fill="rgb(210,55,46)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="42.2064%" y="1909" width="0.0170%" height="15" fill="rgb(230,88,51)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.2064%" y="1893" width="0.0170%" height="15" fill="rgb(241,221,53)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="42.2064%" y="1877" width="0.0170%" height="15" fill="rgb(253,119,43)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.2064%" y="1861" width="0.0170%" height="15" fill="rgb(225,81,42)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="42.2064%" y="1845" width="0.0170%" height="15" fill="rgb(240,130,17)" fg:x="9905" fg:w="4"/><text x="42.4564%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="42.2107%" y="1829" width="0.0128%" height="15" fill="rgb(223,109,15)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="42.2107%" y="1813" width="0.0128%" height="15" fill="rgb(209,111,26)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1823.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="42.2107%" y="1797" width="0.0128%" height="15" fill="rgb(249,65,52)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="42.2107%" y="1781" width="0.0128%" height="15" fill="rgb(237,57,35)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="42.2107%" y="1765" width="0.0128%" height="15" fill="rgb(241,196,19)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="42.2107%" y="1749" width="0.0128%" height="15" fill="rgb(210,93,0)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="42.2107%" y="1733" width="0.0128%" height="15" fill="rgb(210,105,38)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.2107%" y="1717" width="0.0128%" height="15" fill="rgb(224,102,2)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="42.2107%" y="1701" width="0.0128%" height="15" fill="rgb(235,198,31)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1711.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="42.2107%" y="1685" width="0.0128%" height="15" fill="rgb(218,114,41)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="42.2107%" y="1669" width="0.0128%" height="15" fill="rgb(238,70,17)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1679.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="42.2107%" y="1653" width="0.0128%" height="15" fill="rgb(216,188,2)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1663.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="42.2107%" y="1637" width="0.0128%" height="15" fill="rgb(236,11,45)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="42.2107%" y="1621" width="0.0128%" height="15" fill="rgb(227,125,54)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1631.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="42.2107%" y="1605" width="0.0128%" height="15" fill="rgb(213,97,15)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="42.2107%" y="1589" width="0.0128%" height="15" fill="rgb(215,199,0)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1599.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="42.2107%" y="1573" width="0.0128%" height="15" fill="rgb(223,164,52)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1583.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="42.2107%" y="1557" width="0.0128%" height="15" fill="rgb(229,168,27)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="42.2107%" y="1541" width="0.0128%" height="15" fill="rgb(224,208,40)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1551.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="42.2107%" y="1525" width="0.0128%" height="15" fill="rgb(228,178,30)" fg:x="9906" fg:w="3"/><text x="42.4607%" y="1535.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="42.2277%" y="1685" width="0.0170%" height="15" fill="rgb(208,34,45)" fg:x="9910" fg:w="4"/><text x="42.4777%" y="1695.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="42.2277%" y="1669" width="0.0170%" height="15" fill="rgb(209,143,18)" fg:x="9910" fg:w="4"/><text x="42.4777%" y="1679.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="42.2277%" y="1653" width="0.0170%" height="15" fill="rgb(218,150,44)" fg:x="9910" fg:w="4"/><text x="42.4777%" y="1663.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="42.2277%" y="1637" width="0.0170%" height="15" fill="rgb(241,44,25)" fg:x="9910" fg:w="4"/><text x="42.4777%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="42.2277%" y="1941" width="0.0256%" height="15" fill="rgb(242,210,34)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="42.2277%" y="1925" width="0.0256%" height="15" fill="rgb(232,120,3)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="42.2277%" y="1909" width="0.0256%" height="15" fill="rgb(211,124,31)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.2277%" y="1893" width="0.0256%" height="15" fill="rgb(239,57,34)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="42.2277%" y="1877" width="0.0256%" height="15" fill="rgb(240,85,9)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="42.2277%" y="1861" width="0.0256%" height="15" fill="rgb(249,1,45)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="42.2277%" y="1845" width="0.0256%" height="15" fill="rgb(239,91,40)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="42.2277%" y="1829" width="0.0256%" height="15" fill="rgb(211,60,7)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="42.2277%" y="1813" width="0.0256%" height="15" fill="rgb(222,218,26)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="42.2277%" y="1797" width="0.0256%" height="15" fill="rgb(217,66,19)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="42.2277%" y="1781" width="0.0256%" height="15" fill="rgb(215,224,41)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="42.2277%" y="1765" width="0.0256%" height="15" fill="rgb(209,122,52)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="42.2277%" y="1749" width="0.0256%" height="15" fill="rgb(221,121,40)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="42.2277%" y="1733" width="0.0256%" height="15" fill="rgb(244,184,30)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="42.2277%" y="1717" width="0.0256%" height="15" fill="rgb(229,115,31)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="42.2277%" y="1701" width="0.0256%" height="15" fill="rgb(216,33,31)" fg:x="9910" fg:w="6"/><text x="42.4777%" y="1711.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="42.2575%" y="1621" width="0.0128%" height="15" fill="rgb(226,130,40)" fg:x="9917" fg:w="3"/><text x="42.5075%" y="1631.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="42.2575%" y="1605" width="0.0128%" height="15" fill="rgb(209,89,30)" fg:x="9917" fg:w="3"/><text x="42.5075%" y="1615.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="42.2575%" y="1589" width="0.0128%" height="15" fill="rgb(246,84,45)" fg:x="9917" fg:w="3"/><text x="42.5075%" y="1599.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (7 samples, 0.03%)</title><rect x="42.2533%" y="1637" width="0.0298%" height="15" fill="rgb(214,190,32)" fg:x="9916" fg:w="7"/><text x="42.5033%" y="1647.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (105 samples, 0.45%)</title><rect x="41.8400%" y="2725" width="0.4474%" height="15" fill="rgb(234,3,14)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2735.50"></text></g><g><title>rayon_core::job::JobRef::execute (105 samples, 0.45%)</title><rect x="41.8400%" y="2709" width="0.4474%" height="15" fill="rgb(239,13,22)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2719.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (105 samples, 0.45%)</title><rect x="41.8400%" y="2693" width="0.4474%" height="15" fill="rgb(250,185,44)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2703.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (105 samples, 0.45%)</title><rect x="41.8400%" y="2677" width="0.4474%" height="15" fill="rgb(209,76,10)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (105 samples, 0.45%)</title><rect x="41.8400%" y="2661" width="0.4474%" height="15" fill="rgb(214,221,10)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (105 samples, 0.45%)</title><rect x="41.8400%" y="2645" width="0.4474%" height="15" fill="rgb(207,3,22)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2655.50"></text></g><g><title>std::panicking::try (105 samples, 0.45%)</title><rect x="41.8400%" y="2629" width="0.4474%" height="15" fill="rgb(241,42,8)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (105 samples, 0.45%)</title><rect x="41.8400%" y="2613" width="0.4474%" height="15" fill="rgb(238,49,21)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (105 samples, 0.45%)</title><rect x="41.8400%" y="2597" width="0.4474%" height="15" fill="rgb(232,75,2)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2607.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (105 samples, 0.45%)</title><rect x="41.8400%" y="2581" width="0.4474%" height="15" fill="rgb(245,109,36)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (105 samples, 0.45%)</title><rect x="41.8400%" y="2565" width="0.4474%" height="15" fill="rgb(239,203,39)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (105 samples, 0.45%)</title><rect x="41.8400%" y="2549" width="0.4474%" height="15" fill="rgb(232,35,47)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (105 samples, 0.45%)</title><rect x="41.8400%" y="2533" width="0.4474%" height="15" fill="rgb(231,1,26)" fg:x="9819" fg:w="105"/><text x="42.0900%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (103 samples, 0.44%)</title><rect x="41.8485%" y="2517" width="0.4389%" height="15" fill="rgb(241,219,38)" fg:x="9821" fg:w="103"/><text x="42.0985%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (103 samples, 0.44%)</title><rect x="41.8485%" y="2501" width="0.4389%" height="15" fill="rgb(221,68,12)" fg:x="9821" fg:w="103"/><text x="42.0985%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (103 samples, 0.44%)</title><rect x="41.8485%" y="2485" width="0.4389%" height="15" fill="rgb(211,55,8)" fg:x="9821" fg:w="103"/><text x="42.0985%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (57 samples, 0.24%)</title><rect x="42.0445%" y="2469" width="0.2429%" height="15" fill="rgb(217,48,19)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (57 samples, 0.24%)</title><rect x="42.0445%" y="2453" width="0.2429%" height="15" fill="rgb(244,58,26)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2463.50"></text></g><g><title>std::panicking::try (57 samples, 0.24%)</title><rect x="42.0445%" y="2437" width="0.2429%" height="15" fill="rgb(250,78,9)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (57 samples, 0.24%)</title><rect x="42.0445%" y="2421" width="0.2429%" height="15" fill="rgb(237,192,41)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (57 samples, 0.24%)</title><rect x="42.0445%" y="2405" width="0.2429%" height="15" fill="rgb(216,170,31)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (57 samples, 0.24%)</title><rect x="42.0445%" y="2389" width="0.2429%" height="15" fill="rgb(223,15,37)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (57 samples, 0.24%)</title><rect x="42.0445%" y="2373" width="0.2429%" height="15" fill="rgb(247,33,22)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.24%)</title><rect x="42.0445%" y="2357" width="0.2429%" height="15" fill="rgb(228,133,32)" fg:x="9867" fg:w="57"/><text x="42.2945%" y="2367.50"></text></g><g><title>rayon_core::join::join_context (53 samples, 0.23%)</title><rect x="42.0615%" y="2341" width="0.2258%" height="15" fill="rgb(217,50,20)" fg:x="9871" fg:w="53"/><text x="42.3115%" y="2351.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.23%)</title><rect x="42.0615%" y="2325" width="0.2258%" height="15" fill="rgb(247,200,10)" fg:x="9871" fg:w="53"/><text x="42.3115%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (53 samples, 0.23%)</title><rect x="42.0615%" y="2309" width="0.2258%" height="15" fill="rgb(242,54,30)" fg:x="9871" fg:w="53"/><text x="42.3115%" y="2319.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29 samples, 0.12%)</title><rect x="42.1638%" y="2293" width="0.1236%" height="15" fill="rgb(219,129,39)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2303.50"></text></g><g><title>std::panic::catch_unwind (29 samples, 0.12%)</title><rect x="42.1638%" y="2277" width="0.1236%" height="15" fill="rgb(222,101,33)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2287.50"></text></g><g><title>std::panicking::try (29 samples, 0.12%)</title><rect x="42.1638%" y="2261" width="0.1236%" height="15" fill="rgb(250,220,34)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2271.50"></text></g><g><title>std::panicking::try::do_call (29 samples, 0.12%)</title><rect x="42.1638%" y="2245" width="0.1236%" height="15" fill="rgb(251,1,27)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2255.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (29 samples, 0.12%)</title><rect x="42.1638%" y="2229" width="0.1236%" height="15" fill="rgb(226,19,17)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (29 samples, 0.12%)</title><rect x="42.1638%" y="2213" width="0.1236%" height="15" fill="rgb(208,208,27)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="42.1638%" y="2197" width="0.1236%" height="15" fill="rgb(235,1,51)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="42.1638%" y="2181" width="0.1236%" height="15" fill="rgb(250,198,15)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2191.50"></text></g><g><title>rayon_core::join::join_context (29 samples, 0.12%)</title><rect x="42.1638%" y="2165" width="0.1236%" height="15" fill="rgb(249,66,32)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2175.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.12%)</title><rect x="42.1638%" y="2149" width="0.1236%" height="15" fill="rgb(253,13,19)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2159.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (29 samples, 0.12%)</title><rect x="42.1638%" y="2133" width="0.1236%" height="15" fill="rgb(221,141,24)" fg:x="9895" fg:w="29"/><text x="42.4138%" y="2143.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="42.2235%" y="2117" width="0.0639%" height="15" fill="rgb(246,171,23)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2127.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="42.2235%" y="2101" width="0.0639%" height="15" fill="rgb(226,43,25)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2111.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="42.2235%" y="2085" width="0.0639%" height="15" fill="rgb(224,99,12)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2095.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="42.2235%" y="2069" width="0.0639%" height="15" fill="rgb(241,199,49)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2079.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="42.2235%" y="2053" width="0.0639%" height="15" fill="rgb(221,74,41)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="42.2235%" y="2037" width="0.0639%" height="15" fill="rgb(225,129,44)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="42.2235%" y="2021" width="0.0639%" height="15" fill="rgb(252,45,37)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="42.2235%" y="2005" width="0.0639%" height="15" fill="rgb(215,67,54)" fg:x="9909" fg:w="15"/><text x="42.4735%" y="2015.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="42.2277%" y="1989" width="0.0597%" height="15" fill="rgb(249,150,42)" fg:x="9910" fg:w="14"/><text x="42.4777%" y="1999.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="42.2277%" y="1973" width="0.0597%" height="15" fill="rgb(219,42,29)" fg:x="9910" fg:w="14"/><text x="42.4777%" y="1983.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="42.2277%" y="1957" width="0.0597%" height="15" fill="rgb(241,195,49)" fg:x="9910" fg:w="14"/><text x="42.4777%" y="1967.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="42.2533%" y="1941" width="0.0341%" height="15" fill="rgb(208,83,46)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1951.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="42.2533%" y="1925" width="0.0341%" height="15" fill="rgb(209,15,19)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1935.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="42.2533%" y="1909" width="0.0341%" height="15" fill="rgb(232,157,1)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1919.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="42.2533%" y="1893" width="0.0341%" height="15" fill="rgb(252,113,14)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1903.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="42.2533%" y="1877" width="0.0341%" height="15" fill="rgb(225,170,8)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="42.2533%" y="1861" width="0.0341%" height="15" fill="rgb(251,139,40)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="42.2533%" y="1845" width="0.0341%" height="15" fill="rgb(254,62,11)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="42.2533%" y="1829" width="0.0341%" height="15" fill="rgb(214,8,16)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="42.2533%" y="1813" width="0.0341%" height="15" fill="rgb(225,48,52)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1823.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="42.2533%" y="1797" width="0.0341%" height="15" fill="rgb(214,33,22)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="42.2533%" y="1781" width="0.0341%" height="15" fill="rgb(227,91,35)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1791.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="42.2533%" y="1765" width="0.0341%" height="15" fill="rgb(254,171,6)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1775.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="42.2533%" y="1749" width="0.0341%" height="15" fill="rgb(221,34,39)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="42.2533%" y="1733" width="0.0341%" height="15" fill="rgb(237,212,31)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1743.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="42.2533%" y="1717" width="0.0341%" height="15" fill="rgb(239,202,28)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="42.2533%" y="1701" width="0.0341%" height="15" fill="rgb(239,35,53)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1711.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="42.2533%" y="1685" width="0.0341%" height="15" fill="rgb(208,186,53)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1695.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="42.2533%" y="1669" width="0.0341%" height="15" fill="rgb(236,121,1)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="42.2533%" y="1653" width="0.0341%" height="15" fill="rgb(216,179,36)" fg:x="9916" fg:w="8"/><text x="42.5033%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (106 samples, 0.45%)</title><rect x="41.8400%" y="2757" width="0.4517%" height="15" fill="rgb(223,30,24)" fg:x="9819" fg:w="106"/><text x="42.0900%" y="2767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (106 samples, 0.45%)</title><rect x="41.8400%" y="2741" width="0.4517%" height="15" fill="rgb(215,15,14)" fg:x="9819" fg:w="106"/><text x="42.0900%" y="2751.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (60 samples, 0.26%)</title><rect x="42.3044%" y="2437" width="0.2557%" height="15" fill="rgb(235,170,33)" fg:x="9928" fg:w="60"/><text x="42.5544%" y="2447.50"></text></g><g><title>std::f64::<impl f64>::exp (60 samples, 0.26%)</title><rect x="42.3044%" y="2421" width="0.2557%" height="15" fill="rgb(246,36,50)" fg:x="9928" fg:w="60"/><text x="42.5544%" y="2431.50"></text></g><g><title>exp (58 samples, 0.25%)</title><rect x="42.3129%" y="2405" width="0.2471%" height="15" fill="rgb(250,64,3)" fg:x="9930" fg:w="58"/><text x="42.5629%" y="2415.50"></text></g><g><title>[libm.so.6] (48 samples, 0.20%)</title><rect x="42.3555%" y="2389" width="0.2045%" height="15" fill="rgb(234,216,36)" fg:x="9940" fg:w="48"/><text x="42.6055%" y="2399.50"></text></g><g><title><f64 as num_traits::float::Float>::powi (3 samples, 0.01%)</title><rect x="42.5601%" y="2437" width="0.0128%" height="15" fill="rgb(206,137,9)" fg:x="9988" fg:w="3"/><text x="42.8101%" y="2447.50"></text></g><g><title>std::f64::<impl f64>::powi (3 samples, 0.01%)</title><rect x="42.5601%" y="2421" width="0.0128%" height="15" fill="rgb(231,44,48)" fg:x="9988" fg:w="3"/><text x="42.8101%" y="2431.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (35 samples, 0.15%)</title><rect x="42.5729%" y="2437" width="0.1491%" height="15" fill="rgb(219,152,26)" fg:x="9991" fg:w="35"/><text x="42.8229%" y="2447.50"></text></g><g><title>core::f64::<impl f64>::recip (35 samples, 0.15%)</title><rect x="42.5729%" y="2421" width="0.1491%" height="15" fill="rgb(236,29,53)" fg:x="9991" fg:w="35"/><text x="42.8229%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (124 samples, 0.53%)</title><rect x="42.2959%" y="2453" width="0.5284%" height="15" fill="rgb(241,52,9)" fg:x="9926" fg:w="124"/><text x="42.5459%" y="2463.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (24 samples, 0.10%)</title><rect x="42.7220%" y="2437" width="0.1023%" height="15" fill="rgb(249,21,16)" fg:x="10026" fg:w="24"/><text x="42.9720%" y="2447.50"></text></g><g><title>std::f64::<impl f64>::sqrt (24 samples, 0.10%)</title><rect x="42.7220%" y="2421" width="0.1023%" height="15" fill="rgb(227,165,46)" fg:x="10026" fg:w="24"/><text x="42.9720%" y="2431.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="42.8243%" y="2453" width="0.0256%" height="15" fill="rgb(224,224,20)" fg:x="10050" fg:w="6"/><text x="43.0743%" y="2463.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (132 samples, 0.56%)</title><rect x="42.2916%" y="2613" width="0.5625%" height="15" fill="rgb(240,43,22)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (132 samples, 0.56%)</title><rect x="42.2916%" y="2597" width="0.5625%" height="15" fill="rgb(218,119,3)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (132 samples, 0.56%)</title><rect x="42.2916%" y="2581" width="0.5625%" height="15" fill="rgb(236,223,52)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2591.50"></text></g><g><title>core::option::Option<T>::map (132 samples, 0.56%)</title><rect x="42.2916%" y="2565" width="0.5625%" height="15" fill="rgb(215,37,49)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (132 samples, 0.56%)</title><rect x="42.2916%" y="2549" width="0.5625%" height="15" fill="rgb(243,90,39)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (132 samples, 0.56%)</title><rect x="42.2916%" y="2533" width="0.5625%" height="15" fill="rgb(208,73,24)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (132 samples, 0.56%)</title><rect x="42.2916%" y="2517" width="0.5625%" height="15" fill="rgb(225,101,2)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2527.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (132 samples, 0.56%)</title><rect x="42.2916%" y="2501" width="0.5625%" height="15" fill="rgb(225,218,30)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2511.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (132 samples, 0.56%)</title><rect x="42.2916%" y="2485" width="0.5625%" height="15" fill="rgb(210,92,36)" fg:x="9925" fg:w="132"/><text x="42.5416%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (131 samples, 0.56%)</title><rect x="42.2959%" y="2469" width="0.5582%" height="15" fill="rgb(209,57,50)" fg:x="9926" fg:w="131"/><text x="42.5459%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (137 samples, 0.58%)</title><rect x="42.2916%" y="2629" width="0.5838%" height="15" fill="rgb(222,217,14)" fg:x="9925" fg:w="137"/><text x="42.5416%" y="2639.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="42.8541%" y="2613" width="0.0213%" height="15" fill="rgb(241,128,46)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2623.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="42.8541%" y="2597" width="0.0213%" height="15" fill="rgb(240,214,47)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="42.8541%" y="2581" width="0.0213%" height="15" fill="rgb(232,48,27)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (5 samples, 0.02%)</title><rect x="42.8541%" y="2565" width="0.0213%" height="15" fill="rgb(245,182,35)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="42.8541%" y="2549" width="0.0213%" height="15" fill="rgb(218,15,25)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="42.8541%" y="2533" width="0.0213%" height="15" fill="rgb(243,97,37)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="42.8541%" y="2517" width="0.0213%" height="15" fill="rgb(227,206,39)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2527.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="42.8541%" y="2501" width="0.0213%" height="15" fill="rgb(223,132,25)" fg:x="10057" fg:w="5"/><text x="43.1041%" y="2511.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="42.8626%" y="2485" width="0.0128%" height="15" fill="rgb(206,149,36)" fg:x="10059" fg:w="3"/><text x="43.1126%" y="2495.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (14 samples, 0.06%)</title><rect x="42.8754%" y="2325" width="0.0597%" height="15" fill="rgb(251,172,43)" fg:x="10062" fg:w="14"/><text x="43.1254%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::exp (14 samples, 0.06%)</title><rect x="42.8754%" y="2309" width="0.0597%" height="15" fill="rgb(209,27,53)" fg:x="10062" fg:w="14"/><text x="43.1254%" y="2319.50"></text></g><g><title>exp (14 samples, 0.06%)</title><rect x="42.8754%" y="2293" width="0.0597%" height="15" fill="rgb(237,49,7)" fg:x="10062" fg:w="14"/><text x="43.1254%" y="2303.50"></text></g><g><title>[libm.so.6] (13 samples, 0.06%)</title><rect x="42.8797%" y="2277" width="0.0554%" height="15" fill="rgb(213,133,27)" fg:x="10063" fg:w="13"/><text x="43.1297%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (11 samples, 0.05%)</title><rect x="42.9351%" y="2325" width="0.0469%" height="15" fill="rgb(235,122,2)" fg:x="10076" fg:w="11"/><text x="43.1851%" y="2335.50"></text></g><g><title>core::f64::<impl f64>::recip (11 samples, 0.05%)</title><rect x="42.9351%" y="2309" width="0.0469%" height="15" fill="rgb(224,28,18)" fg:x="10076" fg:w="11"/><text x="43.1851%" y="2319.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (30 samples, 0.13%)</title><rect x="42.8754%" y="2501" width="0.1278%" height="15" fill="rgb(212,44,18)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (30 samples, 0.13%)</title><rect x="42.8754%" y="2485" width="0.1278%" height="15" fill="rgb(230,120,52)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (30 samples, 0.13%)</title><rect x="42.8754%" y="2469" width="0.1278%" height="15" fill="rgb(246,2,38)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2479.50"></text></g><g><title>core::option::Option<T>::map (30 samples, 0.13%)</title><rect x="42.8754%" y="2453" width="0.1278%" height="15" fill="rgb(223,112,31)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (30 samples, 0.13%)</title><rect x="42.8754%" y="2437" width="0.1278%" height="15" fill="rgb(233,181,7)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (30 samples, 0.13%)</title><rect x="42.8754%" y="2421" width="0.1278%" height="15" fill="rgb(246,62,48)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2431.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (30 samples, 0.13%)</title><rect x="42.8754%" y="2405" width="0.1278%" height="15" fill="rgb(243,188,17)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2415.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (30 samples, 0.13%)</title><rect x="42.8754%" y="2389" width="0.1278%" height="15" fill="rgb(254,218,0)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2399.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (30 samples, 0.13%)</title><rect x="42.8754%" y="2373" width="0.1278%" height="15" fill="rgb(218,79,45)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2383.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (30 samples, 0.13%)</title><rect x="42.8754%" y="2357" width="0.1278%" height="15" fill="rgb(219,219,39)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2367.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (30 samples, 0.13%)</title><rect x="42.8754%" y="2341" width="0.1278%" height="15" fill="rgb(245,113,46)" fg:x="10062" fg:w="30"/><text x="43.1254%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="42.9819%" y="2325" width="0.0213%" height="15" fill="rgb(228,23,22)" fg:x="10087" fg:w="5"/><text x="43.2319%" y="2335.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="42.9819%" y="2309" width="0.0213%" height="15" fill="rgb(220,133,20)" fg:x="10087" fg:w="5"/><text x="43.2319%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="43.0160%" y="2261" width="0.0128%" height="15" fill="rgb(228,69,6)" fg:x="10095" fg:w="3"/><text x="43.2660%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="43.0160%" y="2245" width="0.0128%" height="15" fill="rgb(214,111,9)" fg:x="10095" fg:w="3"/><text x="43.2660%" y="2255.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="43.0032%" y="2373" width="0.0341%" height="15" fill="rgb(217,221,34)" fg:x="10092" fg:w="8"/><text x="43.2532%" y="2383.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="43.0032%" y="2357" width="0.0341%" height="15" fill="rgb(236,169,15)" fg:x="10092" fg:w="8"/><text x="43.2532%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="43.0075%" y="2341" width="0.0298%" height="15" fill="rgb(232,185,41)" fg:x="10093" fg:w="7"/><text x="43.2575%" y="2351.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="43.0075%" y="2325" width="0.0298%" height="15" fill="rgb(212,188,41)" fg:x="10093" fg:w="7"/><text x="43.2575%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="43.0075%" y="2309" width="0.0298%" height="15" fill="rgb(254,221,34)" fg:x="10093" fg:w="7"/><text x="43.2575%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="43.0075%" y="2293" width="0.0298%" height="15" fill="rgb(232,129,15)" fg:x="10093" fg:w="7"/><text x="43.2575%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="43.0160%" y="2277" width="0.0213%" height="15" fill="rgb(207,179,27)" fg:x="10095" fg:w="5"/><text x="43.2660%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (40 samples, 0.17%)</title><rect x="42.8754%" y="2517" width="0.1704%" height="15" fill="rgb(236,109,36)" fg:x="10062" fg:w="40"/><text x="43.1254%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="43.0032%" y="2501" width="0.0426%" height="15" fill="rgb(216,39,1)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2511.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="43.0032%" y="2485" width="0.0426%" height="15" fill="rgb(237,112,19)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2495.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="43.0032%" y="2469" width="0.0426%" height="15" fill="rgb(225,49,30)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="43.0032%" y="2453" width="0.0426%" height="15" fill="rgb(244,50,6)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2463.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="43.0032%" y="2437" width="0.0426%" height="15" fill="rgb(237,114,52)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2447.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="43.0032%" y="2421" width="0.0426%" height="15" fill="rgb(251,58,36)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2431.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="43.0032%" y="2405" width="0.0426%" height="15" fill="rgb(213,227,16)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2415.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="43.0032%" y="2389" width="0.0426%" height="15" fill="rgb(247,206,23)" fg:x="10092" fg:w="10"/><text x="43.2532%" y="2399.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (76 samples, 0.32%)</title><rect x="43.0544%" y="2213" width="0.3238%" height="15" fill="rgb(245,62,47)" fg:x="10104" fg:w="76"/><text x="43.3044%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::exp (76 samples, 0.32%)</title><rect x="43.0544%" y="2197" width="0.3238%" height="15" fill="rgb(236,169,7)" fg:x="10104" fg:w="76"/><text x="43.3044%" y="2207.50"></text></g><g><title>exp (70 samples, 0.30%)</title><rect x="43.0799%" y="2181" width="0.2983%" height="15" fill="rgb(226,221,2)" fg:x="10110" fg:w="70"/><text x="43.3299%" y="2191.50"></text></g><g><title>[libm.so.6] (51 samples, 0.22%)</title><rect x="43.1609%" y="2165" width="0.2173%" height="15" fill="rgb(205,208,18)" fg:x="10129" fg:w="51"/><text x="43.4109%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (37 samples, 0.16%)</title><rect x="43.3825%" y="2213" width="0.1577%" height="15" fill="rgb(232,132,49)" fg:x="10181" fg:w="37"/><text x="43.6325%" y="2223.50"></text></g><g><title>core::f64::<impl f64>::recip (37 samples, 0.16%)</title><rect x="43.3825%" y="2197" width="0.1577%" height="15" fill="rgb(213,16,25)" fg:x="10181" fg:w="37"/><text x="43.6325%" y="2207.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (155 samples, 0.66%)</title><rect x="43.0501%" y="2229" width="0.6605%" height="15" fill="rgb(232,167,11)" fg:x="10103" fg:w="155"/><text x="43.3001%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (40 samples, 0.17%)</title><rect x="43.5401%" y="2213" width="0.1704%" height="15" fill="rgb(254,59,27)" fg:x="10218" fg:w="40"/><text x="43.7901%" y="2223.50"></text></g><g><title>std::f64::<impl f64>::sqrt (40 samples, 0.17%)</title><rect x="43.5401%" y="2197" width="0.1704%" height="15" fill="rgb(240,71,2)" fg:x="10218" fg:w="40"/><text x="43.7901%" y="2207.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (165 samples, 0.70%)</title><rect x="43.0458%" y="2389" width="0.7031%" height="15" fill="rgb(244,16,28)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (165 samples, 0.70%)</title><rect x="43.0458%" y="2373" width="0.7031%" height="15" fill="rgb(236,78,17)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (165 samples, 0.70%)</title><rect x="43.0458%" y="2357" width="0.7031%" height="15" fill="rgb(252,132,24)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (165 samples, 0.70%)</title><rect x="43.0458%" y="2341" width="0.7031%" height="15" fill="rgb(212,195,10)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (165 samples, 0.70%)</title><rect x="43.0458%" y="2325" width="0.7031%" height="15" fill="rgb(211,76,47)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (165 samples, 0.70%)</title><rect x="43.0458%" y="2309" width="0.7031%" height="15" fill="rgb(212,100,48)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (165 samples, 0.70%)</title><rect x="43.0458%" y="2293" width="0.7031%" height="15" fill="rgb(241,197,26)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (165 samples, 0.70%)</title><rect x="43.0458%" y="2277" width="0.7031%" height="15" fill="rgb(238,194,11)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (165 samples, 0.70%)</title><rect x="43.0458%" y="2261" width="0.7031%" height="15" fill="rgb(209,147,38)" fg:x="10102" fg:w="165"/><text x="43.2958%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (164 samples, 0.70%)</title><rect x="43.0501%" y="2245" width="0.6988%" height="15" fill="rgb(238,125,11)" fg:x="10103" fg:w="164"/><text x="43.3001%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (9 samples, 0.04%)</title><rect x="43.7106%" y="2229" width="0.0384%" height="15" fill="rgb(249,25,47)" fg:x="10258" fg:w="9"/><text x="43.9606%" y="2239.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (6 samples, 0.03%)</title><rect x="43.7532%" y="2229" width="0.0256%" height="15" fill="rgb(214,175,36)" fg:x="10268" fg:w="6"/><text x="44.0032%" y="2239.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="43.7660%" y="2213" width="0.0128%" height="15" fill="rgb(236,202,49)" fg:x="10271" fg:w="3"/><text x="44.0160%" y="2223.50"></text></g><g><title>oorandom::Rand64::rand_u64 (3 samples, 0.01%)</title><rect x="43.7660%" y="2197" width="0.0128%" height="15" fill="rgb(230,101,33)" fg:x="10271" fg:w="3"/><text x="44.0160%" y="2207.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="43.7489%" y="2245" width="0.0341%" height="15" fill="rgb(237,15,39)" fg:x="10267" fg:w="8"/><text x="43.9989%" y="2255.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="43.7489%" y="2373" width="0.0554%" height="15" fill="rgb(209,127,19)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="43.7489%" y="2357" width="0.0554%" height="15" fill="rgb(205,176,23)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2367.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="43.7489%" y="2341" width="0.0554%" height="15" fill="rgb(253,42,35)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2351.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="43.7489%" y="2325" width="0.0554%" height="15" fill="rgb(218,61,11)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2335.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (13 samples, 0.06%)</title><rect x="43.7489%" y="2309" width="0.0554%" height="15" fill="rgb(235,116,33)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2319.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (13 samples, 0.06%)</title><rect x="43.7489%" y="2293" width="0.0554%" height="15" fill="rgb(237,135,53)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2303.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (13 samples, 0.06%)</title><rect x="43.7489%" y="2277" width="0.0554%" height="15" fill="rgb(219,146,3)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (13 samples, 0.06%)</title><rect x="43.7489%" y="2261" width="0.0554%" height="15" fill="rgb(208,0,5)" fg:x="10267" fg:w="13"/><text x="43.9989%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="43.7830%" y="2245" width="0.0213%" height="15" fill="rgb(205,210,24)" fg:x="10275" fg:w="5"/><text x="44.0330%" y="2255.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="43.7915%" y="2229" width="0.0128%" height="15" fill="rgb(248,53,13)" fg:x="10277" fg:w="3"/><text x="44.0415%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::partition (5 samples, 0.02%)</title><rect x="43.8086%" y="2165" width="0.0213%" height="15" fill="rgb(207,66,14)" fg:x="10281" fg:w="5"/><text x="44.0586%" y="2175.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="43.8171%" y="2149" width="0.0128%" height="15" fill="rgb(206,194,7)" fg:x="10283" fg:w="3"/><text x="44.0671%" y="2159.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="43.8043%" y="2261" width="0.0384%" height="15" fill="rgb(240,104,35)" fg:x="10280" fg:w="9"/><text x="44.0543%" y="2271.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="43.8043%" y="2245" width="0.0384%" height="15" fill="rgb(221,114,21)" fg:x="10280" fg:w="9"/><text x="44.0543%" y="2255.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (9 samples, 0.04%)</title><rect x="43.8043%" y="2229" width="0.0384%" height="15" fill="rgb(252,196,49)" fg:x="10280" fg:w="9"/><text x="44.0543%" y="2239.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (9 samples, 0.04%)</title><rect x="43.8043%" y="2213" width="0.0384%" height="15" fill="rgb(229,117,36)" fg:x="10280" fg:w="9"/><text x="44.0543%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (9 samples, 0.04%)</title><rect x="43.8043%" y="2197" width="0.0384%" height="15" fill="rgb(206,176,35)" fg:x="10280" fg:w="9"/><text x="44.0543%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="43.8043%" y="2181" width="0.0384%" height="15" fill="rgb(248,207,46)" fg:x="10280" fg:w="9"/><text x="44.0543%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="43.8299%" y="2165" width="0.0128%" height="15" fill="rgb(213,58,35)" fg:x="10286" fg:w="3"/><text x="44.0799%" y="2175.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (189 samples, 0.81%)</title><rect x="43.0458%" y="2469" width="0.8054%" height="15" fill="rgb(211,41,46)" fg:x="10102" fg:w="189"/><text x="43.2958%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (189 samples, 0.81%)</title><rect x="43.0458%" y="2453" width="0.8054%" height="15" fill="rgb(241,216,0)" fg:x="10102" fg:w="189"/><text x="43.2958%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (189 samples, 0.81%)</title><rect x="43.0458%" y="2437" width="0.8054%" height="15" fill="rgb(231,15,47)" fg:x="10102" fg:w="189"/><text x="43.2958%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (189 samples, 0.81%)</title><rect x="43.0458%" y="2421" width="0.8054%" height="15" fill="rgb(228,214,32)" fg:x="10102" fg:w="189"/><text x="43.2958%" y="2431.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (189 samples, 0.81%)</title><rect x="43.0458%" y="2405" width="0.8054%" height="15" fill="rgb(227,130,45)" fg:x="10102" fg:w="189"/><text x="43.2958%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (24 samples, 0.10%)</title><rect x="43.7489%" y="2389" width="0.1023%" height="15" fill="rgb(214,43,30)" fg:x="10267" fg:w="24"/><text x="43.9989%" y="2399.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="43.8043%" y="2373" width="0.0469%" height="15" fill="rgb(228,106,41)" fg:x="10280" fg:w="11"/><text x="44.0543%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="43.8043%" y="2357" width="0.0469%" height="15" fill="rgb(208,4,53)" fg:x="10280" fg:w="11"/><text x="44.0543%" y="2367.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (11 samples, 0.05%)</title><rect x="43.8043%" y="2341" width="0.0469%" height="15" fill="rgb(225,192,7)" fg:x="10280" fg:w="11"/><text x="44.0543%" y="2351.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (11 samples, 0.05%)</title><rect x="43.8043%" y="2325" width="0.0469%" height="15" fill="rgb(226,55,39)" fg:x="10280" fg:w="11"/><text x="44.0543%" y="2335.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (11 samples, 0.05%)</title><rect x="43.8043%" y="2309" width="0.0469%" height="15" fill="rgb(227,84,20)" fg:x="10280" fg:w="11"/><text x="44.0543%" y="2319.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (11 samples, 0.05%)</title><rect x="43.8043%" y="2293" width="0.0469%" height="15" fill="rgb(226,153,48)" fg:x="10280" fg:w="11"/><text x="44.0543%" y="2303.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (11 samples, 0.05%)</title><rect x="43.8043%" y="2277" width="0.0469%" height="15" fill="rgb(205,139,2)" fg:x="10280" fg:w="11"/><text x="44.0543%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (69 samples, 0.29%)</title><rect x="43.8640%" y="2149" width="0.2940%" height="15" fill="rgb(232,113,9)" fg:x="10294" fg:w="69"/><text x="44.1140%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::exp (69 samples, 0.29%)</title><rect x="43.8640%" y="2133" width="0.2940%" height="15" fill="rgb(253,96,53)" fg:x="10294" fg:w="69"/><text x="44.1140%" y="2143.50"></text></g><g><title>exp (64 samples, 0.27%)</title><rect x="43.8853%" y="2117" width="0.2727%" height="15" fill="rgb(233,127,41)" fg:x="10299" fg:w="64"/><text x="44.1353%" y="2127.50"></text></g><g><title>[libm.so.6] (52 samples, 0.22%)</title><rect x="43.9364%" y="2101" width="0.2216%" height="15" fill="rgb(229,83,43)" fg:x="10311" fg:w="52"/><text x="44.1864%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (43 samples, 0.18%)</title><rect x="44.1623%" y="2149" width="0.1832%" height="15" fill="rgb(216,198,54)" fg:x="10364" fg:w="43"/><text x="44.4123%" y="2159.50"></text></g><g><title>core::f64::<impl f64>::recip (43 samples, 0.18%)</title><rect x="44.1623%" y="2133" width="0.1832%" height="15" fill="rgb(211,187,35)" fg:x="10364" fg:w="43"/><text x="44.4123%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (157 samples, 0.67%)</title><rect x="43.8555%" y="2165" width="0.6690%" height="15" fill="rgb(219,220,1)" fg:x="10292" fg:w="157"/><text x="44.1055%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (42 samples, 0.18%)</title><rect x="44.3455%" y="2149" width="0.1790%" height="15" fill="rgb(223,16,19)" fg:x="10407" fg:w="42"/><text x="44.5955%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::sqrt (42 samples, 0.18%)</title><rect x="44.3455%" y="2133" width="0.1790%" height="15" fill="rgb(206,209,20)" fg:x="10407" fg:w="42"/><text x="44.5955%" y="2143.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (173 samples, 0.74%)</title><rect x="43.8512%" y="2325" width="0.7372%" height="15" fill="rgb(228,67,26)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (173 samples, 0.74%)</title><rect x="43.8512%" y="2309" width="0.7372%" height="15" fill="rgb(231,155,16)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (173 samples, 0.74%)</title><rect x="43.8512%" y="2293" width="0.7372%" height="15" fill="rgb(236,219,54)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (173 samples, 0.74%)</title><rect x="43.8512%" y="2277" width="0.7372%" height="15" fill="rgb(237,32,49)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (173 samples, 0.74%)</title><rect x="43.8512%" y="2261" width="0.7372%" height="15" fill="rgb(230,141,32)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (173 samples, 0.74%)</title><rect x="43.8512%" y="2245" width="0.7372%" height="15" fill="rgb(250,155,3)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (173 samples, 0.74%)</title><rect x="43.8512%" y="2229" width="0.7372%" height="15" fill="rgb(242,215,54)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (173 samples, 0.74%)</title><rect x="43.8512%" y="2213" width="0.7372%" height="15" fill="rgb(221,208,23)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (173 samples, 0.74%)</title><rect x="43.8512%" y="2197" width="0.7372%" height="15" fill="rgb(231,56,21)" fg:x="10291" fg:w="173"/><text x="44.1012%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (172 samples, 0.73%)</title><rect x="43.8555%" y="2181" width="0.7329%" height="15" fill="rgb(223,208,17)" fg:x="10292" fg:w="172"/><text x="44.1055%" y="2191.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (15 samples, 0.06%)</title><rect x="44.5245%" y="2165" width="0.0639%" height="15" fill="rgb(247,133,33)" fg:x="10449" fg:w="15"/><text x="44.7745%" y="2175.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (6 samples, 0.03%)</title><rect x="44.5926%" y="2165" width="0.0256%" height="15" fill="rgb(239,25,4)" fg:x="10465" fg:w="6"/><text x="44.8426%" y="2175.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="44.5884%" y="2181" width="0.0341%" height="15" fill="rgb(248,119,32)" fg:x="10464" fg:w="8"/><text x="44.8384%" y="2191.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="44.5884%" y="2309" width="0.0511%" height="15" fill="rgb(235,139,27)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="44.5884%" y="2293" width="0.0511%" height="15" fill="rgb(209,119,15)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="44.5884%" y="2277" width="0.0511%" height="15" fill="rgb(207,116,36)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="44.5884%" y="2261" width="0.0511%" height="15" fill="rgb(207,90,41)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (12 samples, 0.05%)</title><rect x="44.5884%" y="2245" width="0.0511%" height="15" fill="rgb(226,226,50)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (12 samples, 0.05%)</title><rect x="44.5884%" y="2229" width="0.0511%" height="15" fill="rgb(250,107,49)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="44.5884%" y="2213" width="0.0511%" height="15" fill="rgb(216,86,19)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="44.5884%" y="2197" width="0.0511%" height="15" fill="rgb(221,127,42)" fg:x="10464" fg:w="12"/><text x="44.8384%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="44.6225%" y="2181" width="0.0170%" height="15" fill="rgb(232,37,4)" fg:x="10472" fg:w="4"/><text x="44.8725%" y="2191.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="44.6267%" y="2165" width="0.0128%" height="15" fill="rgb(211,20,6)" fg:x="10473" fg:w="3"/><text x="44.8767%" y="2175.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="44.6267%" y="2149" width="0.0128%" height="15" fill="rgb(222,10,24)" fg:x="10473" fg:w="3"/><text x="44.8767%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::partition (5 samples, 0.02%)</title><rect x="44.6480%" y="2101" width="0.0213%" height="15" fill="rgb(247,142,32)" fg:x="10478" fg:w="5"/><text x="44.8980%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (5 samples, 0.02%)</title><rect x="44.6480%" y="2085" width="0.0213%" height="15" fill="rgb(241,64,41)" fg:x="10478" fg:w="5"/><text x="44.8980%" y="2095.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (424 samples, 1.81%)</title><rect x="42.8754%" y="2581" width="1.8067%" height="15" fill="rgb(254,156,21)" fg:x="10062" fg:w="424"/><text x="43.1254%" y="2591.50">r..</text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (424 samples, 1.81%)</title><rect x="42.8754%" y="2565" width="1.8067%" height="15" fill="rgb(216,96,47)" fg:x="10062" fg:w="424"/><text x="43.1254%" y="2575.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (424 samples, 1.81%)</title><rect x="42.8754%" y="2549" width="1.8067%" height="15" fill="rgb(236,68,9)" fg:x="10062" fg:w="424"/><text x="43.1254%" y="2559.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (424 samples, 1.81%)</title><rect x="42.8754%" y="2533" width="1.8067%" height="15" fill="rgb(234,67,1)" fg:x="10062" fg:w="424"/><text x="43.1254%" y="2543.50">r..</text></g><g><title>rayon_core::join::join_context (384 samples, 1.64%)</title><rect x="43.0458%" y="2517" width="1.6363%" height="15" fill="rgb(205,176,7)" fg:x="10102" fg:w="384"/><text x="43.2958%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (384 samples, 1.64%)</title><rect x="43.0458%" y="2501" width="1.6363%" height="15" fill="rgb(241,228,18)" fg:x="10102" fg:w="384"/><text x="43.2958%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (384 samples, 1.64%)</title><rect x="43.0458%" y="2485" width="1.6363%" height="15" fill="rgb(211,155,0)" fg:x="10102" fg:w="384"/><text x="43.2958%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (195 samples, 0.83%)</title><rect x="43.8512%" y="2469" width="0.8309%" height="15" fill="rgb(237,202,34)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (195 samples, 0.83%)</title><rect x="43.8512%" y="2453" width="0.8309%" height="15" fill="rgb(227,116,49)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2463.50"></text></g><g><title>std::panicking::try (195 samples, 0.83%)</title><rect x="43.8512%" y="2437" width="0.8309%" height="15" fill="rgb(247,101,16)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (195 samples, 0.83%)</title><rect x="43.8512%" y="2421" width="0.8309%" height="15" fill="rgb(221,37,23)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (195 samples, 0.83%)</title><rect x="43.8512%" y="2405" width="0.8309%" height="15" fill="rgb(250,106,21)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (195 samples, 0.83%)</title><rect x="43.8512%" y="2389" width="0.8309%" height="15" fill="rgb(206,86,17)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (195 samples, 0.83%)</title><rect x="43.8512%" y="2373" width="0.8309%" height="15" fill="rgb(238,150,9)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (195 samples, 0.83%)</title><rect x="43.8512%" y="2357" width="0.8309%" height="15" fill="rgb(222,77,46)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (195 samples, 0.83%)</title><rect x="43.8512%" y="2341" width="0.8309%" height="15" fill="rgb(244,205,39)" fg:x="10291" fg:w="195"/><text x="44.1012%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (22 samples, 0.09%)</title><rect x="44.5884%" y="2325" width="0.0937%" height="15" fill="rgb(253,153,21)" fg:x="10464" fg:w="22"/><text x="44.8384%" y="2335.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="44.6395%" y="2309" width="0.0426%" height="15" fill="rgb(221,72,43)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="44.6395%" y="2293" width="0.0426%" height="15" fill="rgb(236,190,51)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2303.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (10 samples, 0.04%)</title><rect x="44.6395%" y="2277" width="0.0426%" height="15" fill="rgb(247,170,41)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2287.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="44.6395%" y="2261" width="0.0426%" height="15" fill="rgb(236,184,27)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2271.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="44.6395%" y="2245" width="0.0426%" height="15" fill="rgb(222,203,31)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2255.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="44.6395%" y="2229" width="0.0426%" height="15" fill="rgb(243,87,22)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2239.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="44.6395%" y="2213" width="0.0426%" height="15" fill="rgb(231,162,18)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2223.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="44.6395%" y="2197" width="0.0426%" height="15" fill="rgb(252,6,24)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2207.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (10 samples, 0.04%)</title><rect x="44.6395%" y="2181" width="0.0426%" height="15" fill="rgb(248,16,15)" fg:x="10476" fg:w="10"/><text x="44.8895%" y="2191.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="44.6480%" y="2165" width="0.0341%" height="15" fill="rgb(232,43,6)" fg:x="10478" fg:w="8"/><text x="44.8980%" y="2175.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="44.6480%" y="2149" width="0.0341%" height="15" fill="rgb(224,198,46)" fg:x="10478" fg:w="8"/><text x="44.8980%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="44.6480%" y="2133" width="0.0341%" height="15" fill="rgb(219,70,54)" fg:x="10478" fg:w="8"/><text x="44.8980%" y="2143.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="44.6480%" y="2117" width="0.0341%" height="15" fill="rgb(247,100,40)" fg:x="10478" fg:w="8"/><text x="44.8980%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="44.6693%" y="2101" width="0.0128%" height="15" fill="rgb(231,144,51)" fg:x="10483" fg:w="3"/><text x="44.9193%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (38 samples, 0.16%)</title><rect x="44.6949%" y="2261" width="0.1619%" height="15" fill="rgb(239,198,50)" fg:x="10489" fg:w="38"/><text x="44.9449%" y="2271.50"></text></g><g><title>std::f64::<impl f64>::exp (38 samples, 0.16%)</title><rect x="44.6949%" y="2245" width="0.1619%" height="15" fill="rgb(226,92,50)" fg:x="10489" fg:w="38"/><text x="44.9449%" y="2255.50"></text></g><g><title>exp (37 samples, 0.16%)</title><rect x="44.6992%" y="2229" width="0.1577%" height="15" fill="rgb(228,219,44)" fg:x="10490" fg:w="37"/><text x="44.9492%" y="2239.50"></text></g><g><title>[libm.so.6] (29 samples, 0.12%)</title><rect x="44.7333%" y="2213" width="0.1236%" height="15" fill="rgb(207,82,16)" fg:x="10498" fg:w="29"/><text x="44.9833%" y="2223.50"></text></g><g><title><f64 as num_traits::float::Float>::powi (4 samples, 0.02%)</title><rect x="44.8568%" y="2261" width="0.0170%" height="15" fill="rgb(243,209,12)" fg:x="10527" fg:w="4"/><text x="45.1068%" y="2271.50"></text></g><g><title>std::f64::<impl f64>::powi (4 samples, 0.02%)</title><rect x="44.8568%" y="2245" width="0.0170%" height="15" fill="rgb(250,4,18)" fg:x="10527" fg:w="4"/><text x="45.1068%" y="2255.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (18 samples, 0.08%)</title><rect x="44.8739%" y="2261" width="0.0767%" height="15" fill="rgb(224,134,31)" fg:x="10531" fg:w="18"/><text x="45.1239%" y="2271.50"></text></g><g><title>core::f64::<impl f64>::recip (18 samples, 0.08%)</title><rect x="44.8739%" y="2245" width="0.0767%" height="15" fill="rgb(205,175,38)" fg:x="10531" fg:w="18"/><text x="45.1239%" y="2255.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (73 samples, 0.31%)</title><rect x="44.6906%" y="2277" width="0.3111%" height="15" fill="rgb(213,17,6)" fg:x="10488" fg:w="73"/><text x="44.9406%" y="2287.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (12 samples, 0.05%)</title><rect x="44.9506%" y="2261" width="0.0511%" height="15" fill="rgb(211,199,46)" fg:x="10549" fg:w="12"/><text x="45.2006%" y="2271.50"></text></g><g><title>std::f64::<impl f64>::sqrt (12 samples, 0.05%)</title><rect x="44.9506%" y="2245" width="0.0511%" height="15" fill="rgb(215,47,50)" fg:x="10549" fg:w="12"/><text x="45.2006%" y="2255.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (6 samples, 0.03%)</title><rect x="45.0017%" y="2277" width="0.0256%" height="15" fill="rgb(228,135,21)" fg:x="10561" fg:w="6"/><text x="45.2517%" y="2287.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (84 samples, 0.36%)</title><rect x="44.6821%" y="2437" width="0.3579%" height="15" fill="rgb(206,188,46)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (84 samples, 0.36%)</title><rect x="44.6821%" y="2421" width="0.3579%" height="15" fill="rgb(250,161,7)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2431.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (84 samples, 0.36%)</title><rect x="44.6821%" y="2405" width="0.3579%" height="15" fill="rgb(254,63,11)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2415.50"></text></g><g><title>core::option::Option<T>::map (84 samples, 0.36%)</title><rect x="44.6821%" y="2389" width="0.3579%" height="15" fill="rgb(214,209,15)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (84 samples, 0.36%)</title><rect x="44.6821%" y="2373" width="0.3579%" height="15" fill="rgb(236,180,10)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (84 samples, 0.36%)</title><rect x="44.6821%" y="2357" width="0.3579%" height="15" fill="rgb(211,129,11)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (84 samples, 0.36%)</title><rect x="44.6821%" y="2341" width="0.3579%" height="15" fill="rgb(243,220,23)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2351.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (84 samples, 0.36%)</title><rect x="44.6821%" y="2325" width="0.3579%" height="15" fill="rgb(228,202,17)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2335.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (84 samples, 0.36%)</title><rect x="44.6821%" y="2309" width="0.3579%" height="15" fill="rgb(210,139,10)" fg:x="10486" fg:w="84"/><text x="44.9321%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (82 samples, 0.35%)</title><rect x="44.6906%" y="2293" width="0.3494%" height="15" fill="rgb(232,6,38)" fg:x="10488" fg:w="82"/><text x="44.9406%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="45.0401%" y="2213" width="0.0128%" height="15" fill="rgb(214,24,36)" fg:x="10570" fg:w="3"/><text x="45.2901%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="45.0401%" y="2197" width="0.0128%" height="15" fill="rgb(240,7,10)" fg:x="10570" fg:w="3"/><text x="45.2901%" y="2207.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="45.0401%" y="2309" width="0.0213%" height="15" fill="rgb(217,97,1)" fg:x="10570" fg:w="5"/><text x="45.2901%" y="2319.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="45.0401%" y="2293" width="0.0213%" height="15" fill="rgb(218,153,48)" fg:x="10570" fg:w="5"/><text x="45.2901%" y="2303.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="45.0401%" y="2277" width="0.0213%" height="15" fill="rgb(217,119,33)" fg:x="10570" fg:w="5"/><text x="45.2901%" y="2287.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="45.0401%" y="2261" width="0.0213%" height="15" fill="rgb(241,104,12)" fg:x="10570" fg:w="5"/><text x="45.2901%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="45.0401%" y="2245" width="0.0213%" height="15" fill="rgb(240,200,21)" fg:x="10570" fg:w="5"/><text x="45.2901%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="45.0401%" y="2229" width="0.0213%" height="15" fill="rgb(252,170,28)" fg:x="10570" fg:w="5"/><text x="45.2901%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (92 samples, 0.39%)</title><rect x="44.6821%" y="2453" width="0.3920%" height="15" fill="rgb(206,7,40)" fg:x="10486" fg:w="92"/><text x="44.9321%" y="2463.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="45.0401%" y="2437" width="0.0341%" height="15" fill="rgb(220,163,29)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2447.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="45.0401%" y="2421" width="0.0341%" height="15" fill="rgb(219,78,35)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2431.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="45.0401%" y="2405" width="0.0341%" height="15" fill="rgb(212,227,10)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2415.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (8 samples, 0.03%)</title><rect x="45.0401%" y="2389" width="0.0341%" height="15" fill="rgb(213,88,16)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2399.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="45.0401%" y="2373" width="0.0341%" height="15" fill="rgb(231,4,16)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2383.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="45.0401%" y="2357" width="0.0341%" height="15" fill="rgb(216,116,23)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="45.0401%" y="2341" width="0.0341%" height="15" fill="rgb(213,197,26)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2351.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="45.0401%" y="2325" width="0.0341%" height="15" fill="rgb(208,77,49)" fg:x="10570" fg:w="8"/><text x="45.2901%" y="2335.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="45.0614%" y="2309" width="0.0128%" height="15" fill="rgb(216,36,25)" fg:x="10575" fg:w="3"/><text x="45.3114%" y="2319.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="45.0614%" y="2293" width="0.0128%" height="15" fill="rgb(224,37,21)" fg:x="10575" fg:w="3"/><text x="45.3114%" y="2303.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (55 samples, 0.23%)</title><rect x="45.0827%" y="2149" width="0.2344%" height="15" fill="rgb(240,90,25)" fg:x="10580" fg:w="55"/><text x="45.3327%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::exp (55 samples, 0.23%)</title><rect x="45.0827%" y="2133" width="0.2344%" height="15" fill="rgb(216,170,49)" fg:x="10580" fg:w="55"/><text x="45.3327%" y="2143.50"></text></g><g><title>exp (54 samples, 0.23%)</title><rect x="45.0869%" y="2117" width="0.2301%" height="15" fill="rgb(239,16,17)" fg:x="10581" fg:w="54"/><text x="45.3369%" y="2127.50"></text></g><g><title>[libm.so.6] (43 samples, 0.18%)</title><rect x="45.1338%" y="2101" width="0.1832%" height="15" fill="rgb(250,200,1)" fg:x="10592" fg:w="43"/><text x="45.3838%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (44 samples, 0.19%)</title><rect x="45.3255%" y="2149" width="0.1875%" height="15" fill="rgb(208,20,44)" fg:x="10637" fg:w="44"/><text x="45.5755%" y="2159.50"></text></g><g><title>core::f64::<impl f64>::recip (44 samples, 0.19%)</title><rect x="45.3255%" y="2133" width="0.1875%" height="15" fill="rgb(209,9,51)" fg:x="10637" fg:w="44"/><text x="45.5755%" y="2143.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (127 samples, 0.54%)</title><rect x="45.0827%" y="2165" width="0.5412%" height="15" fill="rgb(205,228,45)" fg:x="10580" fg:w="127"/><text x="45.3327%" y="2175.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (26 samples, 0.11%)</title><rect x="45.5130%" y="2149" width="0.1108%" height="15" fill="rgb(242,213,8)" fg:x="10681" fg:w="26"/><text x="45.7630%" y="2159.50"></text></g><g><title>std::f64::<impl f64>::sqrt (26 samples, 0.11%)</title><rect x="45.5130%" y="2133" width="0.1108%" height="15" fill="rgb(206,54,30)" fg:x="10681" fg:w="26"/><text x="45.7630%" y="2143.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (139 samples, 0.59%)</title><rect x="45.0741%" y="2325" width="0.5923%" height="15" fill="rgb(222,169,48)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (139 samples, 0.59%)</title><rect x="45.0741%" y="2309" width="0.5923%" height="15" fill="rgb(223,210,53)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (139 samples, 0.59%)</title><rect x="45.0741%" y="2293" width="0.5923%" height="15" fill="rgb(224,167,14)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2303.50"></text></g><g><title>core::option::Option<T>::map (139 samples, 0.59%)</title><rect x="45.0741%" y="2277" width="0.5923%" height="15" fill="rgb(207,221,40)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2287.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (139 samples, 0.59%)</title><rect x="45.0741%" y="2261" width="0.5923%" height="15" fill="rgb(224,165,18)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2271.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (139 samples, 0.59%)</title><rect x="45.0741%" y="2245" width="0.5923%" height="15" fill="rgb(217,208,48)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2255.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (139 samples, 0.59%)</title><rect x="45.0741%" y="2229" width="0.5923%" height="15" fill="rgb(243,42,40)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2239.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (139 samples, 0.59%)</title><rect x="45.0741%" y="2213" width="0.5923%" height="15" fill="rgb(238,23,23)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2223.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (139 samples, 0.59%)</title><rect x="45.0741%" y="2197" width="0.5923%" height="15" fill="rgb(240,25,4)" fg:x="10578" fg:w="139"/><text x="45.3241%" y="2207.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (137 samples, 0.58%)</title><rect x="45.0827%" y="2181" width="0.5838%" height="15" fill="rgb(229,27,18)" fg:x="10580" fg:w="137"/><text x="45.3327%" y="2191.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (10 samples, 0.04%)</title><rect x="45.6238%" y="2165" width="0.0426%" height="15" fill="rgb(241,137,10)" fg:x="10707" fg:w="10"/><text x="45.8738%" y="2175.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="45.6664%" y="2181" width="0.0256%" height="15" fill="rgb(244,156,9)" fg:x="10717" fg:w="6"/><text x="45.9164%" y="2191.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (5 samples, 0.02%)</title><rect x="45.6707%" y="2165" width="0.0213%" height="15" fill="rgb(207,214,41)" fg:x="10718" fg:w="5"/><text x="45.9207%" y="2175.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="45.6750%" y="2149" width="0.0170%" height="15" fill="rgb(247,54,45)" fg:x="10719" fg:w="4"/><text x="45.9250%" y="2159.50"></text></g><g><title>oorandom::Rand64::rand_u64 (3 samples, 0.01%)</title><rect x="45.6792%" y="2133" width="0.0128%" height="15" fill="rgb(253,160,44)" fg:x="10720" fg:w="3"/><text x="45.9292%" y="2143.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="45.6664%" y="2309" width="0.0469%" height="15" fill="rgb(251,213,53)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="45.6664%" y="2293" width="0.0469%" height="15" fill="rgb(219,37,25)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="45.6664%" y="2277" width="0.0469%" height="15" fill="rgb(250,165,39)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="45.6664%" y="2261" width="0.0469%" height="15" fill="rgb(231,215,9)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (11 samples, 0.05%)</title><rect x="45.6664%" y="2245" width="0.0469%" height="15" fill="rgb(220,98,11)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (11 samples, 0.05%)</title><rect x="45.6664%" y="2229" width="0.0469%" height="15" fill="rgb(246,5,24)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (11 samples, 0.05%)</title><rect x="45.6664%" y="2213" width="0.0469%" height="15" fill="rgb(245,110,22)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (11 samples, 0.05%)</title><rect x="45.6664%" y="2197" width="0.0469%" height="15" fill="rgb(236,131,45)" fg:x="10717" fg:w="11"/><text x="45.9164%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="45.6920%" y="2181" width="0.0213%" height="15" fill="rgb(225,155,19)" fg:x="10723" fg:w="5"/><text x="45.9420%" y="2191.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="45.7005%" y="2165" width="0.0128%" height="15" fill="rgb(224,202,16)" fg:x="10725" fg:w="3"/><text x="45.9505%" y="2175.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="45.7133%" y="2197" width="0.0256%" height="15" fill="rgb(238,39,42)" fg:x="10728" fg:w="6"/><text x="45.9633%" y="2207.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="45.7133%" y="2181" width="0.0256%" height="15" fill="rgb(206,165,52)" fg:x="10728" fg:w="6"/><text x="45.9633%" y="2191.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="45.7133%" y="2165" width="0.0256%" height="15" fill="rgb(220,111,5)" fg:x="10728" fg:w="6"/><text x="45.9633%" y="2175.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="45.7133%" y="2149" width="0.0256%" height="15" fill="rgb(223,172,46)" fg:x="10728" fg:w="6"/><text x="45.9633%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="45.7133%" y="2133" width="0.0256%" height="15" fill="rgb(208,102,14)" fg:x="10728" fg:w="6"/><text x="45.9633%" y="2143.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="45.7133%" y="2117" width="0.0256%" height="15" fill="rgb(236,112,49)" fg:x="10728" fg:w="6"/><text x="45.9633%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (158 samples, 0.67%)</title><rect x="45.0741%" y="2405" width="0.6733%" height="15" fill="rgb(211,43,22)" fg:x="10578" fg:w="158"/><text x="45.3241%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (158 samples, 0.67%)</title><rect x="45.0741%" y="2389" width="0.6733%" height="15" fill="rgb(251,177,50)" fg:x="10578" fg:w="158"/><text x="45.3241%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (158 samples, 0.67%)</title><rect x="45.0741%" y="2373" width="0.6733%" height="15" fill="rgb(230,15,12)" fg:x="10578" fg:w="158"/><text x="45.3241%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (158 samples, 0.67%)</title><rect x="45.0741%" y="2357" width="0.6733%" height="15" fill="rgb(232,75,22)" fg:x="10578" fg:w="158"/><text x="45.3241%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (158 samples, 0.67%)</title><rect x="45.0741%" y="2341" width="0.6733%" height="15" fill="rgb(208,32,21)" fg:x="10578" fg:w="158"/><text x="45.3241%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (19 samples, 0.08%)</title><rect x="45.6664%" y="2325" width="0.0810%" height="15" fill="rgb(221,46,22)" fg:x="10717" fg:w="19"/><text x="45.9164%" y="2335.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="45.7133%" y="2309" width="0.0341%" height="15" fill="rgb(240,5,33)" fg:x="10728" fg:w="8"/><text x="45.9633%" y="2319.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="45.7133%" y="2293" width="0.0341%" height="15" fill="rgb(208,6,37)" fg:x="10728" fg:w="8"/><text x="45.9633%" y="2303.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (8 samples, 0.03%)</title><rect x="45.7133%" y="2277" width="0.0341%" height="15" fill="rgb(226,112,5)" fg:x="10728" fg:w="8"/><text x="45.9633%" y="2287.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="45.7133%" y="2261" width="0.0341%" height="15" fill="rgb(205,38,28)" fg:x="10728" fg:w="8"/><text x="45.9633%" y="2271.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="45.7133%" y="2245" width="0.0341%" height="15" fill="rgb(214,95,2)" fg:x="10728" fg:w="8"/><text x="45.9633%" y="2255.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="45.7133%" y="2229" width="0.0341%" height="15" fill="rgb(211,124,24)" fg:x="10728" fg:w="8"/><text x="45.9633%" y="2239.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="45.7133%" y="2213" width="0.0341%" height="15" fill="rgb(229,148,23)" fg:x="10728" fg:w="8"/><text x="45.9633%" y="2223.50"></text></g><g><title><rayon::iter::map_with::MapInitConsumer<C,INIT,F> as rayon::iter::plumbing::Consumer<T>>::into_folder (3 samples, 0.01%)</title><rect x="45.7474%" y="2277" width="0.0128%" height="15" fill="rgb(218,22,18)" fg:x="10736" fg:w="3"/><text x="45.9974%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="45.7474%" y="2261" width="0.0128%" height="15" fill="rgb(232,63,12)" fg:x="10736" fg:w="3"/><text x="45.9974%" y="2271.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::new (3 samples, 0.01%)</title><rect x="45.7474%" y="2245" width="0.0128%" height="15" fill="rgb(254,11,6)" fg:x="10736" fg:w="3"/><text x="45.9974%" y="2255.50"></text></g><g><title>criterion::stats::rand_util::new_rng (3 samples, 0.01%)</title><rect x="45.7474%" y="2229" width="0.0128%" height="15" fill="rgb(239,47,6)" fg:x="10736" fg:w="3"/><text x="45.9974%" y="2239.50"></text></g><g><title>std::thread::local::LocalKey<T>::with (3 samples, 0.01%)</title><rect x="45.7474%" y="2213" width="0.0128%" height="15" fill="rgb(243,100,53)" fg:x="10736" fg:w="3"/><text x="45.9974%" y="2223.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (3 samples, 0.01%)</title><rect x="45.7474%" y="2197" width="0.0128%" height="15" fill="rgb(254,167,34)" fg:x="10736" fg:w="3"/><text x="45.9974%" y="2207.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (22 samples, 0.09%)</title><rect x="45.7602%" y="2085" width="0.0937%" height="15" fill="rgb(240,116,33)" fg:x="10739" fg:w="22"/><text x="46.0102%" y="2095.50"></text></g><g><title>std::f64::<impl f64>::exp (22 samples, 0.09%)</title><rect x="45.7602%" y="2069" width="0.0937%" height="15" fill="rgb(245,156,22)" fg:x="10739" fg:w="22"/><text x="46.0102%" y="2079.50"></text></g><g><title>exp (19 samples, 0.08%)</title><rect x="45.7730%" y="2053" width="0.0810%" height="15" fill="rgb(215,219,41)" fg:x="10742" fg:w="19"/><text x="46.0230%" y="2063.50"></text></g><g><title>[libm.so.6] (15 samples, 0.06%)</title><rect x="45.7900%" y="2037" width="0.0639%" height="15" fill="rgb(218,56,6)" fg:x="10746" fg:w="15"/><text x="46.0400%" y="2047.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (25 samples, 0.11%)</title><rect x="45.8539%" y="2085" width="0.1065%" height="15" fill="rgb(248,131,50)" fg:x="10761" fg:w="25"/><text x="46.1039%" y="2095.50"></text></g><g><title>core::f64::<impl f64>::recip (25 samples, 0.11%)</title><rect x="45.8539%" y="2069" width="0.1065%" height="15" fill="rgb(219,94,43)" fg:x="10761" fg:w="25"/><text x="46.1039%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (73 samples, 0.31%)</title><rect x="45.7602%" y="2101" width="0.3111%" height="15" fill="rgb(236,65,36)" fg:x="10739" fg:w="73"/><text x="46.0102%" y="2111.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (26 samples, 0.11%)</title><rect x="45.9605%" y="2085" width="0.1108%" height="15" fill="rgb(215,119,32)" fg:x="10786" fg:w="26"/><text x="46.2105%" y="2095.50"></text></g><g><title>std::f64::<impl f64>::sqrt (26 samples, 0.11%)</title><rect x="45.9605%" y="2069" width="0.1108%" height="15" fill="rgb(206,76,49)" fg:x="10786" fg:w="26"/><text x="46.2105%" y="2079.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (80 samples, 0.34%)</title><rect x="45.7602%" y="2261" width="0.3409%" height="15" fill="rgb(235,30,46)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (80 samples, 0.34%)</title><rect x="45.7602%" y="2245" width="0.3409%" height="15" fill="rgb(223,111,20)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2255.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (80 samples, 0.34%)</title><rect x="45.7602%" y="2229" width="0.3409%" height="15" fill="rgb(228,161,13)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2239.50"></text></g><g><title>core::option::Option<T>::map (80 samples, 0.34%)</title><rect x="45.7602%" y="2213" width="0.3409%" height="15" fill="rgb(224,50,45)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (80 samples, 0.34%)</title><rect x="45.7602%" y="2197" width="0.3409%" height="15" fill="rgb(230,31,50)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2207.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (80 samples, 0.34%)</title><rect x="45.7602%" y="2181" width="0.3409%" height="15" fill="rgb(245,120,24)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2191.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (80 samples, 0.34%)</title><rect x="45.7602%" y="2165" width="0.3409%" height="15" fill="rgb(222,131,44)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2175.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (80 samples, 0.34%)</title><rect x="45.7602%" y="2149" width="0.3409%" height="15" fill="rgb(206,160,25)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2159.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (80 samples, 0.34%)</title><rect x="45.7602%" y="2133" width="0.3409%" height="15" fill="rgb(240,144,41)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (80 samples, 0.34%)</title><rect x="45.7602%" y="2117" width="0.3409%" height="15" fill="rgb(254,99,48)" fg:x="10739" fg:w="80"/><text x="46.0102%" y="2127.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (7 samples, 0.03%)</title><rect x="46.0712%" y="2101" width="0.0298%" height="15" fill="rgb(245,162,18)" fg:x="10812" fg:w="7"/><text x="46.3212%" y="2111.50"></text></g><g><title>criterion::analysis::compare::t_test::_{{closure}} (3 samples, 0.01%)</title><rect x="46.1096%" y="2101" width="0.0128%" height="15" fill="rgb(246,86,52)" fg:x="10821" fg:w="3"/><text x="46.3596%" y="2111.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::t (3 samples, 0.01%)</title><rect x="46.1096%" y="2085" width="0.0128%" height="15" fill="rgb(207,58,34)" fg:x="10821" fg:w="3"/><text x="46.3596%" y="2095.50"></text></g><g><title>criterion::stats::univariate::mixed::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="46.1096%" y="2117" width="0.0426%" height="15" fill="rgb(215,175,48)" fg:x="10821" fg:w="10"/><text x="46.3596%" y="2127.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (7 samples, 0.03%)</title><rect x="46.1224%" y="2101" width="0.0298%" height="15" fill="rgb(245,174,18)" fg:x="10824" fg:w="7"/><text x="46.3724%" y="2111.50"></text></g><g><title>oorandom::Rand64::rand_range (5 samples, 0.02%)</title><rect x="46.1309%" y="2085" width="0.0213%" height="15" fill="rgb(237,108,0)" fg:x="10826" fg:w="5"/><text x="46.3809%" y="2095.50"></text></g><g><title>oorandom::Rand64::rand_u64 (4 samples, 0.02%)</title><rect x="46.1352%" y="2069" width="0.0170%" height="15" fill="rgb(248,199,20)" fg:x="10827" fg:w="4"/><text x="46.3852%" y="2079.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="46.1522%" y="2101" width="0.0128%" height="15" fill="rgb(249,144,35)" fg:x="10831" fg:w="3"/><text x="46.4022%" y="2111.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="46.1522%" y="2085" width="0.0128%" height="15" fill="rgb(216,132,29)" fg:x="10831" fg:w="3"/><text x="46.4022%" y="2095.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (17 samples, 0.07%)</title><rect x="46.1011%" y="2245" width="0.0724%" height="15" fill="rgb(213,140,24)" fg:x="10819" fg:w="17"/><text x="46.3511%" y="2255.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (17 samples, 0.07%)</title><rect x="46.1011%" y="2229" width="0.0724%" height="15" fill="rgb(233,168,50)" fg:x="10819" fg:w="17"/><text x="46.3511%" y="2239.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (17 samples, 0.07%)</title><rect x="46.1011%" y="2213" width="0.0724%" height="15" fill="rgb(254,33,50)" fg:x="10819" fg:w="17"/><text x="46.3511%" y="2223.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (17 samples, 0.07%)</title><rect x="46.1011%" y="2197" width="0.0724%" height="15" fill="rgb(206,72,52)" fg:x="10819" fg:w="17"/><text x="46.3511%" y="2207.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (17 samples, 0.07%)</title><rect x="46.1011%" y="2181" width="0.0724%" height="15" fill="rgb(230,37,43)" fg:x="10819" fg:w="17"/><text x="46.3511%" y="2191.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (17 samples, 0.07%)</title><rect x="46.1011%" y="2165" width="0.0724%" height="15" fill="rgb(214,191,3)" fg:x="10819" fg:w="17"/><text x="46.3511%" y="2175.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (15 samples, 0.06%)</title><rect x="46.1096%" y="2149" width="0.0639%" height="15" fill="rgb(248,58,1)" fg:x="10821" fg:w="15"/><text x="46.3596%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (15 samples, 0.06%)</title><rect x="46.1096%" y="2133" width="0.0639%" height="15" fill="rgb(223,29,25)" fg:x="10821" fg:w="15"/><text x="46.3596%" y="2143.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="46.1522%" y="2117" width="0.0213%" height="15" fill="rgb(223,97,33)" fg:x="10831" fg:w="5"/><text x="46.4022%" y="2127.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="46.1735%" y="2133" width="0.0213%" height="15" fill="rgb(246,172,13)" fg:x="10836" fg:w="5"/><text x="46.4235%" y="2143.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="46.1735%" y="2117" width="0.0213%" height="15" fill="rgb(210,215,30)" fg:x="10836" fg:w="5"/><text x="46.4235%" y="2127.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="46.1735%" y="2101" width="0.0213%" height="15" fill="rgb(231,141,35)" fg:x="10836" fg:w="5"/><text x="46.4235%" y="2111.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="46.1735%" y="2085" width="0.0213%" height="15" fill="rgb(219,46,34)" fg:x="10836" fg:w="5"/><text x="46.4235%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="46.1735%" y="2069" width="0.0213%" height="15" fill="rgb(225,171,48)" fg:x="10836" fg:w="5"/><text x="46.4235%" y="2079.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="46.1735%" y="2053" width="0.0213%" height="15" fill="rgb(219,220,16)" fg:x="10836" fg:w="5"/><text x="46.4235%" y="2063.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="46.1778%" y="2037" width="0.0170%" height="15" fill="rgb(227,63,21)" fg:x="10837" fg:w="4"/><text x="46.4278%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9,398 samples, 40.05%)</title><rect x="6.1573%" y="3365" width="40.0460%" height="15" fill="rgb(231,39,12)" fg:x="1445" fg:w="9398"/><text x="6.4073%" y="3375.50">rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closu..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9,398 samples, 40.05%)</title><rect x="6.1573%" y="3349" width="40.0460%" height="15" fill="rgb(221,41,13)" fg:x="1445" fg:w="9398"/><text x="6.4073%" y="3359.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::join::join_context (9,369 samples, 39.92%)</title><rect x="6.2809%" y="3333" width="39.9224%" height="15" fill="rgb(254,91,3)" fg:x="1474" fg:w="9369"/><text x="6.5309%" y="3343.50">rayon_core::join::join_context</text></g><g><title>rayon_core::registry::in_worker (9,369 samples, 39.92%)</title><rect x="6.2809%" y="3317" width="39.9224%" height="15" fill="rgb(237,224,6)" fg:x="1474" fg:w="9369"/><text x="6.5309%" y="3327.50">rayon_core::registry::in_worker</text></g><g><title>rayon_core::join::join_context::_{{closure}} (9,368 samples, 39.92%)</title><rect x="6.2852%" y="3301" width="39.9182%" height="15" fill="rgb(228,89,29)" fg:x="1475" fg:w="9368"/><text x="6.5352%" y="3311.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::unwind::halt_unwinding (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3285" width="29.1333%" height="15" fill="rgb(214,26,47)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3295.50">rayon_core::unwind::halt_unwinding</text></g><g><title>std::panic::catch_unwind (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3269" width="29.1333%" height="15" fill="rgb(226,111,36)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3279.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3253" width="29.1333%" height="15" fill="rgb(228,109,41)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3263.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3237" width="29.1333%" height="15" fill="rgb(228,81,22)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3247.50">std::panicking::try::do_call</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3221" width="29.1333%" height="15" fill="rgb(232,62,40)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3231.50"><core::panic::unwind_safe::AssertUnwindSafe<F> ..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3205" width="29.1333%" height="15" fill="rgb(229,202,3)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3215.50">rayon_core::join::join_context::call_a::_{{clos..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3189" width="29.1333%" height="15" fill="rgb(239,71,37)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3199.50">rayon::iter::plumbing::bridge_producer_consumer..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6,837 samples, 29.13%)</title><rect x="17.0701%" y="3173" width="29.1333%" height="15" fill="rgb(239,120,30)" fg:x="4006" fg:w="6837"/><text x="17.3201%" y="3183.50">rayon::iter::plumbing::bridge_producer_consumer..</text></g><g><title>rayon_core::join::join_context (6,784 samples, 28.91%)</title><rect x="17.2959%" y="3157" width="28.9074%" height="15" fill="rgb(246,207,32)" fg:x="4059" fg:w="6784"/><text x="17.5459%" y="3167.50">rayon_core::join::join_context</text></g><g><title>rayon_core::registry::in_worker (6,784 samples, 28.91%)</title><rect x="17.2959%" y="3141" width="28.9074%" height="15" fill="rgb(241,113,53)" fg:x="4059" fg:w="6784"/><text x="17.5459%" y="3151.50">rayon_core::registry::in_worker</text></g><g><title>rayon_core::join::join_context::_{{closure}} (6,784 samples, 28.91%)</title><rect x="17.2959%" y="3125" width="28.9074%" height="15" fill="rgb(205,105,53)" fg:x="4059" fg:w="6784"/><text x="17.5459%" y="3135.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::unwind::halt_unwinding (4,048 samples, 17.25%)</title><rect x="28.9543%" y="3109" width="17.2490%" height="15" fill="rgb(252,145,11)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3119.50">rayon_core::unwind::halt_un..</text></g><g><title>std::panic::catch_unwind (4,048 samples, 17.25%)</title><rect x="28.9543%" y="3093" width="17.2490%" height="15" fill="rgb(250,61,19)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3103.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (4,048 samples, 17.25%)</title><rect x="28.9543%" y="3077" width="17.2490%" height="15" fill="rgb(237,39,13)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3087.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (4,048 samples, 17.25%)</title><rect x="28.9543%" y="3061" width="17.2490%" height="15" fill="rgb(246,76,13)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3071.50">std::panicking::try::do_call</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4,048 samples, 17.25%)</title><rect x="28.9543%" y="3045" width="17.2490%" height="15" fill="rgb(248,101,10)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3055.50"><core::panic::unwind_safe::..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4,048 samples, 17.25%)</title><rect x="28.9543%" y="3029" width="17.2490%" height="15" fill="rgb(225,66,6)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3039.50">rayon_core::join::join_cont..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4,048 samples, 17.25%)</title><rect x="28.9543%" y="3013" width="17.2490%" height="15" fill="rgb(219,200,19)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3023.50">rayon::iter::plumbing::brid..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4,048 samples, 17.25%)</title><rect x="28.9543%" y="2997" width="17.2490%" height="15" fill="rgb(253,24,24)" fg:x="6795" fg:w="4048"/><text x="29.2043%" y="3007.50">rayon::iter::plumbing::brid..</text></g><g><title>rayon_core::join::join_context (3,974 samples, 16.93%)</title><rect x="29.2696%" y="2981" width="16.9337%" height="15" fill="rgb(237,144,44)" fg:x="6869" fg:w="3974"/><text x="29.5196%" y="2991.50">rayon_core::join::join_con..</text></g><g><title>rayon_core::registry::in_worker (3,974 samples, 16.93%)</title><rect x="29.2696%" y="2965" width="16.9337%" height="15" fill="rgb(211,206,7)" fg:x="6869" fg:w="3974"/><text x="29.5196%" y="2975.50">rayon_core::registry::in_w..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (3,974 samples, 16.93%)</title><rect x="29.2696%" y="2949" width="16.9337%" height="15" fill="rgb(249,150,31)" fg:x="6869" fg:w="3974"/><text x="29.5196%" y="2959.50">rayon_core::join::join_con..</text></g><g><title>rayon_core::unwind::halt_unwinding (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2933" width="9.1145%" height="15" fill="rgb(219,34,16)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2943.50">rayon_core::u..</text></g><g><title>std::panic::catch_unwind (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2917" width="9.1145%" height="15" fill="rgb(235,203,28)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2927.50">std::panic::c..</text></g><g><title>std::panicking::try (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2901" width="9.1145%" height="15" fill="rgb(218,41,49)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2911.50">std::panickin..</text></g><g><title>std::panicking::try::do_call (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2885" width="9.1145%" height="15" fill="rgb(212,84,51)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2895.50">std::panickin..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2869" width="9.1145%" height="15" fill="rgb(237,52,17)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2879.50"><core::panic:..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2853" width="9.1145%" height="15" fill="rgb(244,19,34)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2863.50">rayon_core::j..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2837" width="9.1145%" height="15" fill="rgb(246,69,19)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2847.50">rayon::iter::..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (2,139 samples, 9.11%)</title><rect x="37.0888%" y="2821" width="9.1145%" height="15" fill="rgb(242,52,27)" fg:x="8704" fg:w="2139"/><text x="37.3388%" y="2831.50">rayon::iter::..</text></g><g><title>rayon_core::join::join_context (2,041 samples, 8.70%)</title><rect x="37.5064%" y="2805" width="8.6969%" height="15" fill="rgb(217,77,44)" fg:x="8802" fg:w="2041"/><text x="37.7564%" y="2815.50">rayon_core::..</text></g><g><title>rayon_core::registry::in_worker (2,041 samples, 8.70%)</title><rect x="37.5064%" y="2789" width="8.6969%" height="15" fill="rgb(246,213,21)" fg:x="8802" fg:w="2041"/><text x="37.7564%" y="2799.50">rayon_core::..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (2,041 samples, 8.70%)</title><rect x="37.5064%" y="2773" width="8.6969%" height="15" fill="rgb(230,32,54)" fg:x="8802" fg:w="2041"/><text x="37.7564%" y="2783.50">rayon_core::..</text></g><g><title>rayon_core::unwind::halt_unwinding (918 samples, 3.91%)</title><rect x="42.2916%" y="2757" width="3.9117%" height="15" fill="rgb(216,117,19)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2767.50">rayo..</text></g><g><title>std::panic::catch_unwind (918 samples, 3.91%)</title><rect x="42.2916%" y="2741" width="3.9117%" height="15" fill="rgb(226,38,33)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2751.50">std:..</text></g><g><title>std::panicking::try (918 samples, 3.91%)</title><rect x="42.2916%" y="2725" width="3.9117%" height="15" fill="rgb(239,106,5)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2735.50">std:..</text></g><g><title>std::panicking::try::do_call (918 samples, 3.91%)</title><rect x="42.2916%" y="2709" width="3.9117%" height="15" fill="rgb(218,2,7)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2719.50">std:..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (918 samples, 3.91%)</title><rect x="42.2916%" y="2693" width="3.9117%" height="15" fill="rgb(229,218,5)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2703.50"><cor..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (918 samples, 3.91%)</title><rect x="42.2916%" y="2677" width="3.9117%" height="15" fill="rgb(238,208,53)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2687.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (918 samples, 3.91%)</title><rect x="42.2916%" y="2661" width="3.9117%" height="15" fill="rgb(251,164,36)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2671.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (918 samples, 3.91%)</title><rect x="42.2916%" y="2645" width="3.9117%" height="15" fill="rgb(253,122,28)" fg:x="9925" fg:w="918"/><text x="42.5416%" y="2655.50">rayo..</text></g><g><title>rayon_core::join::join_context (781 samples, 3.33%)</title><rect x="42.8754%" y="2629" width="3.3279%" height="15" fill="rgb(227,50,39)" fg:x="10062" fg:w="781"/><text x="43.1254%" y="2639.50">ray..</text></g><g><title>rayon_core::registry::in_worker (781 samples, 3.33%)</title><rect x="42.8754%" y="2613" width="3.3279%" height="15" fill="rgb(248,165,5)" fg:x="10062" fg:w="781"/><text x="43.1254%" y="2623.50">ray..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (781 samples, 3.33%)</title><rect x="42.8754%" y="2597" width="3.3279%" height="15" fill="rgb(242,19,33)" fg:x="10062" fg:w="781"/><text x="43.1254%" y="2607.50">ray..</text></g><g><title>rayon_core::unwind::halt_unwinding (357 samples, 1.52%)</title><rect x="44.6821%" y="2581" width="1.5212%" height="15" fill="rgb(238,13,30)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2591.50"></text></g><g><title>std::panic::catch_unwind (357 samples, 1.52%)</title><rect x="44.6821%" y="2565" width="1.5212%" height="15" fill="rgb(231,79,9)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2575.50"></text></g><g><title>std::panicking::try (357 samples, 1.52%)</title><rect x="44.6821%" y="2549" width="1.5212%" height="15" fill="rgb(247,44,34)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2559.50"></text></g><g><title>std::panicking::try::do_call (357 samples, 1.52%)</title><rect x="44.6821%" y="2533" width="1.5212%" height="15" fill="rgb(254,56,10)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2543.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (357 samples, 1.52%)</title><rect x="44.6821%" y="2517" width="1.5212%" height="15" fill="rgb(214,210,2)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (357 samples, 1.52%)</title><rect x="44.6821%" y="2501" width="1.5212%" height="15" fill="rgb(213,179,6)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (357 samples, 1.52%)</title><rect x="44.6821%" y="2485" width="1.5212%" height="15" fill="rgb(222,123,42)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (357 samples, 1.52%)</title><rect x="44.6821%" y="2469" width="1.5212%" height="15" fill="rgb(238,175,33)" fg:x="10486" fg:w="357"/><text x="44.9321%" y="2479.50"></text></g><g><title>rayon_core::join::join_context (265 samples, 1.13%)</title><rect x="45.0741%" y="2453" width="1.1292%" height="15" fill="rgb(231,40,31)" fg:x="10578" fg:w="265"/><text x="45.3241%" y="2463.50"></text></g><g><title>rayon_core::registry::in_worker (265 samples, 1.13%)</title><rect x="45.0741%" y="2437" width="1.1292%" height="15" fill="rgb(211,147,39)" fg:x="10578" fg:w="265"/><text x="45.3241%" y="2447.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (265 samples, 1.13%)</title><rect x="45.0741%" y="2421" width="1.1292%" height="15" fill="rgb(217,122,51)" fg:x="10578" fg:w="265"/><text x="45.3241%" y="2431.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (107 samples, 0.46%)</title><rect x="45.7474%" y="2405" width="0.4559%" height="15" fill="rgb(243,39,13)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2415.50"></text></g><g><title>std::panic::catch_unwind (107 samples, 0.46%)</title><rect x="45.7474%" y="2389" width="0.4559%" height="15" fill="rgb(208,174,13)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2399.50"></text></g><g><title>std::panicking::try (107 samples, 0.46%)</title><rect x="45.7474%" y="2373" width="0.4559%" height="15" fill="rgb(209,72,52)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2383.50"></text></g><g><title>std::panicking::try::do_call (107 samples, 0.46%)</title><rect x="45.7474%" y="2357" width="0.4559%" height="15" fill="rgb(237,140,31)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2367.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (107 samples, 0.46%)</title><rect x="45.7474%" y="2341" width="0.4559%" height="15" fill="rgb(225,41,53)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (107 samples, 0.46%)</title><rect x="45.7474%" y="2325" width="0.4559%" height="15" fill="rgb(246,39,15)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (107 samples, 0.46%)</title><rect x="45.7474%" y="2309" width="0.4559%" height="15" fill="rgb(213,209,48)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (107 samples, 0.46%)</title><rect x="45.7474%" y="2293" width="0.4559%" height="15" fill="rgb(208,44,38)" fg:x="10736" fg:w="107"/><text x="45.9974%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (104 samples, 0.44%)</title><rect x="45.7602%" y="2277" width="0.4432%" height="15" fill="rgb(216,186,34)" fg:x="10739" fg:w="104"/><text x="46.0102%" y="2287.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (24 samples, 0.10%)</title><rect x="46.1011%" y="2261" width="0.1023%" height="15" fill="rgb(208,34,22)" fg:x="10819" fg:w="24"/><text x="46.3511%" y="2271.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="46.1735%" y="2245" width="0.0298%" height="15" fill="rgb(214,166,37)" fg:x="10836" fg:w="7"/><text x="46.4235%" y="2255.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="46.1735%" y="2229" width="0.0298%" height="15" fill="rgb(233,8,6)" fg:x="10836" fg:w="7"/><text x="46.4235%" y="2239.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (7 samples, 0.03%)</title><rect x="46.1735%" y="2213" width="0.0298%" height="15" fill="rgb(230,172,16)" fg:x="10836" fg:w="7"/><text x="46.4235%" y="2223.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="46.1735%" y="2197" width="0.0298%" height="15" fill="rgb(240,138,13)" fg:x="10836" fg:w="7"/><text x="46.4235%" y="2207.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="46.1735%" y="2181" width="0.0298%" height="15" fill="rgb(220,76,27)" fg:x="10836" fg:w="7"/><text x="46.4235%" y="2191.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="46.1735%" y="2165" width="0.0298%" height="15" fill="rgb(229,128,23)" fg:x="10836" fg:w="7"/><text x="46.4235%" y="2175.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="46.1735%" y="2149" width="0.0298%" height="15" fill="rgb(217,183,17)" fg:x="10836" fg:w="7"/><text x="46.4235%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::partition (11 samples, 0.05%)</title><rect x="46.2033%" y="3317" width="0.0469%" height="15" fill="rgb(218,133,23)" fg:x="10843" fg:w="11"/><text x="46.4533%" y="3327.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (11 samples, 0.05%)</title><rect x="46.2033%" y="3301" width="0.0469%" height="15" fill="rgb(246,80,42)" fg:x="10843" fg:w="11"/><text x="46.4533%" y="3311.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by::_{{closure}} (6 samples, 0.03%)</title><rect x="46.2246%" y="3285" width="0.0256%" height="15" fill="rgb(233,42,38)" fg:x="10848" fg:w="6"/><text x="46.4746%" y="3295.50"></text></g><g><title><core::cmp::Ordering as core::cmp::PartialEq>::eq (6 samples, 0.03%)</title><rect x="46.2246%" y="3269" width="0.0256%" height="15" fill="rgb(214,62,41)" fg:x="10848" fg:w="6"/><text x="46.4746%" y="3279.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="46.2545%" y="3317" width="0.0170%" height="15" fill="rgb(213,52,27)" fg:x="10855" fg:w="4"/><text x="46.5045%" y="3327.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.2587%" y="3301" width="0.0128%" height="15" fill="rgb(244,227,3)" fg:x="10856" fg:w="3"/><text x="46.5087%" y="3311.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.2587%" y="3285" width="0.0128%" height="15" fill="rgb(242,68,41)" fg:x="10856" fg:w="3"/><text x="46.5087%" y="3295.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="46.2758%" y="3221" width="0.0128%" height="15" fill="rgb(224,51,0)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3231.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="46.2758%" y="3205" width="0.0128%" height="15" fill="rgb(217,152,32)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3215.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="46.2758%" y="3189" width="0.0128%" height="15" fill="rgb(254,77,11)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3199.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="46.2758%" y="3173" width="0.0128%" height="15" fill="rgb(245,176,10)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3183.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.2758%" y="3157" width="0.0128%" height="15" fill="rgb(210,30,0)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3167.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.2758%" y="3141" width="0.0128%" height="15" fill="rgb(246,99,11)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3151.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.2758%" y="3125" width="0.0128%" height="15" fill="rgb(244,62,23)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3135.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.2758%" y="3109" width="0.0128%" height="15" fill="rgb(208,206,23)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3119.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.2758%" y="3093" width="0.0128%" height="15" fill="rgb(211,198,41)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3103.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="46.2758%" y="3077" width="0.0128%" height="15" fill="rgb(227,148,26)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="46.2758%" y="3061" width="0.0128%" height="15" fill="rgb(244,153,11)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3071.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (3 samples, 0.01%)</title><rect x="46.2758%" y="3045" width="0.0128%" height="15" fill="rgb(232,193,46)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3055.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (3 samples, 0.01%)</title><rect x="46.2758%" y="3029" width="0.0128%" height="15" fill="rgb(213,25,36)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3039.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.2758%" y="3013" width="0.0128%" height="15" fill="rgb(236,98,19)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3023.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.2758%" y="2997" width="0.0128%" height="15" fill="rgb(224,86,35)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="3007.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.2758%" y="2981" width="0.0128%" height="15" fill="rgb(236,206,28)" fg:x="10860" fg:w="3"/><text x="46.5258%" y="2991.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work (3 samples, 0.01%)</title><rect x="46.2886%" y="3221" width="0.0128%" height="15" fill="rgb(219,164,39)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3231.50"></text></g><g><title>core::option::Option<T>::or_else (3 samples, 0.01%)</title><rect x="46.2886%" y="3205" width="0.0128%" height="15" fill="rgb(245,181,33)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3215.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work::_{{closure}} (3 samples, 0.01%)</title><rect x="46.2886%" y="3189" width="0.0128%" height="15" fill="rgb(223,171,11)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3199.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal (3 samples, 0.01%)</title><rect x="46.2886%" y="3173" width="0.0128%" height="15" fill="rgb(205,100,26)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3183.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map (3 samples, 0.01%)</title><rect x="46.2886%" y="3157" width="0.0128%" height="15" fill="rgb(246,142,49)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3167.50"></text></g><g><title><core::iter::adapters::filter::Filter<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="46.2886%" y="3141" width="0.0128%" height="15" fill="rgb(246,157,32)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3151.50"></text></g><g><title><core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="46.2886%" y="3125" width="0.0128%" height="15" fill="rgb(207,44,16)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3135.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="46.2886%" y="3109" width="0.0128%" height="15" fill="rgb(250,228,12)" fg:x="10863" fg:w="3"/><text x="46.5386%" y="3119.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (16 samples, 0.07%)</title><rect x="46.2758%" y="3253" width="0.0682%" height="15" fill="rgb(220,29,10)" fg:x="10860" fg:w="16"/><text x="46.5258%" y="3263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.07%)</title><rect x="46.2758%" y="3237" width="0.0682%" height="15" fill="rgb(254,111,3)" fg:x="10860" fg:w="16"/><text x="46.5258%" y="3247.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (10 samples, 0.04%)</title><rect x="46.3013%" y="3221" width="0.0426%" height="15" fill="rgb(205,45,24)" fg:x="10866" fg:w="10"/><text x="46.5513%" y="3231.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (10 samples, 0.04%)</title><rect x="46.3013%" y="3205" width="0.0426%" height="15" fill="rgb(221,114,4)" fg:x="10866" fg:w="10"/><text x="46.5513%" y="3215.50"></text></g><g><title>std::sync::condvar::Condvar::wait (10 samples, 0.04%)</title><rect x="46.3013%" y="3189" width="0.0426%" height="15" fill="rgb(210,43,11)" fg:x="10866" fg:w="10"/><text x="46.5513%" y="3199.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (9 samples, 0.04%)</title><rect x="46.3056%" y="3173" width="0.0384%" height="15" fill="rgb(239,94,35)" fg:x="10867" fg:w="9"/><text x="46.5556%" y="3183.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (9 samples, 0.04%)</title><rect x="46.3056%" y="3157" width="0.0384%" height="15" fill="rgb(211,99,32)" fg:x="10867" fg:w="9"/><text x="46.5556%" y="3167.50"></text></g><g><title>std::sys::unix::futex::futex_wait (9 samples, 0.04%)</title><rect x="46.3056%" y="3141" width="0.0384%" height="15" fill="rgb(210,192,30)" fg:x="10867" fg:w="9"/><text x="46.5556%" y="3151.50"></text></g><g><title>syscall (8 samples, 0.03%)</title><rect x="46.3099%" y="3125" width="0.0341%" height="15" fill="rgb(244,100,42)" fg:x="10868" fg:w="8"/><text x="46.5599%" y="3135.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="46.3440%" y="3109" width="0.0128%" height="15" fill="rgb(243,84,40)" fg:x="10876" fg:w="3"/><text x="46.5940%" y="3119.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="46.3440%" y="3093" width="0.0128%" height="15" fill="rgb(232,137,48)" fg:x="10876" fg:w="3"/><text x="46.5940%" y="3103.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="46.3567%" y="3109" width="0.0213%" height="15" fill="rgb(239,26,34)" fg:x="10879" fg:w="5"/><text x="46.6067%" y="3119.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="46.3567%" y="3093" width="0.0213%" height="15" fill="rgb(216,123,31)" fg:x="10879" fg:w="5"/><text x="46.6067%" y="3103.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.3653%" y="3077" width="0.0128%" height="15" fill="rgb(250,44,51)" fg:x="10881" fg:w="3"/><text x="46.6153%" y="3087.50"></text></g><g><title>core::option::Option<T>::or_else (3 samples, 0.01%)</title><rect x="46.3823%" y="2997" width="0.0128%" height="15" fill="rgb(252,117,50)" fg:x="10885" fg:w="3"/><text x="46.6323%" y="3007.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work::_{{closure}} (3 samples, 0.01%)</title><rect x="46.3823%" y="2981" width="0.0128%" height="15" fill="rgb(234,154,4)" fg:x="10885" fg:w="3"/><text x="46.6323%" y="2991.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal (3 samples, 0.01%)</title><rect x="46.3823%" y="2965" width="0.0128%" height="15" fill="rgb(245,94,7)" fg:x="10885" fg:w="3"/><text x="46.6323%" y="2975.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map (3 samples, 0.01%)</title><rect x="46.3823%" y="2949" width="0.0128%" height="15" fill="rgb(221,160,35)" fg:x="10885" fg:w="3"/><text x="46.6323%" y="2959.50"></text></g><g><title><core::iter::adapters::filter::Filter<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="46.3823%" y="2933" width="0.0128%" height="15" fill="rgb(209,163,34)" fg:x="10885" fg:w="3"/><text x="46.6323%" y="2943.50"></text></g><g><title><core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="46.3823%" y="2917" width="0.0128%" height="15" fill="rgb(216,122,38)" fg:x="10885" fg:w="3"/><text x="46.6323%" y="2927.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="46.3823%" y="2901" width="0.0128%" height="15" fill="rgb(229,117,13)" fg:x="10885" fg:w="3"/><text x="46.6323%" y="2911.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work (4 samples, 0.02%)</title><rect x="46.3823%" y="3013" width="0.0170%" height="15" fill="rgb(253,208,48)" fg:x="10885" fg:w="4"/><text x="46.6323%" y="3023.50"></text></g><g><title>__sched_yield (5 samples, 0.02%)</title><rect x="46.3994%" y="2997" width="0.0213%" height="15" fill="rgb(234,15,52)" fg:x="10889" fg:w="5"/><text x="46.6494%" y="3007.50"></text></g><g><title>std::sys::unix::futex::futex_wait (13 samples, 0.06%)</title><rect x="46.4249%" y="2933" width="0.0554%" height="15" fill="rgb(216,193,47)" fg:x="10895" fg:w="13"/><text x="46.6749%" y="2943.50"></text></g><g><title>syscall (13 samples, 0.06%)</title><rect x="46.4249%" y="2917" width="0.0554%" height="15" fill="rgb(218,59,3)" fg:x="10895" fg:w="13"/><text x="46.6749%" y="2927.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (25 samples, 0.11%)</title><rect x="46.3780%" y="3045" width="0.1065%" height="15" fill="rgb(210,127,15)" fg:x="10884" fg:w="25"/><text x="46.6280%" y="3055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (25 samples, 0.11%)</title><rect x="46.3780%" y="3029" width="0.1065%" height="15" fill="rgb(211,18,5)" fg:x="10884" fg:w="25"/><text x="46.6280%" y="3039.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (20 samples, 0.09%)</title><rect x="46.3994%" y="3013" width="0.0852%" height="15" fill="rgb(206,143,17)" fg:x="10889" fg:w="20"/><text x="46.6494%" y="3023.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (15 samples, 0.06%)</title><rect x="46.4207%" y="2997" width="0.0639%" height="15" fill="rgb(212,228,42)" fg:x="10894" fg:w="15"/><text x="46.6707%" y="3007.50"></text></g><g><title>std::sync::condvar::Condvar::wait (15 samples, 0.06%)</title><rect x="46.4207%" y="2981" width="0.0639%" height="15" fill="rgb(225,195,46)" fg:x="10894" fg:w="15"/><text x="46.6707%" y="2991.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (14 samples, 0.06%)</title><rect x="46.4249%" y="2965" width="0.0597%" height="15" fill="rgb(232,56,40)" fg:x="10895" fg:w="14"/><text x="46.6749%" y="2975.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (14 samples, 0.06%)</title><rect x="46.4249%" y="2949" width="0.0597%" height="15" fill="rgb(209,29,48)" fg:x="10895" fg:w="14"/><text x="46.6749%" y="2959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="46.4931%" y="2837" width="0.0128%" height="15" fill="rgb(226,105,50)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="46.4931%" y="2821" width="0.0128%" height="15" fill="rgb(247,69,14)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2831.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="46.4931%" y="2805" width="0.0128%" height="15" fill="rgb(243,159,18)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2815.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="46.4931%" y="2789" width="0.0128%" height="15" fill="rgb(222,104,42)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2799.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="46.4931%" y="2773" width="0.0128%" height="15" fill="rgb(207,19,19)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2783.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="46.4931%" y="2757" width="0.0128%" height="15" fill="rgb(227,103,28)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.4931%" y="2741" width="0.0128%" height="15" fill="rgb(228,91,18)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2751.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.4931%" y="2725" width="0.0128%" height="15" fill="rgb(252,148,37)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2735.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.4931%" y="2709" width="0.0128%" height="15" fill="rgb(222,10,11)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2719.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.4931%" y="2693" width="0.0128%" height="15" fill="rgb(215,106,4)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.4931%" y="2677" width="0.0128%" height="15" fill="rgb(221,202,19)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2687.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2661" width="0.0128%" height="15" fill="rgb(239,182,19)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2645" width="0.0128%" height="15" fill="rgb(240,71,18)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2655.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2629" width="0.0128%" height="15" fill="rgb(218,87,32)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2639.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2613" width="0.0128%" height="15" fill="rgb(224,214,44)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.4931%" y="2597" width="0.0128%" height="15" fill="rgb(214,179,46)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2607.50"></text></g><g><title>rayon_core::join::join (3 samples, 0.01%)</title><rect x="46.4931%" y="2581" width="0.0128%" height="15" fill="rgb(226,49,23)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2591.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="46.4931%" y="2565" width="0.0128%" height="15" fill="rgb(240,36,53)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="46.4931%" y="2549" width="0.0128%" height="15" fill="rgb(249,18,2)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2559.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2533" width="0.0128%" height="15" fill="rgb(250,17,19)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2543.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.4931%" y="2517" width="0.0128%" height="15" fill="rgb(213,83,3)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2527.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.4931%" y="2501" width="0.0128%" height="15" fill="rgb(224,118,29)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2511.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.4931%" y="2485" width="0.0128%" height="15" fill="rgb(232,56,0)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2495.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.4931%" y="2469" width="0.0128%" height="15" fill="rgb(209,37,13)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2479.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.4931%" y="2453" width="0.0128%" height="15" fill="rgb(233,144,38)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2437" width="0.0128%" height="15" fill="rgb(217,74,5)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2447.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2421" width="0.0128%" height="15" fill="rgb(232,95,43)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (3 samples, 0.01%)</title><rect x="46.4931%" y="2405" width="0.0128%" height="15" fill="rgb(220,10,29)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="46.4931%" y="2389" width="0.0128%" height="15" fill="rgb(213,226,29)" fg:x="10911" fg:w="3"/><text x="46.7431%" y="2399.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="46.5144%" y="2389" width="0.0213%" height="15" fill="rgb(254,70,51)" fg:x="10916" fg:w="5"/><text x="46.7644%" y="2399.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="46.5144%" y="2373" width="0.0213%" height="15" fill="rgb(243,119,22)" fg:x="10916" fg:w="5"/><text x="46.7644%" y="2383.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="46.5144%" y="2357" width="0.0213%" height="15" fill="rgb(212,41,51)" fg:x="10916" fg:w="5"/><text x="46.7644%" y="2367.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="46.5144%" y="2341" width="0.0213%" height="15" fill="rgb(205,61,17)" fg:x="10916" fg:w="5"/><text x="46.7644%" y="2351.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="46.5144%" y="2325" width="0.0213%" height="15" fill="rgb(248,76,16)" fg:x="10916" fg:w="5"/><text x="46.7644%" y="2335.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="46.5144%" y="2309" width="0.0213%" height="15" fill="rgb(227,43,22)" fg:x="10916" fg:w="5"/><text x="46.7644%" y="2319.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="46.5187%" y="2293" width="0.0170%" height="15" fill="rgb(237,146,32)" fg:x="10917" fg:w="4"/><text x="46.7687%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9,477 samples, 40.38%)</title><rect x="6.1573%" y="3381" width="40.3826%" height="15" fill="rgb(245,77,23)" fg:x="1445" fg:w="9477"/><text x="6.4073%" y="3391.50">rayon_core::join::join_context::call_b::_{{closure}}</text></g><g><title>rayon_core::join::join::call::_{{closure}} (79 samples, 0.34%)</title><rect x="46.2033%" y="3365" width="0.3366%" height="15" fill="rgb(221,124,26)" fg:x="10843" fg:w="79"/><text x="46.4533%" y="3375.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (79 samples, 0.34%)</title><rect x="46.2033%" y="3349" width="0.3366%" height="15" fill="rgb(236,27,44)" fg:x="10843" fg:w="79"/><text x="46.4533%" y="3359.50"></text></g><g><title>rayon::slice::quicksort::recurse (79 samples, 0.34%)</title><rect x="46.2033%" y="3333" width="0.3366%" height="15" fill="rgb(215,89,50)" fg:x="10843" fg:w="79"/><text x="46.4533%" y="3343.50"></text></g><g><title>rayon_core::join::join (63 samples, 0.27%)</title><rect x="46.2715%" y="3317" width="0.2685%" height="15" fill="rgb(217,22,42)" fg:x="10859" fg:w="63"/><text x="46.5215%" y="3327.50"></text></g><g><title>rayon_core::join::join_context (63 samples, 0.27%)</title><rect x="46.2715%" y="3301" width="0.2685%" height="15" fill="rgb(208,206,40)" fg:x="10859" fg:w="63"/><text x="46.5215%" y="3311.50"></text></g><g><title>rayon_core::registry::in_worker (63 samples, 0.27%)</title><rect x="46.2715%" y="3285" width="0.2685%" height="15" fill="rgb(228,33,45)" fg:x="10859" fg:w="63"/><text x="46.5215%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (63 samples, 0.27%)</title><rect x="46.2715%" y="3269" width="0.2685%" height="15" fill="rgb(251,101,37)" fg:x="10859" fg:w="63"/><text x="46.5215%" y="3279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (46 samples, 0.20%)</title><rect x="46.3440%" y="3253" width="0.1960%" height="15" fill="rgb(233,112,51)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3263.50"></text></g><g><title>std::panic::catch_unwind (46 samples, 0.20%)</title><rect x="46.3440%" y="3237" width="0.1960%" height="15" fill="rgb(240,205,1)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3247.50"></text></g><g><title>std::panicking::try (46 samples, 0.20%)</title><rect x="46.3440%" y="3221" width="0.1960%" height="15" fill="rgb(238,107,8)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3231.50"></text></g><g><title>std::panicking::try::do_call (46 samples, 0.20%)</title><rect x="46.3440%" y="3205" width="0.1960%" height="15" fill="rgb(251,63,29)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3215.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (46 samples, 0.20%)</title><rect x="46.3440%" y="3189" width="0.1960%" height="15" fill="rgb(236,6,3)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (46 samples, 0.20%)</title><rect x="46.3440%" y="3173" width="0.1960%" height="15" fill="rgb(219,163,43)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3183.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (46 samples, 0.20%)</title><rect x="46.3440%" y="3157" width="0.1960%" height="15" fill="rgb(240,139,19)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3167.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (46 samples, 0.20%)</title><rect x="46.3440%" y="3141" width="0.1960%" height="15" fill="rgb(224,76,17)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3151.50"></text></g><g><title>rayon::slice::quicksort::recurse (46 samples, 0.20%)</title><rect x="46.3440%" y="3125" width="0.1960%" height="15" fill="rgb(214,68,10)" fg:x="10876" fg:w="46"/><text x="46.5940%" y="3135.50"></text></g><g><title>rayon_core::join::join (38 samples, 0.16%)</title><rect x="46.3780%" y="3109" width="0.1619%" height="15" fill="rgb(238,47,47)" fg:x="10884" fg:w="38"/><text x="46.6280%" y="3119.50"></text></g><g><title>rayon_core::join::join_context (38 samples, 0.16%)</title><rect x="46.3780%" y="3093" width="0.1619%" height="15" fill="rgb(250,21,35)" fg:x="10884" fg:w="38"/><text x="46.6280%" y="3103.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.16%)</title><rect x="46.3780%" y="3077" width="0.1619%" height="15" fill="rgb(215,177,54)" fg:x="10884" fg:w="38"/><text x="46.6280%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38 samples, 0.16%)</title><rect x="46.3780%" y="3061" width="0.1619%" height="15" fill="rgb(253,207,21)" fg:x="10884" fg:w="38"/><text x="46.6280%" y="3071.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="46.4846%" y="3045" width="0.0554%" height="15" fill="rgb(242,65,37)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="3055.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="46.4846%" y="3029" width="0.0554%" height="15" fill="rgb(213,68,52)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="3039.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="46.4846%" y="3013" width="0.0554%" height="15" fill="rgb(239,123,51)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="3023.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="46.4846%" y="2997" width="0.0554%" height="15" fill="rgb(230,95,45)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="3007.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="46.4846%" y="2981" width="0.0554%" height="15" fill="rgb(208,8,22)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="46.4846%" y="2965" width="0.0554%" height="15" fill="rgb(217,112,7)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="2975.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (13 samples, 0.06%)</title><rect x="46.4846%" y="2949" width="0.0554%" height="15" fill="rgb(211,54,17)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="2959.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (13 samples, 0.06%)</title><rect x="46.4846%" y="2933" width="0.0554%" height="15" fill="rgb(208,172,28)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="2943.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.06%)</title><rect x="46.4846%" y="2917" width="0.0554%" height="15" fill="rgb(214,144,29)" fg:x="10909" fg:w="13"/><text x="46.7346%" y="2927.50"></text></g><g><title>rayon_core::join::join (11 samples, 0.05%)</title><rect x="46.4931%" y="2901" width="0.0469%" height="15" fill="rgb(243,206,49)" fg:x="10911" fg:w="11"/><text x="46.7431%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="46.4931%" y="2885" width="0.0469%" height="15" fill="rgb(210,100,25)" fg:x="10911" fg:w="11"/><text x="46.7431%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="46.4931%" y="2869" width="0.0469%" height="15" fill="rgb(242,22,21)" fg:x="10911" fg:w="11"/><text x="46.7431%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="46.4931%" y="2853" width="0.0469%" height="15" fill="rgb(246,215,48)" fg:x="10911" fg:w="11"/><text x="46.7431%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="46.5059%" y="2837" width="0.0341%" height="15" fill="rgb(244,207,22)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="46.5059%" y="2821" width="0.0341%" height="15" fill="rgb(246,127,43)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2831.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="46.5059%" y="2805" width="0.0341%" height="15" fill="rgb(245,171,6)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="46.5059%" y="2789" width="0.0341%" height="15" fill="rgb(212,68,53)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="46.5059%" y="2773" width="0.0341%" height="15" fill="rgb(247,71,3)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="46.5059%" y="2757" width="0.0341%" height="15" fill="rgb(226,12,24)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2767.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (8 samples, 0.03%)</title><rect x="46.5059%" y="2741" width="0.0341%" height="15" fill="rgb(207,219,53)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2751.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (8 samples, 0.03%)</title><rect x="46.5059%" y="2725" width="0.0341%" height="15" fill="rgb(237,140,29)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2735.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="46.5059%" y="2709" width="0.0341%" height="15" fill="rgb(206,48,33)" fg:x="10914" fg:w="8"/><text x="46.7559%" y="2719.50"></text></g><g><title>rayon_core::join::join (6 samples, 0.03%)</title><rect x="46.5144%" y="2693" width="0.0256%" height="15" fill="rgb(209,78,36)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2703.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="46.5144%" y="2677" width="0.0256%" height="15" fill="rgb(252,178,9)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2687.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="46.5144%" y="2661" width="0.0256%" height="15" fill="rgb(215,169,22)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5144%" y="2645" width="0.0256%" height="15" fill="rgb(209,110,26)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2655.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="46.5144%" y="2629" width="0.0256%" height="15" fill="rgb(252,7,48)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2639.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="46.5144%" y="2613" width="0.0256%" height="15" fill="rgb(247,28,30)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2623.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="46.5144%" y="2597" width="0.0256%" height="15" fill="rgb(233,69,42)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2607.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="46.5144%" y="2581" width="0.0256%" height="15" fill="rgb(225,154,32)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2591.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="46.5144%" y="2565" width="0.0256%" height="15" fill="rgb(236,44,37)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5144%" y="2549" width="0.0256%" height="15" fill="rgb(216,45,22)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2559.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5144%" y="2533" width="0.0256%" height="15" fill="rgb(242,211,43)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5144%" y="2517" width="0.0256%" height="15" fill="rgb(238,88,35)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="46.5144%" y="2501" width="0.0256%" height="15" fill="rgb(218,147,17)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2511.50"></text></g><g><title>rayon_core::join::join (6 samples, 0.03%)</title><rect x="46.5144%" y="2485" width="0.0256%" height="15" fill="rgb(206,200,52)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="46.5144%" y="2469" width="0.0256%" height="15" fill="rgb(211,130,51)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="46.5144%" y="2453" width="0.0256%" height="15" fill="rgb(238,121,43)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5144%" y="2437" width="0.0256%" height="15" fill="rgb(210,76,6)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="46.5144%" y="2421" width="0.0256%" height="15" fill="rgb(223,84,53)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="46.5144%" y="2405" width="0.0256%" height="15" fill="rgb(205,12,52)" fg:x="10916" fg:w="6"/><text x="46.7644%" y="2415.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="46.5442%" y="3061" width="0.0170%" height="15" fill="rgb(227,121,45)" fg:x="10923" fg:w="4"/><text x="46.7942%" y="3071.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="46.5442%" y="3045" width="0.0170%" height="15" fill="rgb(223,169,0)" fg:x="10923" fg:w="4"/><text x="46.7942%" y="3055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="46.5400%" y="3173" width="0.0256%" height="15" fill="rgb(240,209,16)" fg:x="10922" fg:w="6"/><text x="46.7900%" y="3183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="46.5400%" y="3157" width="0.0256%" height="15" fill="rgb(237,98,16)" fg:x="10922" fg:w="6"/><text x="46.7900%" y="3167.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="46.5442%" y="3141" width="0.0213%" height="15" fill="rgb(243,134,54)" fg:x="10923" fg:w="5"/><text x="46.7942%" y="3151.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="46.5442%" y="3125" width="0.0213%" height="15" fill="rgb(216,24,11)" fg:x="10923" fg:w="5"/><text x="46.7942%" y="3135.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="46.5442%" y="3109" width="0.0213%" height="15" fill="rgb(213,68,19)" fg:x="10923" fg:w="5"/><text x="46.7942%" y="3119.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="46.5442%" y="3093" width="0.0213%" height="15" fill="rgb(208,77,37)" fg:x="10923" fg:w="5"/><text x="46.7942%" y="3103.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="46.5442%" y="3077" width="0.0213%" height="15" fill="rgb(223,86,51)" fg:x="10923" fg:w="5"/><text x="46.7942%" y="3087.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="46.5655%" y="2389" width="0.0170%" height="15" fill="rgb(236,163,18)" fg:x="10928" fg:w="4"/><text x="46.8155%" y="2399.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="46.5655%" y="2373" width="0.0170%" height="15" fill="rgb(246,50,43)" fg:x="10928" fg:w="4"/><text x="46.8155%" y="2383.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="46.5655%" y="2357" width="0.0170%" height="15" fill="rgb(206,3,51)" fg:x="10928" fg:w="4"/><text x="46.8155%" y="2367.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="46.5655%" y="2341" width="0.0170%" height="15" fill="rgb(211,31,49)" fg:x="10928" fg:w="4"/><text x="46.8155%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="46.5655%" y="2581" width="0.0213%" height="15" fill="rgb(216,4,16)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="46.5655%" y="2565" width="0.0213%" height="15" fill="rgb(254,132,19)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="46.5655%" y="2549" width="0.0213%" height="15" fill="rgb(218,91,36)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="46.5655%" y="2533" width="0.0213%" height="15" fill="rgb(205,116,47)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2543.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="46.5655%" y="2517" width="0.0213%" height="15" fill="rgb(251,121,54)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="46.5655%" y="2501" width="0.0213%" height="15" fill="rgb(237,53,49)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="46.5655%" y="2485" width="0.0213%" height="15" fill="rgb(218,194,9)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="46.5655%" y="2469" width="0.0213%" height="15" fill="rgb(230,107,27)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="46.5655%" y="2453" width="0.0213%" height="15" fill="rgb(242,95,1)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="46.5655%" y="2437" width="0.0213%" height="15" fill="rgb(248,216,41)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="46.5655%" y="2421" width="0.0213%" height="15" fill="rgb(208,165,37)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2431.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="46.5655%" y="2405" width="0.0213%" height="15" fill="rgb(215,0,32)" fg:x="10928" fg:w="5"/><text x="46.8155%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="46.5868%" y="2021" width="0.0128%" height="15" fill="rgb(228,73,13)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5868%" y="2005" width="0.0128%" height="15" fill="rgb(242,224,12)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5868%" y="1989" width="0.0128%" height="15" fill="rgb(225,12,16)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.5868%" y="1973" width="0.0128%" height="15" fill="rgb(243,49,14)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.5868%" y="1957" width="0.0128%" height="15" fill="rgb(209,72,23)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1967.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.5868%" y="1941" width="0.0128%" height="15" fill="rgb(220,25,10)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.5868%" y="1925" width="0.0128%" height="15" fill="rgb(251,156,42)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1935.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.5868%" y="1909" width="0.0128%" height="15" fill="rgb(232,168,49)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1919.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.5868%" y="1893" width="0.0128%" height="15" fill="rgb(232,146,46)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1903.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.5868%" y="1877" width="0.0128%" height="15" fill="rgb(248,91,33)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.5868%" y="1861" width="0.0128%" height="15" fill="rgb(211,155,21)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5868%" y="1845" width="0.0128%" height="15" fill="rgb(249,65,10)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.5868%" y="1829" width="0.0128%" height="15" fill="rgb(205,146,2)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1839.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.5868%" y="1813" width="0.0128%" height="15" fill="rgb(237,211,50)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1823.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5868%" y="1797" width="0.0128%" height="15" fill="rgb(254,218,43)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1807.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.5868%" y="1781" width="0.0128%" height="15" fill="rgb(229,203,52)" fg:x="10933" fg:w="3"/><text x="46.8368%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="46.5868%" y="2133" width="0.0256%" height="15" fill="rgb(236,86,24)" fg:x="10933" fg:w="6"/><text x="46.8368%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5868%" y="2117" width="0.0256%" height="15" fill="rgb(223,227,48)" fg:x="10933" fg:w="6"/><text x="46.8368%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5868%" y="2101" width="0.0256%" height="15" fill="rgb(239,49,23)" fg:x="10933" fg:w="6"/><text x="46.8368%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="46.5868%" y="2085" width="0.0256%" height="15" fill="rgb(212,75,8)" fg:x="10933" fg:w="6"/><text x="46.8368%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="46.5868%" y="2069" width="0.0256%" height="15" fill="rgb(240,53,17)" fg:x="10933" fg:w="6"/><text x="46.8368%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="46.5868%" y="2053" width="0.0256%" height="15" fill="rgb(219,132,23)" fg:x="10933" fg:w="6"/><text x="46.8368%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="46.5868%" y="2037" width="0.0256%" height="15" fill="rgb(238,174,39)" fg:x="10933" fg:w="6"/><text x="46.8368%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.5996%" y="2021" width="0.0128%" height="15" fill="rgb(228,140,32)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.5996%" y="2005" width="0.0128%" height="15" fill="rgb(248,227,31)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="2015.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.5996%" y="1989" width="0.0128%" height="15" fill="rgb(220,69,43)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.5996%" y="1973" width="0.0128%" height="15" fill="rgb(254,199,46)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.5996%" y="1957" width="0.0128%" height="15" fill="rgb(236,212,32)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5996%" y="1941" width="0.0128%" height="15" fill="rgb(231,198,25)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5996%" y="1925" width="0.0128%" height="15" fill="rgb(214,104,42)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.5996%" y="1909" width="0.0128%" height="15" fill="rgb(240,220,4)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.5996%" y="1893" width="0.0128%" height="15" fill="rgb(217,44,48)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.5996%" y="1877" width="0.0128%" height="15" fill="rgb(240,171,13)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.5996%" y="1861" width="0.0128%" height="15" fill="rgb(208,121,9)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.5996%" y="1845" width="0.0128%" height="15" fill="rgb(210,225,14)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.5996%" y="1829" width="0.0128%" height="15" fill="rgb(244,202,52)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.5996%" y="1813" width="0.0128%" height="15" fill="rgb(235,153,33)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.5996%" y="1797" width="0.0128%" height="15" fill="rgb(212,209,27)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5996%" y="1781" width="0.0128%" height="15" fill="rgb(216,75,10)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.5996%" y="1765" width="0.0128%" height="15" fill="rgb(232,79,30)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.5996%" y="1749" width="0.0128%" height="15" fill="rgb(244,206,29)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.5996%" y="1733" width="0.0128%" height="15" fill="rgb(238,49,24)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.5996%" y="1717" width="0.0128%" height="15" fill="rgb(219,172,18)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1727.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="46.5996%" y="1701" width="0.0128%" height="15" fill="rgb(208,42,40)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1711.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="46.5996%" y="1685" width="0.0128%" height="15" fill="rgb(235,105,36)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1695.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="46.5996%" y="1669" width="0.0128%" height="15" fill="rgb(225,78,45)" fg:x="10936" fg:w="3"/><text x="46.8496%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="46.5868%" y="2421" width="0.0469%" height="15" fill="rgb(234,183,8)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="46.5868%" y="2405" width="0.0469%" height="15" fill="rgb(220,149,16)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="46.5868%" y="2389" width="0.0469%" height="15" fill="rgb(250,43,11)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="46.5868%" y="2373" width="0.0469%" height="15" fill="rgb(221,52,32)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="46.5868%" y="2357" width="0.0469%" height="15" fill="rgb(209,200,24)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="46.5868%" y="2341" width="0.0469%" height="15" fill="rgb(219,154,33)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="46.5868%" y="2325" width="0.0469%" height="15" fill="rgb(206,108,51)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="46.5868%" y="2309" width="0.0469%" height="15" fill="rgb(233,59,37)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2319.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="46.5868%" y="2293" width="0.0469%" height="15" fill="rgb(239,120,21)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="46.5868%" y="2277" width="0.0469%" height="15" fill="rgb(238,221,8)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="46.5868%" y="2261" width="0.0469%" height="15" fill="rgb(210,145,28)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="46.5868%" y="2245" width="0.0469%" height="15" fill="rgb(218,125,49)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="46.5868%" y="2229" width="0.0469%" height="15" fill="rgb(240,163,12)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="46.5868%" y="2213" width="0.0469%" height="15" fill="rgb(234,132,52)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="46.5868%" y="2197" width="0.0469%" height="15" fill="rgb(208,55,31)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="46.5868%" y="2181" width="0.0469%" height="15" fill="rgb(221,67,45)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="46.5868%" y="2165" width="0.0469%" height="15" fill="rgb(238,185,33)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="46.5868%" y="2149" width="0.0469%" height="15" fill="rgb(205,34,6)" fg:x="10933" fg:w="11"/><text x="46.8368%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="46.6124%" y="2133" width="0.0213%" height="15" fill="rgb(221,87,52)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="46.6124%" y="2117" width="0.0213%" height="15" fill="rgb(254,37,34)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2127.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="46.6124%" y="2101" width="0.0213%" height="15" fill="rgb(242,47,16)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="46.6124%" y="2085" width="0.0213%" height="15" fill="rgb(250,32,50)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="46.6124%" y="2069" width="0.0213%" height="15" fill="rgb(211,206,0)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="46.6124%" y="2053" width="0.0213%" height="15" fill="rgb(222,206,51)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="46.6124%" y="2037" width="0.0213%" height="15" fill="rgb(221,48,20)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="46.6124%" y="2021" width="0.0213%" height="15" fill="rgb(238,124,20)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="46.6124%" y="2005" width="0.0213%" height="15" fill="rgb(214,26,15)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="46.6124%" y="1989" width="0.0213%" height="15" fill="rgb(242,69,40)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="46.6124%" y="1973" width="0.0213%" height="15" fill="rgb(229,158,27)" fg:x="10939" fg:w="5"/><text x="46.8624%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.6209%" y="1957" width="0.0128%" height="15" fill="rgb(237,51,16)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.6209%" y="1941" width="0.0128%" height="15" fill="rgb(213,32,46)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1951.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.6209%" y="1925" width="0.0128%" height="15" fill="rgb(210,115,54)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.6209%" y="1909" width="0.0128%" height="15" fill="rgb(243,151,19)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.6209%" y="1893" width="0.0128%" height="15" fill="rgb(242,226,27)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6209%" y="1877" width="0.0128%" height="15" fill="rgb(223,178,9)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6209%" y="1861" width="0.0128%" height="15" fill="rgb(227,74,32)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.6209%" y="1845" width="0.0128%" height="15" fill="rgb(246,34,25)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.6209%" y="1829" width="0.0128%" height="15" fill="rgb(231,147,9)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.6209%" y="1813" width="0.0128%" height="15" fill="rgb(234,23,4)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.6209%" y="1797" width="0.0128%" height="15" fill="rgb(247,140,31)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.6209%" y="1781" width="0.0128%" height="15" fill="rgb(245,67,41)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.6209%" y="1765" width="0.0128%" height="15" fill="rgb(232,217,12)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.6209%" y="1749" width="0.0128%" height="15" fill="rgb(235,156,45)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.6209%" y="1733" width="0.0128%" height="15" fill="rgb(228,30,3)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6209%" y="1717" width="0.0128%" height="15" fill="rgb(209,41,2)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.6209%" y="1701" width="0.0128%" height="15" fill="rgb(220,203,33)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.6209%" y="1685" width="0.0128%" height="15" fill="rgb(217,34,50)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6209%" y="1669" width="0.0128%" height="15" fill="rgb(245,91,26)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.6209%" y="1653" width="0.0128%" height="15" fill="rgb(251,56,3)" fg:x="10941" fg:w="3"/><text x="46.8709%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="46.6337%" y="2245" width="0.0128%" height="15" fill="rgb(219,44,39)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6337%" y="2229" width="0.0128%" height="15" fill="rgb(214,99,17)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6337%" y="2213" width="0.0128%" height="15" fill="rgb(227,0,21)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.6337%" y="2197" width="0.0128%" height="15" fill="rgb(249,1,47)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.6337%" y="2181" width="0.0128%" height="15" fill="rgb(246,99,17)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.6337%" y="2165" width="0.0128%" height="15" fill="rgb(224,20,7)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.6337%" y="2149" width="0.0128%" height="15" fill="rgb(210,170,22)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.6337%" y="2133" width="0.0128%" height="15" fill="rgb(245,116,29)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.6337%" y="2117" width="0.0128%" height="15" fill="rgb(231,156,11)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.6337%" y="2101" width="0.0128%" height="15" fill="rgb(246,40,31)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.6337%" y="2085" width="0.0128%" height="15" fill="rgb(222,99,15)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6337%" y="2069" width="0.0128%" height="15" fill="rgb(225,28,50)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.6337%" y="2053" width="0.0128%" height="15" fill="rgb(213,135,42)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.6337%" y="2037" width="0.0128%" height="15" fill="rgb(250,66,6)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6337%" y="2021" width="0.0128%" height="15" fill="rgb(223,132,33)" fg:x="10944" fg:w="3"/><text x="46.8837%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (17 samples, 0.07%)</title><rect x="46.5868%" y="2533" width="0.0724%" height="15" fill="rgb(241,216,9)" fg:x="10933" fg:w="17"/><text x="46.8368%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="46.5868%" y="2517" width="0.0724%" height="15" fill="rgb(216,14,38)" fg:x="10933" fg:w="17"/><text x="46.8368%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="46.5868%" y="2501" width="0.0724%" height="15" fill="rgb(220,221,8)" fg:x="10933" fg:w="17"/><text x="46.8368%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="46.5868%" y="2485" width="0.0724%" height="15" fill="rgb(234,16,8)" fg:x="10933" fg:w="17"/><text x="46.8368%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="46.5868%" y="2469" width="0.0724%" height="15" fill="rgb(214,38,29)" fg:x="10933" fg:w="17"/><text x="46.8368%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="46.5868%" y="2453" width="0.0724%" height="15" fill="rgb(253,149,31)" fg:x="10933" fg:w="17"/><text x="46.8368%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="46.5868%" y="2437" width="0.0724%" height="15" fill="rgb(215,227,9)" fg:x="10933" fg:w="17"/><text x="46.8368%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="46.6337%" y="2421" width="0.0256%" height="15" fill="rgb(234,86,26)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="46.6337%" y="2405" width="0.0256%" height="15" fill="rgb(232,58,49)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2415.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="46.6337%" y="2389" width="0.0256%" height="15" fill="rgb(217,45,4)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="46.6337%" y="2373" width="0.0256%" height="15" fill="rgb(206,186,47)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="46.6337%" y="2357" width="0.0256%" height="15" fill="rgb(212,213,13)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="46.6337%" y="2341" width="0.0256%" height="15" fill="rgb(254,222,8)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="46.6337%" y="2325" width="0.0256%" height="15" fill="rgb(212,72,4)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="46.6337%" y="2309" width="0.0256%" height="15" fill="rgb(240,56,38)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="46.6337%" y="2293" width="0.0256%" height="15" fill="rgb(213,125,11)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="46.6337%" y="2277" width="0.0256%" height="15" fill="rgb(210,104,28)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="46.6337%" y="2261" width="0.0256%" height="15" fill="rgb(248,72,33)" fg:x="10944" fg:w="6"/><text x="46.8837%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.6465%" y="2245" width="0.0128%" height="15" fill="rgb(206,33,52)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.6465%" y="2229" width="0.0128%" height="15" fill="rgb(228,67,10)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2239.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.6465%" y="2213" width="0.0128%" height="15" fill="rgb(221,56,51)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.6465%" y="2197" width="0.0128%" height="15" fill="rgb(233,224,5)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.6465%" y="2181" width="0.0128%" height="15" fill="rgb(242,179,48)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6465%" y="2165" width="0.0128%" height="15" fill="rgb(246,24,25)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6465%" y="2149" width="0.0128%" height="15" fill="rgb(235,109,50)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.6465%" y="2133" width="0.0128%" height="15" fill="rgb(206,134,6)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.6465%" y="2117" width="0.0128%" height="15" fill="rgb(238,50,5)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.6465%" y="2101" width="0.0128%" height="15" fill="rgb(210,214,49)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.6465%" y="2085" width="0.0128%" height="15" fill="rgb(245,190,14)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.6465%" y="2069" width="0.0128%" height="15" fill="rgb(245,28,40)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.6465%" y="2053" width="0.0128%" height="15" fill="rgb(218,45,11)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.6465%" y="2037" width="0.0128%" height="15" fill="rgb(222,167,21)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.6465%" y="2021" width="0.0128%" height="15" fill="rgb(221,177,2)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6465%" y="2005" width="0.0128%" height="15" fill="rgb(240,113,8)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.6465%" y="1989" width="0.0128%" height="15" fill="rgb(247,19,33)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.6465%" y="1973" width="0.0128%" height="15" fill="rgb(242,225,23)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6465%" y="1957" width="0.0128%" height="15" fill="rgb(242,35,44)" fg:x="10947" fg:w="3"/><text x="46.8965%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="46.6593%" y="2245" width="0.0128%" height="15" fill="rgb(243,190,23)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6593%" y="2229" width="0.0128%" height="15" fill="rgb(222,175,4)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6593%" y="2213" width="0.0128%" height="15" fill="rgb(212,128,15)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.6593%" y="2197" width="0.0128%" height="15" fill="rgb(239,130,34)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.6593%" y="2181" width="0.0128%" height="15" fill="rgb(219,151,17)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2191.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.6593%" y="2165" width="0.0128%" height="15" fill="rgb(228,219,53)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.6593%" y="2149" width="0.0128%" height="15" fill="rgb(213,79,28)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2159.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.6593%" y="2133" width="0.0128%" height="15" fill="rgb(238,71,18)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2143.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.6593%" y="2117" width="0.0128%" height="15" fill="rgb(235,57,53)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2127.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.6593%" y="2101" width="0.0128%" height="15" fill="rgb(213,199,2)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.6593%" y="2085" width="0.0128%" height="15" fill="rgb(206,61,23)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6593%" y="2069" width="0.0128%" height="15" fill="rgb(253,31,27)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.6593%" y="2053" width="0.0128%" height="15" fill="rgb(220,117,48)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2063.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.6593%" y="2037" width="0.0128%" height="15" fill="rgb(236,168,14)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2047.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6593%" y="2021" width="0.0128%" height="15" fill="rgb(241,100,8)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2031.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.6593%" y="2005" width="0.0128%" height="15" fill="rgb(212,211,50)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="2015.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="46.6593%" y="1989" width="0.0128%" height="15" fill="rgb(237,221,25)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="1999.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="46.6593%" y="1973" width="0.0128%" height="15" fill="rgb(209,229,50)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="1983.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="46.6593%" y="1957" width="0.0128%" height="15" fill="rgb(232,213,43)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="1967.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="46.6593%" y="1941" width="0.0128%" height="15" fill="rgb(241,107,1)" fg:x="10950" fg:w="3"/><text x="46.9093%" y="1951.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="46.6593%" y="2357" width="0.0256%" height="15" fill="rgb(253,101,6)" fg:x="10950" fg:w="6"/><text x="46.9093%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="46.6593%" y="2341" width="0.0256%" height="15" fill="rgb(236,114,22)" fg:x="10950" fg:w="6"/><text x="46.9093%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="46.6593%" y="2325" width="0.0256%" height="15" fill="rgb(227,34,26)" fg:x="10950" fg:w="6"/><text x="46.9093%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="46.6593%" y="2309" width="0.0256%" height="15" fill="rgb(248,146,26)" fg:x="10950" fg:w="6"/><text x="46.9093%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="46.6593%" y="2293" width="0.0256%" height="15" fill="rgb(222,148,3)" fg:x="10950" fg:w="6"/><text x="46.9093%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="46.6593%" y="2277" width="0.0256%" height="15" fill="rgb(249,90,8)" fg:x="10950" fg:w="6"/><text x="46.9093%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="46.6593%" y="2261" width="0.0256%" height="15" fill="rgb(229,97,49)" fg:x="10950" fg:w="6"/><text x="46.9093%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.6721%" y="2245" width="0.0128%" height="15" fill="rgb(232,130,1)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.6721%" y="2229" width="0.0128%" height="15" fill="rgb(225,193,5)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2239.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.6721%" y="2213" width="0.0128%" height="15" fill="rgb(249,85,47)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.6721%" y="2197" width="0.0128%" height="15" fill="rgb(244,189,19)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.6721%" y="2181" width="0.0128%" height="15" fill="rgb(212,196,23)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6721%" y="2165" width="0.0128%" height="15" fill="rgb(240,88,1)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6721%" y="2149" width="0.0128%" height="15" fill="rgb(244,149,51)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.6721%" y="2133" width="0.0128%" height="15" fill="rgb(229,23,9)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.6721%" y="2117" width="0.0128%" height="15" fill="rgb(206,58,45)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2127.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.6721%" y="2101" width="0.0128%" height="15" fill="rgb(244,213,26)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.6721%" y="2085" width="0.0128%" height="15" fill="rgb(238,72,39)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2095.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.6721%" y="2069" width="0.0128%" height="15" fill="rgb(224,160,0)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2079.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.6721%" y="2053" width="0.0128%" height="15" fill="rgb(249,1,2)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2063.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.6721%" y="2037" width="0.0128%" height="15" fill="rgb(206,116,38)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2047.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.6721%" y="2021" width="0.0128%" height="15" fill="rgb(241,97,24)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6721%" y="2005" width="0.0128%" height="15" fill="rgb(223,110,36)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="2015.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.6721%" y="1989" width="0.0128%" height="15" fill="rgb(216,12,17)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="1999.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.6721%" y="1973" width="0.0128%" height="15" fill="rgb(245,187,39)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="1983.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6721%" y="1957" width="0.0128%" height="15" fill="rgb(226,21,42)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.6721%" y="1941" width="0.0128%" height="15" fill="rgb(230,148,24)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="1951.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="46.6721%" y="1925" width="0.0128%" height="15" fill="rgb(243,173,23)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="1935.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="46.6721%" y="1909" width="0.0128%" height="15" fill="rgb(223,134,35)" fg:x="10953" fg:w="3"/><text x="46.9221%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (33 samples, 0.14%)</title><rect x="46.5655%" y="2821" width="0.1406%" height="15" fill="rgb(233,175,9)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33 samples, 0.14%)</title><rect x="46.5655%" y="2805" width="0.1406%" height="15" fill="rgb(218,224,12)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2815.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (33 samples, 0.14%)</title><rect x="46.5655%" y="2789" width="0.1406%" height="15" fill="rgb(236,30,43)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2799.50"></text></g><g><title>rayon_core::job::JobRef::execute (33 samples, 0.14%)</title><rect x="46.5655%" y="2773" width="0.1406%" height="15" fill="rgb(244,75,7)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2783.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (33 samples, 0.14%)</title><rect x="46.5655%" y="2757" width="0.1406%" height="15" fill="rgb(224,214,23)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (33 samples, 0.14%)</title><rect x="46.5655%" y="2741" width="0.1406%" height="15" fill="rgb(250,51,26)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (33 samples, 0.14%)</title><rect x="46.5655%" y="2725" width="0.1406%" height="15" fill="rgb(223,15,10)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (33 samples, 0.14%)</title><rect x="46.5655%" y="2709" width="0.1406%" height="15" fill="rgb(215,115,16)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2719.50"></text></g><g><title>std::panicking::try (33 samples, 0.14%)</title><rect x="46.5655%" y="2693" width="0.1406%" height="15" fill="rgb(218,26,31)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (33 samples, 0.14%)</title><rect x="46.5655%" y="2677" width="0.1406%" height="15" fill="rgb(230,15,32)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (33 samples, 0.14%)</title><rect x="46.5655%" y="2661" width="0.1406%" height="15" fill="rgb(248,6,3)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2671.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (33 samples, 0.14%)</title><rect x="46.5655%" y="2645" width="0.1406%" height="15" fill="rgb(252,54,36)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (33 samples, 0.14%)</title><rect x="46.5655%" y="2629" width="0.1406%" height="15" fill="rgb(214,65,15)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (33 samples, 0.14%)</title><rect x="46.5655%" y="2613" width="0.1406%" height="15" fill="rgb(234,26,53)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.14%)</title><rect x="46.5655%" y="2597" width="0.1406%" height="15" fill="rgb(220,36,34)" fg:x="10928" fg:w="33"/><text x="46.8155%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (28 samples, 0.12%)</title><rect x="46.5868%" y="2581" width="0.1193%" height="15" fill="rgb(215,127,44)" fg:x="10933" fg:w="28"/><text x="46.8368%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.12%)</title><rect x="46.5868%" y="2565" width="0.1193%" height="15" fill="rgb(237,211,18)" fg:x="10933" fg:w="28"/><text x="46.8368%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (28 samples, 0.12%)</title><rect x="46.5868%" y="2549" width="0.1193%" height="15" fill="rgb(254,90,51)" fg:x="10933" fg:w="28"/><text x="46.8368%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="46.6593%" y="2533" width="0.0469%" height="15" fill="rgb(235,54,52)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="46.6593%" y="2517" width="0.0469%" height="15" fill="rgb(231,62,50)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2527.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="46.6593%" y="2501" width="0.0469%" height="15" fill="rgb(250,18,28)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="46.6593%" y="2485" width="0.0469%" height="15" fill="rgb(227,221,36)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="46.6593%" y="2469" width="0.0469%" height="15" fill="rgb(248,49,44)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="46.6593%" y="2453" width="0.0469%" height="15" fill="rgb(213,194,29)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="46.6593%" y="2437" width="0.0469%" height="15" fill="rgb(223,183,18)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="46.6593%" y="2421" width="0.0469%" height="15" fill="rgb(244,79,8)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="46.6593%" y="2405" width="0.0469%" height="15" fill="rgb(222,191,2)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="46.6593%" y="2389" width="0.0469%" height="15" fill="rgb(251,94,46)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="46.6593%" y="2373" width="0.0469%" height="15" fill="rgb(241,221,14)" fg:x="10950" fg:w="11"/><text x="46.9093%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="46.6848%" y="2357" width="0.0213%" height="15" fill="rgb(209,199,0)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="46.6848%" y="2341" width="0.0213%" height="15" fill="rgb(221,202,25)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2351.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="46.6848%" y="2325" width="0.0213%" height="15" fill="rgb(238,133,25)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="46.6848%" y="2309" width="0.0213%" height="15" fill="rgb(228,110,49)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="46.6848%" y="2293" width="0.0213%" height="15" fill="rgb(234,51,10)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="46.6848%" y="2277" width="0.0213%" height="15" fill="rgb(227,34,47)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="46.6848%" y="2261" width="0.0213%" height="15" fill="rgb(222,121,15)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="46.6848%" y="2245" width="0.0213%" height="15" fill="rgb(227,21,27)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="46.6848%" y="2229" width="0.0213%" height="15" fill="rgb(212,208,26)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="46.6848%" y="2213" width="0.0213%" height="15" fill="rgb(225,225,0)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="46.6848%" y="2197" width="0.0213%" height="15" fill="rgb(209,211,3)" fg:x="10956" fg:w="5"/><text x="46.9348%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="46.6934%" y="2181" width="0.0128%" height="15" fill="rgb(205,62,35)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="46.6934%" y="2165" width="0.0128%" height="15" fill="rgb(221,136,30)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2175.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="46.6934%" y="2149" width="0.0128%" height="15" fill="rgb(214,161,7)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="46.6934%" y="2133" width="0.0128%" height="15" fill="rgb(235,40,49)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="46.6934%" y="2117" width="0.0128%" height="15" fill="rgb(212,17,53)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6934%" y="2101" width="0.0128%" height="15" fill="rgb(222,160,2)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6934%" y="2085" width="0.0128%" height="15" fill="rgb(212,2,47)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.6934%" y="2069" width="0.0128%" height="15" fill="rgb(250,51,20)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.6934%" y="2053" width="0.0128%" height="15" fill="rgb(238,40,41)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.6934%" y="2037" width="0.0128%" height="15" fill="rgb(251,66,46)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.6934%" y="2021" width="0.0128%" height="15" fill="rgb(251,121,2)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.6934%" y="2005" width="0.0128%" height="15" fill="rgb(206,202,38)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.6934%" y="1989" width="0.0128%" height="15" fill="rgb(205,81,36)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.6934%" y="1973" width="0.0128%" height="15" fill="rgb(221,200,29)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.6934%" y="1957" width="0.0128%" height="15" fill="rgb(225,2,1)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6934%" y="1941" width="0.0128%" height="15" fill="rgb(208,196,43)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.6934%" y="1925" width="0.0128%" height="15" fill="rgb(249,174,26)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.6934%" y="1909" width="0.0128%" height="15" fill="rgb(241,136,24)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.6934%" y="1893" width="0.0128%" height="15" fill="rgb(221,78,41)" fg:x="10958" fg:w="3"/><text x="46.9434%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="46.7062%" y="2405" width="0.0170%" height="15" fill="rgb(226,98,8)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2415.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="46.7062%" y="2389" width="0.0170%" height="15" fill="rgb(210,23,34)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="46.7062%" y="2373" width="0.0170%" height="15" fill="rgb(239,93,0)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2383.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="46.7062%" y="2357" width="0.0170%" height="15" fill="rgb(233,196,17)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2367.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="46.7062%" y="2341" width="0.0170%" height="15" fill="rgb(210,74,54)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="46.7062%" y="2325" width="0.0170%" height="15" fill="rgb(220,22,9)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="46.7062%" y="2309" width="0.0170%" height="15" fill="rgb(221,146,0)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7062%" y="2293" width="0.0170%" height="15" fill="rgb(223,33,6)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="46.7062%" y="2277" width="0.0170%" height="15" fill="rgb(206,95,42)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2287.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="46.7062%" y="2261" width="0.0170%" height="15" fill="rgb(212,221,14)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2271.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7062%" y="2245" width="0.0170%" height="15" fill="rgb(213,229,42)" fg:x="10961" fg:w="4"/><text x="46.9562%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="46.7275%" y="2021" width="0.0128%" height="15" fill="rgb(232,166,30)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="46.7275%" y="2005" width="0.0128%" height="15" fill="rgb(250,209,11)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.7275%" y="1989" width="0.0128%" height="15" fill="rgb(220,31,43)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.7275%" y="1973" width="0.0128%" height="15" fill="rgb(245,31,43)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.7275%" y="1957" width="0.0128%" height="15" fill="rgb(254,71,21)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1967.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.7275%" y="1941" width="0.0128%" height="15" fill="rgb(211,165,32)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.7275%" y="1925" width="0.0128%" height="15" fill="rgb(235,15,47)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1935.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.7275%" y="1909" width="0.0128%" height="15" fill="rgb(206,127,6)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1919.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.7275%" y="1893" width="0.0128%" height="15" fill="rgb(215,2,17)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1903.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.7275%" y="1877" width="0.0128%" height="15" fill="rgb(249,55,45)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.7275%" y="1861" width="0.0128%" height="15" fill="rgb(208,93,20)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.7275%" y="1845" width="0.0128%" height="15" fill="rgb(213,18,44)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.7275%" y="1829" width="0.0128%" height="15" fill="rgb(248,181,6)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1839.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.7275%" y="1813" width="0.0128%" height="15" fill="rgb(246,62,10)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1823.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.7275%" y="1797" width="0.0128%" height="15" fill="rgb(254,72,5)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1807.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.7275%" y="1781" width="0.0128%" height="15" fill="rgb(213,5,38)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1791.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="46.7275%" y="1765" width="0.0128%" height="15" fill="rgb(216,75,25)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1775.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="46.7275%" y="1749" width="0.0128%" height="15" fill="rgb(243,50,5)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1759.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="46.7275%" y="1733" width="0.0128%" height="15" fill="rgb(213,119,31)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1743.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="46.7275%" y="1717" width="0.0128%" height="15" fill="rgb(205,122,33)" fg:x="10966" fg:w="3"/><text x="46.9775%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="46.7232%" y="2133" width="0.0256%" height="15" fill="rgb(246,168,12)" fg:x="10965" fg:w="6"/><text x="46.9732%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="46.7232%" y="2117" width="0.0256%" height="15" fill="rgb(234,226,51)" fg:x="10965" fg:w="6"/><text x="46.9732%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="46.7232%" y="2101" width="0.0256%" height="15" fill="rgb(252,161,21)" fg:x="10965" fg:w="6"/><text x="46.9732%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="46.7232%" y="2085" width="0.0256%" height="15" fill="rgb(248,3,54)" fg:x="10965" fg:w="6"/><text x="46.9732%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="46.7275%" y="2069" width="0.0213%" height="15" fill="rgb(235,77,48)" fg:x="10966" fg:w="5"/><text x="46.9775%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="46.7275%" y="2053" width="0.0213%" height="15" fill="rgb(210,80,17)" fg:x="10966" fg:w="5"/><text x="46.9775%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="46.7275%" y="2037" width="0.0213%" height="15" fill="rgb(238,229,40)" fg:x="10966" fg:w="5"/><text x="46.9775%" y="2047.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="46.7488%" y="437" width="0.0128%" height="15" fill="rgb(208,137,4)" fg:x="10971" fg:w="3"/><text x="46.9988%" y="447.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="46.7488%" y="421" width="0.0128%" height="15" fill="rgb(233,121,31)" fg:x="10971" fg:w="3"/><text x="46.9988%" y="431.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="46.7488%" y="405" width="0.0128%" height="15" fill="rgb(242,155,19)" fg:x="10971" fg:w="3"/><text x="46.9988%" y="415.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="46.7488%" y="1333" width="0.0170%" height="15" fill="rgb(218,111,47)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="46.7488%" y="1317" width="0.0170%" height="15" fill="rgb(249,24,17)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1327.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="46.7488%" y="1301" width="0.0170%" height="15" fill="rgb(226,89,49)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1311.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="46.7488%" y="1285" width="0.0170%" height="15" fill="rgb(210,219,16)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1295.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="46.7488%" y="1269" width="0.0170%" height="15" fill="rgb(211,81,53)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1279.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="46.7488%" y="1253" width="0.0170%" height="15" fill="rgb(211,219,18)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1263.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="46.7488%" y="1237" width="0.0170%" height="15" fill="rgb(244,101,38)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1247.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="46.7488%" y="1221" width="0.0170%" height="15" fill="rgb(223,133,53)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1231.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="46.7488%" y="1205" width="0.0170%" height="15" fill="rgb(229,19,16)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1215.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="46.7488%" y="1189" width="0.0170%" height="15" fill="rgb(253,131,49)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1199.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="46.7488%" y="1173" width="0.0170%" height="15" fill="rgb(240,186,48)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1183.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="1157" width="0.0170%" height="15" fill="rgb(248,228,13)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1167.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="1141" width="0.0170%" height="15" fill="rgb(210,70,24)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="1125" width="0.0170%" height="15" fill="rgb(248,163,7)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.7488%" y="1109" width="0.0170%" height="15" fill="rgb(232,71,32)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1119.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="46.7488%" y="1093" width="0.0170%" height="15" fill="rgb(240,90,7)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="46.7488%" y="1077" width="0.0170%" height="15" fill="rgb(254,41,30)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="1061" width="0.0170%" height="15" fill="rgb(244,207,31)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1071.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="46.7488%" y="1045" width="0.0170%" height="15" fill="rgb(229,172,12)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1055.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="46.7488%" y="1029" width="0.0170%" height="15" fill="rgb(217,64,24)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1039.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="46.7488%" y="1013" width="0.0170%" height="15" fill="rgb(207,63,31)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1023.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="46.7488%" y="997" width="0.0170%" height="15" fill="rgb(219,30,11)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="1007.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="46.7488%" y="981" width="0.0170%" height="15" fill="rgb(245,74,7)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="991.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="965" width="0.0170%" height="15" fill="rgb(214,197,9)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="949" width="0.0170%" height="15" fill="rgb(220,225,19)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.7488%" y="933" width="0.0170%" height="15" fill="rgb(250,72,33)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="943.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="46.7488%" y="917" width="0.0170%" height="15" fill="rgb(252,105,49)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="46.7488%" y="901" width="0.0170%" height="15" fill="rgb(225,220,23)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="885" width="0.0170%" height="15" fill="rgb(244,101,14)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="46.7488%" y="869" width="0.0170%" height="15" fill="rgb(212,186,38)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="46.7488%" y="853" width="0.0170%" height="15" fill="rgb(228,0,40)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="46.7488%" y="837" width="0.0170%" height="15" fill="rgb(222,23,50)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="847.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="46.7488%" y="821" width="0.0170%" height="15" fill="rgb(220,193,29)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="831.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="46.7488%" y="805" width="0.0170%" height="15" fill="rgb(209,193,9)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="815.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="46.7488%" y="789" width="0.0170%" height="15" fill="rgb(240,83,24)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="46.7488%" y="773" width="0.0170%" height="15" fill="rgb(226,137,24)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="783.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="46.7488%" y="757" width="0.0170%" height="15" fill="rgb(248,73,26)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="767.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="46.7488%" y="741" width="0.0170%" height="15" fill="rgb(213,51,5)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="751.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="46.7488%" y="725" width="0.0170%" height="15" fill="rgb(214,54,20)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="46.7488%" y="709" width="0.0170%" height="15" fill="rgb(211,102,17)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="693" width="0.0170%" height="15" fill="rgb(215,84,40)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="703.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="677" width="0.0170%" height="15" fill="rgb(207,137,13)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="661" width="0.0170%" height="15" fill="rgb(243,165,13)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.7488%" y="645" width="0.0170%" height="15" fill="rgb(230,84,29)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="655.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="46.7488%" y="629" width="0.0170%" height="15" fill="rgb(223,21,0)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="639.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="46.7488%" y="613" width="0.0170%" height="15" fill="rgb(213,131,45)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="623.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="46.7488%" y="597" width="0.0170%" height="15" fill="rgb(220,118,13)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="46.7488%" y="581" width="0.0170%" height="15" fill="rgb(254,215,22)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="591.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="46.7488%" y="565" width="0.0170%" height="15" fill="rgb(221,154,8)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="46.7488%" y="549" width="0.0170%" height="15" fill="rgb(224,52,34)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="46.7488%" y="533" width="0.0170%" height="15" fill="rgb(238,40,53)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="543.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="517" width="0.0170%" height="15" fill="rgb(239,126,21)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="527.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="46.7488%" y="501" width="0.0170%" height="15" fill="rgb(222,202,5)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="511.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="46.7488%" y="485" width="0.0170%" height="15" fill="rgb(245,135,7)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7488%" y="469" width="0.0170%" height="15" fill="rgb(221,10,33)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="479.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="46.7488%" y="453" width="0.0170%" height="15" fill="rgb(236,80,32)" fg:x="10971" fg:w="4"/><text x="46.9988%" y="463.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="46.7658%" y="1157" width="0.0170%" height="15" fill="rgb(217,28,34)" fg:x="10975" fg:w="4"/><text x="47.0158%" y="1167.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7658%" y="1141" width="0.0170%" height="15" fill="rgb(228,177,52)" fg:x="10975" fg:w="4"/><text x="47.0158%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7658%" y="1125" width="0.0170%" height="15" fill="rgb(237,1,7)" fg:x="10975" fg:w="4"/><text x="47.0158%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.7658%" y="1109" width="0.0170%" height="15" fill="rgb(229,56,8)" fg:x="10975" fg:w="4"/><text x="47.0158%" y="1119.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="46.7658%" y="1093" width="0.0170%" height="15" fill="rgb(214,8,18)" fg:x="10975" fg:w="4"/><text x="47.0158%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="46.7658%" y="1077" width="0.0170%" height="15" fill="rgb(235,16,25)" fg:x="10975" fg:w="4"/><text x="47.0158%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7658%" y="1061" width="0.0170%" height="15" fill="rgb(216,214,4)" fg:x="10975" fg:w="4"/><text x="47.0158%" y="1071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="46.7488%" y="1621" width="0.0511%" height="15" fill="rgb(229,206,44)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="46.7488%" y="1605" width="0.0511%" height="15" fill="rgb(246,14,2)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1615.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="46.7488%" y="1589" width="0.0511%" height="15" fill="rgb(244,117,15)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1599.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="46.7488%" y="1573" width="0.0511%" height="15" fill="rgb(250,143,14)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1583.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="46.7488%" y="1557" width="0.0511%" height="15" fill="rgb(224,167,45)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1567.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="46.7488%" y="1541" width="0.0511%" height="15" fill="rgb(246,159,28)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1551.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="46.7488%" y="1525" width="0.0511%" height="15" fill="rgb(206,73,40)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1535.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="46.7488%" y="1509" width="0.0511%" height="15" fill="rgb(242,203,1)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1519.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="46.7488%" y="1493" width="0.0511%" height="15" fill="rgb(216,180,4)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1503.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="46.7488%" y="1477" width="0.0511%" height="15" fill="rgb(250,81,27)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1487.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="46.7488%" y="1461" width="0.0511%" height="15" fill="rgb(211,48,16)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1471.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="46.7488%" y="1445" width="0.0511%" height="15" fill="rgb(231,194,16)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1455.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="46.7488%" y="1429" width="0.0511%" height="15" fill="rgb(222,20,52)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="46.7488%" y="1413" width="0.0511%" height="15" fill="rgb(215,35,20)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="46.7488%" y="1397" width="0.0511%" height="15" fill="rgb(231,181,47)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1407.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="46.7488%" y="1381" width="0.0511%" height="15" fill="rgb(211,198,41)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1391.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="46.7488%" y="1365" width="0.0511%" height="15" fill="rgb(229,70,11)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="46.7488%" y="1349" width="0.0511%" height="15" fill="rgb(215,129,37)" fg:x="10971" fg:w="12"/><text x="46.9988%" y="1359.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="46.7658%" y="1333" width="0.0341%" height="15" fill="rgb(220,163,15)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1343.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="46.7658%" y="1317" width="0.0341%" height="15" fill="rgb(217,5,39)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1327.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="46.7658%" y="1301" width="0.0341%" height="15" fill="rgb(238,204,17)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1311.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="46.7658%" y="1285" width="0.0341%" height="15" fill="rgb(216,207,38)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1295.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="46.7658%" y="1269" width="0.0341%" height="15" fill="rgb(219,45,37)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="46.7658%" y="1253" width="0.0341%" height="15" fill="rgb(214,83,4)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="46.7658%" y="1237" width="0.0341%" height="15" fill="rgb(245,117,17)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="46.7658%" y="1221" width="0.0341%" height="15" fill="rgb(233,171,43)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1231.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="46.7658%" y="1205" width="0.0341%" height="15" fill="rgb(248,145,34)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1215.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="46.7658%" y="1189" width="0.0341%" height="15" fill="rgb(208,1,16)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="46.7658%" y="1173" width="0.0341%" height="15" fill="rgb(225,169,39)" fg:x="10975" fg:w="8"/><text x="47.0158%" y="1183.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="46.7829%" y="1157" width="0.0170%" height="15" fill="rgb(254,162,27)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1167.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="46.7829%" y="1141" width="0.0170%" height="15" fill="rgb(211,71,3)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1151.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="46.7829%" y="1125" width="0.0170%" height="15" fill="rgb(241,165,18)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1135.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="46.7829%" y="1109" width="0.0170%" height="15" fill="rgb(220,184,25)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1119.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="46.7829%" y="1093" width="0.0170%" height="15" fill="rgb(252,216,33)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1103.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7829%" y="1077" width="0.0170%" height="15" fill="rgb(224,194,33)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7829%" y="1061" width="0.0170%" height="15" fill="rgb(230,124,6)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.7829%" y="1045" width="0.0170%" height="15" fill="rgb(208,208,44)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1055.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="46.7829%" y="1029" width="0.0170%" height="15" fill="rgb(236,199,21)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="46.7829%" y="1013" width="0.0170%" height="15" fill="rgb(218,208,52)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="46.7829%" y="997" width="0.0170%" height="15" fill="rgb(229,219,1)" fg:x="10979" fg:w="4"/><text x="47.0329%" y="1007.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="46.7488%" y="1733" width="0.0597%" height="15" fill="rgb(239,213,10)" fg:x="10971" fg:w="14"/><text x="46.9988%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="46.7488%" y="1717" width="0.0597%" height="15" fill="rgb(253,215,33)" fg:x="10971" fg:w="14"/><text x="46.9988%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="46.7488%" y="1701" width="0.0597%" height="15" fill="rgb(217,149,4)" fg:x="10971" fg:w="14"/><text x="46.9988%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="46.7488%" y="1685" width="0.0597%" height="15" fill="rgb(245,37,17)" fg:x="10971" fg:w="14"/><text x="46.9988%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="46.7488%" y="1669" width="0.0597%" height="15" fill="rgb(237,192,15)" fg:x="10971" fg:w="14"/><text x="46.9988%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="46.7488%" y="1653" width="0.0597%" height="15" fill="rgb(227,103,13)" fg:x="10971" fg:w="14"/><text x="46.9988%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="46.7488%" y="1637" width="0.0597%" height="15" fill="rgb(231,24,43)" fg:x="10971" fg:w="14"/><text x="46.9988%" y="1647.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (18 samples, 0.08%)</title><rect x="46.7488%" y="1845" width="0.0767%" height="15" fill="rgb(231,130,2)" fg:x="10971" fg:w="18"/><text x="46.9988%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="46.7488%" y="1829" width="0.0767%" height="15" fill="rgb(251,201,45)" fg:x="10971" fg:w="18"/><text x="46.9988%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="46.7488%" y="1813" width="0.0767%" height="15" fill="rgb(237,159,35)" fg:x="10971" fg:w="18"/><text x="46.9988%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="46.7488%" y="1797" width="0.0767%" height="15" fill="rgb(217,37,44)" fg:x="10971" fg:w="18"/><text x="46.9988%" y="1807.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="46.7488%" y="1781" width="0.0767%" height="15" fill="rgb(210,155,28)" fg:x="10971" fg:w="18"/><text x="46.9988%" y="1791.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="46.7488%" y="1765" width="0.0767%" height="15" fill="rgb(235,49,37)" fg:x="10971" fg:w="18"/><text x="46.9988%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="46.7488%" y="1749" width="0.0767%" height="15" fill="rgb(220,74,2)" fg:x="10971" fg:w="18"/><text x="46.9988%" y="1759.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="46.8084%" y="1733" width="0.0170%" height="15" fill="rgb(231,72,40)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1743.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="46.8084%" y="1717" width="0.0170%" height="15" fill="rgb(235,4,16)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1727.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="46.8084%" y="1701" width="0.0170%" height="15" fill="rgb(235,186,20)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1711.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="46.8084%" y="1685" width="0.0170%" height="15" fill="rgb(234,161,41)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1695.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="46.8084%" y="1669" width="0.0170%" height="15" fill="rgb(214,16,40)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8084%" y="1653" width="0.0170%" height="15" fill="rgb(242,99,51)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8084%" y="1637" width="0.0170%" height="15" fill="rgb(230,62,19)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.8084%" y="1621" width="0.0170%" height="15" fill="rgb(210,85,19)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="46.8084%" y="1605" width="0.0170%" height="15" fill="rgb(241,174,43)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="46.8084%" y="1589" width="0.0170%" height="15" fill="rgb(241,36,3)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8084%" y="1573" width="0.0170%" height="15" fill="rgb(221,43,40)" fg:x="10985" fg:w="4"/><text x="47.0584%" y="1583.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="46.8255%" y="1669" width="0.0170%" height="15" fill="rgb(249,173,52)" fg:x="10989" fg:w="4"/><text x="47.0755%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8255%" y="1653" width="0.0170%" height="15" fill="rgb(247,182,48)" fg:x="10989" fg:w="4"/><text x="47.0755%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8255%" y="1637" width="0.0170%" height="15" fill="rgb(244,36,14)" fg:x="10989" fg:w="4"/><text x="47.0755%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.8255%" y="1621" width="0.0170%" height="15" fill="rgb(242,53,17)" fg:x="10989" fg:w="4"/><text x="47.0755%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="46.8255%" y="1605" width="0.0170%" height="15" fill="rgb(223,71,47)" fg:x="10989" fg:w="4"/><text x="47.0755%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="46.8255%" y="1589" width="0.0170%" height="15" fill="rgb(241,62,31)" fg:x="10989" fg:w="4"/><text x="47.0755%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8255%" y="1573" width="0.0170%" height="15" fill="rgb(214,12,21)" fg:x="10989" fg:w="4"/><text x="47.0755%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (26 samples, 0.11%)</title><rect x="46.7488%" y="2133" width="0.1108%" height="15" fill="rgb(217,1,50)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2143.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.11%)</title><rect x="46.7488%" y="2117" width="0.1108%" height="15" fill="rgb(234,68,46)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2127.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (26 samples, 0.11%)</title><rect x="46.7488%" y="2101" width="0.1108%" height="15" fill="rgb(226,217,10)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2111.50"></text></g><g><title>rayon_core::job::JobRef::execute (26 samples, 0.11%)</title><rect x="46.7488%" y="2085" width="0.1108%" height="15" fill="rgb(243,11,20)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2095.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (26 samples, 0.11%)</title><rect x="46.7488%" y="2069" width="0.1108%" height="15" fill="rgb(226,86,12)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2079.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (26 samples, 0.11%)</title><rect x="46.7488%" y="2053" width="0.1108%" height="15" fill="rgb(236,151,27)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (26 samples, 0.11%)</title><rect x="46.7488%" y="2037" width="0.1108%" height="15" fill="rgb(226,67,2)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (26 samples, 0.11%)</title><rect x="46.7488%" y="2021" width="0.1108%" height="15" fill="rgb(223,16,22)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2031.50"></text></g><g><title>std::panicking::try (26 samples, 0.11%)</title><rect x="46.7488%" y="2005" width="0.1108%" height="15" fill="rgb(217,112,54)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (26 samples, 0.11%)</title><rect x="46.7488%" y="1989" width="0.1108%" height="15" fill="rgb(240,180,17)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (26 samples, 0.11%)</title><rect x="46.7488%" y="1973" width="0.1108%" height="15" fill="rgb(228,160,53)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (26 samples, 0.11%)</title><rect x="46.7488%" y="1957" width="0.1108%" height="15" fill="rgb(223,16,42)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="46.7488%" y="1941" width="0.1108%" height="15" fill="rgb(232,94,44)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="46.7488%" y="1925" width="0.1108%" height="15" fill="rgb(227,160,16)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="46.7488%" y="1909" width="0.1108%" height="15" fill="rgb(224,52,24)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="46.7488%" y="1893" width="0.1108%" height="15" fill="rgb(214,144,24)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="46.7488%" y="1877" width="0.1108%" height="15" fill="rgb(222,83,8)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="46.7488%" y="1861" width="0.1108%" height="15" fill="rgb(225,85,14)" fg:x="10971" fg:w="26"/><text x="46.9988%" y="1871.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="46.8255%" y="1845" width="0.0341%" height="15" fill="rgb(213,67,47)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1855.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="46.8255%" y="1829" width="0.0341%" height="15" fill="rgb(227,15,25)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1839.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="46.8255%" y="1813" width="0.0341%" height="15" fill="rgb(222,25,17)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1823.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="46.8255%" y="1797" width="0.0341%" height="15" fill="rgb(243,83,52)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1807.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="46.8255%" y="1781" width="0.0341%" height="15" fill="rgb(216,104,10)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="46.8255%" y="1765" width="0.0341%" height="15" fill="rgb(222,27,16)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="46.8255%" y="1749" width="0.0341%" height="15" fill="rgb(238,69,21)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="46.8255%" y="1733" width="0.0341%" height="15" fill="rgb(223,104,49)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="46.8255%" y="1717" width="0.0341%" height="15" fill="rgb(205,31,38)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="46.8255%" y="1701" width="0.0341%" height="15" fill="rgb(241,91,23)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="46.8255%" y="1685" width="0.0341%" height="15" fill="rgb(230,165,32)" fg:x="10989" fg:w="8"/><text x="47.0755%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="46.8425%" y="1669" width="0.0170%" height="15" fill="rgb(247,69,50)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="46.8425%" y="1653" width="0.0170%" height="15" fill="rgb(213,120,11)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1663.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="46.8425%" y="1637" width="0.0170%" height="15" fill="rgb(211,28,30)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="46.8425%" y="1621" width="0.0170%" height="15" fill="rgb(207,207,3)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="46.8425%" y="1605" width="0.0170%" height="15" fill="rgb(205,100,53)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8425%" y="1589" width="0.0170%" height="15" fill="rgb(206,90,43)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8425%" y="1573" width="0.0170%" height="15" fill="rgb(230,152,35)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.8425%" y="1557" width="0.0170%" height="15" fill="rgb(234,65,3)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="46.8425%" y="1541" width="0.0170%" height="15" fill="rgb(208,134,1)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="46.8425%" y="1525" width="0.0170%" height="15" fill="rgb(228,136,17)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="46.8425%" y="1509" width="0.0170%" height="15" fill="rgb(216,106,25)" fg:x="10993" fg:w="4"/><text x="47.0925%" y="1519.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="46.8596%" y="1829" width="0.0170%" height="15" fill="rgb(236,196,2)" fg:x="10997" fg:w="4"/><text x="47.1096%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="46.8596%" y="2005" width="0.0213%" height="15" fill="rgb(226,193,10)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="46.8596%" y="1989" width="0.0213%" height="15" fill="rgb(231,100,42)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="46.8596%" y="1973" width="0.0213%" height="15" fill="rgb(244,175,37)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="46.8596%" y="1957" width="0.0213%" height="15" fill="rgb(232,223,36)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="46.8596%" y="1941" width="0.0213%" height="15" fill="rgb(244,181,10)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="46.8596%" y="1925" width="0.0213%" height="15" fill="rgb(214,83,20)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="46.8596%" y="1909" width="0.0213%" height="15" fill="rgb(208,5,25)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="46.8596%" y="1893" width="0.0213%" height="15" fill="rgb(242,201,4)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="46.8596%" y="1877" width="0.0213%" height="15" fill="rgb(252,139,15)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="46.8596%" y="1861" width="0.0213%" height="15" fill="rgb(252,24,7)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="46.8596%" y="1845" width="0.0213%" height="15" fill="rgb(254,115,36)" fg:x="10997" fg:w="5"/><text x="47.1096%" y="1855.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="46.8809%" y="1957" width="0.0128%" height="15" fill="rgb(232,212,32)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="46.8809%" y="1941" width="0.0128%" height="15" fill="rgb(205,78,54)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="46.8809%" y="1925" width="0.0128%" height="15" fill="rgb(216,163,5)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="46.8809%" y="1909" width="0.0128%" height="15" fill="rgb(251,33,5)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="46.8809%" y="1893" width="0.0128%" height="15" fill="rgb(217,115,21)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="46.8809%" y="1877" width="0.0128%" height="15" fill="rgb(253,174,36)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="46.8809%" y="1861" width="0.0128%" height="15" fill="rgb(225,37,23)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="46.8809%" y="1845" width="0.0128%" height="15" fill="rgb(221,228,21)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="46.8809%" y="1829" width="0.0128%" height="15" fill="rgb(215,113,1)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="46.8809%" y="1813" width="0.0128%" height="15" fill="rgb(207,175,34)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="46.8809%" y="1797" width="0.0128%" height="15" fill="rgb(222,104,15)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="46.8809%" y="1781" width="0.0128%" height="15" fill="rgb(207,88,29)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="46.8809%" y="1765" width="0.0128%" height="15" fill="rgb(232,229,41)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="46.8809%" y="1749" width="0.0128%" height="15" fill="rgb(226,84,33)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="46.8809%" y="1733" width="0.0128%" height="15" fill="rgb(230,44,32)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1743.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.8809%" y="1717" width="0.0128%" height="15" fill="rgb(240,153,46)" fg:x="11002" fg:w="3"/><text x="47.1309%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (42 samples, 0.18%)</title><rect x="46.7232%" y="2245" width="0.1790%" height="15" fill="rgb(253,199,30)" fg:x="10965" fg:w="42"/><text x="46.9732%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (42 samples, 0.18%)</title><rect x="46.7232%" y="2229" width="0.1790%" height="15" fill="rgb(226,152,36)" fg:x="10965" fg:w="42"/><text x="46.9732%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42 samples, 0.18%)</title><rect x="46.7232%" y="2213" width="0.1790%" height="15" fill="rgb(233,40,9)" fg:x="10965" fg:w="42"/><text x="46.9732%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.18%)</title><rect x="46.7232%" y="2197" width="0.1790%" height="15" fill="rgb(244,76,47)" fg:x="10965" fg:w="42"/><text x="46.9732%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="46.7232%" y="2181" width="0.1790%" height="15" fill="rgb(249,178,41)" fg:x="10965" fg:w="42"/><text x="46.9732%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="46.7232%" y="2165" width="0.1790%" height="15" fill="rgb(218,221,6)" fg:x="10965" fg:w="42"/><text x="46.9732%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="46.7232%" y="2149" width="0.1790%" height="15" fill="rgb(205,126,16)" fg:x="10965" fg:w="42"/><text x="46.9732%" y="2159.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="46.8596%" y="2133" width="0.0426%" height="15" fill="rgb(228,150,22)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2143.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="46.8596%" y="2117" width="0.0426%" height="15" fill="rgb(220,96,16)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2127.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="46.8596%" y="2101" width="0.0426%" height="15" fill="rgb(253,150,3)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2111.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="46.8596%" y="2085" width="0.0426%" height="15" fill="rgb(220,140,32)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2095.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="46.8596%" y="2069" width="0.0426%" height="15" fill="rgb(239,12,54)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="46.8596%" y="2053" width="0.0426%" height="15" fill="rgb(227,199,49)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="46.8596%" y="2037" width="0.0426%" height="15" fill="rgb(221,173,35)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="46.8596%" y="2021" width="0.0426%" height="15" fill="rgb(248,9,10)" fg:x="10997" fg:w="10"/><text x="47.1096%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="46.8809%" y="2005" width="0.0213%" height="15" fill="rgb(217,48,18)" fg:x="11002" fg:w="5"/><text x="47.1309%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="46.8809%" y="1989" width="0.0213%" height="15" fill="rgb(243,158,37)" fg:x="11002" fg:w="5"/><text x="47.1309%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="46.8809%" y="1973" width="0.0213%" height="15" fill="rgb(253,17,10)" fg:x="11002" fg:w="5"/><text x="47.1309%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="46.9022%" y="2005" width="0.0170%" height="15" fill="rgb(238,9,26)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="46.9022%" y="1989" width="0.0170%" height="15" fill="rgb(214,71,2)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="46.9022%" y="1973" width="0.0170%" height="15" fill="rgb(248,53,26)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="46.9022%" y="1957" width="0.0170%" height="15" fill="rgb(223,6,1)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="46.9022%" y="1941" width="0.0170%" height="15" fill="rgb(251,79,21)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="46.9022%" y="1925" width="0.0170%" height="15" fill="rgb(243,57,34)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="46.9022%" y="1909" width="0.0170%" height="15" fill="rgb(253,185,18)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9022%" y="1893" width="0.0170%" height="15" fill="rgb(220,70,8)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="46.9022%" y="1877" width="0.0170%" height="15" fill="rgb(206,199,27)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="46.9022%" y="1861" width="0.0170%" height="15" fill="rgb(233,36,9)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9022%" y="1845" width="0.0170%" height="15" fill="rgb(218,81,48)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="46.9022%" y="1829" width="0.0170%" height="15" fill="rgb(245,83,43)" fg:x="11007" fg:w="4"/><text x="47.1522%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="46.9022%" y="2069" width="0.0554%" height="15" fill="rgb(235,213,41)" fg:x="11007" fg:w="13"/><text x="47.1522%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="46.9022%" y="2053" width="0.0554%" height="15" fill="rgb(248,7,23)" fg:x="11007" fg:w="13"/><text x="47.1522%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="46.9022%" y="2037" width="0.0554%" height="15" fill="rgb(215,155,15)" fg:x="11007" fg:w="13"/><text x="47.1522%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="46.9022%" y="2021" width="0.0554%" height="15" fill="rgb(216,10,34)" fg:x="11007" fg:w="13"/><text x="47.1522%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="46.9192%" y="2005" width="0.0384%" height="15" fill="rgb(223,229,12)" fg:x="11011" fg:w="9"/><text x="47.1692%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="46.9192%" y="1989" width="0.0384%" height="15" fill="rgb(254,45,54)" fg:x="11011" fg:w="9"/><text x="47.1692%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="46.9192%" y="1973" width="0.0384%" height="15" fill="rgb(246,201,11)" fg:x="11011" fg:w="9"/><text x="47.1692%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="46.9363%" y="1957" width="0.0213%" height="15" fill="rgb(241,193,44)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="46.9363%" y="1941" width="0.0213%" height="15" fill="rgb(216,163,15)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1951.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="46.9363%" y="1925" width="0.0213%" height="15" fill="rgb(217,28,5)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="46.9363%" y="1909" width="0.0213%" height="15" fill="rgb(217,180,7)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="46.9363%" y="1893" width="0.0213%" height="15" fill="rgb(234,58,10)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="46.9363%" y="1877" width="0.0213%" height="15" fill="rgb(221,151,47)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="46.9363%" y="1861" width="0.0213%" height="15" fill="rgb(253,157,43)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="46.9363%" y="1845" width="0.0213%" height="15" fill="rgb(227,144,26)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="46.9363%" y="1829" width="0.0213%" height="15" fill="rgb(240,65,4)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="46.9363%" y="1813" width="0.0213%" height="15" fill="rgb(214,173,23)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="46.9363%" y="1797" width="0.0213%" height="15" fill="rgb(239,18,48)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="46.9363%" y="1781" width="0.0213%" height="15" fill="rgb(240,191,8)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="46.9363%" y="1765" width="0.0213%" height="15" fill="rgb(211,68,17)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="46.9363%" y="1749" width="0.0213%" height="15" fill="rgb(206,172,26)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="46.9363%" y="1733" width="0.0213%" height="15" fill="rgb(242,119,46)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="46.9363%" y="1717" width="0.0213%" height="15" fill="rgb(209,169,51)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="46.9363%" y="1701" width="0.0213%" height="15" fill="rgb(236,178,50)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="46.9363%" y="1685" width="0.0213%" height="15" fill="rgb(229,126,38)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="46.9363%" y="1669" width="0.0213%" height="15" fill="rgb(252,136,5)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="46.9363%" y="1653" width="0.0213%" height="15" fill="rgb(215,175,4)" fg:x="11015" fg:w="5"/><text x="47.1863%" y="1663.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="46.9448%" y="1637" width="0.0128%" height="15" fill="rgb(221,111,45)" fg:x="11017" fg:w="3"/><text x="47.1948%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="46.9448%" y="1621" width="0.0128%" height="15" fill="rgb(243,205,25)" fg:x="11017" fg:w="3"/><text x="47.1948%" y="1631.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="46.9661%" y="1893" width="0.0170%" height="15" fill="rgb(242,97,53)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9661%" y="1877" width="0.0170%" height="15" fill="rgb(225,158,47)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9661%" y="1861" width="0.0170%" height="15" fill="rgb(228,23,15)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.9661%" y="1845" width="0.0170%" height="15" fill="rgb(242,100,34)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="46.9661%" y="1829" width="0.0170%" height="15" fill="rgb(252,125,37)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="46.9661%" y="1813" width="0.0170%" height="15" fill="rgb(230,84,21)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="46.9661%" y="1797" width="0.0170%" height="15" fill="rgb(209,109,35)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="46.9661%" y="1781" width="0.0170%" height="15" fill="rgb(230,96,20)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="46.9661%" y="1765" width="0.0170%" height="15" fill="rgb(215,15,36)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="46.9661%" y="1749" width="0.0170%" height="15" fill="rgb(247,135,7)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="46.9661%" y="1733" width="0.0170%" height="15" fill="rgb(216,96,0)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9661%" y="1717" width="0.0170%" height="15" fill="rgb(245,10,41)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="46.9661%" y="1701" width="0.0170%" height="15" fill="rgb(207,12,47)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="46.9661%" y="1685" width="0.0170%" height="15" fill="rgb(248,18,54)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9661%" y="1669" width="0.0170%" height="15" fill="rgb(237,115,10)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="46.9661%" y="1653" width="0.0170%" height="15" fill="rgb(207,70,48)" fg:x="11022" fg:w="4"/><text x="47.2161%" y="1663.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="46.9831%" y="1589" width="0.0128%" height="15" fill="rgb(217,12,2)" fg:x="11026" fg:w="3"/><text x="47.2331%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="46.9831%" y="1573" width="0.0128%" height="15" fill="rgb(247,111,34)" fg:x="11026" fg:w="3"/><text x="47.2331%" y="1583.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="46.9831%" y="1557" width="0.0128%" height="15" fill="rgb(210,22,44)" fg:x="11026" fg:w="3"/><text x="47.2331%" y="1567.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="46.9831%" y="1541" width="0.0128%" height="15" fill="rgb(206,7,49)" fg:x="11026" fg:w="3"/><text x="47.2331%" y="1551.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (65 samples, 0.28%)</title><rect x="46.7232%" y="2357" width="0.2770%" height="15" fill="rgb(242,143,4)" fg:x="10965" fg:w="65"/><text x="46.9732%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (65 samples, 0.28%)</title><rect x="46.7232%" y="2341" width="0.2770%" height="15" fill="rgb(225,113,12)" fg:x="10965" fg:w="65"/><text x="46.9732%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (65 samples, 0.28%)</title><rect x="46.7232%" y="2325" width="0.2770%" height="15" fill="rgb(249,91,0)" fg:x="10965" fg:w="65"/><text x="46.9732%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.28%)</title><rect x="46.7232%" y="2309" width="0.2770%" height="15" fill="rgb(205,95,16)" fg:x="10965" fg:w="65"/><text x="46.9732%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (65 samples, 0.28%)</title><rect x="46.7232%" y="2293" width="0.2770%" height="15" fill="rgb(233,47,43)" fg:x="10965" fg:w="65"/><text x="46.9732%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (65 samples, 0.28%)</title><rect x="46.7232%" y="2277" width="0.2770%" height="15" fill="rgb(222,186,52)" fg:x="10965" fg:w="65"/><text x="46.9732%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (65 samples, 0.28%)</title><rect x="46.7232%" y="2261" width="0.2770%" height="15" fill="rgb(217,94,3)" fg:x="10965" fg:w="65"/><text x="46.9732%" y="2271.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="46.9022%" y="2245" width="0.0980%" height="15" fill="rgb(218,173,32)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2255.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="46.9022%" y="2229" width="0.0980%" height="15" fill="rgb(248,161,3)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2239.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="46.9022%" y="2213" width="0.0980%" height="15" fill="rgb(243,221,32)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2223.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="46.9022%" y="2197" width="0.0980%" height="15" fill="rgb(244,77,31)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2207.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="46.9022%" y="2181" width="0.0980%" height="15" fill="rgb(216,223,36)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (23 samples, 0.10%)</title><rect x="46.9022%" y="2165" width="0.0980%" height="15" fill="rgb(240,97,50)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="46.9022%" y="2149" width="0.0980%" height="15" fill="rgb(231,86,2)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="46.9022%" y="2133" width="0.0980%" height="15" fill="rgb(213,35,12)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="46.9022%" y="2117" width="0.0980%" height="15" fill="rgb(246,65,7)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="46.9022%" y="2101" width="0.0980%" height="15" fill="rgb(222,35,15)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="46.9022%" y="2085" width="0.0980%" height="15" fill="rgb(252,175,41)" fg:x="11007" fg:w="23"/><text x="47.1522%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="46.9576%" y="2069" width="0.0426%" height="15" fill="rgb(213,124,20)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="46.9576%" y="2053" width="0.0426%" height="15" fill="rgb(209,50,29)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="2063.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="46.9576%" y="2037" width="0.0426%" height="15" fill="rgb(214,46,22)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="46.9576%" y="2021" width="0.0426%" height="15" fill="rgb(235,76,24)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="46.9576%" y="2005" width="0.0426%" height="15" fill="rgb(206,190,52)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="46.9576%" y="1989" width="0.0426%" height="15" fill="rgb(223,94,14)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="46.9576%" y="1973" width="0.0426%" height="15" fill="rgb(235,159,3)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="46.9576%" y="1957" width="0.0426%" height="15" fill="rgb(253,194,26)" fg:x="11020" fg:w="10"/><text x="47.2076%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="46.9661%" y="1941" width="0.0341%" height="15" fill="rgb(207,118,11)" fg:x="11022" fg:w="8"/><text x="47.2161%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="46.9661%" y="1925" width="0.0341%" height="15" fill="rgb(245,61,38)" fg:x="11022" fg:w="8"/><text x="47.2161%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="46.9661%" y="1909" width="0.0341%" height="15" fill="rgb(252,150,12)" fg:x="11022" fg:w="8"/><text x="47.2161%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="46.9831%" y="1893" width="0.0170%" height="15" fill="rgb(247,98,39)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="46.9831%" y="1877" width="0.0170%" height="15" fill="rgb(251,219,21)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1887.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="46.9831%" y="1861" width="0.0170%" height="15" fill="rgb(242,54,38)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="46.9831%" y="1845" width="0.0170%" height="15" fill="rgb(227,29,16)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="46.9831%" y="1829" width="0.0170%" height="15" fill="rgb(247,47,11)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9831%" y="1813" width="0.0170%" height="15" fill="rgb(246,198,54)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9831%" y="1797" width="0.0170%" height="15" fill="rgb(253,27,11)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="46.9831%" y="1781" width="0.0170%" height="15" fill="rgb(228,218,5)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="46.9831%" y="1765" width="0.0170%" height="15" fill="rgb(205,57,12)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="46.9831%" y="1749" width="0.0170%" height="15" fill="rgb(234,209,9)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="46.9831%" y="1733" width="0.0170%" height="15" fill="rgb(234,130,25)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="46.9831%" y="1717" width="0.0170%" height="15" fill="rgb(254,64,53)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="46.9831%" y="1701" width="0.0170%" height="15" fill="rgb(233,164,54)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="46.9831%" y="1685" width="0.0170%" height="15" fill="rgb(222,219,31)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="46.9831%" y="1669" width="0.0170%" height="15" fill="rgb(250,54,37)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9831%" y="1653" width="0.0170%" height="15" fill="rgb(240,202,11)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="46.9831%" y="1637" width="0.0170%" height="15" fill="rgb(221,190,46)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="46.9831%" y="1621" width="0.0170%" height="15" fill="rgb(208,146,9)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="46.9831%" y="1605" width="0.0170%" height="15" fill="rgb(212,226,33)" fg:x="11026" fg:w="4"/><text x="47.2331%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.0087%" y="1717" width="0.0128%" height="15" fill="rgb(227,165,49)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1727.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.0087%" y="1701" width="0.0128%" height="15" fill="rgb(224,147,26)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.0087%" y="1685" width="0.0128%" height="15" fill="rgb(245,78,41)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1695.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.0087%" y="1669" width="0.0128%" height="15" fill="rgb(240,102,9)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1679.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.0087%" y="1653" width="0.0128%" height="15" fill="rgb(240,0,12)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1663.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.0087%" y="1637" width="0.0128%" height="15" fill="rgb(224,27,7)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.0087%" y="1621" width="0.0128%" height="15" fill="rgb(206,139,3)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.0087%" y="1605" width="0.0128%" height="15" fill="rgb(206,84,27)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.0087%" y="1589" width="0.0128%" height="15" fill="rgb(253,101,14)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1599.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.0087%" y="1573" width="0.0128%" height="15" fill="rgb(243,166,20)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1583.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.0087%" y="1557" width="0.0128%" height="15" fill="rgb(245,47,40)" fg:x="11032" fg:w="3"/><text x="47.2587%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="47.0215%" y="1669" width="0.0170%" height="15" fill="rgb(247,185,52)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="47.0215%" y="1653" width="0.0170%" height="15" fill="rgb(209,26,21)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="47.0215%" y="1637" width="0.0170%" height="15" fill="rgb(245,97,52)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1647.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="47.0215%" y="1621" width="0.0170%" height="15" fill="rgb(211,144,10)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1631.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="47.0215%" y="1605" width="0.0170%" height="15" fill="rgb(208,21,0)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1615.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="47.0215%" y="1589" width="0.0170%" height="15" fill="rgb(209,149,50)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1599.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.0215%" y="1573" width="0.0170%" height="15" fill="rgb(241,228,33)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1583.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.0215%" y="1557" width="0.0170%" height="15" fill="rgb(233,95,16)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1567.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.0215%" y="1541" width="0.0170%" height="15" fill="rgb(230,22,13)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1551.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.0215%" y="1525" width="0.0170%" height="15" fill="rgb(242,62,24)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1535.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.0215%" y="1509" width="0.0170%" height="15" fill="rgb(247,74,10)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1519.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0215%" y="1493" width="0.0170%" height="15" fill="rgb(242,189,17)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0215%" y="1477" width="0.0170%" height="15" fill="rgb(226,34,43)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0215%" y="1461" width="0.0170%" height="15" fill="rgb(213,131,18)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.0215%" y="1445" width="0.0170%" height="15" fill="rgb(227,42,40)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.0215%" y="1429" width="0.0170%" height="15" fill="rgb(214,44,47)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.0215%" y="1413" width="0.0170%" height="15" fill="rgb(246,86,45)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0215%" y="1397" width="0.0170%" height="15" fill="rgb(226,126,48)" fg:x="11035" fg:w="4"/><text x="47.2715%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="47.0087%" y="1957" width="0.0384%" height="15" fill="rgb(209,116,35)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="47.0087%" y="1941" width="0.0384%" height="15" fill="rgb(216,114,48)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="47.0087%" y="1925" width="0.0384%" height="15" fill="rgb(210,83,22)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="47.0087%" y="1909" width="0.0384%" height="15" fill="rgb(229,57,9)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="47.0087%" y="1893" width="0.0384%" height="15" fill="rgb(213,90,22)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="47.0087%" y="1877" width="0.0384%" height="15" fill="rgb(248,146,15)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="47.0087%" y="1861" width="0.0384%" height="15" fill="rgb(236,8,16)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="47.0087%" y="1845" width="0.0384%" height="15" fill="rgb(246,133,40)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1855.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="47.0087%" y="1829" width="0.0384%" height="15" fill="rgb(206,3,8)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="47.0087%" y="1813" width="0.0384%" height="15" fill="rgb(212,95,10)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="47.0087%" y="1797" width="0.0384%" height="15" fill="rgb(223,43,44)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="47.0087%" y="1781" width="0.0384%" height="15" fill="rgb(213,122,6)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="47.0087%" y="1765" width="0.0384%" height="15" fill="rgb(254,49,14)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.0087%" y="1749" width="0.0384%" height="15" fill="rgb(233,211,46)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.0087%" y="1733" width="0.0384%" height="15" fill="rgb(211,71,3)" fg:x="11032" fg:w="9"/><text x="47.2587%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="47.0215%" y="1717" width="0.0256%" height="15" fill="rgb(253,77,31)" fg:x="11035" fg:w="6"/><text x="47.2715%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="47.0215%" y="1701" width="0.0256%" height="15" fill="rgb(208,24,0)" fg:x="11035" fg:w="6"/><text x="47.2715%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="47.0215%" y="1685" width="0.0256%" height="15" fill="rgb(227,101,52)" fg:x="11035" fg:w="6"/><text x="47.2715%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="47.0556%" y="1781" width="0.0170%" height="15" fill="rgb(227,59,46)" fg:x="11043" fg:w="4"/><text x="47.3056%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0556%" y="1765" width="0.0170%" height="15" fill="rgb(245,3,19)" fg:x="11043" fg:w="4"/><text x="47.3056%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0556%" y="1749" width="0.0170%" height="15" fill="rgb(247,106,46)" fg:x="11043" fg:w="4"/><text x="47.3056%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.0556%" y="1733" width="0.0170%" height="15" fill="rgb(246,48,1)" fg:x="11043" fg:w="4"/><text x="47.3056%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.0556%" y="1717" width="0.0170%" height="15" fill="rgb(233,204,31)" fg:x="11043" fg:w="4"/><text x="47.3056%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.0556%" y="1701" width="0.0170%" height="15" fill="rgb(221,65,36)" fg:x="11043" fg:w="4"/><text x="47.3056%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0556%" y="1685" width="0.0170%" height="15" fill="rgb(244,95,4)" fg:x="11043" fg:w="4"/><text x="47.3056%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (21 samples, 0.09%)</title><rect x="47.0002%" y="2069" width="0.0895%" height="15" fill="rgb(253,39,12)" fg:x="11030" fg:w="21"/><text x="47.2502%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="47.0002%" y="2053" width="0.0895%" height="15" fill="rgb(211,190,5)" fg:x="11030" fg:w="21"/><text x="47.2502%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="47.0002%" y="2037" width="0.0895%" height="15" fill="rgb(207,101,33)" fg:x="11030" fg:w="21"/><text x="47.2502%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="47.0002%" y="2021" width="0.0895%" height="15" fill="rgb(253,84,51)" fg:x="11030" fg:w="21"/><text x="47.2502%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="47.0002%" y="2005" width="0.0895%" height="15" fill="rgb(249,208,11)" fg:x="11030" fg:w="21"/><text x="47.2502%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="47.0002%" y="1989" width="0.0895%" height="15" fill="rgb(229,42,35)" fg:x="11030" fg:w="21"/><text x="47.2502%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="47.0002%" y="1973" width="0.0895%" height="15" fill="rgb(243,191,11)" fg:x="11030" fg:w="21"/><text x="47.2502%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="47.0470%" y="1957" width="0.0426%" height="15" fill="rgb(211,110,40)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="47.0470%" y="1941" width="0.0426%" height="15" fill="rgb(235,160,10)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1951.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="47.0470%" y="1925" width="0.0426%" height="15" fill="rgb(216,150,46)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="47.0470%" y="1909" width="0.0426%" height="15" fill="rgb(222,78,17)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="47.0470%" y="1893" width="0.0426%" height="15" fill="rgb(250,21,12)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="47.0470%" y="1877" width="0.0426%" height="15" fill="rgb(220,153,51)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="47.0470%" y="1861" width="0.0426%" height="15" fill="rgb(215,60,52)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="47.0470%" y="1845" width="0.0426%" height="15" fill="rgb(228,98,50)" fg:x="11041" fg:w="10"/><text x="47.2970%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="47.0556%" y="1829" width="0.0341%" height="15" fill="rgb(206,159,15)" fg:x="11043" fg:w="8"/><text x="47.3056%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="47.0556%" y="1813" width="0.0341%" height="15" fill="rgb(254,137,25)" fg:x="11043" fg:w="8"/><text x="47.3056%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="47.0556%" y="1797" width="0.0341%" height="15" fill="rgb(211,158,17)" fg:x="11043" fg:w="8"/><text x="47.3056%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.0726%" y="1781" width="0.0170%" height="15" fill="rgb(235,116,21)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.0726%" y="1765" width="0.0170%" height="15" fill="rgb(246,18,37)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.0726%" y="1749" width="0.0170%" height="15" fill="rgb(244,35,23)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.0726%" y="1733" width="0.0170%" height="15" fill="rgb(251,45,38)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.0726%" y="1717" width="0.0170%" height="15" fill="rgb(225,79,5)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0726%" y="1701" width="0.0170%" height="15" fill="rgb(216,187,7)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0726%" y="1685" width="0.0170%" height="15" fill="rgb(221,61,54)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.0726%" y="1669" width="0.0170%" height="15" fill="rgb(227,82,21)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.0726%" y="1653" width="0.0170%" height="15" fill="rgb(235,206,17)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.0726%" y="1637" width="0.0170%" height="15" fill="rgb(235,193,9)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.0726%" y="1621" width="0.0170%" height="15" fill="rgb(207,229,48)" fg:x="11047" fg:w="4"/><text x="47.3226%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="47.0897%" y="1781" width="0.0128%" height="15" fill="rgb(254,39,32)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="47.0897%" y="1765" width="0.0128%" height="15" fill="rgb(219,126,37)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="47.0897%" y="1749" width="0.0128%" height="15" fill="rgb(244,149,2)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="47.0897%" y="1733" width="0.0128%" height="15" fill="rgb(232,213,18)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="47.0897%" y="1717" width="0.0128%" height="15" fill="rgb(214,194,2)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="47.0897%" y="1701" width="0.0128%" height="15" fill="rgb(235,106,16)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="47.0897%" y="1685" width="0.0128%" height="15" fill="rgb(215,147,4)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="47.0897%" y="1669" width="0.0128%" height="15" fill="rgb(239,60,8)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1679.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="47.0897%" y="1653" width="0.0128%" height="15" fill="rgb(236,106,43)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="47.0897%" y="1637" width="0.0128%" height="15" fill="rgb(224,22,25)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="47.0897%" y="1621" width="0.0128%" height="15" fill="rgb(227,138,27)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="47.0897%" y="1605" width="0.0128%" height="15" fill="rgb(242,65,26)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.0897%" y="1589" width="0.0128%" height="15" fill="rgb(251,111,20)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.0897%" y="1573" width="0.0128%" height="15" fill="rgb(245,48,16)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.0897%" y="1557" width="0.0128%" height="15" fill="rgb(224,152,15)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.0897%" y="1541" width="0.0128%" height="15" fill="rgb(252,88,8)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.0897%" y="1525" width="0.0128%" height="15" fill="rgb(223,160,31)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.0897%" y="1509" width="0.0128%" height="15" fill="rgb(253,198,52)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.0897%" y="1493" width="0.0128%" height="15" fill="rgb(237,65,18)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.0897%" y="1477" width="0.0128%" height="15" fill="rgb(235,197,21)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.0897%" y="1461" width="0.0128%" height="15" fill="rgb(223,157,35)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.0897%" y="1445" width="0.0128%" height="15" fill="rgb(254,88,50)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.0897%" y="1429" width="0.0128%" height="15" fill="rgb(250,88,46)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.0897%" y="1413" width="0.0128%" height="15" fill="rgb(216,179,20)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.0897%" y="1397" width="0.0128%" height="15" fill="rgb(247,85,32)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.0897%" y="1381" width="0.0128%" height="15" fill="rgb(215,143,1)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.0897%" y="1365" width="0.0128%" height="15" fill="rgb(249,2,30)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1375.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="47.0897%" y="1349" width="0.0128%" height="15" fill="rgb(229,154,18)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1359.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="47.0897%" y="1333" width="0.0128%" height="15" fill="rgb(254,29,16)" fg:x="11051" fg:w="3"/><text x="47.3397%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="47.0897%" y="2069" width="0.0298%" height="15" fill="rgb(251,213,41)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="47.0897%" y="2053" width="0.0298%" height="15" fill="rgb(241,205,9)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="47.0897%" y="2037" width="0.0298%" height="15" fill="rgb(242,132,23)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="47.0897%" y="2021" width="0.0298%" height="15" fill="rgb(241,79,10)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="47.0897%" y="2005" width="0.0298%" height="15" fill="rgb(230,153,13)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="47.0897%" y="1989" width="0.0298%" height="15" fill="rgb(236,16,37)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="47.0897%" y="1973" width="0.0298%" height="15" fill="rgb(235,142,35)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="47.0897%" y="1957" width="0.0298%" height="15" fill="rgb(220,175,6)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1967.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="47.0897%" y="1941" width="0.0298%" height="15" fill="rgb(226,152,33)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="47.0897%" y="1925" width="0.0298%" height="15" fill="rgb(211,27,1)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="47.0897%" y="1909" width="0.0298%" height="15" fill="rgb(248,151,43)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="47.0897%" y="1893" width="0.0298%" height="15" fill="rgb(213,206,7)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="47.0897%" y="1877" width="0.0298%" height="15" fill="rgb(233,65,54)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="47.0897%" y="1861" width="0.0298%" height="15" fill="rgb(224,18,21)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.0897%" y="1845" width="0.0298%" height="15" fill="rgb(220,80,18)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="47.0897%" y="1829" width="0.0298%" height="15" fill="rgb(237,214,35)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.0897%" y="1813" width="0.0298%" height="15" fill="rgb(224,14,10)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="47.0897%" y="1797" width="0.0298%" height="15" fill="rgb(227,192,2)" fg:x="11051" fg:w="7"/><text x="47.3397%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.1024%" y="1781" width="0.0170%" height="15" fill="rgb(210,102,31)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.1024%" y="1765" width="0.0170%" height="15" fill="rgb(212,222,52)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.1024%" y="1749" width="0.0170%" height="15" fill="rgb(250,216,26)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.1024%" y="1733" width="0.0170%" height="15" fill="rgb(214,27,45)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.1024%" y="1717" width="0.0170%" height="15" fill="rgb(205,115,2)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1024%" y="1701" width="0.0170%" height="15" fill="rgb(217,225,6)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1024%" y="1685" width="0.0170%" height="15" fill="rgb(209,95,49)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.1024%" y="1669" width="0.0170%" height="15" fill="rgb(249,214,2)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.1024%" y="1653" width="0.0170%" height="15" fill="rgb(210,17,28)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.1024%" y="1637" width="0.0170%" height="15" fill="rgb(216,35,49)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1024%" y="1621" width="0.0170%" height="15" fill="rgb(238,34,32)" fg:x="11054" fg:w="4"/><text x="47.3524%" y="1631.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.1280%" y="1781" width="0.0128%" height="15" fill="rgb(224,99,21)" fg:x="11060" fg:w="3"/><text x="47.3780%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1280%" y="1765" width="0.0128%" height="15" fill="rgb(217,17,13)" fg:x="11060" fg:w="3"/><text x="47.3780%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1280%" y="1749" width="0.0128%" height="15" fill="rgb(233,30,35)" fg:x="11060" fg:w="3"/><text x="47.3780%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.1280%" y="1733" width="0.0128%" height="15" fill="rgb(232,65,45)" fg:x="11060" fg:w="3"/><text x="47.3780%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="47.1280%" y="1717" width="0.0128%" height="15" fill="rgb(216,57,43)" fg:x="11060" fg:w="3"/><text x="47.3780%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.1280%" y="1701" width="0.0128%" height="15" fill="rgb(218,41,5)" fg:x="11060" fg:w="3"/><text x="47.3780%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1280%" y="1685" width="0.0128%" height="15" fill="rgb(209,122,48)" fg:x="11060" fg:w="3"/><text x="47.3780%" y="1695.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="47.1195%" y="1893" width="0.0384%" height="15" fill="rgb(219,132,52)" fg:x="11058" fg:w="9"/><text x="47.3695%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="47.1195%" y="1877" width="0.0384%" height="15" fill="rgb(247,45,0)" fg:x="11058" fg:w="9"/><text x="47.3695%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.1195%" y="1861" width="0.0384%" height="15" fill="rgb(249,212,5)" fg:x="11058" fg:w="9"/><text x="47.3695%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.1195%" y="1845" width="0.0384%" height="15" fill="rgb(218,88,22)" fg:x="11058" fg:w="9"/><text x="47.3695%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="47.1280%" y="1829" width="0.0298%" height="15" fill="rgb(226,66,50)" fg:x="11060" fg:w="7"/><text x="47.3780%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.1280%" y="1813" width="0.0298%" height="15" fill="rgb(241,193,23)" fg:x="11060" fg:w="7"/><text x="47.3780%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="47.1280%" y="1797" width="0.0298%" height="15" fill="rgb(207,225,5)" fg:x="11060" fg:w="7"/><text x="47.3780%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.1408%" y="1781" width="0.0170%" height="15" fill="rgb(247,229,30)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.1408%" y="1765" width="0.0170%" height="15" fill="rgb(220,152,24)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.1408%" y="1749" width="0.0170%" height="15" fill="rgb(254,112,18)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.1408%" y="1733" width="0.0170%" height="15" fill="rgb(220,128,21)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.1408%" y="1717" width="0.0170%" height="15" fill="rgb(248,137,34)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1408%" y="1701" width="0.0170%" height="15" fill="rgb(254,95,4)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1408%" y="1685" width="0.0170%" height="15" fill="rgb(232,110,20)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.1408%" y="1669" width="0.0170%" height="15" fill="rgb(232,131,8)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.1408%" y="1653" width="0.0170%" height="15" fill="rgb(221,41,21)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.1408%" y="1637" width="0.0170%" height="15" fill="rgb(232,171,23)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1408%" y="1621" width="0.0170%" height="15" fill="rgb(217,201,54)" fg:x="11063" fg:w="4"/><text x="47.3908%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.1578%" y="1765" width="0.0128%" height="15" fill="rgb(213,184,19)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.1578%" y="1749" width="0.0128%" height="15" fill="rgb(247,169,5)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.1578%" y="1733" width="0.0128%" height="15" fill="rgb(235,214,19)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.1578%" y="1717" width="0.0128%" height="15" fill="rgb(244,43,16)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.1578%" y="1701" width="0.0128%" height="15" fill="rgb(237,217,12)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.1578%" y="1685" width="0.0128%" height="15" fill="rgb(220,155,7)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.1578%" y="1669" width="0.0128%" height="15" fill="rgb(250,125,6)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1578%" y="1653" width="0.0128%" height="15" fill="rgb(205,176,54)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.1578%" y="1637" width="0.0128%" height="15" fill="rgb(215,109,16)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.1578%" y="1621" width="0.0128%" height="15" fill="rgb(217,139,31)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1578%" y="1605" width="0.0128%" height="15" fill="rgb(253,28,25)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.1578%" y="1589" width="0.0128%" height="15" fill="rgb(243,69,2)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="47.1578%" y="1573" width="0.0128%" height="15" fill="rgb(222,140,50)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1583.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="47.1578%" y="1557" width="0.0128%" height="15" fill="rgb(216,104,43)" fg:x="11067" fg:w="3"/><text x="47.4078%" y="1567.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.1706%" y="1717" width="0.0128%" height="15" fill="rgb(224,152,21)" fg:x="11070" fg:w="3"/><text x="47.4206%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1706%" y="1701" width="0.0128%" height="15" fill="rgb(242,229,0)" fg:x="11070" fg:w="3"/><text x="47.4206%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1706%" y="1685" width="0.0128%" height="15" fill="rgb(211,129,25)" fg:x="11070" fg:w="3"/><text x="47.4206%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.1706%" y="1669" width="0.0128%" height="15" fill="rgb(238,67,10)" fg:x="11070" fg:w="3"/><text x="47.4206%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="47.1706%" y="1653" width="0.0128%" height="15" fill="rgb(229,24,3)" fg:x="11070" fg:w="3"/><text x="47.4206%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.1706%" y="1637" width="0.0128%" height="15" fill="rgb(251,97,30)" fg:x="11070" fg:w="3"/><text x="47.4206%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="47.1706%" y="1621" width="0.0128%" height="15" fill="rgb(241,227,2)" fg:x="11070" fg:w="3"/><text x="47.4206%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (47 samples, 0.20%)</title><rect x="47.0002%" y="2325" width="0.2003%" height="15" fill="rgb(217,5,19)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (47 samples, 0.20%)</title><rect x="47.0002%" y="2309" width="0.2003%" height="15" fill="rgb(223,32,50)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (47 samples, 0.20%)</title><rect x="47.0002%" y="2293" width="0.2003%" height="15" fill="rgb(253,141,42)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (47 samples, 0.20%)</title><rect x="47.0002%" y="2277" width="0.2003%" height="15" fill="rgb(210,110,53)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (47 samples, 0.20%)</title><rect x="47.0002%" y="2261" width="0.2003%" height="15" fill="rgb(223,151,31)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (47 samples, 0.20%)</title><rect x="47.0002%" y="2245" width="0.2003%" height="15" fill="rgb(226,45,9)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2255.50"></text></g><g><title>std::panicking::try (47 samples, 0.20%)</title><rect x="47.0002%" y="2229" width="0.2003%" height="15" fill="rgb(226,178,17)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (47 samples, 0.20%)</title><rect x="47.0002%" y="2213" width="0.2003%" height="15" fill="rgb(230,162,10)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (47 samples, 0.20%)</title><rect x="47.0002%" y="2197" width="0.2003%" height="15" fill="rgb(222,71,31)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (47 samples, 0.20%)</title><rect x="47.0002%" y="2181" width="0.2003%" height="15" fill="rgb(241,153,4)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (47 samples, 0.20%)</title><rect x="47.0002%" y="2165" width="0.2003%" height="15" fill="rgb(239,216,24)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (47 samples, 0.20%)</title><rect x="47.0002%" y="2149" width="0.2003%" height="15" fill="rgb(214,33,10)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.20%)</title><rect x="47.0002%" y="2133" width="0.2003%" height="15" fill="rgb(236,56,10)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (47 samples, 0.20%)</title><rect x="47.0002%" y="2117" width="0.2003%" height="15" fill="rgb(233,87,47)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (47 samples, 0.20%)</title><rect x="47.0002%" y="2101" width="0.2003%" height="15" fill="rgb(212,40,45)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (47 samples, 0.20%)</title><rect x="47.0002%" y="2085" width="0.2003%" height="15" fill="rgb(249,174,9)" fg:x="11030" fg:w="47"/><text x="47.2502%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="47.1195%" y="2069" width="0.0810%" height="15" fill="rgb(218,85,44)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="47.1195%" y="2053" width="0.0810%" height="15" fill="rgb(213,59,4)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="2063.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="47.1195%" y="2037" width="0.0810%" height="15" fill="rgb(232,222,38)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="47.1195%" y="2021" width="0.0810%" height="15" fill="rgb(229,190,47)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="47.1195%" y="2005" width="0.0810%" height="15" fill="rgb(246,185,24)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="47.1195%" y="1989" width="0.0810%" height="15" fill="rgb(249,32,38)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="47.1195%" y="1973" width="0.0810%" height="15" fill="rgb(235,58,21)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="47.1195%" y="1957" width="0.0810%" height="15" fill="rgb(246,107,38)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="47.1195%" y="1941" width="0.0810%" height="15" fill="rgb(247,198,21)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="47.1195%" y="1925" width="0.0810%" height="15" fill="rgb(239,202,13)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="47.1195%" y="1909" width="0.0810%" height="15" fill="rgb(216,212,24)" fg:x="11058" fg:w="19"/><text x="47.3695%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="47.1578%" y="1893" width="0.0426%" height="15" fill="rgb(241,197,20)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="47.1578%" y="1877" width="0.0426%" height="15" fill="rgb(224,193,19)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1887.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="47.1578%" y="1861" width="0.0426%" height="15" fill="rgb(223,35,28)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="47.1578%" y="1845" width="0.0426%" height="15" fill="rgb(243,101,6)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="47.1578%" y="1829" width="0.0426%" height="15" fill="rgb(221,221,30)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="47.1578%" y="1813" width="0.0426%" height="15" fill="rgb(249,207,30)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="47.1578%" y="1797" width="0.0426%" height="15" fill="rgb(227,92,0)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="47.1578%" y="1781" width="0.0426%" height="15" fill="rgb(219,229,28)" fg:x="11067" fg:w="10"/><text x="47.4078%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="47.1706%" y="1765" width="0.0298%" height="15" fill="rgb(224,79,11)" fg:x="11070" fg:w="7"/><text x="47.4206%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.1706%" y="1749" width="0.0298%" height="15" fill="rgb(236,144,8)" fg:x="11070" fg:w="7"/><text x="47.4206%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="47.1706%" y="1733" width="0.0298%" height="15" fill="rgb(229,17,12)" fg:x="11070" fg:w="7"/><text x="47.4206%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.1834%" y="1717" width="0.0170%" height="15" fill="rgb(208,177,14)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.1834%" y="1701" width="0.0170%" height="15" fill="rgb(251,99,44)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1711.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.1834%" y="1685" width="0.0170%" height="15" fill="rgb(219,57,32)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.1834%" y="1669" width="0.0170%" height="15" fill="rgb(245,54,32)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.1834%" y="1653" width="0.0170%" height="15" fill="rgb(237,10,44)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1834%" y="1637" width="0.0170%" height="15" fill="rgb(205,21,32)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1834%" y="1621" width="0.0170%" height="15" fill="rgb(222,123,31)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.1834%" y="1605" width="0.0170%" height="15" fill="rgb(254,88,45)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.1834%" y="1589" width="0.0170%" height="15" fill="rgb(228,134,19)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.1834%" y="1573" width="0.0170%" height="15" fill="rgb(246,4,6)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.1834%" y="1557" width="0.0170%" height="15" fill="rgb(208,198,26)" fg:x="11073" fg:w="4"/><text x="47.4334%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (52 samples, 0.22%)</title><rect x="47.0002%" y="2357" width="0.2216%" height="15" fill="rgb(235,167,33)" fg:x="11030" fg:w="52"/><text x="47.2502%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (52 samples, 0.22%)</title><rect x="47.0002%" y="2341" width="0.2216%" height="15" fill="rgb(228,117,34)" fg:x="11030" fg:w="52"/><text x="47.2502%" y="2351.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="47.2004%" y="2325" width="0.0213%" height="15" fill="rgb(211,87,47)" fg:x="11077" fg:w="5"/><text x="47.4504%" y="2335.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="47.2004%" y="2309" width="0.0213%" height="15" fill="rgb(212,88,18)" fg:x="11077" fg:w="5"/><text x="47.4504%" y="2319.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="47.2004%" y="2293" width="0.0213%" height="15" fill="rgb(250,189,30)" fg:x="11077" fg:w="5"/><text x="47.4504%" y="2303.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="47.2004%" y="2277" width="0.0213%" height="15" fill="rgb(251,82,49)" fg:x="11077" fg:w="5"/><text x="47.4504%" y="2287.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="47.2004%" y="2261" width="0.0213%" height="15" fill="rgb(223,151,47)" fg:x="11077" fg:w="5"/><text x="47.4504%" y="2271.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="47.2004%" y="2245" width="0.0213%" height="15" fill="rgb(250,180,43)" fg:x="11077" fg:w="5"/><text x="47.4504%" y="2255.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="47.2004%" y="2229" width="0.0213%" height="15" fill="rgb(223,158,37)" fg:x="11077" fg:w="5"/><text x="47.4504%" y="2239.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="47.2217%" y="1829" width="0.0170%" height="15" fill="rgb(231,120,43)" fg:x="11082" fg:w="4"/><text x="47.4717%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="47.2217%" y="2005" width="0.0256%" height="15" fill="rgb(250,105,15)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="47.2217%" y="1989" width="0.0256%" height="15" fill="rgb(243,126,15)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="47.2217%" y="1973" width="0.0256%" height="15" fill="rgb(247,18,44)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="47.2217%" y="1957" width="0.0256%" height="15" fill="rgb(212,90,23)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="47.2217%" y="1941" width="0.0256%" height="15" fill="rgb(220,207,43)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="47.2217%" y="1925" width="0.0256%" height="15" fill="rgb(227,183,34)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="47.2217%" y="1909" width="0.0256%" height="15" fill="rgb(221,128,53)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="47.2217%" y="1893" width="0.0256%" height="15" fill="rgb(251,199,42)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="47.2217%" y="1877" width="0.0256%" height="15" fill="rgb(251,143,15)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="47.2217%" y="1861" width="0.0256%" height="15" fill="rgb(234,37,36)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="47.2217%" y="1845" width="0.0256%" height="15" fill="rgb(218,46,25)" fg:x="11082" fg:w="6"/><text x="47.4717%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="47.2473%" y="1717" width="0.0170%" height="15" fill="rgb(238,73,45)" fg:x="11088" fg:w="4"/><text x="47.4973%" y="1727.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="47.2473%" y="1957" width="0.0298%" height="15" fill="rgb(247,38,52)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="47.2473%" y="1941" width="0.0298%" height="15" fill="rgb(253,51,11)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="47.2473%" y="1925" width="0.0298%" height="15" fill="rgb(242,99,25)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.2473%" y="1909" width="0.0298%" height="15" fill="rgb(223,42,12)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="47.2473%" y="1893" width="0.0298%" height="15" fill="rgb(217,163,40)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1903.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="47.2473%" y="1877" width="0.0298%" height="15" fill="rgb(227,79,51)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="47.2473%" y="1861" width="0.0298%" height="15" fill="rgb(229,148,25)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1871.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="47.2473%" y="1845" width="0.0298%" height="15" fill="rgb(242,10,20)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1855.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="47.2473%" y="1829" width="0.0298%" height="15" fill="rgb(208,168,51)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1839.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="47.2473%" y="1813" width="0.0298%" height="15" fill="rgb(223,116,48)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="47.2473%" y="1797" width="0.0298%" height="15" fill="rgb(242,198,20)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="47.2473%" y="1781" width="0.0298%" height="15" fill="rgb(232,79,52)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="47.2473%" y="1765" width="0.0298%" height="15" fill="rgb(220,200,18)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1775.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="47.2473%" y="1749" width="0.0298%" height="15" fill="rgb(253,191,49)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1759.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="47.2473%" y="1733" width="0.0298%" height="15" fill="rgb(248,22,12)" fg:x="11088" fg:w="7"/><text x="47.4973%" y="1743.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="47.2644%" y="1717" width="0.0128%" height="15" fill="rgb(238,214,1)" fg:x="11092" fg:w="3"/><text x="47.5144%" y="1727.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="47.2771%" y="1637" width="0.0128%" height="15" fill="rgb(250,83,53)" fg:x="11095" fg:w="3"/><text x="47.5271%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="47.2771%" y="1621" width="0.0128%" height="15" fill="rgb(233,169,51)" fg:x="11095" fg:w="3"/><text x="47.5271%" y="1631.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="47.2771%" y="1605" width="0.0128%" height="15" fill="rgb(246,219,13)" fg:x="11095" fg:w="3"/><text x="47.5271%" y="1615.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (19 samples, 0.08%)</title><rect x="47.2217%" y="2069" width="0.0810%" height="15" fill="rgb(214,181,47)" fg:x="11082" fg:w="19"/><text x="47.4717%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (19 samples, 0.08%)</title><rect x="47.2217%" y="2053" width="0.0810%" height="15" fill="rgb(226,212,26)" fg:x="11082" fg:w="19"/><text x="47.4717%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="47.2217%" y="2037" width="0.0810%" height="15" fill="rgb(224,104,40)" fg:x="11082" fg:w="19"/><text x="47.4717%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="47.2217%" y="2021" width="0.0810%" height="15" fill="rgb(252,98,42)" fg:x="11082" fg:w="19"/><text x="47.4717%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="47.2473%" y="2005" width="0.0554%" height="15" fill="rgb(247,117,45)" fg:x="11088" fg:w="13"/><text x="47.4973%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="47.2473%" y="1989" width="0.0554%" height="15" fill="rgb(226,105,49)" fg:x="11088" fg:w="13"/><text x="47.4973%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="47.2473%" y="1973" width="0.0554%" height="15" fill="rgb(225,5,41)" fg:x="11088" fg:w="13"/><text x="47.4973%" y="1983.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="47.2771%" y="1957" width="0.0256%" height="15" fill="rgb(220,143,39)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1967.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="47.2771%" y="1941" width="0.0256%" height="15" fill="rgb(207,221,13)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1951.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="47.2771%" y="1925" width="0.0256%" height="15" fill="rgb(248,227,43)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1935.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="47.2771%" y="1909" width="0.0256%" height="15" fill="rgb(247,24,30)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1919.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="47.2771%" y="1893" width="0.0256%" height="15" fill="rgb(214,131,15)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="47.2771%" y="1877" width="0.0256%" height="15" fill="rgb(231,4,36)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="47.2771%" y="1861" width="0.0256%" height="15" fill="rgb(214,59,41)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="47.2771%" y="1845" width="0.0256%" height="15" fill="rgb(238,179,1)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="47.2771%" y="1829" width="0.0256%" height="15" fill="rgb(251,2,50)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="47.2771%" y="1813" width="0.0256%" height="15" fill="rgb(211,102,41)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="47.2771%" y="1797" width="0.0256%" height="15" fill="rgb(227,65,50)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="47.2771%" y="1781" width="0.0256%" height="15" fill="rgb(232,161,25)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="47.2771%" y="1765" width="0.0256%" height="15" fill="rgb(213,149,6)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="47.2771%" y="1749" width="0.0256%" height="15" fill="rgb(229,139,27)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="47.2771%" y="1733" width="0.0256%" height="15" fill="rgb(221,147,20)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="47.2771%" y="1717" width="0.0256%" height="15" fill="rgb(214,16,36)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="47.2771%" y="1701" width="0.0256%" height="15" fill="rgb(216,149,20)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="47.2771%" y="1685" width="0.0256%" height="15" fill="rgb(205,196,52)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="47.2771%" y="1669" width="0.0256%" height="15" fill="rgb(253,85,4)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="47.2771%" y="1653" width="0.0256%" height="15" fill="rgb(222,183,31)" fg:x="11095" fg:w="6"/><text x="47.5271%" y="1663.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="47.3027%" y="1781" width="0.0213%" height="15" fill="rgb(247,213,0)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="47.3027%" y="1765" width="0.0213%" height="15" fill="rgb(251,221,0)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="47.3027%" y="1749" width="0.0213%" height="15" fill="rgb(211,196,42)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="47.3027%" y="1733" width="0.0213%" height="15" fill="rgb(251,17,15)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="47.3027%" y="1717" width="0.0213%" height="15" fill="rgb(254,178,52)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="47.3027%" y="1701" width="0.0213%" height="15" fill="rgb(208,120,38)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="47.3027%" y="1685" width="0.0213%" height="15" fill="rgb(253,54,25)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="47.3027%" y="1669" width="0.0213%" height="15" fill="rgb(236,92,51)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1679.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="47.3027%" y="1653" width="0.0213%" height="15" fill="rgb(223,57,41)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="47.3027%" y="1637" width="0.0213%" height="15" fill="rgb(229,96,8)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="47.3027%" y="1621" width="0.0213%" height="15" fill="rgb(212,22,43)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="47.3027%" y="1605" width="0.0213%" height="15" fill="rgb(248,174,32)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="47.3027%" y="1589" width="0.0213%" height="15" fill="rgb(244,184,19)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="47.3027%" y="1573" width="0.0213%" height="15" fill="rgb(232,160,23)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.3027%" y="1557" width="0.0213%" height="15" fill="rgb(249,210,7)" fg:x="11101" fg:w="5"/><text x="47.5527%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="47.3112%" y="1541" width="0.0128%" height="15" fill="rgb(226,51,30)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.3112%" y="1525" width="0.0128%" height="15" fill="rgb(243,14,30)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="47.3112%" y="1509" width="0.0128%" height="15" fill="rgb(226,144,11)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="47.3112%" y="1493" width="0.0128%" height="15" fill="rgb(235,152,48)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="47.3112%" y="1477" width="0.0128%" height="15" fill="rgb(251,82,45)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="47.3112%" y="1461" width="0.0128%" height="15" fill="rgb(244,226,38)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="47.3112%" y="1445" width="0.0128%" height="15" fill="rgb(237,191,30)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="47.3112%" y="1429" width="0.0128%" height="15" fill="rgb(215,226,14)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="47.3112%" y="1413" width="0.0128%" height="15" fill="rgb(231,137,22)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.3112%" y="1397" width="0.0128%" height="15" fill="rgb(211,92,18)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3112%" y="1381" width="0.0128%" height="15" fill="rgb(236,134,30)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.3112%" y="1365" width="0.0128%" height="15" fill="rgb(243,9,36)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1375.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.3112%" y="1349" width="0.0128%" height="15" fill="rgb(206,40,9)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.3112%" y="1333" width="0.0128%" height="15" fill="rgb(251,127,33)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1343.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.3112%" y="1317" width="0.0128%" height="15" fill="rgb(235,110,15)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1327.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.3112%" y="1301" width="0.0128%" height="15" fill="rgb(209,91,37)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1311.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.3112%" y="1285" width="0.0128%" height="15" fill="rgb(250,223,5)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.3112%" y="1269" width="0.0128%" height="15" fill="rgb(228,50,0)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.3112%" y="1253" width="0.0128%" height="15" fill="rgb(230,45,43)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1263.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.3112%" y="1237" width="0.0128%" height="15" fill="rgb(239,1,2)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1247.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.3112%" y="1221" width="0.0128%" height="15" fill="rgb(249,187,20)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1231.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.3112%" y="1205" width="0.0128%" height="15" fill="rgb(221,33,43)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1215.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.3112%" y="1189" width="0.0128%" height="15" fill="rgb(216,89,0)" fg:x="11103" fg:w="3"/><text x="47.5612%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="47.3027%" y="2069" width="0.0384%" height="15" fill="rgb(242,110,33)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="47.3027%" y="2053" width="0.0384%" height="15" fill="rgb(240,146,54)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="47.3027%" y="2037" width="0.0384%" height="15" fill="rgb(239,60,43)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="47.3027%" y="2021" width="0.0384%" height="15" fill="rgb(218,132,53)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="47.3027%" y="2005" width="0.0384%" height="15" fill="rgb(211,118,40)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="47.3027%" y="1989" width="0.0384%" height="15" fill="rgb(213,127,51)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="47.3027%" y="1973" width="0.0384%" height="15" fill="rgb(249,188,8)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="47.3027%" y="1957" width="0.0384%" height="15" fill="rgb(231,24,8)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1967.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="47.3027%" y="1941" width="0.0384%" height="15" fill="rgb(249,18,29)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="47.3027%" y="1925" width="0.0384%" height="15" fill="rgb(253,36,30)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="47.3027%" y="1909" width="0.0384%" height="15" fill="rgb(215,23,52)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="47.3027%" y="1893" width="0.0384%" height="15" fill="rgb(232,64,24)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="47.3027%" y="1877" width="0.0384%" height="15" fill="rgb(222,44,30)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.3027%" y="1861" width="0.0384%" height="15" fill="rgb(220,3,49)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.3027%" y="1845" width="0.0384%" height="15" fill="rgb(212,120,5)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="47.3027%" y="1829" width="0.0384%" height="15" fill="rgb(222,138,45)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="47.3027%" y="1813" width="0.0384%" height="15" fill="rgb(245,39,42)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="47.3027%" y="1797" width="0.0384%" height="15" fill="rgb(243,138,48)" fg:x="11101" fg:w="9"/><text x="47.5527%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.3240%" y="1781" width="0.0170%" height="15" fill="rgb(206,223,50)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.3240%" y="1765" width="0.0170%" height="15" fill="rgb(218,136,29)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1775.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.3240%" y="1749" width="0.0170%" height="15" fill="rgb(223,109,11)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.3240%" y="1733" width="0.0170%" height="15" fill="rgb(216,202,31)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.3240%" y="1717" width="0.0170%" height="15" fill="rgb(230,101,47)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.3240%" y="1701" width="0.0170%" height="15" fill="rgb(232,34,53)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.3240%" y="1685" width="0.0170%" height="15" fill="rgb(240,40,48)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.3240%" y="1669" width="0.0170%" height="15" fill="rgb(236,194,9)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.3240%" y="1653" width="0.0170%" height="15" fill="rgb(228,96,44)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.3240%" y="1637" width="0.0170%" height="15" fill="rgb(226,4,1)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.3240%" y="1621" width="0.0170%" height="15" fill="rgb(250,44,15)" fg:x="11106" fg:w="4"/><text x="47.5740%" y="1631.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="47.3411%" y="1765" width="0.0213%" height="15" fill="rgb(208,208,15)" fg:x="11110" fg:w="5"/><text x="47.5911%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="47.3411%" y="1941" width="0.0298%" height="15" fill="rgb(206,179,49)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="47.3411%" y="1925" width="0.0298%" height="15" fill="rgb(248,130,18)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="47.3411%" y="1909" width="0.0298%" height="15" fill="rgb(235,206,31)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="47.3411%" y="1893" width="0.0298%" height="15" fill="rgb(248,201,5)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="47.3411%" y="1877" width="0.0298%" height="15" fill="rgb(250,23,35)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="47.3411%" y="1861" width="0.0298%" height="15" fill="rgb(232,25,19)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="47.3411%" y="1845" width="0.0298%" height="15" fill="rgb(249,58,40)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="47.3411%" y="1829" width="0.0298%" height="15" fill="rgb(216,160,33)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="47.3411%" y="1813" width="0.0298%" height="15" fill="rgb(209,151,18)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="47.3411%" y="1797" width="0.0298%" height="15" fill="rgb(233,91,42)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="47.3411%" y="1781" width="0.0298%" height="15" fill="rgb(206,90,16)" fg:x="11110" fg:w="7"/><text x="47.5911%" y="1791.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="47.3709%" y="1637" width="0.0128%" height="15" fill="rgb(241,156,22)" fg:x="11117" fg:w="3"/><text x="47.6209%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="47.3709%" y="1621" width="0.0128%" height="15" fill="rgb(229,152,51)" fg:x="11117" fg:w="3"/><text x="47.6209%" y="1631.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="47.3709%" y="1605" width="0.0128%" height="15" fill="rgb(209,206,18)" fg:x="11117" fg:w="3"/><text x="47.6209%" y="1615.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="47.3709%" y="1589" width="0.0128%" height="15" fill="rgb(231,185,21)" fg:x="11117" fg:w="3"/><text x="47.6209%" y="1599.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="47.3709%" y="1653" width="0.0256%" height="15" fill="rgb(232,71,16)" fg:x="11117" fg:w="6"/><text x="47.6209%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="47.3709%" y="1829" width="0.0341%" height="15" fill="rgb(213,49,54)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="47.3709%" y="1813" width="0.0341%" height="15" fill="rgb(220,213,46)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="47.3709%" y="1797" width="0.0341%" height="15" fill="rgb(207,166,39)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="47.3709%" y="1781" width="0.0341%" height="15" fill="rgb(238,9,23)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="47.3709%" y="1765" width="0.0341%" height="15" fill="rgb(234,75,45)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="47.3709%" y="1749" width="0.0341%" height="15" fill="rgb(237,27,21)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="47.3709%" y="1733" width="0.0341%" height="15" fill="rgb(239,88,25)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="47.3709%" y="1717" width="0.0341%" height="15" fill="rgb(230,208,35)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="47.3709%" y="1701" width="0.0341%" height="15" fill="rgb(225,73,6)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="47.3709%" y="1685" width="0.0341%" height="15" fill="rgb(241,17,46)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="47.3709%" y="1669" width="0.0341%" height="15" fill="rgb(232,218,35)" fg:x="11117" fg:w="8"/><text x="47.6209%" y="1679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="47.3709%" y="1893" width="0.0384%" height="15" fill="rgb(253,149,10)" fg:x="11117" fg:w="9"/><text x="47.6209%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="47.3709%" y="1877" width="0.0384%" height="15" fill="rgb(234,86,15)" fg:x="11117" fg:w="9"/><text x="47.6209%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.3709%" y="1861" width="0.0384%" height="15" fill="rgb(229,176,9)" fg:x="11117" fg:w="9"/><text x="47.6209%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.3709%" y="1845" width="0.0384%" height="15" fill="rgb(237,139,4)" fg:x="11117" fg:w="9"/><text x="47.6209%" y="1855.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (6 samples, 0.03%)</title><rect x="47.4178%" y="1573" width="0.0256%" height="15" fill="rgb(229,41,38)" fg:x="11128" fg:w="6"/><text x="47.6678%" y="1583.50"></text></g><g><title>core::f64::<impl f64>::recip (6 samples, 0.03%)</title><rect x="47.4178%" y="1557" width="0.0256%" height="15" fill="rgb(248,214,47)" fg:x="11128" fg:w="6"/><text x="47.6678%" y="1567.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (53 samples, 0.23%)</title><rect x="47.2217%" y="2181" width="0.2258%" height="15" fill="rgb(217,122,18)" fg:x="11082" fg:w="53"/><text x="47.4717%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (53 samples, 0.23%)</title><rect x="47.2217%" y="2165" width="0.2258%" height="15" fill="rgb(253,190,50)" fg:x="11082" fg:w="53"/><text x="47.4717%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (53 samples, 0.23%)</title><rect x="47.2217%" y="2149" width="0.2258%" height="15" fill="rgb(243,131,1)" fg:x="11082" fg:w="53"/><text x="47.4717%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.23%)</title><rect x="47.2217%" y="2133" width="0.2258%" height="15" fill="rgb(234,160,7)" fg:x="11082" fg:w="53"/><text x="47.4717%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (53 samples, 0.23%)</title><rect x="47.2217%" y="2117" width="0.2258%" height="15" fill="rgb(249,160,33)" fg:x="11082" fg:w="53"/><text x="47.4717%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.23%)</title><rect x="47.2217%" y="2101" width="0.2258%" height="15" fill="rgb(233,126,29)" fg:x="11082" fg:w="53"/><text x="47.4717%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (53 samples, 0.23%)</title><rect x="47.2217%" y="2085" width="0.2258%" height="15" fill="rgb(205,13,52)" fg:x="11082" fg:w="53"/><text x="47.4717%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (25 samples, 0.11%)</title><rect x="47.3411%" y="2069" width="0.1065%" height="15" fill="rgb(243,0,49)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (25 samples, 0.11%)</title><rect x="47.3411%" y="2053" width="0.1065%" height="15" fill="rgb(245,17,51)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="2063.50"></text></g><g><title>std::panicking::try (25 samples, 0.11%)</title><rect x="47.3411%" y="2037" width="0.1065%" height="15" fill="rgb(206,130,53)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (25 samples, 0.11%)</title><rect x="47.3411%" y="2021" width="0.1065%" height="15" fill="rgb(236,191,41)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (25 samples, 0.11%)</title><rect x="47.3411%" y="2005" width="0.1065%" height="15" fill="rgb(221,187,37)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (25 samples, 0.11%)</title><rect x="47.3411%" y="1989" width="0.1065%" height="15" fill="rgb(225,45,2)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="47.3411%" y="1973" width="0.1065%" height="15" fill="rgb(224,167,12)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="47.3411%" y="1957" width="0.1065%" height="15" fill="rgb(227,146,40)" fg:x="11110" fg:w="25"/><text x="47.5911%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="47.3709%" y="1941" width="0.0767%" height="15" fill="rgb(217,13,6)" fg:x="11117" fg:w="18"/><text x="47.6209%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="47.3709%" y="1925" width="0.0767%" height="15" fill="rgb(238,144,52)" fg:x="11117" fg:w="18"/><text x="47.6209%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="47.3709%" y="1909" width="0.0767%" height="15" fill="rgb(205,77,25)" fg:x="11117" fg:w="18"/><text x="47.6209%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="47.4092%" y="1893" width="0.0384%" height="15" fill="rgb(224,127,39)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="47.4092%" y="1877" width="0.0384%" height="15" fill="rgb(254,125,54)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1887.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="47.4092%" y="1861" width="0.0384%" height="15" fill="rgb(252,42,13)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="47.4092%" y="1845" width="0.0384%" height="15" fill="rgb(213,86,44)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="47.4092%" y="1829" width="0.0384%" height="15" fill="rgb(224,70,4)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="47.4092%" y="1813" width="0.0384%" height="15" fill="rgb(217,199,9)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.4092%" y="1797" width="0.0384%" height="15" fill="rgb(235,154,39)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.4092%" y="1781" width="0.0384%" height="15" fill="rgb(241,70,18)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="47.4092%" y="1765" width="0.0384%" height="15" fill="rgb(241,134,20)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="47.4092%" y="1749" width="0.0384%" height="15" fill="rgb(218,117,5)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="47.4092%" y="1733" width="0.0384%" height="15" fill="rgb(253,75,33)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="47.4092%" y="1717" width="0.0384%" height="15" fill="rgb(224,206,50)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="47.4092%" y="1701" width="0.0384%" height="15" fill="rgb(226,166,28)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="47.4092%" y="1685" width="0.0384%" height="15" fill="rgb(207,65,48)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="47.4092%" y="1669" width="0.0384%" height="15" fill="rgb(243,68,14)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="47.4092%" y="1653" width="0.0384%" height="15" fill="rgb(240,137,12)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="47.4092%" y="1637" width="0.0384%" height="15" fill="rgb(223,144,18)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="47.4092%" y="1621" width="0.0384%" height="15" fill="rgb(210,153,4)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="47.4092%" y="1605" width="0.0384%" height="15" fill="rgb(208,126,15)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="47.4092%" y="1589" width="0.0384%" height="15" fill="rgb(253,116,51)" fg:x="11126" fg:w="9"/><text x="47.6592%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="47.4476%" y="1941" width="0.0256%" height="15" fill="rgb(215,36,49)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="47.4476%" y="1925" width="0.0256%" height="15" fill="rgb(250,190,5)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="47.4476%" y="1909" width="0.0256%" height="15" fill="rgb(254,222,44)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="47.4476%" y="1893" width="0.0256%" height="15" fill="rgb(209,96,0)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="47.4476%" y="1877" width="0.0256%" height="15" fill="rgb(223,185,27)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="47.4476%" y="1861" width="0.0256%" height="15" fill="rgb(226,206,27)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="47.4476%" y="1845" width="0.0256%" height="15" fill="rgb(231,81,42)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="47.4476%" y="1829" width="0.0256%" height="15" fill="rgb(241,7,40)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="47.4476%" y="1813" width="0.0256%" height="15" fill="rgb(206,150,45)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="47.4476%" y="1797" width="0.0256%" height="15" fill="rgb(206,18,51)" fg:x="11135" fg:w="6"/><text x="47.6976%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="47.4518%" y="1781" width="0.0213%" height="15" fill="rgb(223,22,20)" fg:x="11136" fg:w="5"/><text x="47.7018%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="47.4518%" y="1765" width="0.0213%" height="15" fill="rgb(217,113,16)" fg:x="11136" fg:w="5"/><text x="47.7018%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="47.4774%" y="1637" width="0.0170%" height="15" fill="rgb(223,215,9)" fg:x="11142" fg:w="4"/><text x="47.7274%" y="1647.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="47.4774%" y="1621" width="0.0170%" height="15" fill="rgb(242,189,36)" fg:x="11142" fg:w="4"/><text x="47.7274%" y="1631.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="47.4774%" y="1605" width="0.0170%" height="15" fill="rgb(254,109,9)" fg:x="11142" fg:w="4"/><text x="47.7274%" y="1615.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="47.4817%" y="1589" width="0.0128%" height="15" fill="rgb(218,63,52)" fg:x="11143" fg:w="3"/><text x="47.7317%" y="1599.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="47.4774%" y="1653" width="0.0213%" height="15" fill="rgb(229,162,48)" fg:x="11142" fg:w="5"/><text x="47.7274%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="47.4732%" y="1829" width="0.0341%" height="15" fill="rgb(219,178,18)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="47.4732%" y="1813" width="0.0341%" height="15" fill="rgb(236,161,11)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="47.4732%" y="1797" width="0.0341%" height="15" fill="rgb(245,130,42)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="47.4732%" y="1781" width="0.0341%" height="15" fill="rgb(213,37,19)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="47.4732%" y="1765" width="0.0341%" height="15" fill="rgb(219,27,27)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="47.4732%" y="1749" width="0.0341%" height="15" fill="rgb(246,59,27)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="47.4732%" y="1733" width="0.0341%" height="15" fill="rgb(225,84,48)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="47.4732%" y="1717" width="0.0341%" height="15" fill="rgb(234,27,42)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="47.4732%" y="1701" width="0.0341%" height="15" fill="rgb(250,105,49)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="47.4732%" y="1685" width="0.0341%" height="15" fill="rgb(251,188,42)" fg:x="11141" fg:w="8"/><text x="47.7232%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="47.4774%" y="1669" width="0.0298%" height="15" fill="rgb(211,74,45)" fg:x="11142" fg:w="7"/><text x="47.7274%" y="1679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="47.4732%" y="1893" width="0.0384%" height="15" fill="rgb(246,94,22)" fg:x="11141" fg:w="9"/><text x="47.7232%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="47.4732%" y="1877" width="0.0384%" height="15" fill="rgb(205,201,35)" fg:x="11141" fg:w="9"/><text x="47.7232%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.4732%" y="1861" width="0.0384%" height="15" fill="rgb(211,126,10)" fg:x="11141" fg:w="9"/><text x="47.7232%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.4732%" y="1845" width="0.0384%" height="15" fill="rgb(234,34,47)" fg:x="11141" fg:w="9"/><text x="47.7232%" y="1855.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (4 samples, 0.02%)</title><rect x="47.5115%" y="1573" width="0.0170%" height="15" fill="rgb(243,130,39)" fg:x="11150" fg:w="4"/><text x="47.7615%" y="1583.50"></text></g><g><title>std::f64::<impl f64>::exp (4 samples, 0.02%)</title><rect x="47.5115%" y="1557" width="0.0170%" height="15" fill="rgb(210,83,9)" fg:x="11150" fg:w="4"/><text x="47.7615%" y="1567.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="47.5115%" y="1541" width="0.0170%" height="15" fill="rgb(251,88,20)" fg:x="11150" fg:w="4"/><text x="47.7615%" y="1551.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="47.5115%" y="1525" width="0.0170%" height="15" fill="rgb(211,93,49)" fg:x="11150" fg:w="4"/><text x="47.7615%" y="1535.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (21 samples, 0.09%)</title><rect x="47.4476%" y="2005" width="0.0895%" height="15" fill="rgb(217,99,2)" fg:x="11135" fg:w="21"/><text x="47.6976%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="47.4476%" y="1989" width="0.0895%" height="15" fill="rgb(247,37,1)" fg:x="11135" fg:w="21"/><text x="47.6976%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="47.4476%" y="1973" width="0.0895%" height="15" fill="rgb(238,103,49)" fg:x="11135" fg:w="21"/><text x="47.6976%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="47.4476%" y="1957" width="0.0895%" height="15" fill="rgb(223,148,53)" fg:x="11135" fg:w="21"/><text x="47.6976%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="47.4732%" y="1941" width="0.0639%" height="15" fill="rgb(216,173,16)" fg:x="11141" fg:w="15"/><text x="47.7232%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="47.4732%" y="1925" width="0.0639%" height="15" fill="rgb(238,74,41)" fg:x="11141" fg:w="15"/><text x="47.7232%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="47.4732%" y="1909" width="0.0639%" height="15" fill="rgb(250,138,51)" fg:x="11141" fg:w="15"/><text x="47.7232%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="47.5115%" y="1893" width="0.0256%" height="15" fill="rgb(252,46,23)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="47.5115%" y="1877" width="0.0256%" height="15" fill="rgb(232,81,44)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1887.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="47.5115%" y="1861" width="0.0256%" height="15" fill="rgb(243,77,12)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="47.5115%" y="1845" width="0.0256%" height="15" fill="rgb(248,17,44)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="47.5115%" y="1829" width="0.0256%" height="15" fill="rgb(207,155,51)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="47.5115%" y="1813" width="0.0256%" height="15" fill="rgb(231,161,5)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="47.5115%" y="1797" width="0.0256%" height="15" fill="rgb(240,97,3)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="47.5115%" y="1781" width="0.0256%" height="15" fill="rgb(246,116,40)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="47.5115%" y="1765" width="0.0256%" height="15" fill="rgb(212,126,20)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="47.5115%" y="1749" width="0.0256%" height="15" fill="rgb(238,153,34)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="47.5115%" y="1733" width="0.0256%" height="15" fill="rgb(217,155,28)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="47.5115%" y="1717" width="0.0256%" height="15" fill="rgb(250,155,5)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="47.5115%" y="1701" width="0.0256%" height="15" fill="rgb(251,170,35)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="47.5115%" y="1685" width="0.0256%" height="15" fill="rgb(254,81,3)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="47.5115%" y="1669" width="0.0256%" height="15" fill="rgb(244,133,24)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="47.5115%" y="1653" width="0.0256%" height="15" fill="rgb(235,164,16)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="47.5115%" y="1637" width="0.0256%" height="15" fill="rgb(231,93,27)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="47.5115%" y="1621" width="0.0256%" height="15" fill="rgb(236,16,33)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="47.5115%" y="1605" width="0.0256%" height="15" fill="rgb(219,6,14)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="47.5115%" y="1589" width="0.0256%" height="15" fill="rgb(251,38,47)" fg:x="11150" fg:w="6"/><text x="47.7615%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="47.5371%" y="1877" width="0.0213%" height="15" fill="rgb(220,146,50)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="47.5371%" y="1861" width="0.0213%" height="15" fill="rgb(232,197,30)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="47.5371%" y="1845" width="0.0213%" height="15" fill="rgb(252,31,50)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="47.5371%" y="1829" width="0.0213%" height="15" fill="rgb(213,58,14)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="47.5371%" y="1813" width="0.0213%" height="15" fill="rgb(217,21,49)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="47.5371%" y="1797" width="0.0213%" height="15" fill="rgb(211,150,49)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="47.5371%" y="1781" width="0.0213%" height="15" fill="rgb(243,7,46)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="47.5371%" y="1765" width="0.0213%" height="15" fill="rgb(212,97,24)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="47.5371%" y="1749" width="0.0213%" height="15" fill="rgb(229,116,6)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="47.5371%" y="1733" width="0.0213%" height="15" fill="rgb(246,85,22)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="47.5371%" y="1717" width="0.0213%" height="15" fill="rgb(230,189,52)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="47.5371%" y="1701" width="0.0213%" height="15" fill="rgb(246,14,38)" fg:x="11156" fg:w="5"/><text x="47.7871%" y="1711.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="47.5584%" y="1589" width="0.0170%" height="15" fill="rgb(213,177,43)" fg:x="11161" fg:w="4"/><text x="47.8084%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="47.5584%" y="1765" width="0.0256%" height="15" fill="rgb(223,144,11)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="47.5584%" y="1749" width="0.0256%" height="15" fill="rgb(222,48,52)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="47.5584%" y="1733" width="0.0256%" height="15" fill="rgb(217,180,30)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="47.5584%" y="1717" width="0.0256%" height="15" fill="rgb(231,42,41)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="47.5584%" y="1701" width="0.0256%" height="15" fill="rgb(211,89,39)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="47.5584%" y="1685" width="0.0256%" height="15" fill="rgb(217,209,12)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="47.5584%" y="1669" width="0.0256%" height="15" fill="rgb(206,61,35)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="47.5584%" y="1653" width="0.0256%" height="15" fill="rgb(227,21,4)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="47.5584%" y="1637" width="0.0256%" height="15" fill="rgb(247,73,16)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="47.5584%" y="1621" width="0.0256%" height="15" fill="rgb(207,74,51)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="47.5584%" y="1605" width="0.0256%" height="15" fill="rgb(247,86,48)" fg:x="11161" fg:w="6"/><text x="47.8084%" y="1615.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="47.5584%" y="1829" width="0.0298%" height="15" fill="rgb(248,222,10)" fg:x="11161" fg:w="7"/><text x="47.8084%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="47.5584%" y="1813" width="0.0298%" height="15" fill="rgb(250,211,48)" fg:x="11161" fg:w="7"/><text x="47.8084%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="47.5584%" y="1797" width="0.0298%" height="15" fill="rgb(227,47,49)" fg:x="11161" fg:w="7"/><text x="47.8084%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.5584%" y="1781" width="0.0298%" height="15" fill="rgb(217,126,44)" fg:x="11161" fg:w="7"/><text x="47.8084%" y="1791.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="47.5925%" y="1509" width="0.0128%" height="15" fill="rgb(208,61,52)" fg:x="11169" fg:w="3"/><text x="47.8425%" y="1519.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="47.5925%" y="1493" width="0.0128%" height="15" fill="rgb(240,135,38)" fg:x="11169" fg:w="3"/><text x="47.8425%" y="1503.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="47.5925%" y="1477" width="0.0128%" height="15" fill="rgb(252,39,20)" fg:x="11169" fg:w="3"/><text x="47.8425%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (216 samples, 0.92%)</title><rect x="46.7062%" y="2645" width="0.9204%" height="15" fill="rgb(215,209,2)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (216 samples, 0.92%)</title><rect x="46.7062%" y="2629" width="0.9204%" height="15" fill="rgb(243,52,21)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (216 samples, 0.92%)</title><rect x="46.7062%" y="2613" width="0.9204%" height="15" fill="rgb(231,141,45)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (216 samples, 0.92%)</title><rect x="46.7062%" y="2597" width="0.9204%" height="15" fill="rgb(223,163,53)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (216 samples, 0.92%)</title><rect x="46.7062%" y="2581" width="0.9204%" height="15" fill="rgb(232,179,25)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (216 samples, 0.92%)</title><rect x="46.7062%" y="2565" width="0.9204%" height="15" fill="rgb(219,79,48)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (216 samples, 0.92%)</title><rect x="46.7062%" y="2549" width="0.9204%" height="15" fill="rgb(242,30,39)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (216 samples, 0.92%)</title><rect x="46.7062%" y="2533" width="0.9204%" height="15" fill="rgb(219,5,35)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2543.50"></text></g><g><title>std::panicking::try (216 samples, 0.92%)</title><rect x="46.7062%" y="2517" width="0.9204%" height="15" fill="rgb(239,226,29)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (216 samples, 0.92%)</title><rect x="46.7062%" y="2501" width="0.9204%" height="15" fill="rgb(246,152,52)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (216 samples, 0.92%)</title><rect x="46.7062%" y="2485" width="0.9204%" height="15" fill="rgb(236,164,21)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (216 samples, 0.92%)</title><rect x="46.7062%" y="2469" width="0.9204%" height="15" fill="rgb(222,2,23)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (216 samples, 0.92%)</title><rect x="46.7062%" y="2453" width="0.9204%" height="15" fill="rgb(235,196,7)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (216 samples, 0.92%)</title><rect x="46.7062%" y="2437" width="0.9204%" height="15" fill="rgb(253,219,23)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (216 samples, 0.92%)</title><rect x="46.7062%" y="2421" width="0.9204%" height="15" fill="rgb(238,77,19)" fg:x="10961" fg:w="216"/><text x="46.9562%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (212 samples, 0.90%)</title><rect x="46.7232%" y="2405" width="0.9034%" height="15" fill="rgb(230,173,54)" fg:x="10965" fg:w="212"/><text x="46.9732%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (212 samples, 0.90%)</title><rect x="46.7232%" y="2389" width="0.9034%" height="15" fill="rgb(250,174,21)" fg:x="10965" fg:w="212"/><text x="46.9732%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (212 samples, 0.90%)</title><rect x="46.7232%" y="2373" width="0.9034%" height="15" fill="rgb(222,15,49)" fg:x="10965" fg:w="212"/><text x="46.9732%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (95 samples, 0.40%)</title><rect x="47.2217%" y="2357" width="0.4048%" height="15" fill="rgb(246,68,53)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (95 samples, 0.40%)</title><rect x="47.2217%" y="2341" width="0.4048%" height="15" fill="rgb(247,213,27)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2351.50"></text></g><g><title>std::panicking::try (95 samples, 0.40%)</title><rect x="47.2217%" y="2325" width="0.4048%" height="15" fill="rgb(211,148,32)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (95 samples, 0.40%)</title><rect x="47.2217%" y="2309" width="0.4048%" height="15" fill="rgb(221,10,23)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (95 samples, 0.40%)</title><rect x="47.2217%" y="2293" width="0.4048%" height="15" fill="rgb(225,20,37)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (95 samples, 0.40%)</title><rect x="47.2217%" y="2277" width="0.4048%" height="15" fill="rgb(224,97,52)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (95 samples, 0.40%)</title><rect x="47.2217%" y="2261" width="0.4048%" height="15" fill="rgb(246,222,9)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (95 samples, 0.40%)</title><rect x="47.2217%" y="2245" width="0.4048%" height="15" fill="rgb(210,212,15)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (95 samples, 0.40%)</title><rect x="47.2217%" y="2229" width="0.4048%" height="15" fill="rgb(246,1,24)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (95 samples, 0.40%)</title><rect x="47.2217%" y="2213" width="0.4048%" height="15" fill="rgb(234,99,4)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (95 samples, 0.40%)</title><rect x="47.2217%" y="2197" width="0.4048%" height="15" fill="rgb(233,210,11)" fg:x="11082" fg:w="95"/><text x="47.4717%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (42 samples, 0.18%)</title><rect x="47.4476%" y="2181" width="0.1790%" height="15" fill="rgb(235,118,9)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (42 samples, 0.18%)</title><rect x="47.4476%" y="2165" width="0.1790%" height="15" fill="rgb(223,26,5)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2175.50"></text></g><g><title>std::panicking::try (42 samples, 0.18%)</title><rect x="47.4476%" y="2149" width="0.1790%" height="15" fill="rgb(234,119,29)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (42 samples, 0.18%)</title><rect x="47.4476%" y="2133" width="0.1790%" height="15" fill="rgb(236,101,53)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (42 samples, 0.18%)</title><rect x="47.4476%" y="2117" width="0.1790%" height="15" fill="rgb(230,153,26)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (42 samples, 0.18%)</title><rect x="47.4476%" y="2101" width="0.1790%" height="15" fill="rgb(233,80,49)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42 samples, 0.18%)</title><rect x="47.4476%" y="2085" width="0.1790%" height="15" fill="rgb(238,222,44)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.18%)</title><rect x="47.4476%" y="2069" width="0.1790%" height="15" fill="rgb(253,129,17)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="47.4476%" y="2053" width="0.1790%" height="15" fill="rgb(226,35,9)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="47.4476%" y="2037" width="0.1790%" height="15" fill="rgb(247,220,31)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="47.4476%" y="2021" width="0.1790%" height="15" fill="rgb(212,17,46)" fg:x="11135" fg:w="42"/><text x="47.6976%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="47.5371%" y="2005" width="0.0895%" height="15" fill="rgb(254,55,47)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="47.5371%" y="1989" width="0.0895%" height="15" fill="rgb(208,91,30)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="1999.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="47.5371%" y="1973" width="0.0895%" height="15" fill="rgb(253,213,20)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="47.5371%" y="1957" width="0.0895%" height="15" fill="rgb(240,58,37)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="47.5371%" y="1941" width="0.0895%" height="15" fill="rgb(251,223,41)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="47.5371%" y="1925" width="0.0895%" height="15" fill="rgb(216,210,46)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="47.5371%" y="1909" width="0.0895%" height="15" fill="rgb(219,60,21)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="47.5371%" y="1893" width="0.0895%" height="15" fill="rgb(239,64,40)" fg:x="11156" fg:w="21"/><text x="47.7871%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="47.5584%" y="1877" width="0.0682%" height="15" fill="rgb(218,197,20)" fg:x="11161" fg:w="16"/><text x="47.8084%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="47.5584%" y="1861" width="0.0682%" height="15" fill="rgb(249,187,9)" fg:x="11161" fg:w="16"/><text x="47.8084%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="47.5584%" y="1845" width="0.0682%" height="15" fill="rgb(241,169,0)" fg:x="11161" fg:w="16"/><text x="47.8084%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="47.5882%" y="1829" width="0.0384%" height="15" fill="rgb(245,91,54)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="47.5882%" y="1813" width="0.0384%" height="15" fill="rgb(231,206,52)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1823.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="47.5882%" y="1797" width="0.0384%" height="15" fill="rgb(205,227,46)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="47.5882%" y="1781" width="0.0384%" height="15" fill="rgb(226,201,40)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="47.5882%" y="1765" width="0.0384%" height="15" fill="rgb(229,128,10)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="47.5882%" y="1749" width="0.0384%" height="15" fill="rgb(241,32,20)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.5882%" y="1733" width="0.0384%" height="15" fill="rgb(232,23,18)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.5882%" y="1717" width="0.0384%" height="15" fill="rgb(231,169,8)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="47.5882%" y="1701" width="0.0384%" height="15" fill="rgb(215,21,27)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1711.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="47.5882%" y="1685" width="0.0384%" height="15" fill="rgb(211,144,44)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (9 samples, 0.04%)</title><rect x="47.5882%" y="1669" width="0.0384%" height="15" fill="rgb(212,138,46)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1679.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="47.5882%" y="1653" width="0.0384%" height="15" fill="rgb(249,6,7)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1663.50"></text></g><g><title>core::option::Option<T>::map (9 samples, 0.04%)</title><rect x="47.5882%" y="1637" width="0.0384%" height="15" fill="rgb(236,61,23)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (9 samples, 0.04%)</title><rect x="47.5882%" y="1621" width="0.0384%" height="15" fill="rgb(216,187,2)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1631.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (9 samples, 0.04%)</title><rect x="47.5882%" y="1605" width="0.0384%" height="15" fill="rgb(250,135,46)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (9 samples, 0.04%)</title><rect x="47.5882%" y="1589" width="0.0384%" height="15" fill="rgb(205,93,28)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1599.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (9 samples, 0.04%)</title><rect x="47.5882%" y="1573" width="0.0384%" height="15" fill="rgb(213,64,20)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1583.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="47.5882%" y="1557" width="0.0384%" height="15" fill="rgb(229,128,11)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (9 samples, 0.04%)</title><rect x="47.5882%" y="1541" width="0.0384%" height="15" fill="rgb(227,81,46)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1551.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (9 samples, 0.04%)</title><rect x="47.5882%" y="1525" width="0.0384%" height="15" fill="rgb(245,125,40)" fg:x="11168" fg:w="9"/><text x="47.8382%" y="1535.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.6266%" y="2357" width="0.0128%" height="15" fill="rgb(236,158,45)" fg:x="11177" fg:w="3"/><text x="47.8766%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.6266%" y="2341" width="0.0128%" height="15" fill="rgb(220,228,11)" fg:x="11177" fg:w="3"/><text x="47.8766%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.6266%" y="2325" width="0.0128%" height="15" fill="rgb(250,62,49)" fg:x="11177" fg:w="3"/><text x="47.8766%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.6266%" y="2309" width="0.0128%" height="15" fill="rgb(243,38,48)" fg:x="11177" fg:w="3"/><text x="47.8766%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.6266%" y="2293" width="0.0128%" height="15" fill="rgb(209,196,43)" fg:x="11177" fg:w="3"/><text x="47.8766%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="47.6266%" y="2469" width="0.0213%" height="15" fill="rgb(238,109,46)" fg:x="11177" fg:w="5"/><text x="47.8766%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="47.6266%" y="2453" width="0.0213%" height="15" fill="rgb(216,228,9)" fg:x="11177" fg:w="5"/><text x="47.8766%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="47.6266%" y="2437" width="0.0213%" height="15" fill="rgb(211,31,15)" fg:x="11177" fg:w="5"/><text x="47.8766%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.6266%" y="2421" width="0.0213%" height="15" fill="rgb(218,116,5)" fg:x="11177" fg:w="5"/><text x="47.8766%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="47.6266%" y="2405" width="0.0213%" height="15" fill="rgb(224,19,29)" fg:x="11177" fg:w="5"/><text x="47.8766%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.6266%" y="2389" width="0.0213%" height="15" fill="rgb(243,204,14)" fg:x="11177" fg:w="5"/><text x="47.8766%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="47.6266%" y="2373" width="0.0213%" height="15" fill="rgb(222,221,22)" fg:x="11177" fg:w="5"/><text x="47.8766%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="47.6564%" y="2005" width="0.0170%" height="15" fill="rgb(223,38,39)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="2015.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="47.6564%" y="1989" width="0.0170%" height="15" fill="rgb(224,116,40)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="47.6564%" y="1973" width="0.0170%" height="15" fill="rgb(211,200,34)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1983.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="47.6564%" y="1957" width="0.0170%" height="15" fill="rgb(211,156,31)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1967.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="47.6564%" y="1941" width="0.0170%" height="15" fill="rgb(234,221,53)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1951.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="47.6564%" y="1925" width="0.0170%" height="15" fill="rgb(220,5,25)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1935.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="47.6564%" y="1909" width="0.0170%" height="15" fill="rgb(246,42,5)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="47.6564%" y="1893" width="0.0170%" height="15" fill="rgb(236,227,54)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1903.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="47.6564%" y="1877" width="0.0170%" height="15" fill="rgb(221,130,3)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1887.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="47.6564%" y="1861" width="0.0170%" height="15" fill="rgb(234,207,52)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1871.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="47.6564%" y="1845" width="0.0170%" height="15" fill="rgb(237,111,4)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1855.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="47.6564%" y="1829" width="0.0170%" height="15" fill="rgb(226,125,29)" fg:x="11184" fg:w="4"/><text x="47.9064%" y="1839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="47.6564%" y="2069" width="0.0341%" height="15" fill="rgb(235,86,18)" fg:x="11184" fg:w="8"/><text x="47.9064%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="47.6564%" y="2053" width="0.0341%" height="15" fill="rgb(216,165,7)" fg:x="11184" fg:w="8"/><text x="47.9064%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="47.6564%" y="2037" width="0.0341%" height="15" fill="rgb(225,215,37)" fg:x="11184" fg:w="8"/><text x="47.9064%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="47.6564%" y="2021" width="0.0341%" height="15" fill="rgb(215,137,13)" fg:x="11184" fg:w="8"/><text x="47.9064%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.6734%" y="2005" width="0.0170%" height="15" fill="rgb(238,179,4)" fg:x="11188" fg:w="4"/><text x="47.9234%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.6734%" y="1989" width="0.0170%" height="15" fill="rgb(248,212,51)" fg:x="11188" fg:w="4"/><text x="47.9234%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.6734%" y="1973" width="0.0170%" height="15" fill="rgb(233,69,18)" fg:x="11188" fg:w="4"/><text x="47.9234%" y="1983.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.6905%" y="1765" width="0.0128%" height="15" fill="rgb(231,207,29)" fg:x="11192" fg:w="3"/><text x="47.9405%" y="1775.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="47.6905%" y="1749" width="0.0128%" height="15" fill="rgb(209,100,41)" fg:x="11192" fg:w="3"/><text x="47.9405%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="47.6905%" y="1733" width="0.0128%" height="15" fill="rgb(232,62,3)" fg:x="11192" fg:w="3"/><text x="47.9405%" y="1743.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="47.6905%" y="1717" width="0.0128%" height="15" fill="rgb(226,125,42)" fg:x="11192" fg:w="3"/><text x="47.9405%" y="1727.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="47.6905%" y="1701" width="0.0128%" height="15" fill="rgb(212,207,51)" fg:x="11192" fg:w="3"/><text x="47.9405%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="47.6905%" y="1941" width="0.0170%" height="15" fill="rgb(239,105,49)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="47.6905%" y="1925" width="0.0170%" height="15" fill="rgb(254,139,2)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="47.6905%" y="1909" width="0.0170%" height="15" fill="rgb(209,69,38)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="47.6905%" y="1893" width="0.0170%" height="15" fill="rgb(220,3,39)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="47.6905%" y="1877" width="0.0170%" height="15" fill="rgb(222,59,33)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="47.6905%" y="1861" width="0.0170%" height="15" fill="rgb(254,25,29)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="47.6905%" y="1845" width="0.0170%" height="15" fill="rgb(248,88,26)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="47.6905%" y="1829" width="0.0170%" height="15" fill="rgb(229,122,47)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="47.6905%" y="1813" width="0.0170%" height="15" fill="rgb(233,60,34)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="47.6905%" y="1797" width="0.0170%" height="15" fill="rgb(218,209,13)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="47.6905%" y="1781" width="0.0170%" height="15" fill="rgb(218,142,14)" fg:x="11192" fg:w="4"/><text x="47.9405%" y="1791.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.7075%" y="1893" width="0.0128%" height="15" fill="rgb(232,116,31)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.7075%" y="1877" width="0.0128%" height="15" fill="rgb(251,12,14)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.7075%" y="1861" width="0.0128%" height="15" fill="rgb(245,83,10)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7075%" y="1845" width="0.0128%" height="15" fill="rgb(236,80,5)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.7075%" y="1829" width="0.0128%" height="15" fill="rgb(248,41,20)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1839.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.7075%" y="1813" width="0.0128%" height="15" fill="rgb(233,19,27)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.7075%" y="1797" width="0.0128%" height="15" fill="rgb(216,30,50)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1807.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.7075%" y="1781" width="0.0128%" height="15" fill="rgb(247,47,25)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1791.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.7075%" y="1765" width="0.0128%" height="15" fill="rgb(254,25,51)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1775.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.7075%" y="1749" width="0.0128%" height="15" fill="rgb(254,92,32)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1759.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.7075%" y="1733" width="0.0128%" height="15" fill="rgb(249,132,33)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.7075%" y="1717" width="0.0128%" height="15" fill="rgb(233,88,44)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1727.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.7075%" y="1701" width="0.0128%" height="15" fill="rgb(210,131,45)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1711.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.7075%" y="1685" width="0.0128%" height="15" fill="rgb(232,149,0)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1695.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.7075%" y="1669" width="0.0128%" height="15" fill="rgb(222,164,49)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1679.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.7075%" y="1653" width="0.0128%" height="15" fill="rgb(230,176,3)" fg:x="11196" fg:w="3"/><text x="47.9575%" y="1663.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (17 samples, 0.07%)</title><rect x="47.6564%" y="2181" width="0.0724%" height="15" fill="rgb(236,5,5)" fg:x="11184" fg:w="17"/><text x="47.9064%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="47.6564%" y="2165" width="0.0724%" height="15" fill="rgb(231,173,23)" fg:x="11184" fg:w="17"/><text x="47.9064%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="47.6564%" y="2149" width="0.0724%" height="15" fill="rgb(247,51,44)" fg:x="11184" fg:w="17"/><text x="47.9064%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="47.6564%" y="2133" width="0.0724%" height="15" fill="rgb(206,96,39)" fg:x="11184" fg:w="17"/><text x="47.9064%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="47.6564%" y="2117" width="0.0724%" height="15" fill="rgb(212,68,42)" fg:x="11184" fg:w="17"/><text x="47.9064%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="47.6564%" y="2101" width="0.0724%" height="15" fill="rgb(242,104,38)" fg:x="11184" fg:w="17"/><text x="47.9064%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="47.6564%" y="2085" width="0.0724%" height="15" fill="rgb(252,126,23)" fg:x="11184" fg:w="17"/><text x="47.9064%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="47.6905%" y="2069" width="0.0384%" height="15" fill="rgb(235,226,52)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="47.6905%" y="2053" width="0.0384%" height="15" fill="rgb(250,80,50)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="2063.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="47.6905%" y="2037" width="0.0384%" height="15" fill="rgb(236,189,21)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="47.6905%" y="2021" width="0.0384%" height="15" fill="rgb(226,44,37)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="47.6905%" y="2005" width="0.0384%" height="15" fill="rgb(241,8,32)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="47.6905%" y="1989" width="0.0384%" height="15" fill="rgb(212,145,20)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.6905%" y="1973" width="0.0384%" height="15" fill="rgb(222,106,5)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.6905%" y="1957" width="0.0384%" height="15" fill="rgb(245,176,31)" fg:x="11192" fg:w="9"/><text x="47.9405%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="47.7075%" y="1941" width="0.0213%" height="15" fill="rgb(246,158,35)" fg:x="11196" fg:w="5"/><text x="47.9575%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.7075%" y="1925" width="0.0213%" height="15" fill="rgb(226,125,7)" fg:x="11196" fg:w="5"/><text x="47.9575%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="47.7075%" y="1909" width="0.0213%" height="15" fill="rgb(253,125,25)" fg:x="11196" fg:w="5"/><text x="47.9575%" y="1919.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="47.7288%" y="1893" width="0.0170%" height="15" fill="rgb(223,147,36)" fg:x="11201" fg:w="4"/><text x="47.9788%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7288%" y="1877" width="0.0170%" height="15" fill="rgb(210,92,15)" fg:x="11201" fg:w="4"/><text x="47.9788%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7288%" y="1861" width="0.0170%" height="15" fill="rgb(241,191,16)" fg:x="11201" fg:w="4"/><text x="47.9788%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.7288%" y="1845" width="0.0170%" height="15" fill="rgb(223,107,30)" fg:x="11201" fg:w="4"/><text x="47.9788%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.7288%" y="1829" width="0.0170%" height="15" fill="rgb(228,22,53)" fg:x="11201" fg:w="4"/><text x="47.9788%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.7288%" y="1813" width="0.0170%" height="15" fill="rgb(245,102,18)" fg:x="11201" fg:w="4"/><text x="47.9788%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7288%" y="1797" width="0.0170%" height="15" fill="rgb(210,184,18)" fg:x="11201" fg:w="4"/><text x="47.9788%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="47.7544%" y="1429" width="0.0170%" height="15" fill="rgb(233,40,13)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="47.7544%" y="1413" width="0.0170%" height="15" fill="rgb(207,163,47)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="47.7544%" y="1397" width="0.0170%" height="15" fill="rgb(223,177,17)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1407.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="47.7544%" y="1381" width="0.0170%" height="15" fill="rgb(208,49,17)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1391.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="47.7544%" y="1365" width="0.0170%" height="15" fill="rgb(218,122,40)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1375.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="47.7544%" y="1349" width="0.0170%" height="15" fill="rgb(230,75,13)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1359.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.7544%" y="1333" width="0.0170%" height="15" fill="rgb(247,14,40)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1343.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.7544%" y="1317" width="0.0170%" height="15" fill="rgb(216,2,1)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1327.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.7544%" y="1301" width="0.0170%" height="15" fill="rgb(247,41,10)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1311.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.7544%" y="1285" width="0.0170%" height="15" fill="rgb(208,33,15)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1295.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.7544%" y="1269" width="0.0170%" height="15" fill="rgb(230,156,1)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1279.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="1253" width="0.0170%" height="15" fill="rgb(221,68,15)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="1237" width="0.0170%" height="15" fill="rgb(246,89,42)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="1221" width="0.0170%" height="15" fill="rgb(205,214,24)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.7544%" y="1205" width="0.0170%" height="15" fill="rgb(218,27,4)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.7544%" y="1189" width="0.0170%" height="15" fill="rgb(254,157,21)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.7544%" y="1173" width="0.0170%" height="15" fill="rgb(239,37,2)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="1157" width="0.0170%" height="15" fill="rgb(241,12,13)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.7544%" y="1141" width="0.0170%" height="15" fill="rgb(225,133,44)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.7544%" y="1125" width="0.0170%" height="15" fill="rgb(212,35,19)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1135.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.7544%" y="1109" width="0.0170%" height="15" fill="rgb(249,119,12)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.7544%" y="1093" width="0.0170%" height="15" fill="rgb(219,100,18)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.7544%" y="1077" width="0.0170%" height="15" fill="rgb(239,205,46)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="1061" width="0.0170%" height="15" fill="rgb(214,200,5)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="1045" width="0.0170%" height="15" fill="rgb(225,203,54)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.7544%" y="1029" width="0.0170%" height="15" fill="rgb(240,222,54)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1039.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.7544%" y="1013" width="0.0170%" height="15" fill="rgb(233,14,8)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.7544%" y="997" width="0.0170%" height="15" fill="rgb(252,184,7)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="981" width="0.0170%" height="15" fill="rgb(246,103,16)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.7544%" y="965" width="0.0170%" height="15" fill="rgb(240,183,21)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="975.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.7544%" y="949" width="0.0170%" height="15" fill="rgb(233,189,31)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="959.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.7544%" y="933" width="0.0170%" height="15" fill="rgb(208,91,52)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="943.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.7544%" y="917" width="0.0170%" height="15" fill="rgb(210,207,37)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.7544%" y="901" width="0.0170%" height="15" fill="rgb(233,193,25)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="885" width="0.0170%" height="15" fill="rgb(213,51,33)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="869" width="0.0170%" height="15" fill="rgb(233,99,2)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.7544%" y="853" width="0.0170%" height="15" fill="rgb(206,49,43)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="863.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.7544%" y="837" width="0.0170%" height="15" fill="rgb(239,90,39)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.7544%" y="821" width="0.0170%" height="15" fill="rgb(238,31,45)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7544%" y="805" width="0.0170%" height="15" fill="rgb(215,107,7)" fg:x="11207" fg:w="4"/><text x="48.0044%" y="815.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="47.7714%" y="1253" width="0.0170%" height="15" fill="rgb(212,217,24)" fg:x="11211" fg:w="4"/><text x="48.0214%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7714%" y="1237" width="0.0170%" height="15" fill="rgb(224,89,37)" fg:x="11211" fg:w="4"/><text x="48.0214%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7714%" y="1221" width="0.0170%" height="15" fill="rgb(223,5,14)" fg:x="11211" fg:w="4"/><text x="48.0214%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.7714%" y="1205" width="0.0170%" height="15" fill="rgb(243,195,13)" fg:x="11211" fg:w="4"/><text x="48.0214%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.7714%" y="1189" width="0.0170%" height="15" fill="rgb(208,53,11)" fg:x="11211" fg:w="4"/><text x="48.0214%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.7714%" y="1173" width="0.0170%" height="15" fill="rgb(254,60,36)" fg:x="11211" fg:w="4"/><text x="48.0214%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.7714%" y="1157" width="0.0170%" height="15" fill="rgb(248,27,20)" fg:x="11211" fg:w="4"/><text x="48.0214%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="47.7544%" y="1717" width="0.0469%" height="15" fill="rgb(243,86,16)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="47.7544%" y="1701" width="0.0469%" height="15" fill="rgb(226,92,19)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="47.7544%" y="1685" width="0.0469%" height="15" fill="rgb(246,172,43)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1695.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="47.7544%" y="1669" width="0.0469%" height="15" fill="rgb(241,152,26)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1679.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="47.7544%" y="1653" width="0.0469%" height="15" fill="rgb(225,52,9)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1663.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="47.7544%" y="1637" width="0.0469%" height="15" fill="rgb(215,191,21)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1647.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="47.7544%" y="1621" width="0.0469%" height="15" fill="rgb(215,167,19)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1631.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="47.7544%" y="1605" width="0.0469%" height="15" fill="rgb(247,86,35)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1615.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="47.7544%" y="1589" width="0.0469%" height="15" fill="rgb(242,146,51)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1599.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="47.7544%" y="1573" width="0.0469%" height="15" fill="rgb(230,165,54)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1583.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="47.7544%" y="1557" width="0.0469%" height="15" fill="rgb(221,120,0)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1567.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="47.7544%" y="1541" width="0.0469%" height="15" fill="rgb(212,4,40)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="47.7544%" y="1525" width="0.0469%" height="15" fill="rgb(228,146,30)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="47.7544%" y="1509" width="0.0469%" height="15" fill="rgb(211,75,30)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="47.7544%" y="1493" width="0.0469%" height="15" fill="rgb(206,161,25)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="47.7544%" y="1477" width="0.0469%" height="15" fill="rgb(216,33,39)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="47.7544%" y="1461" width="0.0469%" height="15" fill="rgb(240,198,11)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="47.7544%" y="1445" width="0.0469%" height="15" fill="rgb(219,165,36)" fg:x="11207" fg:w="11"/><text x="48.0044%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="47.7714%" y="1429" width="0.0298%" height="15" fill="rgb(220,145,15)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="47.7714%" y="1413" width="0.0298%" height="15" fill="rgb(230,176,12)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1423.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="47.7714%" y="1397" width="0.0298%" height="15" fill="rgb(218,196,19)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="47.7714%" y="1381" width="0.0298%" height="15" fill="rgb(241,28,36)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="47.7714%" y="1365" width="0.0298%" height="15" fill="rgb(210,77,46)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="47.7714%" y="1349" width="0.0298%" height="15" fill="rgb(250,220,47)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="47.7714%" y="1333" width="0.0298%" height="15" fill="rgb(205,55,26)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.7714%" y="1317" width="0.0298%" height="15" fill="rgb(247,120,5)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="47.7714%" y="1301" width="0.0298%" height="15" fill="rgb(209,15,17)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.7714%" y="1285" width="0.0298%" height="15" fill="rgb(206,8,6)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="47.7714%" y="1269" width="0.0298%" height="15" fill="rgb(248,165,23)" fg:x="11211" fg:w="7"/><text x="48.0214%" y="1279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="47.7885%" y="1253" width="0.0128%" height="15" fill="rgb(225,130,10)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1263.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="47.7885%" y="1237" width="0.0128%" height="15" fill="rgb(213,181,16)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1247.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="47.7885%" y="1221" width="0.0128%" height="15" fill="rgb(221,129,14)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1231.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="47.7885%" y="1205" width="0.0128%" height="15" fill="rgb(218,208,43)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1215.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="47.7885%" y="1189" width="0.0128%" height="15" fill="rgb(234,85,31)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="47.7885%" y="1173" width="0.0128%" height="15" fill="rgb(225,219,32)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.7885%" y="1157" width="0.0128%" height="15" fill="rgb(230,75,19)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7885%" y="1141" width="0.0128%" height="15" fill="rgb(213,27,23)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1151.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="47.7885%" y="1125" width="0.0128%" height="15" fill="rgb(244,120,50)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.7885%" y="1109" width="0.0128%" height="15" fill="rgb(240,123,0)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="47.7885%" y="1093" width="0.0128%" height="15" fill="rgb(221,54,45)" fg:x="11215" fg:w="3"/><text x="48.0385%" y="1103.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.8055%" y="1205" width="0.0128%" height="15" fill="rgb(250,13,12)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8055%" y="1189" width="0.0128%" height="15" fill="rgb(254,77,9)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8055%" y="1173" width="0.0128%" height="15" fill="rgb(205,134,11)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8055%" y="1157" width="0.0128%" height="15" fill="rgb(206,154,12)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.8055%" y="1141" width="0.0128%" height="15" fill="rgb(217,200,49)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1151.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.8055%" y="1125" width="0.0128%" height="15" fill="rgb(240,33,36)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.8055%" y="1109" width="0.0128%" height="15" fill="rgb(250,213,43)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1119.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.8055%" y="1093" width="0.0128%" height="15" fill="rgb(212,70,40)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1103.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.8055%" y="1077" width="0.0128%" height="15" fill="rgb(206,157,13)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1087.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.8055%" y="1061" width="0.0128%" height="15" fill="rgb(233,32,44)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1071.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.8055%" y="1045" width="0.0128%" height="15" fill="rgb(254,17,20)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1055.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8055%" y="1029" width="0.0128%" height="15" fill="rgb(229,16,28)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1039.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.8055%" y="1013" width="0.0128%" height="15" fill="rgb(216,225,46)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1023.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.8055%" y="997" width="0.0128%" height="15" fill="rgb(241,162,3)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="1007.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8055%" y="981" width="0.0128%" height="15" fill="rgb(230,180,39)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="991.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.8055%" y="965" width="0.0128%" height="15" fill="rgb(250,189,23)" fg:x="11219" fg:w="3"/><text x="48.0555%" y="975.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="47.8055%" y="1317" width="0.0213%" height="15" fill="rgb(208,223,50)" fg:x="11219" fg:w="5"/><text x="48.0555%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8055%" y="1301" width="0.0213%" height="15" fill="rgb(254,59,54)" fg:x="11219" fg:w="5"/><text x="48.0555%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8055%" y="1285" width="0.0213%" height="15" fill="rgb(247,60,53)" fg:x="11219" fg:w="5"/><text x="48.0555%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.8055%" y="1269" width="0.0213%" height="15" fill="rgb(250,38,49)" fg:x="11219" fg:w="5"/><text x="48.0555%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="47.8055%" y="1253" width="0.0213%" height="15" fill="rgb(220,13,51)" fg:x="11219" fg:w="5"/><text x="48.0555%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.8055%" y="1237" width="0.0213%" height="15" fill="rgb(229,221,9)" fg:x="11219" fg:w="5"/><text x="48.0555%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8055%" y="1221" width="0.0213%" height="15" fill="rgb(242,119,36)" fg:x="11219" fg:w="5"/><text x="48.0555%" y="1231.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.8268%" y="1141" width="0.0128%" height="15" fill="rgb(247,119,31)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8268%" y="1125" width="0.0128%" height="15" fill="rgb(232,152,41)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8268%" y="1109" width="0.0128%" height="15" fill="rgb(254,100,49)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8268%" y="1093" width="0.0128%" height="15" fill="rgb(237,87,24)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.8268%" y="1077" width="0.0128%" height="15" fill="rgb(224,170,26)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1087.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.8268%" y="1061" width="0.0128%" height="15" fill="rgb(213,103,49)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.8268%" y="1045" width="0.0128%" height="15" fill="rgb(230,80,6)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1055.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.8268%" y="1029" width="0.0128%" height="15" fill="rgb(215,12,20)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1039.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.8268%" y="1013" width="0.0128%" height="15" fill="rgb(233,124,25)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1023.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.8268%" y="997" width="0.0128%" height="15" fill="rgb(206,8,0)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="1007.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.8268%" y="981" width="0.0128%" height="15" fill="rgb(242,186,43)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="991.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8268%" y="965" width="0.0128%" height="15" fill="rgb(241,115,29)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="975.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.8268%" y="949" width="0.0128%" height="15" fill="rgb(251,187,38)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="959.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.8268%" y="933" width="0.0128%" height="15" fill="rgb(253,220,0)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="943.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8268%" y="917" width="0.0128%" height="15" fill="rgb(242,38,32)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="927.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.8268%" y="901" width="0.0128%" height="15" fill="rgb(213,86,48)" fg:x="11224" fg:w="3"/><text x="48.0768%" y="911.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="47.8055%" y="1429" width="0.0426%" height="15" fill="rgb(233,76,19)" fg:x="11219" fg:w="10"/><text x="48.0555%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="47.8055%" y="1413" width="0.0426%" height="15" fill="rgb(252,82,40)" fg:x="11219" fg:w="10"/><text x="48.0555%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="47.8055%" y="1397" width="0.0426%" height="15" fill="rgb(221,155,17)" fg:x="11219" fg:w="10"/><text x="48.0555%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="47.8055%" y="1381" width="0.0426%" height="15" fill="rgb(249,194,24)" fg:x="11219" fg:w="10"/><text x="48.0555%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="47.8055%" y="1365" width="0.0426%" height="15" fill="rgb(238,70,40)" fg:x="11219" fg:w="10"/><text x="48.0555%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="47.8055%" y="1349" width="0.0426%" height="15" fill="rgb(213,30,21)" fg:x="11219" fg:w="10"/><text x="48.0555%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="47.8055%" y="1333" width="0.0426%" height="15" fill="rgb(222,215,19)" fg:x="11219" fg:w="10"/><text x="48.0555%" y="1343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="47.8268%" y="1317" width="0.0213%" height="15" fill="rgb(211,207,53)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1327.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="47.8268%" y="1301" width="0.0213%" height="15" fill="rgb(236,3,0)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1311.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="47.8268%" y="1285" width="0.0213%" height="15" fill="rgb(231,227,15)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1295.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="47.8268%" y="1269" width="0.0213%" height="15" fill="rgb(231,153,22)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="47.8268%" y="1253" width="0.0213%" height="15" fill="rgb(241,47,26)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8268%" y="1237" width="0.0213%" height="15" fill="rgb(217,58,39)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8268%" y="1221" width="0.0213%" height="15" fill="rgb(235,172,30)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.8268%" y="1205" width="0.0213%" height="15" fill="rgb(228,20,21)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="47.8268%" y="1189" width="0.0213%" height="15" fill="rgb(246,67,32)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.8268%" y="1173" width="0.0213%" height="15" fill="rgb(229,87,5)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8268%" y="1157" width="0.0213%" height="15" fill="rgb(228,82,44)" fg:x="11224" fg:w="5"/><text x="48.0768%" y="1167.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.8481%" y="1141" width="0.0128%" height="15" fill="rgb(216,45,10)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8481%" y="1125" width="0.0128%" height="15" fill="rgb(225,213,25)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8481%" y="1109" width="0.0128%" height="15" fill="rgb(241,58,27)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8481%" y="1093" width="0.0128%" height="15" fill="rgb(226,143,22)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.8481%" y="1077" width="0.0128%" height="15" fill="rgb(219,166,12)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1087.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.8481%" y="1061" width="0.0128%" height="15" fill="rgb(247,61,40)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.8481%" y="1045" width="0.0128%" height="15" fill="rgb(238,168,43)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1055.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.8481%" y="1029" width="0.0128%" height="15" fill="rgb(216,178,31)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1039.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.8481%" y="1013" width="0.0128%" height="15" fill="rgb(216,194,16)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1023.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.8481%" y="997" width="0.0128%" height="15" fill="rgb(221,53,16)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="1007.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.8481%" y="981" width="0.0128%" height="15" fill="rgb(219,152,5)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="991.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8481%" y="965" width="0.0128%" height="15" fill="rgb(241,216,45)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="975.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.8481%" y="949" width="0.0128%" height="15" fill="rgb(244,168,54)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="959.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.8481%" y="933" width="0.0128%" height="15" fill="rgb(230,148,46)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="943.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8481%" y="917" width="0.0128%" height="15" fill="rgb(226,69,5)" fg:x="11229" fg:w="3"/><text x="48.0981%" y="927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="47.8481%" y="1253" width="0.0213%" height="15" fill="rgb(215,103,20)" fg:x="11229" fg:w="5"/><text x="48.0981%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8481%" y="1237" width="0.0213%" height="15" fill="rgb(232,31,6)" fg:x="11229" fg:w="5"/><text x="48.0981%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8481%" y="1221" width="0.0213%" height="15" fill="rgb(231,115,29)" fg:x="11229" fg:w="5"/><text x="48.0981%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.8481%" y="1205" width="0.0213%" height="15" fill="rgb(215,206,10)" fg:x="11229" fg:w="5"/><text x="48.0981%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="47.8481%" y="1189" width="0.0213%" height="15" fill="rgb(224,36,49)" fg:x="11229" fg:w="5"/><text x="48.0981%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.8481%" y="1173" width="0.0213%" height="15" fill="rgb(216,138,32)" fg:x="11229" fg:w="5"/><text x="48.0981%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8481%" y="1157" width="0.0213%" height="15" fill="rgb(225,82,19)" fg:x="11229" fg:w="5"/><text x="48.0981%" y="1167.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (19 samples, 0.08%)</title><rect x="47.8055%" y="1541" width="0.0810%" height="15" fill="rgb(234,97,51)" fg:x="11219" fg:w="19"/><text x="48.0555%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (19 samples, 0.08%)</title><rect x="47.8055%" y="1525" width="0.0810%" height="15" fill="rgb(227,12,8)" fg:x="11219" fg:w="19"/><text x="48.0555%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="47.8055%" y="1509" width="0.0810%" height="15" fill="rgb(250,108,36)" fg:x="11219" fg:w="19"/><text x="48.0555%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="47.8055%" y="1493" width="0.0810%" height="15" fill="rgb(229,85,48)" fg:x="11219" fg:w="19"/><text x="48.0555%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="47.8055%" y="1477" width="0.0810%" height="15" fill="rgb(207,42,22)" fg:x="11219" fg:w="19"/><text x="48.0555%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="47.8055%" y="1461" width="0.0810%" height="15" fill="rgb(207,175,50)" fg:x="11219" fg:w="19"/><text x="48.0555%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="47.8055%" y="1445" width="0.0810%" height="15" fill="rgb(242,98,35)" fg:x="11219" fg:w="19"/><text x="48.0555%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="47.8481%" y="1429" width="0.0384%" height="15" fill="rgb(243,229,51)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="47.8481%" y="1413" width="0.0384%" height="15" fill="rgb(216,7,29)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1423.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="47.8481%" y="1397" width="0.0384%" height="15" fill="rgb(222,52,8)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="47.8481%" y="1381" width="0.0384%" height="15" fill="rgb(243,131,8)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="47.8481%" y="1365" width="0.0384%" height="15" fill="rgb(227,170,1)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="47.8481%" y="1349" width="0.0384%" height="15" fill="rgb(239,184,36)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="47.8481%" y="1333" width="0.0384%" height="15" fill="rgb(238,43,12)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.8481%" y="1317" width="0.0384%" height="15" fill="rgb(222,83,32)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="47.8481%" y="1301" width="0.0384%" height="15" fill="rgb(219,38,20)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="47.8481%" y="1285" width="0.0384%" height="15" fill="rgb(231,195,54)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="47.8481%" y="1269" width="0.0384%" height="15" fill="rgb(208,121,48)" fg:x="11229" fg:w="9"/><text x="48.0981%" y="1279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="47.8694%" y="1253" width="0.0170%" height="15" fill="rgb(246,10,23)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1263.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="47.8694%" y="1237" width="0.0170%" height="15" fill="rgb(216,154,34)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1247.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="47.8694%" y="1221" width="0.0170%" height="15" fill="rgb(227,75,8)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1231.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="47.8694%" y="1205" width="0.0170%" height="15" fill="rgb(232,84,24)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1215.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="47.8694%" y="1189" width="0.0170%" height="15" fill="rgb(229,82,49)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="47.8694%" y="1173" width="0.0170%" height="15" fill="rgb(228,40,46)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="47.8694%" y="1157" width="0.0170%" height="15" fill="rgb(236,61,7)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.8694%" y="1141" width="0.0170%" height="15" fill="rgb(216,29,23)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1151.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="47.8694%" y="1125" width="0.0170%" height="15" fill="rgb(206,8,12)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.8694%" y="1109" width="0.0170%" height="15" fill="rgb(238,110,51)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="47.8694%" y="1093" width="0.0170%" height="15" fill="rgb(220,144,47)" fg:x="11234" fg:w="4"/><text x="48.1194%" y="1103.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="47.8865%" y="1253" width="0.0213%" height="15" fill="rgb(210,227,47)" fg:x="11238" fg:w="5"/><text x="48.1365%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8865%" y="1237" width="0.0213%" height="15" fill="rgb(246,176,0)" fg:x="11238" fg:w="5"/><text x="48.1365%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8865%" y="1221" width="0.0213%" height="15" fill="rgb(223,103,42)" fg:x="11238" fg:w="5"/><text x="48.1365%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.8865%" y="1205" width="0.0213%" height="15" fill="rgb(253,162,38)" fg:x="11238" fg:w="5"/><text x="48.1365%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="47.8865%" y="1189" width="0.0213%" height="15" fill="rgb(246,156,41)" fg:x="11238" fg:w="5"/><text x="48.1365%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.8865%" y="1173" width="0.0213%" height="15" fill="rgb(254,219,40)" fg:x="11238" fg:w="5"/><text x="48.1365%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="47.8865%" y="1157" width="0.0213%" height="15" fill="rgb(206,12,26)" fg:x="11238" fg:w="5"/><text x="48.1365%" y="1167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="47.8950%" y="1141" width="0.0128%" height="15" fill="rgb(229,166,24)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="47.8950%" y="1125" width="0.0128%" height="15" fill="rgb(234,59,51)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1135.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="47.8950%" y="1109" width="0.0128%" height="15" fill="rgb(227,52,24)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="47.8950%" y="1093" width="0.0128%" height="15" fill="rgb(212,164,25)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="47.8950%" y="1077" width="0.0128%" height="15" fill="rgb(221,126,18)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8950%" y="1061" width="0.0128%" height="15" fill="rgb(216,198,37)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8950%" y="1045" width="0.0128%" height="15" fill="rgb(221,52,32)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8950%" y="1029" width="0.0128%" height="15" fill="rgb(241,128,1)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.8950%" y="1013" width="0.0128%" height="15" fill="rgb(238,26,47)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1023.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.8950%" y="997" width="0.0128%" height="15" fill="rgb(209,2,16)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.8950%" y="981" width="0.0128%" height="15" fill="rgb(230,106,26)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="991.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.8950%" y="965" width="0.0128%" height="15" fill="rgb(229,167,52)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="975.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.8950%" y="949" width="0.0128%" height="15" fill="rgb(223,150,35)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="959.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.8950%" y="933" width="0.0128%" height="15" fill="rgb(233,224,17)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="943.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.8950%" y="917" width="0.0128%" height="15" fill="rgb(217,207,44)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="927.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8950%" y="901" width="0.0128%" height="15" fill="rgb(232,125,5)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.8950%" y="885" width="0.0128%" height="15" fill="rgb(237,23,46)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="895.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.8950%" y="869" width="0.0128%" height="15" fill="rgb(210,126,22)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="879.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.8950%" y="853" width="0.0128%" height="15" fill="rgb(207,80,2)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="863.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.8950%" y="837" width="0.0128%" height="15" fill="rgb(214,222,4)" fg:x="11240" fg:w="3"/><text x="48.1450%" y="847.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="47.8865%" y="1365" width="0.0341%" height="15" fill="rgb(210,21,13)" fg:x="11238" fg:w="8"/><text x="48.1365%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="47.8865%" y="1349" width="0.0341%" height="15" fill="rgb(248,88,25)" fg:x="11238" fg:w="8"/><text x="48.1365%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="47.8865%" y="1333" width="0.0341%" height="15" fill="rgb(237,19,29)" fg:x="11238" fg:w="8"/><text x="48.1365%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="47.8865%" y="1317" width="0.0341%" height="15" fill="rgb(240,220,54)" fg:x="11238" fg:w="8"/><text x="48.1365%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="47.8865%" y="1301" width="0.0341%" height="15" fill="rgb(223,201,36)" fg:x="11238" fg:w="8"/><text x="48.1365%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="47.8865%" y="1285" width="0.0341%" height="15" fill="rgb(237,0,36)" fg:x="11238" fg:w="8"/><text x="48.1365%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="47.8865%" y="1269" width="0.0341%" height="15" fill="rgb(207,218,7)" fg:x="11238" fg:w="8"/><text x="48.1365%" y="1279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="47.9078%" y="1253" width="0.0128%" height="15" fill="rgb(238,75,1)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1263.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="47.9078%" y="1237" width="0.0128%" height="15" fill="rgb(249,100,32)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1247.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="47.9078%" y="1221" width="0.0128%" height="15" fill="rgb(252,3,9)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1231.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="47.9078%" y="1205" width="0.0128%" height="15" fill="rgb(238,101,43)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1215.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="47.9078%" y="1189" width="0.0128%" height="15" fill="rgb(243,217,24)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9078%" y="1173" width="0.0128%" height="15" fill="rgb(240,58,23)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9078%" y="1157" width="0.0128%" height="15" fill="rgb(248,15,4)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.9078%" y="1141" width="0.0128%" height="15" fill="rgb(220,195,41)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1151.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="47.9078%" y="1125" width="0.0128%" height="15" fill="rgb(205,184,45)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.9078%" y="1109" width="0.0128%" height="15" fill="rgb(251,166,18)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9078%" y="1093" width="0.0128%" height="15" fill="rgb(223,8,5)" fg:x="11243" fg:w="3"/><text x="48.1578%" y="1103.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="47.9206%" y="1077" width="0.0128%" height="15" fill="rgb(205,60,28)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9206%" y="1061" width="0.0128%" height="15" fill="rgb(219,209,0)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9206%" y="1045" width="0.0128%" height="15" fill="rgb(226,67,17)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.9206%" y="1029" width="0.0128%" height="15" fill="rgb(209,220,19)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.9206%" y="1013" width="0.0128%" height="15" fill="rgb(208,14,41)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="1023.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.9206%" y="997" width="0.0128%" height="15" fill="rgb(253,203,46)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.9206%" y="981" width="0.0128%" height="15" fill="rgb(249,46,0)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="991.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.9206%" y="965" width="0.0128%" height="15" fill="rgb(212,106,33)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="975.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.9206%" y="949" width="0.0128%" height="15" fill="rgb(232,52,11)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="959.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.9206%" y="933" width="0.0128%" height="15" fill="rgb(245,87,50)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="943.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.9206%" y="917" width="0.0128%" height="15" fill="rgb(226,30,11)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="927.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9206%" y="901" width="0.0128%" height="15" fill="rgb(211,61,22)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="911.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.9206%" y="885" width="0.0128%" height="15" fill="rgb(237,124,0)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="895.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.9206%" y="869" width="0.0128%" height="15" fill="rgb(240,90,44)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="879.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9206%" y="853" width="0.0128%" height="15" fill="rgb(220,163,33)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="863.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.9206%" y="837" width="0.0128%" height="15" fill="rgb(211,218,20)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="847.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="47.9206%" y="821" width="0.0128%" height="15" fill="rgb(233,23,21)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="831.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="47.9206%" y="805" width="0.0128%" height="15" fill="rgb(229,90,20)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="815.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="47.9206%" y="789" width="0.0128%" height="15" fill="rgb(205,216,19)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="799.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="47.9206%" y="773" width="0.0128%" height="15" fill="rgb(222,165,4)" fg:x="11246" fg:w="3"/><text x="48.1706%" y="783.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="47.9206%" y="1189" width="0.0213%" height="15" fill="rgb(238,212,30)" fg:x="11246" fg:w="5"/><text x="48.1706%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="47.9206%" y="1173" width="0.0213%" height="15" fill="rgb(212,26,33)" fg:x="11246" fg:w="5"/><text x="48.1706%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="47.9206%" y="1157" width="0.0213%" height="15" fill="rgb(244,184,3)" fg:x="11246" fg:w="5"/><text x="48.1706%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.9206%" y="1141" width="0.0213%" height="15" fill="rgb(218,121,52)" fg:x="11246" fg:w="5"/><text x="48.1706%" y="1151.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="47.9206%" y="1125" width="0.0213%" height="15" fill="rgb(217,45,45)" fg:x="11246" fg:w="5"/><text x="48.1706%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.9206%" y="1109" width="0.0213%" height="15" fill="rgb(219,44,29)" fg:x="11246" fg:w="5"/><text x="48.1706%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="47.9206%" y="1093" width="0.0213%" height="15" fill="rgb(225,96,30)" fg:x="11246" fg:w="5"/><text x="48.1706%" y="1103.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (52 samples, 0.22%)</title><rect x="47.7288%" y="2181" width="0.2216%" height="15" fill="rgb(244,112,54)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (52 samples, 0.22%)</title><rect x="47.7288%" y="2165" width="0.2216%" height="15" fill="rgb(229,11,17)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2175.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (52 samples, 0.22%)</title><rect x="47.7288%" y="2149" width="0.2216%" height="15" fill="rgb(206,53,1)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2159.50"></text></g><g><title>rayon_core::job::JobRef::execute (52 samples, 0.22%)</title><rect x="47.7288%" y="2133" width="0.2216%" height="15" fill="rgb(242,19,19)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2143.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (52 samples, 0.22%)</title><rect x="47.7288%" y="2117" width="0.2216%" height="15" fill="rgb(215,14,51)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2127.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (52 samples, 0.22%)</title><rect x="47.7288%" y="2101" width="0.2216%" height="15" fill="rgb(242,42,39)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2111.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (52 samples, 0.22%)</title><rect x="47.7288%" y="2085" width="0.2216%" height="15" fill="rgb(246,61,21)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2095.50"></text></g><g><title>std::panic::catch_unwind (52 samples, 0.22%)</title><rect x="47.7288%" y="2069" width="0.2216%" height="15" fill="rgb(208,165,23)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2079.50"></text></g><g><title>std::panicking::try (52 samples, 0.22%)</title><rect x="47.7288%" y="2053" width="0.2216%" height="15" fill="rgb(213,130,41)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2063.50"></text></g><g><title>std::panicking::try::do_call (52 samples, 0.22%)</title><rect x="47.7288%" y="2037" width="0.2216%" height="15" fill="rgb(240,159,11)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2047.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (52 samples, 0.22%)</title><rect x="47.7288%" y="2021" width="0.2216%" height="15" fill="rgb(217,3,53)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2031.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (52 samples, 0.22%)</title><rect x="47.7288%" y="2005" width="0.2216%" height="15" fill="rgb(237,222,7)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (52 samples, 0.22%)</title><rect x="47.7288%" y="1989" width="0.2216%" height="15" fill="rgb(220,152,47)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (52 samples, 0.22%)</title><rect x="47.7288%" y="1973" width="0.2216%" height="15" fill="rgb(237,180,9)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.22%)</title><rect x="47.7288%" y="1957" width="0.2216%" height="15" fill="rgb(233,131,1)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (52 samples, 0.22%)</title><rect x="47.7288%" y="1941" width="0.2216%" height="15" fill="rgb(224,71,32)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.22%)</title><rect x="47.7288%" y="1925" width="0.2216%" height="15" fill="rgb(221,124,53)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (52 samples, 0.22%)</title><rect x="47.7288%" y="1909" width="0.2216%" height="15" fill="rgb(221,54,41)" fg:x="11201" fg:w="52"/><text x="47.9788%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (48 samples, 0.20%)</title><rect x="47.7459%" y="1893" width="0.2045%" height="15" fill="rgb(234,97,33)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (48 samples, 0.20%)</title><rect x="47.7459%" y="1877" width="0.2045%" height="15" fill="rgb(252,213,0)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1887.50"></text></g><g><title>std::panicking::try (48 samples, 0.20%)</title><rect x="47.7459%" y="1861" width="0.2045%" height="15" fill="rgb(232,108,12)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (48 samples, 0.20%)</title><rect x="47.7459%" y="1845" width="0.2045%" height="15" fill="rgb(249,162,35)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (48 samples, 0.20%)</title><rect x="47.7459%" y="1829" width="0.2045%" height="15" fill="rgb(243,162,51)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (48 samples, 0.20%)</title><rect x="47.7459%" y="1813" width="0.2045%" height="15" fill="rgb(238,171,38)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (48 samples, 0.20%)</title><rect x="47.7459%" y="1797" width="0.2045%" height="15" fill="rgb(248,206,33)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.20%)</title><rect x="47.7459%" y="1781" width="0.2045%" height="15" fill="rgb(245,201,44)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (48 samples, 0.20%)</title><rect x="47.7459%" y="1765" width="0.2045%" height="15" fill="rgb(205,169,25)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.20%)</title><rect x="47.7459%" y="1749" width="0.2045%" height="15" fill="rgb(244,21,26)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (48 samples, 0.20%)</title><rect x="47.7459%" y="1733" width="0.2045%" height="15" fill="rgb(253,10,30)" fg:x="11205" fg:w="48"/><text x="47.9959%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (35 samples, 0.15%)</title><rect x="47.8013%" y="1717" width="0.1491%" height="15" fill="rgb(218,44,22)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (35 samples, 0.15%)</title><rect x="47.8013%" y="1701" width="0.1491%" height="15" fill="rgb(229,167,6)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1711.50"></text></g><g><title>std::panicking::try (35 samples, 0.15%)</title><rect x="47.8013%" y="1685" width="0.1491%" height="15" fill="rgb(218,194,7)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (35 samples, 0.15%)</title><rect x="47.8013%" y="1669" width="0.1491%" height="15" fill="rgb(211,32,36)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (35 samples, 0.15%)</title><rect x="47.8013%" y="1653" width="0.1491%" height="15" fill="rgb(242,76,28)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (35 samples, 0.15%)</title><rect x="47.8013%" y="1637" width="0.1491%" height="15" fill="rgb(234,185,31)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (35 samples, 0.15%)</title><rect x="47.8013%" y="1621" width="0.1491%" height="15" fill="rgb(209,6,37)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.15%)</title><rect x="47.8013%" y="1605" width="0.1491%" height="15" fill="rgb(227,64,8)" fg:x="11218" fg:w="35"/><text x="48.0513%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (34 samples, 0.14%)</title><rect x="47.8055%" y="1589" width="0.1449%" height="15" fill="rgb(222,151,2)" fg:x="11219" fg:w="34"/><text x="48.0555%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.14%)</title><rect x="47.8055%" y="1573" width="0.1449%" height="15" fill="rgb(249,229,52)" fg:x="11219" fg:w="34"/><text x="48.0555%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (34 samples, 0.14%)</title><rect x="47.8055%" y="1557" width="0.1449%" height="15" fill="rgb(233,104,40)" fg:x="11219" fg:w="34"/><text x="48.0555%" y="1567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="47.8865%" y="1541" width="0.0639%" height="15" fill="rgb(222,224,19)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1551.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="47.8865%" y="1525" width="0.0639%" height="15" fill="rgb(242,166,36)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1535.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="47.8865%" y="1509" width="0.0639%" height="15" fill="rgb(249,69,0)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1519.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="47.8865%" y="1493" width="0.0639%" height="15" fill="rgb(250,96,6)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="47.8865%" y="1477" width="0.0639%" height="15" fill="rgb(227,40,4)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="47.8865%" y="1461" width="0.0639%" height="15" fill="rgb(226,25,20)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="47.8865%" y="1445" width="0.0639%" height="15" fill="rgb(252,65,27)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="47.8865%" y="1429" width="0.0639%" height="15" fill="rgb(235,202,31)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1439.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="47.8865%" y="1413" width="0.0639%" height="15" fill="rgb(248,2,42)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1423.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="47.8865%" y="1397" width="0.0639%" height="15" fill="rgb(209,184,32)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="47.8865%" y="1381" width="0.0639%" height="15" fill="rgb(245,85,41)" fg:x="11238" fg:w="15"/><text x="48.1365%" y="1391.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="47.9206%" y="1365" width="0.0298%" height="15" fill="rgb(240,154,32)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1375.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="47.9206%" y="1349" width="0.0298%" height="15" fill="rgb(245,15,43)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1359.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="47.9206%" y="1333" width="0.0298%" height="15" fill="rgb(225,188,49)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1343.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="47.9206%" y="1317" width="0.0298%" height="15" fill="rgb(221,217,7)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1327.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="47.9206%" y="1301" width="0.0298%" height="15" fill="rgb(254,135,8)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="47.9206%" y="1285" width="0.0298%" height="15" fill="rgb(235,187,15)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="47.9206%" y="1269" width="0.0298%" height="15" fill="rgb(234,57,28)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.9206%" y="1253" width="0.0298%" height="15" fill="rgb(211,102,14)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1263.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="47.9206%" y="1237" width="0.0298%" height="15" fill="rgb(237,179,40)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1247.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.9206%" y="1221" width="0.0298%" height="15" fill="rgb(247,91,30)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="47.9206%" y="1205" width="0.0298%" height="15" fill="rgb(211,48,17)" fg:x="11246" fg:w="7"/><text x="48.1706%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.9504%" y="2053" width="0.0128%" height="15" fill="rgb(238,115,44)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="2063.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.9504%" y="2037" width="0.0128%" height="15" fill="rgb(239,195,14)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.9504%" y="2021" width="0.0128%" height="15" fill="rgb(214,107,43)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="2031.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.9504%" y="2005" width="0.0128%" height="15" fill="rgb(240,15,16)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="2015.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.9504%" y="1989" width="0.0128%" height="15" fill="rgb(228,112,10)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1999.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.9504%" y="1973" width="0.0128%" height="15" fill="rgb(233,5,34)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1983.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.9504%" y="1957" width="0.0128%" height="15" fill="rgb(209,142,23)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1967.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9504%" y="1941" width="0.0128%" height="15" fill="rgb(236,107,5)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1951.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.9504%" y="1925" width="0.0128%" height="15" fill="rgb(231,58,29)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1935.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.9504%" y="1909" width="0.0128%" height="15" fill="rgb(205,176,25)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1919.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9504%" y="1893" width="0.0128%" height="15" fill="rgb(229,126,42)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1903.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.9504%" y="1877" width="0.0128%" height="15" fill="rgb(208,179,21)" fg:x="11253" fg:w="3"/><text x="48.2004%" y="1887.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="47.9632%" y="1749" width="0.0128%" height="15" fill="rgb(208,192,54)" fg:x="11256" fg:w="3"/><text x="48.2132%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="47.9632%" y="1733" width="0.0128%" height="15" fill="rgb(245,130,27)" fg:x="11256" fg:w="3"/><text x="48.2132%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="47.9632%" y="1941" width="0.0256%" height="15" fill="rgb(244,28,19)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="47.9632%" y="1925" width="0.0256%" height="15" fill="rgb(208,11,16)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="47.9632%" y="1909" width="0.0256%" height="15" fill="rgb(229,10,31)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="47.9632%" y="1893" width="0.0256%" height="15" fill="rgb(217,178,33)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="47.9632%" y="1877" width="0.0256%" height="15" fill="rgb(244,196,36)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="47.9632%" y="1861" width="0.0256%" height="15" fill="rgb(227,216,51)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="47.9632%" y="1845" width="0.0256%" height="15" fill="rgb(232,133,38)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="47.9632%" y="1829" width="0.0256%" height="15" fill="rgb(251,112,36)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="47.9632%" y="1813" width="0.0256%" height="15" fill="rgb(252,39,18)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="47.9632%" y="1797" width="0.0256%" height="15" fill="rgb(217,7,33)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="47.9632%" y="1781" width="0.0256%" height="15" fill="rgb(205,173,5)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="47.9632%" y="1765" width="0.0256%" height="15" fill="rgb(240,66,7)" fg:x="11256" fg:w="6"/><text x="48.2132%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="47.9973%" y="1765" width="0.0128%" height="15" fill="rgb(246,115,1)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="47.9973%" y="1749" width="0.0128%" height="15" fill="rgb(215,19,11)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="47.9973%" y="1733" width="0.0128%" height="15" fill="rgb(222,213,30)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="47.9973%" y="1717" width="0.0128%" height="15" fill="rgb(205,130,32)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="47.9973%" y="1701" width="0.0128%" height="15" fill="rgb(242,61,25)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="47.9973%" y="1685" width="0.0128%" height="15" fill="rgb(236,158,42)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="47.9973%" y="1669" width="0.0128%" height="15" fill="rgb(216,106,18)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9973%" y="1653" width="0.0128%" height="15" fill="rgb(242,221,25)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="47.9973%" y="1637" width="0.0128%" height="15" fill="rgb(236,81,41)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="47.9973%" y="1621" width="0.0128%" height="15" fill="rgb(216,70,22)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="47.9973%" y="1605" width="0.0128%" height="15" fill="rgb(222,150,44)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="47.9973%" y="1589" width="0.0128%" height="15" fill="rgb(211,59,51)" fg:x="11264" fg:w="3"/><text x="48.2473%" y="1599.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="48.0101%" y="1717" width="0.0213%" height="15" fill="rgb(243,186,39)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="48.0101%" y="1701" width="0.0213%" height="15" fill="rgb(231,44,36)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1711.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="48.0101%" y="1685" width="0.0213%" height="15" fill="rgb(214,62,22)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1695.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="48.0101%" y="1669" width="0.0213%" height="15" fill="rgb(234,49,18)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1679.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="48.0101%" y="1653" width="0.0213%" height="15" fill="rgb(233,211,48)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1663.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="48.0101%" y="1637" width="0.0213%" height="15" fill="rgb(254,115,35)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1647.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="48.0101%" y="1621" width="0.0213%" height="15" fill="rgb(248,71,35)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1631.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="48.0101%" y="1605" width="0.0213%" height="15" fill="rgb(220,38,51)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1615.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="48.0101%" y="1589" width="0.0213%" height="15" fill="rgb(233,110,18)" fg:x="11267" fg:w="5"/><text x="48.2601%" y="1599.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="47.9632%" y="2005" width="0.0852%" height="15" fill="rgb(218,193,40)" fg:x="11256" fg:w="20"/><text x="48.2132%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="47.9632%" y="1989" width="0.0852%" height="15" fill="rgb(249,98,30)" fg:x="11256" fg:w="20"/><text x="48.2132%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="47.9632%" y="1973" width="0.0852%" height="15" fill="rgb(247,124,9)" fg:x="11256" fg:w="20"/><text x="48.2132%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="47.9632%" y="1957" width="0.0852%" height="15" fill="rgb(237,141,37)" fg:x="11256" fg:w="20"/><text x="48.2132%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="47.9888%" y="1941" width="0.0597%" height="15" fill="rgb(211,35,40)" fg:x="11262" fg:w="14"/><text x="48.2388%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="47.9888%" y="1925" width="0.0597%" height="15" fill="rgb(214,215,50)" fg:x="11262" fg:w="14"/><text x="48.2388%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="47.9888%" y="1909" width="0.0597%" height="15" fill="rgb(219,185,15)" fg:x="11262" fg:w="14"/><text x="48.2388%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="47.9973%" y="1893" width="0.0511%" height="15" fill="rgb(248,222,46)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="47.9973%" y="1877" width="0.0511%" height="15" fill="rgb(222,229,35)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1887.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="47.9973%" y="1861" width="0.0511%" height="15" fill="rgb(251,192,43)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="47.9973%" y="1845" width="0.0511%" height="15" fill="rgb(238,36,12)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="47.9973%" y="1829" width="0.0511%" height="15" fill="rgb(227,98,30)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="47.9973%" y="1813" width="0.0511%" height="15" fill="rgb(219,202,1)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="47.9973%" y="1797" width="0.0511%" height="15" fill="rgb(236,200,45)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="47.9973%" y="1781" width="0.0511%" height="15" fill="rgb(235,157,39)" fg:x="11264" fg:w="12"/><text x="48.2473%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="48.0101%" y="1765" width="0.0384%" height="15" fill="rgb(238,130,42)" fg:x="11267" fg:w="9"/><text x="48.2601%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="48.0101%" y="1749" width="0.0384%" height="15" fill="rgb(238,70,37)" fg:x="11267" fg:w="9"/><text x="48.2601%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="48.0101%" y="1733" width="0.0384%" height="15" fill="rgb(218,51,16)" fg:x="11267" fg:w="9"/><text x="48.2601%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="48.0314%" y="1717" width="0.0170%" height="15" fill="rgb(209,192,21)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="48.0314%" y="1701" width="0.0170%" height="15" fill="rgb(225,37,48)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1711.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="48.0314%" y="1685" width="0.0170%" height="15" fill="rgb(228,227,8)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="48.0314%" y="1669" width="0.0170%" height="15" fill="rgb(220,181,54)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="48.0314%" y="1653" width="0.0170%" height="15" fill="rgb(227,158,50)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0314%" y="1637" width="0.0170%" height="15" fill="rgb(247,103,21)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0314%" y="1621" width="0.0170%" height="15" fill="rgb(226,48,25)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.0314%" y="1605" width="0.0170%" height="15" fill="rgb(238,215,38)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.0314%" y="1589" width="0.0170%" height="15" fill="rgb(221,31,35)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.0314%" y="1573" width="0.0170%" height="15" fill="rgb(213,80,30)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0314%" y="1557" width="0.0170%" height="15" fill="rgb(241,1,18)" fg:x="11272" fg:w="4"/><text x="48.2814%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="48.0484%" y="1877" width="0.0170%" height="15" fill="rgb(231,9,8)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="48.0484%" y="1861" width="0.0170%" height="15" fill="rgb(228,81,33)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="48.0484%" y="1845" width="0.0170%" height="15" fill="rgb(240,128,8)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="48.0484%" y="1829" width="0.0170%" height="15" fill="rgb(218,104,35)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="48.0484%" y="1813" width="0.0170%" height="15" fill="rgb(245,13,18)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="48.0484%" y="1797" width="0.0170%" height="15" fill="rgb(209,194,54)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="48.0484%" y="1781" width="0.0170%" height="15" fill="rgb(218,11,2)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0484%" y="1765" width="0.0170%" height="15" fill="rgb(242,36,29)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="48.0484%" y="1749" width="0.0170%" height="15" fill="rgb(213,129,2)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="48.0484%" y="1733" width="0.0170%" height="15" fill="rgb(234,0,2)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0484%" y="1717" width="0.0170%" height="15" fill="rgb(245,94,13)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1727.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="48.0484%" y="1701" width="0.0170%" height="15" fill="rgb(253,145,32)" fg:x="11276" fg:w="4"/><text x="48.2984%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="48.0740%" y="1717" width="0.0213%" height="15" fill="rgb(243,98,35)" fg:x="11282" fg:w="5"/><text x="48.3240%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="48.0740%" y="1701" width="0.0213%" height="15" fill="rgb(234,19,32)" fg:x="11282" fg:w="5"/><text x="48.3240%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="48.0740%" y="1685" width="0.0213%" height="15" fill="rgb(218,226,15)" fg:x="11282" fg:w="5"/><text x="48.3240%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.0740%" y="1669" width="0.0213%" height="15" fill="rgb(247,141,6)" fg:x="11282" fg:w="5"/><text x="48.3240%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="48.0740%" y="1653" width="0.0213%" height="15" fill="rgb(240,18,47)" fg:x="11282" fg:w="5"/><text x="48.3240%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="48.0740%" y="1637" width="0.0213%" height="15" fill="rgb(234,117,4)" fg:x="11282" fg:w="5"/><text x="48.3240%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="48.0740%" y="1621" width="0.0213%" height="15" fill="rgb(211,88,11)" fg:x="11282" fg:w="5"/><text x="48.3240%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="48.0825%" y="1605" width="0.0128%" height="15" fill="rgb(211,193,5)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="48.0825%" y="1589" width="0.0128%" height="15" fill="rgb(241,196,27)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1599.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="48.0825%" y="1573" width="0.0128%" height="15" fill="rgb(226,106,37)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="48.0825%" y="1557" width="0.0128%" height="15" fill="rgb(217,60,6)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="48.0825%" y="1541" width="0.0128%" height="15" fill="rgb(235,124,18)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="48.0825%" y="1525" width="0.0128%" height="15" fill="rgb(240,113,25)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="48.0825%" y="1509" width="0.0128%" height="15" fill="rgb(209,176,7)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.0825%" y="1493" width="0.0128%" height="15" fill="rgb(211,174,41)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.0825%" y="1477" width="0.0128%" height="15" fill="rgb(244,64,48)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.0825%" y="1461" width="0.0128%" height="15" fill="rgb(206,35,19)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.0825%" y="1445" width="0.0128%" height="15" fill="rgb(217,52,11)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.0825%" y="1429" width="0.0128%" height="15" fill="rgb(246,126,7)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.0825%" y="1413" width="0.0128%" height="15" fill="rgb(209,214,30)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.0825%" y="1397" width="0.0128%" height="15" fill="rgb(220,194,24)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.0825%" y="1381" width="0.0128%" height="15" fill="rgb(235,121,30)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.0825%" y="1365" width="0.0128%" height="15" fill="rgb(221,174,20)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.0825%" y="1349" width="0.0128%" height="15" fill="rgb(245,85,7)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.0825%" y="1333" width="0.0128%" height="15" fill="rgb(223,89,32)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.0825%" y="1317" width="0.0128%" height="15" fill="rgb(254,37,1)" fg:x="11284" fg:w="3"/><text x="48.3325%" y="1327.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="48.0655%" y="1829" width="0.0469%" height="15" fill="rgb(230,13,6)" fg:x="11280" fg:w="11"/><text x="48.3155%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="48.0655%" y="1813" width="0.0469%" height="15" fill="rgb(223,45,27)" fg:x="11280" fg:w="11"/><text x="48.3155%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="48.0655%" y="1797" width="0.0469%" height="15" fill="rgb(220,104,4)" fg:x="11280" fg:w="11"/><text x="48.3155%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="48.0655%" y="1781" width="0.0469%" height="15" fill="rgb(209,98,7)" fg:x="11280" fg:w="11"/><text x="48.3155%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="48.0740%" y="1765" width="0.0384%" height="15" fill="rgb(248,47,7)" fg:x="11282" fg:w="9"/><text x="48.3240%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="48.0740%" y="1749" width="0.0384%" height="15" fill="rgb(227,217,33)" fg:x="11282" fg:w="9"/><text x="48.3240%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="48.0740%" y="1733" width="0.0384%" height="15" fill="rgb(224,216,52)" fg:x="11282" fg:w="9"/><text x="48.3240%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="48.0953%" y="1717" width="0.0170%" height="15" fill="rgb(220,164,16)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="48.0953%" y="1701" width="0.0170%" height="15" fill="rgb(245,147,18)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1711.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="48.0953%" y="1685" width="0.0170%" height="15" fill="rgb(240,101,41)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="48.0953%" y="1669" width="0.0170%" height="15" fill="rgb(210,111,27)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="48.0953%" y="1653" width="0.0170%" height="15" fill="rgb(211,130,22)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0953%" y="1637" width="0.0170%" height="15" fill="rgb(243,164,38)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0953%" y="1621" width="0.0170%" height="15" fill="rgb(209,181,12)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.0953%" y="1605" width="0.0170%" height="15" fill="rgb(231,156,7)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.0953%" y="1589" width="0.0170%" height="15" fill="rgb(213,26,8)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.0953%" y="1573" width="0.0170%" height="15" fill="rgb(240,127,28)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.0953%" y="1557" width="0.0170%" height="15" fill="rgb(216,61,24)" fg:x="11287" fg:w="4"/><text x="48.3453%" y="1567.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="48.1208%" y="1653" width="0.0170%" height="15" fill="rgb(212,102,3)" fg:x="11293" fg:w="4"/><text x="48.3708%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="48.1208%" y="1637" width="0.0170%" height="15" fill="rgb(222,16,5)" fg:x="11293" fg:w="4"/><text x="48.3708%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.1208%" y="1621" width="0.0170%" height="15" fill="rgb(212,115,14)" fg:x="11293" fg:w="4"/><text x="48.3708%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.1208%" y="1605" width="0.0170%" height="15" fill="rgb(210,154,44)" fg:x="11293" fg:w="4"/><text x="48.3708%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.1208%" y="1589" width="0.0170%" height="15" fill="rgb(231,184,7)" fg:x="11293" fg:w="4"/><text x="48.3708%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.1208%" y="1573" width="0.0170%" height="15" fill="rgb(212,62,51)" fg:x="11293" fg:w="4"/><text x="48.3708%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.1208%" y="1557" width="0.0170%" height="15" fill="rgb(227,166,38)" fg:x="11293" fg:w="4"/><text x="48.3708%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (117 samples, 0.50%)</title><rect x="47.6479%" y="2437" width="0.4986%" height="15" fill="rgb(234,4,0)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2447.50"></text></g><g><title>rayon_core::job::JobRef::execute (117 samples, 0.50%)</title><rect x="47.6479%" y="2421" width="0.4986%" height="15" fill="rgb(249,75,3)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2431.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (117 samples, 0.50%)</title><rect x="47.6479%" y="2405" width="0.4986%" height="15" fill="rgb(254,144,38)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2415.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (117 samples, 0.50%)</title><rect x="47.6479%" y="2389" width="0.4986%" height="15" fill="rgb(206,109,34)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2399.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (117 samples, 0.50%)</title><rect x="47.6479%" y="2373" width="0.4986%" height="15" fill="rgb(235,145,5)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2383.50"></text></g><g><title>std::panic::catch_unwind (117 samples, 0.50%)</title><rect x="47.6479%" y="2357" width="0.4986%" height="15" fill="rgb(205,103,17)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2367.50"></text></g><g><title>std::panicking::try (117 samples, 0.50%)</title><rect x="47.6479%" y="2341" width="0.4986%" height="15" fill="rgb(241,226,35)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2351.50"></text></g><g><title>std::panicking::try::do_call (117 samples, 0.50%)</title><rect x="47.6479%" y="2325" width="0.4986%" height="15" fill="rgb(238,50,4)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2335.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (117 samples, 0.50%)</title><rect x="47.6479%" y="2309" width="0.4986%" height="15" fill="rgb(239,4,2)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2319.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (117 samples, 0.50%)</title><rect x="47.6479%" y="2293" width="0.4986%" height="15" fill="rgb(212,0,30)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (117 samples, 0.50%)</title><rect x="47.6479%" y="2277" width="0.4986%" height="15" fill="rgb(222,93,34)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (117 samples, 0.50%)</title><rect x="47.6479%" y="2261" width="0.4986%" height="15" fill="rgb(241,49,54)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (117 samples, 0.50%)</title><rect x="47.6479%" y="2245" width="0.4986%" height="15" fill="rgb(247,83,22)" fg:x="11182" fg:w="117"/><text x="47.8979%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (115 samples, 0.49%)</title><rect x="47.6564%" y="2229" width="0.4900%" height="15" fill="rgb(252,121,22)" fg:x="11184" fg:w="115"/><text x="47.9064%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (115 samples, 0.49%)</title><rect x="47.6564%" y="2213" width="0.4900%" height="15" fill="rgb(241,57,41)" fg:x="11184" fg:w="115"/><text x="47.9064%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (115 samples, 0.49%)</title><rect x="47.6564%" y="2197" width="0.4900%" height="15" fill="rgb(249,56,44)" fg:x="11184" fg:w="115"/><text x="47.9064%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (46 samples, 0.20%)</title><rect x="47.9504%" y="2181" width="0.1960%" height="15" fill="rgb(209,226,16)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (46 samples, 0.20%)</title><rect x="47.9504%" y="2165" width="0.1960%" height="15" fill="rgb(247,179,48)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2175.50"></text></g><g><title>std::panicking::try (46 samples, 0.20%)</title><rect x="47.9504%" y="2149" width="0.1960%" height="15" fill="rgb(238,147,54)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (46 samples, 0.20%)</title><rect x="47.9504%" y="2133" width="0.1960%" height="15" fill="rgb(228,113,22)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (46 samples, 0.20%)</title><rect x="47.9504%" y="2117" width="0.1960%" height="15" fill="rgb(229,102,48)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (46 samples, 0.20%)</title><rect x="47.9504%" y="2101" width="0.1960%" height="15" fill="rgb(239,171,3)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46 samples, 0.20%)</title><rect x="47.9504%" y="2085" width="0.1960%" height="15" fill="rgb(206,122,22)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.20%)</title><rect x="47.9504%" y="2069" width="0.1960%" height="15" fill="rgb(227,48,32)" fg:x="11253" fg:w="46"/><text x="48.2004%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (43 samples, 0.18%)</title><rect x="47.9632%" y="2053" width="0.1832%" height="15" fill="rgb(233,57,42)" fg:x="11256" fg:w="43"/><text x="48.2132%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.18%)</title><rect x="47.9632%" y="2037" width="0.1832%" height="15" fill="rgb(248,98,51)" fg:x="11256" fg:w="43"/><text x="48.2132%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43 samples, 0.18%)</title><rect x="47.9632%" y="2021" width="0.1832%" height="15" fill="rgb(237,72,15)" fg:x="11256" fg:w="43"/><text x="48.2132%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="48.0484%" y="2005" width="0.0980%" height="15" fill="rgb(230,101,5)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="48.0484%" y="1989" width="0.0980%" height="15" fill="rgb(250,31,53)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="1999.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="48.0484%" y="1973" width="0.0980%" height="15" fill="rgb(224,92,49)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="48.0484%" y="1957" width="0.0980%" height="15" fill="rgb(236,14,11)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="48.0484%" y="1941" width="0.0980%" height="15" fill="rgb(246,99,29)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (23 samples, 0.10%)</title><rect x="48.0484%" y="1925" width="0.0980%" height="15" fill="rgb(232,190,41)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="48.0484%" y="1909" width="0.0980%" height="15" fill="rgb(246,207,18)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="48.0484%" y="1893" width="0.0980%" height="15" fill="rgb(219,153,49)" fg:x="11276" fg:w="23"/><text x="48.2984%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="48.0655%" y="1877" width="0.0810%" height="15" fill="rgb(219,136,7)" fg:x="11280" fg:w="19"/><text x="48.3155%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="48.0655%" y="1861" width="0.0810%" height="15" fill="rgb(210,142,9)" fg:x="11280" fg:w="19"/><text x="48.3155%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="48.0655%" y="1845" width="0.0810%" height="15" fill="rgb(248,109,15)" fg:x="11280" fg:w="19"/><text x="48.3155%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="48.1123%" y="1829" width="0.0341%" height="15" fill="rgb(206,223,32)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="48.1123%" y="1813" width="0.0341%" height="15" fill="rgb(206,57,9)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1823.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="48.1123%" y="1797" width="0.0341%" height="15" fill="rgb(245,39,53)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="48.1123%" y="1781" width="0.0341%" height="15" fill="rgb(253,197,10)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="48.1123%" y="1765" width="0.0341%" height="15" fill="rgb(211,120,50)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="48.1123%" y="1749" width="0.0341%" height="15" fill="rgb(213,185,26)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="48.1123%" y="1733" width="0.0341%" height="15" fill="rgb(219,136,49)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="48.1123%" y="1717" width="0.0341%" height="15" fill="rgb(251,26,8)" fg:x="11291" fg:w="8"/><text x="48.3623%" y="1727.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="48.1208%" y="1701" width="0.0256%" height="15" fill="rgb(231,173,45)" fg:x="11293" fg:w="6"/><text x="48.3708%" y="1711.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="48.1208%" y="1685" width="0.0256%" height="15" fill="rgb(234,201,25)" fg:x="11293" fg:w="6"/><text x="48.3708%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="48.1208%" y="1669" width="0.0256%" height="15" fill="rgb(242,55,18)" fg:x="11293" fg:w="6"/><text x="48.3708%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (122 samples, 0.52%)</title><rect x="47.6479%" y="2469" width="0.5199%" height="15" fill="rgb(218,151,37)" fg:x="11182" fg:w="122"/><text x="47.8979%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (122 samples, 0.52%)</title><rect x="47.6479%" y="2453" width="0.5199%" height="15" fill="rgb(225,70,29)" fg:x="11182" fg:w="122"/><text x="47.8979%" y="2463.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="48.1464%" y="2437" width="0.0213%" height="15" fill="rgb(237,1,42)" fg:x="11299" fg:w="5"/><text x="48.3964%" y="2447.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="48.1464%" y="2421" width="0.0213%" height="15" fill="rgb(217,126,41)" fg:x="11299" fg:w="5"/><text x="48.3964%" y="2431.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="48.1464%" y="2405" width="0.0213%" height="15" fill="rgb(239,143,35)" fg:x="11299" fg:w="5"/><text x="48.3964%" y="2415.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="48.1464%" y="2389" width="0.0213%" height="15" fill="rgb(246,148,29)" fg:x="11299" fg:w="5"/><text x="48.3964%" y="2399.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="48.1464%" y="2373" width="0.0213%" height="15" fill="rgb(254,31,8)" fg:x="11299" fg:w="5"/><text x="48.3964%" y="2383.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="48.1464%" y="2357" width="0.0213%" height="15" fill="rgb(216,52,30)" fg:x="11299" fg:w="5"/><text x="48.3964%" y="2367.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="48.1464%" y="2341" width="0.0213%" height="15" fill="rgb(232,115,39)" fg:x="11299" fg:w="5"/><text x="48.3964%" y="2351.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="48.1720%" y="2037" width="0.0213%" height="15" fill="rgb(248,182,41)" fg:x="11305" fg:w="5"/><text x="48.4220%" y="2047.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="48.1720%" y="2021" width="0.0213%" height="15" fill="rgb(222,97,33)" fg:x="11305" fg:w="5"/><text x="48.4220%" y="2031.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="48.1762%" y="2005" width="0.0170%" height="15" fill="rgb(245,95,47)" fg:x="11306" fg:w="4"/><text x="48.4262%" y="2015.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="48.1762%" y="1989" width="0.0170%" height="15" fill="rgb(226,86,31)" fg:x="11306" fg:w="4"/><text x="48.4262%" y="1999.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="48.1720%" y="2213" width="0.0341%" height="15" fill="rgb(235,4,30)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (8 samples, 0.03%)</title><rect x="48.1720%" y="2197" width="0.0341%" height="15" fill="rgb(230,66,8)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2207.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (8 samples, 0.03%)</title><rect x="48.1720%" y="2181" width="0.0341%" height="15" fill="rgb(209,100,45)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2191.50"></text></g><g><title>core::option::Option<T>::map (8 samples, 0.03%)</title><rect x="48.1720%" y="2165" width="0.0341%" height="15" fill="rgb(216,1,54)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (8 samples, 0.03%)</title><rect x="48.1720%" y="2149" width="0.0341%" height="15" fill="rgb(227,94,45)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (8 samples, 0.03%)</title><rect x="48.1720%" y="2133" width="0.0341%" height="15" fill="rgb(248,100,20)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (8 samples, 0.03%)</title><rect x="48.1720%" y="2117" width="0.0341%" height="15" fill="rgb(239,139,22)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (8 samples, 0.03%)</title><rect x="48.1720%" y="2101" width="0.0341%" height="15" fill="rgb(225,65,27)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2111.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="48.1720%" y="2085" width="0.0341%" height="15" fill="rgb(241,173,17)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2095.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (8 samples, 0.03%)</title><rect x="48.1720%" y="2069" width="0.0341%" height="15" fill="rgb(228,32,54)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2079.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (8 samples, 0.03%)</title><rect x="48.1720%" y="2053" width="0.0341%" height="15" fill="rgb(248,144,37)" fg:x="11305" fg:w="8"/><text x="48.4220%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="48.1720%" y="2293" width="0.0384%" height="15" fill="rgb(247,12,23)" fg:x="11305" fg:w="9"/><text x="48.4220%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="48.1720%" y="2277" width="0.0384%" height="15" fill="rgb(222,81,20)" fg:x="11305" fg:w="9"/><text x="48.4220%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="48.1720%" y="2261" width="0.0384%" height="15" fill="rgb(232,156,3)" fg:x="11305" fg:w="9"/><text x="48.4220%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="48.1720%" y="2245" width="0.0384%" height="15" fill="rgb(222,156,26)" fg:x="11305" fg:w="9"/><text x="48.4220%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="48.1720%" y="2229" width="0.0384%" height="15" fill="rgb(236,67,40)" fg:x="11305" fg:w="9"/><text x="48.4220%" y="2239.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="48.2103%" y="1749" width="0.0128%" height="15" fill="rgb(227,110,25)" fg:x="11314" fg:w="3"/><text x="48.4603%" y="1759.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="48.2103%" y="1733" width="0.0128%" height="15" fill="rgb(239,19,30)" fg:x="11314" fg:w="3"/><text x="48.4603%" y="1743.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="48.2103%" y="1717" width="0.0128%" height="15" fill="rgb(236,74,41)" fg:x="11314" fg:w="3"/><text x="48.4603%" y="1727.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="48.2103%" y="1701" width="0.0128%" height="15" fill="rgb(226,149,33)" fg:x="11314" fg:w="3"/><text x="48.4603%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="48.2103%" y="1941" width="0.0170%" height="15" fill="rgb(235,40,46)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1951.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="48.2103%" y="1925" width="0.0170%" height="15" fill="rgb(247,121,10)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="48.2103%" y="1909" width="0.0170%" height="15" fill="rgb(211,53,19)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1919.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="48.2103%" y="1893" width="0.0170%" height="15" fill="rgb(250,75,20)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1903.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="48.2103%" y="1877" width="0.0170%" height="15" fill="rgb(250,138,48)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1887.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="48.2103%" y="1861" width="0.0170%" height="15" fill="rgb(222,40,12)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1871.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="48.2103%" y="1845" width="0.0170%" height="15" fill="rgb(252,86,6)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1855.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2103%" y="1829" width="0.0170%" height="15" fill="rgb(215,19,46)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1839.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="48.2103%" y="1813" width="0.0170%" height="15" fill="rgb(229,22,0)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1823.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="48.2103%" y="1797" width="0.0170%" height="15" fill="rgb(205,37,35)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1807.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2103%" y="1781" width="0.0170%" height="15" fill="rgb(209,193,13)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1791.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="48.2103%" y="1765" width="0.0170%" height="15" fill="rgb(226,213,44)" fg:x="11314" fg:w="4"/><text x="48.4603%" y="1775.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="48.2359%" y="1669" width="0.0170%" height="15" fill="rgb(240,80,21)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2359%" y="1653" width="0.0170%" height="15" fill="rgb(220,220,43)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2359%" y="1637" width="0.0170%" height="15" fill="rgb(232,21,16)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.2359%" y="1621" width="0.0170%" height="15" fill="rgb(221,114,41)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="48.2359%" y="1605" width="0.0170%" height="15" fill="rgb(245,206,51)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1615.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="48.2359%" y="1589" width="0.0170%" height="15" fill="rgb(233,46,4)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (4 samples, 0.02%)</title><rect x="48.2359%" y="1573" width="0.0170%" height="15" fill="rgb(250,160,29)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1583.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="48.2359%" y="1557" width="0.0170%" height="15" fill="rgb(236,136,29)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1567.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="48.2359%" y="1541" width="0.0170%" height="15" fill="rgb(244,9,2)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1551.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="48.2359%" y="1525" width="0.0170%" height="15" fill="rgb(243,116,35)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (4 samples, 0.02%)</title><rect x="48.2359%" y="1509" width="0.0170%" height="15" fill="rgb(237,165,17)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2359%" y="1493" width="0.0170%" height="15" fill="rgb(242,16,15)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (4 samples, 0.02%)</title><rect x="48.2359%" y="1477" width="0.0170%" height="15" fill="rgb(231,179,30)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1487.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="48.2359%" y="1461" width="0.0170%" height="15" fill="rgb(226,168,35)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1471.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2359%" y="1445" width="0.0170%" height="15" fill="rgb(242,50,27)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1455.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="48.2359%" y="1429" width="0.0170%" height="15" fill="rgb(231,94,19)" fg:x="11320" fg:w="4"/><text x="48.4859%" y="1439.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (3 samples, 0.01%)</title><rect x="48.2402%" y="1413" width="0.0128%" height="15" fill="rgb(206,211,17)" fg:x="11321" fg:w="3"/><text x="48.4902%" y="1423.50"></text></g><g><title>std::f64::<impl f64>::sqrt (3 samples, 0.01%)</title><rect x="48.2402%" y="1397" width="0.0128%" height="15" fill="rgb(222,183,51)" fg:x="11321" fg:w="3"/><text x="48.4902%" y="1407.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="48.2274%" y="1781" width="0.0384%" height="15" fill="rgb(245,19,49)" fg:x="11318" fg:w="9"/><text x="48.4774%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="48.2274%" y="1765" width="0.0384%" height="15" fill="rgb(219,162,0)" fg:x="11318" fg:w="9"/><text x="48.4774%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="48.2274%" y="1749" width="0.0384%" height="15" fill="rgb(233,121,31)" fg:x="11318" fg:w="9"/><text x="48.4774%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="48.2274%" y="1733" width="0.0384%" height="15" fill="rgb(227,10,42)" fg:x="11318" fg:w="9"/><text x="48.4774%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="48.2359%" y="1717" width="0.0298%" height="15" fill="rgb(209,104,41)" fg:x="11320" fg:w="7"/><text x="48.4859%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="48.2359%" y="1701" width="0.0298%" height="15" fill="rgb(216,118,10)" fg:x="11320" fg:w="7"/><text x="48.4859%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="48.2359%" y="1685" width="0.0298%" height="15" fill="rgb(207,8,34)" fg:x="11320" fg:w="7"/><text x="48.4859%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="48.2529%" y="1669" width="0.0128%" height="15" fill="rgb(232,106,50)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="48.2529%" y="1653" width="0.0128%" height="15" fill="rgb(228,16,20)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="48.2529%" y="1637" width="0.0128%" height="15" fill="rgb(230,98,43)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="48.2529%" y="1621" width="0.0128%" height="15" fill="rgb(244,121,5)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="48.2529%" y="1605" width="0.0128%" height="15" fill="rgb(207,87,37)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="48.2529%" y="1589" width="0.0128%" height="15" fill="rgb(247,131,22)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="48.2529%" y="1573" width="0.0128%" height="15" fill="rgb(238,35,11)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.2529%" y="1557" width="0.0128%" height="15" fill="rgb(226,46,3)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.2529%" y="1541" width="0.0128%" height="15" fill="rgb(226,147,24)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.2529%" y="1525" width="0.0128%" height="15" fill="rgb(228,140,40)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.2529%" y="1509" width="0.0128%" height="15" fill="rgb(210,187,41)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.2529%" y="1493" width="0.0128%" height="15" fill="rgb(212,197,15)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.2529%" y="1477" width="0.0128%" height="15" fill="rgb(216,132,10)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.2529%" y="1461" width="0.0128%" height="15" fill="rgb(229,14,53)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.2529%" y="1445" width="0.0128%" height="15" fill="rgb(247,3,2)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.2529%" y="1429" width="0.0128%" height="15" fill="rgb(251,169,22)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.2529%" y="1413" width="0.0128%" height="15" fill="rgb(238,154,21)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.2529%" y="1397" width="0.0128%" height="15" fill="rgb(213,43,49)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.2529%" y="1381" width="0.0128%" height="15" fill="rgb(234,205,37)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="48.2529%" y="1365" width="0.0128%" height="15" fill="rgb(214,107,29)" fg:x="11324" fg:w="3"/><text x="48.5029%" y="1375.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="48.2657%" y="1493" width="0.0170%" height="15" fill="rgb(237,40,26)" fg:x="11327" fg:w="4"/><text x="48.5157%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2657%" y="1477" width="0.0170%" height="15" fill="rgb(207,170,23)" fg:x="11327" fg:w="4"/><text x="48.5157%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2657%" y="1461" width="0.0170%" height="15" fill="rgb(216,90,54)" fg:x="11327" fg:w="4"/><text x="48.5157%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.2657%" y="1445" width="0.0170%" height="15" fill="rgb(220,75,54)" fg:x="11327" fg:w="4"/><text x="48.5157%" y="1455.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.2657%" y="1429" width="0.0170%" height="15" fill="rgb(238,175,50)" fg:x="11327" fg:w="4"/><text x="48.5157%" y="1439.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.2657%" y="1413" width="0.0170%" height="15" fill="rgb(209,221,9)" fg:x="11327" fg:w="4"/><text x="48.5157%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2657%" y="1397" width="0.0170%" height="15" fill="rgb(212,204,19)" fg:x="11327" fg:w="4"/><text x="48.5157%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="48.2657%" y="1781" width="0.0341%" height="15" fill="rgb(229,58,27)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="48.2657%" y="1765" width="0.0341%" height="15" fill="rgb(245,151,7)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="48.2657%" y="1749" width="0.0341%" height="15" fill="rgb(249,224,17)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="48.2657%" y="1733" width="0.0341%" height="15" fill="rgb(223,40,3)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="48.2657%" y="1717" width="0.0341%" height="15" fill="rgb(223,59,6)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="48.2657%" y="1701" width="0.0341%" height="15" fill="rgb(214,88,40)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="48.2657%" y="1685" width="0.0341%" height="15" fill="rgb(225,91,34)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="48.2657%" y="1669" width="0.0341%" height="15" fill="rgb(238,3,32)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1679.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="48.2657%" y="1653" width="0.0341%" height="15" fill="rgb(220,147,41)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="48.2657%" y="1637" width="0.0341%" height="15" fill="rgb(243,62,24)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="48.2657%" y="1621" width="0.0341%" height="15" fill="rgb(248,125,35)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="48.2657%" y="1605" width="0.0341%" height="15" fill="rgb(249,161,35)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="48.2657%" y="1589" width="0.0341%" height="15" fill="rgb(234,212,46)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="48.2657%" y="1573" width="0.0341%" height="15" fill="rgb(235,84,10)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="48.2657%" y="1557" width="0.0341%" height="15" fill="rgb(208,125,48)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="48.2657%" y="1541" width="0.0341%" height="15" fill="rgb(249,59,52)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="48.2657%" y="1525" width="0.0341%" height="15" fill="rgb(222,212,15)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="48.2657%" y="1509" width="0.0341%" height="15" fill="rgb(248,198,4)" fg:x="11327" fg:w="8"/><text x="48.5157%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="48.2828%" y="1493" width="0.0170%" height="15" fill="rgb(247,214,18)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="48.2828%" y="1477" width="0.0170%" height="15" fill="rgb(238,149,33)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1487.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="48.2828%" y="1461" width="0.0170%" height="15" fill="rgb(219,193,18)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="48.2828%" y="1445" width="0.0170%" height="15" fill="rgb(220,210,18)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="48.2828%" y="1429" width="0.0170%" height="15" fill="rgb(252,76,48)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2828%" y="1413" width="0.0170%" height="15" fill="rgb(234,59,52)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2828%" y="1397" width="0.0170%" height="15" fill="rgb(208,211,19)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.2828%" y="1381" width="0.0170%" height="15" fill="rgb(206,77,14)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.2828%" y="1365" width="0.0170%" height="15" fill="rgb(246,110,8)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.2828%" y="1349" width="0.0170%" height="15" fill="rgb(231,12,7)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.2828%" y="1333" width="0.0170%" height="15" fill="rgb(244,25,36)" fg:x="11331" fg:w="4"/><text x="48.5328%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.2998%" y="1653" width="0.0128%" height="15" fill="rgb(207,224,18)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1663.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.2998%" y="1637" width="0.0128%" height="15" fill="rgb(243,219,9)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.2998%" y="1621" width="0.0128%" height="15" fill="rgb(235,213,1)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1631.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.2998%" y="1605" width="0.0128%" height="15" fill="rgb(226,24,47)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1615.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.2998%" y="1589" width="0.0128%" height="15" fill="rgb(218,11,12)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1599.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.2998%" y="1573" width="0.0128%" height="15" fill="rgb(245,51,15)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1583.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.2998%" y="1557" width="0.0128%" height="15" fill="rgb(240,47,11)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.2998%" y="1541" width="0.0128%" height="15" fill="rgb(214,151,38)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1551.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.2998%" y="1525" width="0.0128%" height="15" fill="rgb(238,174,39)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1535.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.2998%" y="1509" width="0.0128%" height="15" fill="rgb(220,96,0)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1519.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.2998%" y="1493" width="0.0128%" height="15" fill="rgb(229,152,31)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1503.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="48.2998%" y="1477" width="0.0128%" height="15" fill="rgb(209,209,34)" fg:x="11335" fg:w="3"/><text x="48.5498%" y="1487.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="48.3126%" y="1365" width="0.0170%" height="15" fill="rgb(228,122,52)" fg:x="11338" fg:w="4"/><text x="48.5626%" y="1375.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="48.3126%" y="1605" width="0.0213%" height="15" fill="rgb(253,64,29)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3126%" y="1589" width="0.0213%" height="15" fill="rgb(230,210,44)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3126%" y="1573" width="0.0213%" height="15" fill="rgb(231,65,40)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.3126%" y="1557" width="0.0213%" height="15" fill="rgb(247,6,19)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="48.3126%" y="1541" width="0.0213%" height="15" fill="rgb(223,67,49)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="48.3126%" y="1525" width="0.0213%" height="15" fill="rgb(239,188,36)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="48.3126%" y="1509" width="0.0213%" height="15" fill="rgb(226,78,16)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="48.3126%" y="1493" width="0.0213%" height="15" fill="rgb(215,64,30)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="48.3126%" y="1477" width="0.0213%" height="15" fill="rgb(238,76,14)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="48.3126%" y="1461" width="0.0213%" height="15" fill="rgb(206,39,25)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="48.3126%" y="1445" width="0.0213%" height="15" fill="rgb(251,47,48)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3126%" y="1429" width="0.0213%" height="15" fill="rgb(223,229,24)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="48.3126%" y="1413" width="0.0213%" height="15" fill="rgb(232,96,3)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="48.3126%" y="1397" width="0.0213%" height="15" fill="rgb(217,209,21)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3126%" y="1381" width="0.0213%" height="15" fill="rgb(241,145,20)" fg:x="11338" fg:w="5"/><text x="48.5626%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="48.3339%" y="1301" width="0.0213%" height="15" fill="rgb(221,175,39)" fg:x="11343" fg:w="5"/><text x="48.5839%" y="1311.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (32 samples, 0.14%)</title><rect x="48.2274%" y="1893" width="0.1364%" height="15" fill="rgb(248,145,14)" fg:x="11318" fg:w="32"/><text x="48.4774%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="48.2274%" y="1877" width="0.1364%" height="15" fill="rgb(225,6,38)" fg:x="11318" fg:w="32"/><text x="48.4774%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="48.2274%" y="1861" width="0.1364%" height="15" fill="rgb(229,173,41)" fg:x="11318" fg:w="32"/><text x="48.4774%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="48.2274%" y="1845" width="0.1364%" height="15" fill="rgb(225,143,43)" fg:x="11318" fg:w="32"/><text x="48.4774%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="48.2274%" y="1829" width="0.1364%" height="15" fill="rgb(238,175,6)" fg:x="11318" fg:w="32"/><text x="48.4774%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="48.2274%" y="1813" width="0.1364%" height="15" fill="rgb(211,70,18)" fg:x="11318" fg:w="32"/><text x="48.4774%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="48.2274%" y="1797" width="0.1364%" height="15" fill="rgb(246,197,4)" fg:x="11318" fg:w="32"/><text x="48.4774%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="48.2998%" y="1781" width="0.0639%" height="15" fill="rgb(232,9,12)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="48.2998%" y="1765" width="0.0639%" height="15" fill="rgb(253,72,10)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1775.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="48.2998%" y="1749" width="0.0639%" height="15" fill="rgb(241,18,39)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="48.2998%" y="1733" width="0.0639%" height="15" fill="rgb(223,165,44)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="48.2998%" y="1717" width="0.0639%" height="15" fill="rgb(214,229,34)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="48.2998%" y="1701" width="0.0639%" height="15" fill="rgb(213,113,4)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="48.2998%" y="1685" width="0.0639%" height="15" fill="rgb(212,110,35)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="48.2998%" y="1669" width="0.0639%" height="15" fill="rgb(212,140,44)" fg:x="11335" fg:w="15"/><text x="48.5498%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="48.3126%" y="1653" width="0.0511%" height="15" fill="rgb(239,99,2)" fg:x="11338" fg:w="12"/><text x="48.5626%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="48.3126%" y="1637" width="0.0511%" height="15" fill="rgb(250,22,39)" fg:x="11338" fg:w="12"/><text x="48.5626%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="48.3126%" y="1621" width="0.0511%" height="15" fill="rgb(218,173,26)" fg:x="11338" fg:w="12"/><text x="48.5626%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="48.3339%" y="1605" width="0.0298%" height="15" fill="rgb(218,17,15)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="48.3339%" y="1589" width="0.0298%" height="15" fill="rgb(238,172,16)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1599.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="48.3339%" y="1573" width="0.0298%" height="15" fill="rgb(245,134,13)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="48.3339%" y="1557" width="0.0298%" height="15" fill="rgb(243,101,42)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="48.3339%" y="1541" width="0.0298%" height="15" fill="rgb(241,69,18)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="48.3339%" y="1525" width="0.0298%" height="15" fill="rgb(247,214,40)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="48.3339%" y="1509" width="0.0298%" height="15" fill="rgb(225,111,48)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="48.3339%" y="1493" width="0.0298%" height="15" fill="rgb(230,5,39)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="48.3339%" y="1477" width="0.0298%" height="15" fill="rgb(246,6,4)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="48.3339%" y="1461" width="0.0298%" height="15" fill="rgb(253,59,50)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (7 samples, 0.03%)</title><rect x="48.3339%" y="1445" width="0.0298%" height="15" fill="rgb(239,39,18)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (7 samples, 0.03%)</title><rect x="48.3339%" y="1429" width="0.0298%" height="15" fill="rgb(227,163,0)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="48.3339%" y="1413" width="0.0298%" height="15" fill="rgb(213,157,44)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="48.3339%" y="1397" width="0.0298%" height="15" fill="rgb(249,91,15)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (7 samples, 0.03%)</title><rect x="48.3339%" y="1381" width="0.0298%" height="15" fill="rgb(232,14,47)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (7 samples, 0.03%)</title><rect x="48.3339%" y="1365" width="0.0298%" height="15" fill="rgb(246,90,40)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="48.3339%" y="1349" width="0.0298%" height="15" fill="rgb(218,152,33)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="48.3339%" y="1333" width="0.0298%" height="15" fill="rgb(233,170,3)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="48.3339%" y="1317" width="0.0298%" height="15" fill="rgb(246,151,1)" fg:x="11343" fg:w="7"/><text x="48.5839%" y="1327.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="48.3723%" y="1605" width="0.0213%" height="15" fill="rgb(241,102,17)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3723%" y="1589" width="0.0213%" height="15" fill="rgb(226,226,27)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3723%" y="1573" width="0.0213%" height="15" fill="rgb(220,140,47)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.3723%" y="1557" width="0.0213%" height="15" fill="rgb(225,67,21)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="48.3723%" y="1541" width="0.0213%" height="15" fill="rgb(225,134,46)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="48.3723%" y="1525" width="0.0213%" height="15" fill="rgb(249,24,36)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="48.3723%" y="1509" width="0.0213%" height="15" fill="rgb(241,83,20)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="48.3723%" y="1493" width="0.0213%" height="15" fill="rgb(220,118,19)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="48.3723%" y="1477" width="0.0213%" height="15" fill="rgb(246,58,39)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="48.3723%" y="1461" width="0.0213%" height="15" fill="rgb(252,144,39)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="48.3723%" y="1445" width="0.0213%" height="15" fill="rgb(254,119,30)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3723%" y="1429" width="0.0213%" height="15" fill="rgb(234,222,36)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="48.3723%" y="1413" width="0.0213%" height="15" fill="rgb(224,193,42)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="48.3723%" y="1397" width="0.0213%" height="15" fill="rgb(237,158,49)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="48.3723%" y="1381" width="0.0213%" height="15" fill="rgb(246,113,0)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="48.3723%" y="1365" width="0.0213%" height="15" fill="rgb(222,45,32)" fg:x="11352" fg:w="5"/><text x="48.6223%" y="1375.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="48.3637%" y="1717" width="0.0554%" height="15" fill="rgb(240,12,18)" fg:x="11350" fg:w="13"/><text x="48.6137%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="48.3637%" y="1701" width="0.0554%" height="15" fill="rgb(235,30,38)" fg:x="11350" fg:w="13"/><text x="48.6137%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="48.3637%" y="1685" width="0.0554%" height="15" fill="rgb(230,103,26)" fg:x="11350" fg:w="13"/><text x="48.6137%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="48.3637%" y="1669" width="0.0554%" height="15" fill="rgb(235,11,4)" fg:x="11350" fg:w="13"/><text x="48.6137%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="48.3723%" y="1653" width="0.0469%" height="15" fill="rgb(229,160,40)" fg:x="11352" fg:w="11"/><text x="48.6223%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="48.3723%" y="1637" width="0.0469%" height="15" fill="rgb(208,0,42)" fg:x="11352" fg:w="11"/><text x="48.6223%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="48.3723%" y="1621" width="0.0469%" height="15" fill="rgb(229,165,40)" fg:x="11352" fg:w="11"/><text x="48.6223%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="48.3936%" y="1605" width="0.0256%" height="15" fill="rgb(207,27,13)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="48.3936%" y="1589" width="0.0256%" height="15" fill="rgb(234,155,10)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1599.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="48.3936%" y="1573" width="0.0256%" height="15" fill="rgb(232,164,31)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="48.3936%" y="1557" width="0.0256%" height="15" fill="rgb(216,165,6)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="48.3936%" y="1541" width="0.0256%" height="15" fill="rgb(215,168,38)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="48.3936%" y="1525" width="0.0256%" height="15" fill="rgb(236,168,40)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.3936%" y="1509" width="0.0256%" height="15" fill="rgb(249,73,45)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.3936%" y="1493" width="0.0256%" height="15" fill="rgb(214,167,33)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.3936%" y="1477" width="0.0256%" height="15" fill="rgb(221,159,4)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.3936%" y="1461" width="0.0256%" height="15" fill="rgb(218,151,30)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.3936%" y="1445" width="0.0256%" height="15" fill="rgb(215,212,47)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.3936%" y="1429" width="0.0256%" height="15" fill="rgb(221,110,47)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.3936%" y="1413" width="0.0256%" height="15" fill="rgb(250,201,1)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.3936%" y="1397" width="0.0256%" height="15" fill="rgb(252,229,30)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.3936%" y="1381" width="0.0256%" height="15" fill="rgb(221,161,1)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.3936%" y="1365" width="0.0256%" height="15" fill="rgb(234,97,18)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.3936%" y="1349" width="0.0256%" height="15" fill="rgb(245,164,14)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.3936%" y="1333" width="0.0256%" height="15" fill="rgb(234,93,42)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.3936%" y="1317" width="0.0256%" height="15" fill="rgb(245,101,35)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1327.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.3936%" y="1301" width="0.0256%" height="15" fill="rgb(243,166,28)" fg:x="11357" fg:w="6"/><text x="48.6436%" y="1311.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="48.3978%" y="1285" width="0.0213%" height="15" fill="rgb(244,0,52)" fg:x="11358" fg:w="5"/><text x="48.6478%" y="1295.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="48.3978%" y="1269" width="0.0213%" height="15" fill="rgb(239,30,50)" fg:x="11358" fg:w="5"/><text x="48.6478%" y="1279.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="48.4276%" y="1285" width="0.0128%" height="15" fill="rgb(213,203,31)" fg:x="11365" fg:w="3"/><text x="48.6776%" y="1295.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="48.4276%" y="1269" width="0.0128%" height="15" fill="rgb(220,196,19)" fg:x="11365" fg:w="3"/><text x="48.6776%" y="1279.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="48.4276%" y="1253" width="0.0128%" height="15" fill="rgb(221,107,16)" fg:x="11365" fg:w="3"/><text x="48.6776%" y="1263.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="48.4276%" y="1541" width="0.0256%" height="15" fill="rgb(239,63,1)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4276%" y="1525" width="0.0256%" height="15" fill="rgb(241,21,4)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4276%" y="1509" width="0.0256%" height="15" fill="rgb(234,59,32)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.4276%" y="1493" width="0.0256%" height="15" fill="rgb(246,213,17)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.4276%" y="1477" width="0.0256%" height="15" fill="rgb(223,0,29)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.4276%" y="1461" width="0.0256%" height="15" fill="rgb(247,94,45)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.4276%" y="1445" width="0.0256%" height="15" fill="rgb(215,37,32)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.4276%" y="1429" width="0.0256%" height="15" fill="rgb(243,187,5)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.4276%" y="1413" width="0.0256%" height="15" fill="rgb(238,229,20)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.4276%" y="1397" width="0.0256%" height="15" fill="rgb(218,12,8)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.4276%" y="1381" width="0.0256%" height="15" fill="rgb(236,228,43)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4276%" y="1365" width="0.0256%" height="15" fill="rgb(217,25,33)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.4276%" y="1349" width="0.0256%" height="15" fill="rgb(243,203,11)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.4276%" y="1333" width="0.0256%" height="15" fill="rgb(207,54,10)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4276%" y="1317" width="0.0256%" height="15" fill="rgb(208,157,51)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1327.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.4276%" y="1301" width="0.0256%" height="15" fill="rgb(254,20,13)" fg:x="11365" fg:w="6"/><text x="48.6776%" y="1311.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="48.4532%" y="1221" width="0.0128%" height="15" fill="rgb(212,39,47)" fg:x="11371" fg:w="3"/><text x="48.7032%" y="1231.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="48.4532%" y="1205" width="0.0128%" height="15" fill="rgb(234,137,11)" fg:x="11371" fg:w="3"/><text x="48.7032%" y="1215.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="48.4532%" y="1189" width="0.0128%" height="15" fill="rgb(231,7,12)" fg:x="11371" fg:w="3"/><text x="48.7032%" y="1199.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (63 samples, 0.27%)</title><rect x="48.2103%" y="2005" width="0.2685%" height="15" fill="rgb(239,159,37)" fg:x="11314" fg:w="63"/><text x="48.4603%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (63 samples, 0.27%)</title><rect x="48.2103%" y="1989" width="0.2685%" height="15" fill="rgb(219,177,53)" fg:x="11314" fg:w="63"/><text x="48.4603%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (63 samples, 0.27%)</title><rect x="48.2103%" y="1973" width="0.2685%" height="15" fill="rgb(209,188,19)" fg:x="11314" fg:w="63"/><text x="48.4603%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (63 samples, 0.27%)</title><rect x="48.2103%" y="1957" width="0.2685%" height="15" fill="rgb(224,171,50)" fg:x="11314" fg:w="63"/><text x="48.4603%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (59 samples, 0.25%)</title><rect x="48.2274%" y="1941" width="0.2514%" height="15" fill="rgb(251,194,50)" fg:x="11318" fg:w="59"/><text x="48.4774%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (59 samples, 0.25%)</title><rect x="48.2274%" y="1925" width="0.2514%" height="15" fill="rgb(219,217,0)" fg:x="11318" fg:w="59"/><text x="48.4774%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (59 samples, 0.25%)</title><rect x="48.2274%" y="1909" width="0.2514%" height="15" fill="rgb(220,29,36)" fg:x="11318" fg:w="59"/><text x="48.4774%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (27 samples, 0.12%)</title><rect x="48.3637%" y="1893" width="0.1151%" height="15" fill="rgb(243,27,24)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (27 samples, 0.12%)</title><rect x="48.3637%" y="1877" width="0.1151%" height="15" fill="rgb(228,124,36)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1887.50"></text></g><g><title>std::panicking::try (27 samples, 0.12%)</title><rect x="48.3637%" y="1861" width="0.1151%" height="15" fill="rgb(248,107,39)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (27 samples, 0.12%)</title><rect x="48.3637%" y="1845" width="0.1151%" height="15" fill="rgb(232,159,47)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (27 samples, 0.12%)</title><rect x="48.3637%" y="1829" width="0.1151%" height="15" fill="rgb(211,205,28)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (27 samples, 0.12%)</title><rect x="48.3637%" y="1813" width="0.1151%" height="15" fill="rgb(238,109,11)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="48.3637%" y="1797" width="0.1151%" height="15" fill="rgb(231,16,38)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="48.3637%" y="1781" width="0.1151%" height="15" fill="rgb(207,221,8)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="48.3637%" y="1765" width="0.1151%" height="15" fill="rgb(218,108,17)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="48.3637%" y="1749" width="0.1151%" height="15" fill="rgb(205,101,35)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="48.3637%" y="1733" width="0.1151%" height="15" fill="rgb(206,151,48)" fg:x="11350" fg:w="27"/><text x="48.6137%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="48.4191%" y="1717" width="0.0597%" height="15" fill="rgb(228,48,18)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="48.4191%" y="1701" width="0.0597%" height="15" fill="rgb(205,185,49)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1711.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="48.4191%" y="1685" width="0.0597%" height="15" fill="rgb(209,53,53)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="48.4191%" y="1669" width="0.0597%" height="15" fill="rgb(242,39,49)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="48.4191%" y="1653" width="0.0597%" height="15" fill="rgb(238,121,0)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="48.4191%" y="1637" width="0.0597%" height="15" fill="rgb(240,127,11)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="48.4191%" y="1621" width="0.0597%" height="15" fill="rgb(248,125,11)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="48.4191%" y="1605" width="0.0597%" height="15" fill="rgb(212,74,14)" fg:x="11363" fg:w="14"/><text x="48.6691%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="48.4276%" y="1589" width="0.0511%" height="15" fill="rgb(235,103,16)" fg:x="11365" fg:w="12"/><text x="48.6776%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="48.4276%" y="1573" width="0.0511%" height="15" fill="rgb(228,67,54)" fg:x="11365" fg:w="12"/><text x="48.6776%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="48.4276%" y="1557" width="0.0511%" height="15" fill="rgb(219,153,6)" fg:x="11365" fg:w="12"/><text x="48.6776%" y="1567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="48.4532%" y="1541" width="0.0256%" height="15" fill="rgb(214,211,9)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1551.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="48.4532%" y="1525" width="0.0256%" height="15" fill="rgb(231,3,18)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1535.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="48.4532%" y="1509" width="0.0256%" height="15" fill="rgb(253,214,50)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1519.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="48.4532%" y="1493" width="0.0256%" height="15" fill="rgb(245,9,23)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="48.4532%" y="1477" width="0.0256%" height="15" fill="rgb(242,182,0)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4532%" y="1461" width="0.0256%" height="15" fill="rgb(212,138,10)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4532%" y="1445" width="0.0256%" height="15" fill="rgb(252,208,46)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.4532%" y="1429" width="0.0256%" height="15" fill="rgb(217,106,6)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.4532%" y="1413" width="0.0256%" height="15" fill="rgb(211,167,45)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1423.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.4532%" y="1397" width="0.0256%" height="15" fill="rgb(254,73,37)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.4532%" y="1381" width="0.0256%" height="15" fill="rgb(226,85,41)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1391.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.4532%" y="1365" width="0.0256%" height="15" fill="rgb(223,208,53)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1375.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.4532%" y="1349" width="0.0256%" height="15" fill="rgb(205,180,50)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.4532%" y="1333" width="0.0256%" height="15" fill="rgb(213,197,50)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1343.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.4532%" y="1317" width="0.0256%" height="15" fill="rgb(232,57,36)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4532%" y="1301" width="0.0256%" height="15" fill="rgb(238,23,40)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1311.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.4532%" y="1285" width="0.0256%" height="15" fill="rgb(250,225,41)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1295.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.4532%" y="1269" width="0.0256%" height="15" fill="rgb(231,211,51)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4532%" y="1253" width="0.0256%" height="15" fill="rgb(220,137,20)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1263.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.4532%" y="1237" width="0.0256%" height="15" fill="rgb(219,68,40)" fg:x="11371" fg:w="6"/><text x="48.7032%" y="1247.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="48.4916%" y="965" width="0.0256%" height="15" fill="rgb(226,227,40)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="48.4916%" y="949" width="0.0256%" height="15" fill="rgb(223,225,27)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (6 samples, 0.03%)</title><rect x="48.4916%" y="933" width="0.0256%" height="15" fill="rgb(223,117,30)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="943.50"></text></g><g><title>rayon_core::job::JobRef::execute (6 samples, 0.03%)</title><rect x="48.4916%" y="917" width="0.0256%" height="15" fill="rgb(217,198,36)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="927.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (6 samples, 0.03%)</title><rect x="48.4916%" y="901" width="0.0256%" height="15" fill="rgb(240,188,31)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="911.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (6 samples, 0.03%)</title><rect x="48.4916%" y="885" width="0.0256%" height="15" fill="rgb(226,130,4)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="895.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="48.4916%" y="869" width="0.0256%" height="15" fill="rgb(205,76,52)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="879.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="48.4916%" y="853" width="0.0256%" height="15" fill="rgb(231,216,35)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="863.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="48.4916%" y="837" width="0.0256%" height="15" fill="rgb(214,68,30)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="847.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="48.4916%" y="821" width="0.0256%" height="15" fill="rgb(206,80,30)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="831.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="48.4916%" y="805" width="0.0256%" height="15" fill="rgb(208,224,31)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="815.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4916%" y="789" width="0.0256%" height="15" fill="rgb(251,191,2)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4916%" y="773" width="0.0256%" height="15" fill="rgb(234,116,43)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4916%" y="757" width="0.0256%" height="15" fill="rgb(241,128,4)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.4916%" y="741" width="0.0256%" height="15" fill="rgb(224,112,32)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="751.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="48.4916%" y="725" width="0.0256%" height="15" fill="rgb(211,144,42)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="48.4916%" y="709" width="0.0256%" height="15" fill="rgb(243,95,34)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="48.4916%" y="693" width="0.0256%" height="15" fill="rgb(237,197,29)" fg:x="11380" fg:w="6"/><text x="48.7416%" y="703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="48.5001%" y="677" width="0.0170%" height="15" fill="rgb(251,140,31)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="687.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="48.5001%" y="661" width="0.0170%" height="15" fill="rgb(254,120,50)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="671.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="48.5001%" y="645" width="0.0170%" height="15" fill="rgb(220,168,3)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="655.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="48.5001%" y="629" width="0.0170%" height="15" fill="rgb(254,3,49)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="48.5001%" y="613" width="0.0170%" height="15" fill="rgb(221,9,39)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="623.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5001%" y="597" width="0.0170%" height="15" fill="rgb(250,52,26)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5001%" y="581" width="0.0170%" height="15" fill="rgb(209,199,51)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.5001%" y="565" width="0.0170%" height="15" fill="rgb(251,73,27)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="575.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.5001%" y="549" width="0.0170%" height="15" fill="rgb(208,39,41)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.5001%" y="533" width="0.0170%" height="15" fill="rgb(221,35,52)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5001%" y="517" width="0.0170%" height="15" fill="rgb(235,24,46)" fg:x="11382" fg:w="4"/><text x="48.7501%" y="527.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="48.5171%" y="789" width="0.0170%" height="15" fill="rgb(222,39,13)" fg:x="11386" fg:w="4"/><text x="48.7671%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5171%" y="773" width="0.0170%" height="15" fill="rgb(233,223,48)" fg:x="11386" fg:w="4"/><text x="48.7671%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5171%" y="757" width="0.0170%" height="15" fill="rgb(209,76,20)" fg:x="11386" fg:w="4"/><text x="48.7671%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.5171%" y="741" width="0.0170%" height="15" fill="rgb(251,187,11)" fg:x="11386" fg:w="4"/><text x="48.7671%" y="751.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.5171%" y="725" width="0.0170%" height="15" fill="rgb(225,167,24)" fg:x="11386" fg:w="4"/><text x="48.7671%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.5171%" y="709" width="0.0170%" height="15" fill="rgb(225,103,15)" fg:x="11386" fg:w="4"/><text x="48.7671%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5171%" y="693" width="0.0170%" height="15" fill="rgb(224,77,36)" fg:x="11386" fg:w="4"/><text x="48.7671%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (13 samples, 0.06%)</title><rect x="48.4916%" y="1253" width="0.0554%" height="15" fill="rgb(254,79,32)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="48.4916%" y="1237" width="0.0554%" height="15" fill="rgb(249,132,3)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1247.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (13 samples, 0.06%)</title><rect x="48.4916%" y="1221" width="0.0554%" height="15" fill="rgb(250,210,12)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1231.50"></text></g><g><title>rayon_core::job::JobRef::execute (13 samples, 0.06%)</title><rect x="48.4916%" y="1205" width="0.0554%" height="15" fill="rgb(206,193,6)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1215.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (13 samples, 0.06%)</title><rect x="48.4916%" y="1189" width="0.0554%" height="15" fill="rgb(233,228,49)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1199.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (13 samples, 0.06%)</title><rect x="48.4916%" y="1173" width="0.0554%" height="15" fill="rgb(245,13,50)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1183.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="48.4916%" y="1157" width="0.0554%" height="15" fill="rgb(246,206,5)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1167.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="48.4916%" y="1141" width="0.0554%" height="15" fill="rgb(244,115,47)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1151.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="48.4916%" y="1125" width="0.0554%" height="15" fill="rgb(251,72,27)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1135.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="48.4916%" y="1109" width="0.0554%" height="15" fill="rgb(209,205,28)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1119.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="48.4916%" y="1093" width="0.0554%" height="15" fill="rgb(205,58,33)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1103.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (13 samples, 0.06%)</title><rect x="48.4916%" y="1077" width="0.0554%" height="15" fill="rgb(218,18,5)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="48.4916%" y="1061" width="0.0554%" height="15" fill="rgb(244,190,26)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="48.4916%" y="1045" width="0.0554%" height="15" fill="rgb(230,35,16)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="48.4916%" y="1029" width="0.0554%" height="15" fill="rgb(212,181,9)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1039.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="48.4916%" y="1013" width="0.0554%" height="15" fill="rgb(214,141,43)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="48.4916%" y="997" width="0.0554%" height="15" fill="rgb(216,156,8)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="48.4916%" y="981" width="0.0554%" height="15" fill="rgb(218,112,50)" fg:x="11380" fg:w="13"/><text x="48.7416%" y="991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="48.5171%" y="965" width="0.0298%" height="15" fill="rgb(210,131,8)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="975.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="48.5171%" y="949" width="0.0298%" height="15" fill="rgb(207,3,26)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="959.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="48.5171%" y="933" width="0.0298%" height="15" fill="rgb(211,108,28)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="943.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="48.5171%" y="917" width="0.0298%" height="15" fill="rgb(212,182,42)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="48.5171%" y="901" width="0.0298%" height="15" fill="rgb(231,21,42)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="48.5171%" y="885" width="0.0298%" height="15" fill="rgb(232,20,54)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="48.5171%" y="869" width="0.0298%" height="15" fill="rgb(247,36,47)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="48.5171%" y="853" width="0.0298%" height="15" fill="rgb(237,197,45)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="863.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="48.5171%" y="837" width="0.0298%" height="15" fill="rgb(232,67,9)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="48.5171%" y="821" width="0.0298%" height="15" fill="rgb(251,165,20)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="48.5171%" y="805" width="0.0298%" height="15" fill="rgb(215,18,22)" fg:x="11386" fg:w="7"/><text x="48.7671%" y="815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="48.5342%" y="789" width="0.0128%" height="15" fill="rgb(227,216,7)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="799.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="48.5342%" y="773" width="0.0128%" height="15" fill="rgb(237,50,28)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="783.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="48.5342%" y="757" width="0.0128%" height="15" fill="rgb(207,196,5)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="767.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="48.5342%" y="741" width="0.0128%" height="15" fill="rgb(217,71,26)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="48.5342%" y="725" width="0.0128%" height="15" fill="rgb(220,192,31)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="735.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5342%" y="709" width="0.0128%" height="15" fill="rgb(246,175,36)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5342%" y="693" width="0.0128%" height="15" fill="rgb(228,5,54)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.5342%" y="677" width="0.0128%" height="15" fill="rgb(233,135,17)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="687.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="48.5342%" y="661" width="0.0128%" height="15" fill="rgb(247,30,3)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="48.5342%" y="645" width="0.0128%" height="15" fill="rgb(213,157,18)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="655.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5342%" y="629" width="0.0128%" height="15" fill="rgb(243,113,43)" fg:x="11390" fg:w="3"/><text x="48.7842%" y="639.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="48.5470%" y="677" width="0.0128%" height="15" fill="rgb(225,193,22)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="687.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5470%" y="661" width="0.0128%" height="15" fill="rgb(219,32,32)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5470%" y="645" width="0.0128%" height="15" fill="rgb(232,124,5)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.5470%" y="629" width="0.0128%" height="15" fill="rgb(214,157,39)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.5470%" y="613" width="0.0128%" height="15" fill="rgb(206,50,3)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="623.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.5470%" y="597" width="0.0128%" height="15" fill="rgb(237,94,39)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.5470%" y="581" width="0.0128%" height="15" fill="rgb(230,0,37)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.5470%" y="565" width="0.0128%" height="15" fill="rgb(218,23,8)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="575.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.5470%" y="549" width="0.0128%" height="15" fill="rgb(234,49,47)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.5470%" y="533" width="0.0128%" height="15" fill="rgb(236,29,8)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.5470%" y="517" width="0.0128%" height="15" fill="rgb(252,14,46)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="527.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5470%" y="501" width="0.0128%" height="15" fill="rgb(219,75,19)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="511.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.5470%" y="485" width="0.0128%" height="15" fill="rgb(226,102,52)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="495.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.5470%" y="469" width="0.0128%" height="15" fill="rgb(242,169,44)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5470%" y="453" width="0.0128%" height="15" fill="rgb(254,190,46)" fg:x="11393" fg:w="3"/><text x="48.7970%" y="463.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="48.5470%" y="965" width="0.0213%" height="15" fill="rgb(218,208,6)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="48.5470%" y="949" width="0.0213%" height="15" fill="rgb(212,31,50)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="48.5470%" y="933" width="0.0213%" height="15" fill="rgb(215,139,53)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="943.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="48.5470%" y="917" width="0.0213%" height="15" fill="rgb(245,68,39)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="927.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="48.5470%" y="901" width="0.0213%" height="15" fill="rgb(242,54,30)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="911.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="48.5470%" y="885" width="0.0213%" height="15" fill="rgb(214,17,24)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="895.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="48.5470%" y="869" width="0.0213%" height="15" fill="rgb(244,98,48)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="879.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="48.5470%" y="853" width="0.0213%" height="15" fill="rgb(223,195,7)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="863.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="48.5470%" y="837" width="0.0213%" height="15" fill="rgb(214,94,21)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="847.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="48.5470%" y="821" width="0.0213%" height="15" fill="rgb(223,38,14)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="831.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="48.5470%" y="805" width="0.0213%" height="15" fill="rgb(245,115,22)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="815.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="48.5470%" y="789" width="0.0213%" height="15" fill="rgb(229,145,51)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="48.5470%" y="773" width="0.0213%" height="15" fill="rgb(247,102,49)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="48.5470%" y="757" width="0.0213%" height="15" fill="rgb(231,194,1)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.5470%" y="741" width="0.0213%" height="15" fill="rgb(254,218,44)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="751.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="48.5470%" y="725" width="0.0213%" height="15" fill="rgb(211,190,42)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="48.5470%" y="709" width="0.0213%" height="15" fill="rgb(250,162,28)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="48.5470%" y="693" width="0.0213%" height="15" fill="rgb(248,119,24)" fg:x="11393" fg:w="5"/><text x="48.7970%" y="703.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="48.5470%" y="1077" width="0.0384%" height="15" fill="rgb(239,227,53)" fg:x="11393" fg:w="9"/><text x="48.7970%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="48.5470%" y="1061" width="0.0384%" height="15" fill="rgb(239,98,19)" fg:x="11393" fg:w="9"/><text x="48.7970%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="48.5470%" y="1045" width="0.0384%" height="15" fill="rgb(227,102,9)" fg:x="11393" fg:w="9"/><text x="48.7970%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="48.5470%" y="1029" width="0.0384%" height="15" fill="rgb(215,52,19)" fg:x="11393" fg:w="9"/><text x="48.7970%" y="1039.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="48.5470%" y="1013" width="0.0384%" height="15" fill="rgb(218,166,20)" fg:x="11393" fg:w="9"/><text x="48.7970%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="48.5470%" y="997" width="0.0384%" height="15" fill="rgb(232,227,8)" fg:x="11393" fg:w="9"/><text x="48.7970%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="48.5470%" y="981" width="0.0384%" height="15" fill="rgb(242,211,31)" fg:x="11393" fg:w="9"/><text x="48.7970%" y="991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="48.5683%" y="965" width="0.0170%" height="15" fill="rgb(233,81,48)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="975.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="48.5683%" y="949" width="0.0170%" height="15" fill="rgb(220,58,41)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="959.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="48.5683%" y="933" width="0.0170%" height="15" fill="rgb(207,125,28)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="943.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="48.5683%" y="917" width="0.0170%" height="15" fill="rgb(244,91,28)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="48.5683%" y="901" width="0.0170%" height="15" fill="rgb(244,201,7)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5683%" y="885" width="0.0170%" height="15" fill="rgb(206,157,15)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5683%" y="869" width="0.0170%" height="15" fill="rgb(205,209,4)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.5683%" y="853" width="0.0170%" height="15" fill="rgb(225,137,38)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="863.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.5683%" y="837" width="0.0170%" height="15" fill="rgb(247,164,31)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.5683%" y="821" width="0.0170%" height="15" fill="rgb(229,104,29)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5683%" y="805" width="0.0170%" height="15" fill="rgb(221,181,5)" fg:x="11398" fg:w="4"/><text x="48.8183%" y="815.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="48.5853%" y="901" width="0.0128%" height="15" fill="rgb(238,144,41)" fg:x="11402" fg:w="3"/><text x="48.8353%" y="911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5853%" y="885" width="0.0128%" height="15" fill="rgb(249,140,41)" fg:x="11402" fg:w="3"/><text x="48.8353%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5853%" y="869" width="0.0128%" height="15" fill="rgb(244,5,52)" fg:x="11402" fg:w="3"/><text x="48.8353%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.5853%" y="853" width="0.0128%" height="15" fill="rgb(236,207,49)" fg:x="11402" fg:w="3"/><text x="48.8353%" y="863.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="48.5853%" y="837" width="0.0128%" height="15" fill="rgb(232,113,12)" fg:x="11402" fg:w="3"/><text x="48.8353%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="48.5853%" y="821" width="0.0128%" height="15" fill="rgb(239,38,31)" fg:x="11402" fg:w="3"/><text x="48.8353%" y="831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="48.5853%" y="805" width="0.0128%" height="15" fill="rgb(232,136,19)" fg:x="11402" fg:w="3"/><text x="48.8353%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (32 samples, 0.14%)</title><rect x="48.4788%" y="1717" width="0.1364%" height="15" fill="rgb(219,222,17)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (32 samples, 0.14%)</title><rect x="48.4788%" y="1701" width="0.1364%" height="15" fill="rgb(253,164,2)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (32 samples, 0.14%)</title><rect x="48.4788%" y="1685" width="0.1364%" height="15" fill="rgb(244,180,48)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1695.50"></text></g><g><title>rayon_core::job::JobRef::execute (32 samples, 0.14%)</title><rect x="48.4788%" y="1669" width="0.1364%" height="15" fill="rgb(244,220,27)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1679.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (32 samples, 0.14%)</title><rect x="48.4788%" y="1653" width="0.1364%" height="15" fill="rgb(240,4,34)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1663.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (32 samples, 0.14%)</title><rect x="48.4788%" y="1637" width="0.1364%" height="15" fill="rgb(230,208,50)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1647.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="48.4788%" y="1621" width="0.1364%" height="15" fill="rgb(243,185,48)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1631.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="48.4788%" y="1605" width="0.1364%" height="15" fill="rgb(223,158,16)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1615.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="48.4788%" y="1589" width="0.1364%" height="15" fill="rgb(251,160,40)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1599.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="48.4788%" y="1573" width="0.1364%" height="15" fill="rgb(230,17,31)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1583.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="48.4788%" y="1557" width="0.1364%" height="15" fill="rgb(225,110,53)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1567.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (32 samples, 0.14%)</title><rect x="48.4788%" y="1541" width="0.1364%" height="15" fill="rgb(242,159,39)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="48.4788%" y="1525" width="0.1364%" height="15" fill="rgb(253,106,39)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="48.4788%" y="1509" width="0.1364%" height="15" fill="rgb(211,147,52)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="48.4788%" y="1493" width="0.1364%" height="15" fill="rgb(206,221,34)" fg:x="11377" fg:w="32"/><text x="48.7288%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (30 samples, 0.13%)</title><rect x="48.4873%" y="1477" width="0.1278%" height="15" fill="rgb(235,166,36)" fg:x="11379" fg:w="30"/><text x="48.7373%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.13%)</title><rect x="48.4873%" y="1461" width="0.1278%" height="15" fill="rgb(210,209,20)" fg:x="11379" fg:w="30"/><text x="48.7373%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30 samples, 0.13%)</title><rect x="48.4873%" y="1445" width="0.1278%" height="15" fill="rgb(250,15,54)" fg:x="11379" fg:w="30"/><text x="48.7373%" y="1455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29 samples, 0.12%)</title><rect x="48.4916%" y="1429" width="0.1236%" height="15" fill="rgb(210,75,13)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1439.50"></text></g><g><title>std::panic::catch_unwind (29 samples, 0.12%)</title><rect x="48.4916%" y="1413" width="0.1236%" height="15" fill="rgb(213,77,18)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1423.50"></text></g><g><title>std::panicking::try (29 samples, 0.12%)</title><rect x="48.4916%" y="1397" width="0.1236%" height="15" fill="rgb(219,196,24)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1407.50"></text></g><g><title>std::panicking::try::do_call (29 samples, 0.12%)</title><rect x="48.4916%" y="1381" width="0.1236%" height="15" fill="rgb(215,22,15)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (29 samples, 0.12%)</title><rect x="48.4916%" y="1365" width="0.1236%" height="15" fill="rgb(249,131,20)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1375.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (29 samples, 0.12%)</title><rect x="48.4916%" y="1349" width="0.1236%" height="15" fill="rgb(222,52,45)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="48.4916%" y="1333" width="0.1236%" height="15" fill="rgb(206,12,26)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="48.4916%" y="1317" width="0.1236%" height="15" fill="rgb(206,214,1)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1327.50"></text></g><g><title>rayon_core::join::join_context (29 samples, 0.12%)</title><rect x="48.4916%" y="1301" width="0.1236%" height="15" fill="rgb(210,186,7)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1311.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.12%)</title><rect x="48.4916%" y="1285" width="0.1236%" height="15" fill="rgb(232,205,1)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (29 samples, 0.12%)</title><rect x="48.4916%" y="1269" width="0.1236%" height="15" fill="rgb(244,123,39)" fg:x="11380" fg:w="29"/><text x="48.7416%" y="1279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="48.5470%" y="1253" width="0.0682%" height="15" fill="rgb(239,102,13)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1263.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="48.5470%" y="1237" width="0.0682%" height="15" fill="rgb(222,140,5)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1247.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="48.5470%" y="1221" width="0.0682%" height="15" fill="rgb(242,179,31)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1231.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="48.5470%" y="1205" width="0.0682%" height="15" fill="rgb(216,229,1)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1215.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="48.5470%" y="1189" width="0.0682%" height="15" fill="rgb(215,48,49)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="48.5470%" y="1173" width="0.0682%" height="15" fill="rgb(213,133,13)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="48.5470%" y="1157" width="0.0682%" height="15" fill="rgb(222,58,17)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="48.5470%" y="1141" width="0.0682%" height="15" fill="rgb(216,203,35)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1151.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="48.5470%" y="1125" width="0.0682%" height="15" fill="rgb(236,127,33)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="48.5470%" y="1109" width="0.0682%" height="15" fill="rgb(216,221,14)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="48.5470%" y="1093" width="0.0682%" height="15" fill="rgb(238,147,6)" fg:x="11393" fg:w="16"/><text x="48.7970%" y="1103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="48.5853%" y="1077" width="0.0298%" height="15" fill="rgb(238,18,31)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="1087.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="48.5853%" y="1061" width="0.0298%" height="15" fill="rgb(248,221,35)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="1071.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="48.5853%" y="1045" width="0.0298%" height="15" fill="rgb(224,142,2)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="48.5853%" y="1029" width="0.0298%" height="15" fill="rgb(227,103,2)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="1039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="48.5853%" y="1013" width="0.0298%" height="15" fill="rgb(229,28,32)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="1023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="48.5853%" y="997" width="0.0298%" height="15" fill="rgb(221,91,36)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="48.5853%" y="981" width="0.0298%" height="15" fill="rgb(206,42,15)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="48.5853%" y="965" width="0.0298%" height="15" fill="rgb(246,185,47)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="975.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="48.5853%" y="949" width="0.0298%" height="15" fill="rgb(252,43,0)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="48.5853%" y="933" width="0.0298%" height="15" fill="rgb(223,128,42)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="48.5853%" y="917" width="0.0298%" height="15" fill="rgb(210,91,10)" fg:x="11402" fg:w="7"/><text x="48.8353%" y="927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="48.5981%" y="901" width="0.0170%" height="15" fill="rgb(212,202,33)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="911.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="48.5981%" y="885" width="0.0170%" height="15" fill="rgb(235,197,38)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="895.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="48.5981%" y="869" width="0.0170%" height="15" fill="rgb(214,125,10)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="879.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="48.5981%" y="853" width="0.0170%" height="15" fill="rgb(248,173,33)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="48.5981%" y="837" width="0.0170%" height="15" fill="rgb(228,108,30)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="847.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5981%" y="821" width="0.0170%" height="15" fill="rgb(246,10,44)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5981%" y="805" width="0.0170%" height="15" fill="rgb(210,18,18)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.5981%" y="789" width="0.0170%" height="15" fill="rgb(207,210,2)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="799.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.5981%" y="773" width="0.0170%" height="15" fill="rgb(244,30,19)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.5981%" y="757" width="0.0170%" height="15" fill="rgb(251,163,17)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.5981%" y="741" width="0.0170%" height="15" fill="rgb(220,13,44)" fg:x="11405" fg:w="4"/><text x="48.8481%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (38 samples, 0.16%)</title><rect x="48.4788%" y="2005" width="0.1619%" height="15" fill="rgb(213,105,36)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="2015.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (38 samples, 0.16%)</title><rect x="48.4788%" y="1989" width="0.1619%" height="15" fill="rgb(215,29,14)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1999.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (38 samples, 0.16%)</title><rect x="48.4788%" y="1973" width="0.1619%" height="15" fill="rgb(253,146,26)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1983.50"></text></g><g><title>rayon_core::job::JobRef::execute (38 samples, 0.16%)</title><rect x="48.4788%" y="1957" width="0.1619%" height="15" fill="rgb(226,57,21)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1967.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (38 samples, 0.16%)</title><rect x="48.4788%" y="1941" width="0.1619%" height="15" fill="rgb(218,199,23)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1951.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (38 samples, 0.16%)</title><rect x="48.4788%" y="1925" width="0.1619%" height="15" fill="rgb(229,109,7)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1935.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (38 samples, 0.16%)</title><rect x="48.4788%" y="1909" width="0.1619%" height="15" fill="rgb(210,224,32)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1919.50"></text></g><g><title>std::panic::catch_unwind (38 samples, 0.16%)</title><rect x="48.4788%" y="1893" width="0.1619%" height="15" fill="rgb(235,160,5)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1903.50"></text></g><g><title>std::panicking::try (38 samples, 0.16%)</title><rect x="48.4788%" y="1877" width="0.1619%" height="15" fill="rgb(250,94,42)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1887.50"></text></g><g><title>std::panicking::try::do_call (38 samples, 0.16%)</title><rect x="48.4788%" y="1861" width="0.1619%" height="15" fill="rgb(220,187,3)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1871.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (38 samples, 0.16%)</title><rect x="48.4788%" y="1845" width="0.1619%" height="15" fill="rgb(223,142,48)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1855.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (38 samples, 0.16%)</title><rect x="48.4788%" y="1829" width="0.1619%" height="15" fill="rgb(223,178,30)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (38 samples, 0.16%)</title><rect x="48.4788%" y="1813" width="0.1619%" height="15" fill="rgb(251,110,13)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (38 samples, 0.16%)</title><rect x="48.4788%" y="1797" width="0.1619%" height="15" fill="rgb(238,151,16)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.16%)</title><rect x="48.4788%" y="1781" width="0.1619%" height="15" fill="rgb(231,158,15)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (38 samples, 0.16%)</title><rect x="48.4788%" y="1765" width="0.1619%" height="15" fill="rgb(236,57,9)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.16%)</title><rect x="48.4788%" y="1749" width="0.1619%" height="15" fill="rgb(242,133,53)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38 samples, 0.16%)</title><rect x="48.4788%" y="1733" width="0.1619%" height="15" fill="rgb(224,76,43)" fg:x="11377" fg:w="38"/><text x="48.7288%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="48.6151%" y="1717" width="0.0256%" height="15" fill="rgb(254,99,30)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="48.6151%" y="1701" width="0.0256%" height="15" fill="rgb(213,127,24)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1711.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="48.6151%" y="1685" width="0.0256%" height="15" fill="rgb(237,152,10)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="48.6151%" y="1669" width="0.0256%" height="15" fill="rgb(253,136,30)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="48.6151%" y="1653" width="0.0256%" height="15" fill="rgb(214,129,19)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="48.6151%" y="1637" width="0.0256%" height="15" fill="rgb(212,119,28)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.6151%" y="1621" width="0.0256%" height="15" fill="rgb(211,111,11)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.6151%" y="1605" width="0.0256%" height="15" fill="rgb(239,50,14)" fg:x="11409" fg:w="6"/><text x="48.8651%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="48.6237%" y="1589" width="0.0170%" height="15" fill="rgb(218,63,4)" fg:x="11411" fg:w="4"/><text x="48.8737%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.6237%" y="1573" width="0.0170%" height="15" fill="rgb(238,212,49)" fg:x="11411" fg:w="4"/><text x="48.8737%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="48.6237%" y="1557" width="0.0170%" height="15" fill="rgb(231,116,48)" fg:x="11411" fg:w="4"/><text x="48.8737%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.6407%" y="1877" width="0.0128%" height="15" fill="rgb(248,48,8)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1887.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.6407%" y="1861" width="0.0128%" height="15" fill="rgb(231,214,23)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.6407%" y="1845" width="0.0128%" height="15" fill="rgb(233,36,7)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1855.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.6407%" y="1829" width="0.0128%" height="15" fill="rgb(231,185,17)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1839.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.6407%" y="1813" width="0.0128%" height="15" fill="rgb(228,169,6)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1823.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.6407%" y="1797" width="0.0128%" height="15" fill="rgb(217,57,49)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1807.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.6407%" y="1781" width="0.0128%" height="15" fill="rgb(207,181,35)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1791.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.6407%" y="1765" width="0.0128%" height="15" fill="rgb(228,10,5)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1775.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.6407%" y="1749" width="0.0128%" height="15" fill="rgb(251,125,40)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1759.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.6407%" y="1733" width="0.0128%" height="15" fill="rgb(205,109,6)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1743.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.6407%" y="1717" width="0.0128%" height="15" fill="rgb(222,160,37)" fg:x="11415" fg:w="3"/><text x="48.8907%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.6535%" y="1765" width="0.0128%" height="15" fill="rgb(221,203,21)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1775.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.6535%" y="1749" width="0.0128%" height="15" fill="rgb(213,221,23)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.6535%" y="1733" width="0.0128%" height="15" fill="rgb(254,128,36)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1743.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.6535%" y="1717" width="0.0128%" height="15" fill="rgb(241,188,34)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1727.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.6535%" y="1701" width="0.0128%" height="15" fill="rgb(209,135,46)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1711.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.6535%" y="1685" width="0.0128%" height="15" fill="rgb(206,184,42)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1695.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.6535%" y="1669" width="0.0128%" height="15" fill="rgb(228,24,49)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1679.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.6535%" y="1653" width="0.0128%" height="15" fill="rgb(240,81,21)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1663.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.6535%" y="1637" width="0.0128%" height="15" fill="rgb(211,142,29)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1647.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.6535%" y="1621" width="0.0128%" height="15" fill="rgb(247,97,36)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1631.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.6535%" y="1605" width="0.0128%" height="15" fill="rgb(239,133,5)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1615.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="48.6535%" y="1589" width="0.0128%" height="15" fill="rgb(209,120,54)" fg:x="11418" fg:w="3"/><text x="48.9035%" y="1599.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="48.6748%" y="1605" width="0.0213%" height="15" fill="rgb(219,106,0)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="48.6748%" y="1589" width="0.0213%" height="15" fill="rgb(248,226,24)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="48.6748%" y="1573" width="0.0213%" height="15" fill="rgb(239,55,34)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.6748%" y="1557" width="0.0213%" height="15" fill="rgb(222,171,44)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="48.6748%" y="1541" width="0.0213%" height="15" fill="rgb(225,44,22)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1551.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="48.6748%" y="1525" width="0.0213%" height="15" fill="rgb(207,37,37)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="48.6748%" y="1509" width="0.0213%" height="15" fill="rgb(228,96,23)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1519.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="48.6748%" y="1493" width="0.0213%" height="15" fill="rgb(207,71,28)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1503.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="48.6748%" y="1477" width="0.0213%" height="15" fill="rgb(241,27,48)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1487.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="48.6748%" y="1461" width="0.0213%" height="15" fill="rgb(228,46,1)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="48.6748%" y="1445" width="0.0213%" height="15" fill="rgb(205,200,3)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="48.6748%" y="1429" width="0.0213%" height="15" fill="rgb(209,58,10)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="48.6748%" y="1413" width="0.0213%" height="15" fill="rgb(217,102,4)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1423.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="48.6748%" y="1397" width="0.0213%" height="15" fill="rgb(252,151,37)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1407.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="48.6748%" y="1381" width="0.0213%" height="15" fill="rgb(222,195,47)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1391.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="48.6748%" y="1365" width="0.0213%" height="15" fill="rgb(224,152,20)" fg:x="11423" fg:w="5"/><text x="48.9248%" y="1375.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (4 samples, 0.02%)</title><rect x="48.6791%" y="1349" width="0.0170%" height="15" fill="rgb(242,41,54)" fg:x="11424" fg:w="4"/><text x="48.9291%" y="1359.50"></text></g><g><title>std::f64::<impl f64>::sqrt (4 samples, 0.02%)</title><rect x="48.6791%" y="1333" width="0.0170%" height="15" fill="rgb(213,188,54)" fg:x="11424" fg:w="4"/><text x="48.9291%" y="1343.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="48.6663%" y="1717" width="0.0554%" height="15" fill="rgb(213,56,42)" fg:x="11421" fg:w="13"/><text x="48.9163%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="48.6663%" y="1701" width="0.0554%" height="15" fill="rgb(232,226,44)" fg:x="11421" fg:w="13"/><text x="48.9163%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="48.6663%" y="1685" width="0.0554%" height="15" fill="rgb(215,58,7)" fg:x="11421" fg:w="13"/><text x="48.9163%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="48.6663%" y="1669" width="0.0554%" height="15" fill="rgb(223,226,52)" fg:x="11421" fg:w="13"/><text x="48.9163%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="48.6748%" y="1653" width="0.0469%" height="15" fill="rgb(241,113,23)" fg:x="11423" fg:w="11"/><text x="48.9248%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="48.6748%" y="1637" width="0.0469%" height="15" fill="rgb(254,126,29)" fg:x="11423" fg:w="11"/><text x="48.9248%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="48.6748%" y="1621" width="0.0469%" height="15" fill="rgb(212,195,15)" fg:x="11423" fg:w="11"/><text x="48.9248%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="48.6961%" y="1605" width="0.0256%" height="15" fill="rgb(245,170,12)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="48.6961%" y="1589" width="0.0256%" height="15" fill="rgb(252,219,48)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1599.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="48.6961%" y="1573" width="0.0256%" height="15" fill="rgb(244,14,9)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="48.6961%" y="1557" width="0.0256%" height="15" fill="rgb(240,209,34)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="48.6961%" y="1541" width="0.0256%" height="15" fill="rgb(222,0,44)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="48.6961%" y="1525" width="0.0256%" height="15" fill="rgb(230,46,35)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.6961%" y="1509" width="0.0256%" height="15" fill="rgb(245,107,41)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.6961%" y="1493" width="0.0256%" height="15" fill="rgb(242,65,14)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.6961%" y="1477" width="0.0256%" height="15" fill="rgb(230,201,0)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.6961%" y="1461" width="0.0256%" height="15" fill="rgb(249,42,12)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.6961%" y="1445" width="0.0256%" height="15" fill="rgb(213,203,41)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.6961%" y="1429" width="0.0256%" height="15" fill="rgb(231,178,50)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.6961%" y="1413" width="0.0256%" height="15" fill="rgb(213,158,50)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.6961%" y="1397" width="0.0256%" height="15" fill="rgb(237,151,54)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.6961%" y="1381" width="0.0256%" height="15" fill="rgb(207,5,11)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.6961%" y="1365" width="0.0256%" height="15" fill="rgb(224,128,32)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.6961%" y="1349" width="0.0256%" height="15" fill="rgb(239,186,21)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.6961%" y="1333" width="0.0256%" height="15" fill="rgb(228,157,54)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.6961%" y="1317" width="0.0256%" height="15" fill="rgb(213,221,49)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1327.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.6961%" y="1301" width="0.0256%" height="15" fill="rgb(238,22,15)" fg:x="11428" fg:w="6"/><text x="48.9461%" y="1311.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (5 samples, 0.02%)</title><rect x="48.7004%" y="1285" width="0.0213%" height="15" fill="rgb(240,174,9)" fg:x="11429" fg:w="5"/><text x="48.9504%" y="1295.50"></text></g><g><title>std::f64::<impl f64>::sqrt (5 samples, 0.02%)</title><rect x="48.7004%" y="1269" width="0.0213%" height="15" fill="rgb(237,218,7)" fg:x="11429" fg:w="5"/><text x="48.9504%" y="1279.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.7217%" y="1573" width="0.0128%" height="15" fill="rgb(205,53,32)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.7217%" y="1557" width="0.0128%" height="15" fill="rgb(206,132,21)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1567.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.7217%" y="1541" width="0.0128%" height="15" fill="rgb(214,8,19)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1551.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.7217%" y="1525" width="0.0128%" height="15" fill="rgb(222,119,52)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1535.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.7217%" y="1509" width="0.0128%" height="15" fill="rgb(230,28,40)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1519.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.7217%" y="1493" width="0.0128%" height="15" fill="rgb(236,90,29)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1503.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.7217%" y="1477" width="0.0128%" height="15" fill="rgb(230,210,18)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1487.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.7217%" y="1461" width="0.0128%" height="15" fill="rgb(207,17,12)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1471.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.7217%" y="1445" width="0.0128%" height="15" fill="rgb(235,74,28)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1455.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.7217%" y="1429" width="0.0128%" height="15" fill="rgb(251,220,34)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1439.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="48.7217%" y="1413" width="0.0128%" height="15" fill="rgb(248,171,53)" fg:x="11434" fg:w="3"/><text x="48.9717%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="48.7217%" y="1589" width="0.0170%" height="15" fill="rgb(240,228,31)" fg:x="11434" fg:w="4"/><text x="48.9717%" y="1599.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="48.7387%" y="1285" width="0.0128%" height="15" fill="rgb(240,57,33)" fg:x="11438" fg:w="3"/><text x="48.9887%" y="1295.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="48.7387%" y="1269" width="0.0128%" height="15" fill="rgb(224,212,18)" fg:x="11438" fg:w="3"/><text x="48.9887%" y="1279.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="48.7387%" y="1253" width="0.0128%" height="15" fill="rgb(244,77,11)" fg:x="11438" fg:w="3"/><text x="48.9887%" y="1263.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="48.7387%" y="1237" width="0.0128%" height="15" fill="rgb(205,30,5)" fg:x="11438" fg:w="3"/><text x="48.9887%" y="1247.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="48.7387%" y="1541" width="0.0256%" height="15" fill="rgb(229,174,35)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7387%" y="1525" width="0.0256%" height="15" fill="rgb(205,193,2)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7387%" y="1509" width="0.0256%" height="15" fill="rgb(208,184,25)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.7387%" y="1493" width="0.0256%" height="15" fill="rgb(253,98,42)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.7387%" y="1477" width="0.0256%" height="15" fill="rgb(239,215,40)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.7387%" y="1461" width="0.0256%" height="15" fill="rgb(225,26,9)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.7387%" y="1445" width="0.0256%" height="15" fill="rgb(250,211,7)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.7387%" y="1429" width="0.0256%" height="15" fill="rgb(230,13,41)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.7387%" y="1413" width="0.0256%" height="15" fill="rgb(237,217,22)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.7387%" y="1397" width="0.0256%" height="15" fill="rgb(250,80,12)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.7387%" y="1381" width="0.0256%" height="15" fill="rgb(235,199,27)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7387%" y="1365" width="0.0256%" height="15" fill="rgb(211,39,0)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.7387%" y="1349" width="0.0256%" height="15" fill="rgb(208,189,53)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.7387%" y="1333" width="0.0256%" height="15" fill="rgb(225,19,34)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7387%" y="1317" width="0.0256%" height="15" fill="rgb(212,3,16)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1327.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.7387%" y="1301" width="0.0256%" height="15" fill="rgb(254,224,0)" fg:x="11438" fg:w="6"/><text x="48.9887%" y="1311.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="48.7643%" y="1237" width="0.0213%" height="15" fill="rgb(211,202,21)" fg:x="11444" fg:w="5"/><text x="49.0143%" y="1247.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (4 samples, 0.02%)</title><rect x="48.7685%" y="1221" width="0.0170%" height="15" fill="rgb(253,26,52)" fg:x="11445" fg:w="4"/><text x="49.0185%" y="1231.50"></text></g><g><title>core::f64::<impl f64>::recip (4 samples, 0.02%)</title><rect x="48.7685%" y="1205" width="0.0170%" height="15" fill="rgb(219,90,10)" fg:x="11445" fg:w="4"/><text x="49.0185%" y="1215.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (32 samples, 0.14%)</title><rect x="48.6535%" y="1829" width="0.1364%" height="15" fill="rgb(240,76,23)" fg:x="11418" fg:w="32"/><text x="48.9035%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="48.6535%" y="1813" width="0.1364%" height="15" fill="rgb(217,175,50)" fg:x="11418" fg:w="32"/><text x="48.9035%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="48.6535%" y="1797" width="0.1364%" height="15" fill="rgb(232,223,33)" fg:x="11418" fg:w="32"/><text x="48.9035%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="48.6535%" y="1781" width="0.1364%" height="15" fill="rgb(205,104,41)" fg:x="11418" fg:w="32"/><text x="48.9035%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (29 samples, 0.12%)</title><rect x="48.6663%" y="1765" width="0.1236%" height="15" fill="rgb(244,137,35)" fg:x="11421" fg:w="29"/><text x="48.9163%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.12%)</title><rect x="48.6663%" y="1749" width="0.1236%" height="15" fill="rgb(240,79,14)" fg:x="11421" fg:w="29"/><text x="48.9163%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (29 samples, 0.12%)</title><rect x="48.6663%" y="1733" width="0.1236%" height="15" fill="rgb(221,51,8)" fg:x="11421" fg:w="29"/><text x="48.9163%" y="1743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="48.7217%" y="1717" width="0.0682%" height="15" fill="rgb(229,85,20)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="48.7217%" y="1701" width="0.0682%" height="15" fill="rgb(210,44,40)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1711.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="48.7217%" y="1685" width="0.0682%" height="15" fill="rgb(216,123,43)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="48.7217%" y="1669" width="0.0682%" height="15" fill="rgb(205,92,46)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="48.7217%" y="1653" width="0.0682%" height="15" fill="rgb(218,199,27)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="48.7217%" y="1637" width="0.0682%" height="15" fill="rgb(219,72,8)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="48.7217%" y="1621" width="0.0682%" height="15" fill="rgb(217,133,16)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="48.7217%" y="1605" width="0.0682%" height="15" fill="rgb(222,216,46)" fg:x="11434" fg:w="16"/><text x="48.9717%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="48.7387%" y="1589" width="0.0511%" height="15" fill="rgb(227,116,13)" fg:x="11438" fg:w="12"/><text x="48.9887%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="48.7387%" y="1573" width="0.0511%" height="15" fill="rgb(225,52,37)" fg:x="11438" fg:w="12"/><text x="48.9887%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="48.7387%" y="1557" width="0.0511%" height="15" fill="rgb(254,156,36)" fg:x="11438" fg:w="12"/><text x="48.9887%" y="1567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="48.7643%" y="1541" width="0.0256%" height="15" fill="rgb(213,23,49)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1551.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="48.7643%" y="1525" width="0.0256%" height="15" fill="rgb(219,168,48)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1535.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="48.7643%" y="1509" width="0.0256%" height="15" fill="rgb(215,51,33)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1519.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="48.7643%" y="1493" width="0.0256%" height="15" fill="rgb(218,60,47)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="48.7643%" y="1477" width="0.0256%" height="15" fill="rgb(254,172,9)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7643%" y="1461" width="0.0256%" height="15" fill="rgb(248,195,35)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7643%" y="1445" width="0.0256%" height="15" fill="rgb(248,137,0)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.7643%" y="1429" width="0.0256%" height="15" fill="rgb(249,134,12)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.7643%" y="1413" width="0.0256%" height="15" fill="rgb(222,135,34)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1423.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.7643%" y="1397" width="0.0256%" height="15" fill="rgb(211,37,47)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.7643%" y="1381" width="0.0256%" height="15" fill="rgb(230,220,10)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1391.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.7643%" y="1365" width="0.0256%" height="15" fill="rgb(219,167,8)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1375.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.7643%" y="1349" width="0.0256%" height="15" fill="rgb(235,223,36)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.7643%" y="1333" width="0.0256%" height="15" fill="rgb(207,170,36)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1343.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.7643%" y="1317" width="0.0256%" height="15" fill="rgb(225,148,47)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7643%" y="1301" width="0.0256%" height="15" fill="rgb(247,130,38)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1311.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.7643%" y="1285" width="0.0256%" height="15" fill="rgb(247,127,52)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1295.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.7643%" y="1269" width="0.0256%" height="15" fill="rgb(237,31,14)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.7643%" y="1253" width="0.0256%" height="15" fill="rgb(225,136,6)" fg:x="11444" fg:w="6"/><text x="49.0143%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.7898%" y="1701" width="0.0128%" height="15" fill="rgb(222,227,14)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1711.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.7898%" y="1685" width="0.0128%" height="15" fill="rgb(224,142,18)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.7898%" y="1669" width="0.0128%" height="15" fill="rgb(215,9,9)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1679.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.7898%" y="1653" width="0.0128%" height="15" fill="rgb(213,93,15)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1663.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.7898%" y="1637" width="0.0128%" height="15" fill="rgb(212,187,27)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1647.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.7898%" y="1621" width="0.0128%" height="15" fill="rgb(207,11,26)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1631.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.7898%" y="1605" width="0.0128%" height="15" fill="rgb(237,187,1)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1615.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.7898%" y="1589" width="0.0128%" height="15" fill="rgb(238,143,33)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1599.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.7898%" y="1573" width="0.0128%" height="15" fill="rgb(233,213,26)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1583.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.7898%" y="1557" width="0.0128%" height="15" fill="rgb(231,15,17)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1567.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.7898%" y="1541" width="0.0128%" height="15" fill="rgb(208,50,49)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1551.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="48.7898%" y="1525" width="0.0128%" height="15" fill="rgb(243,127,51)" fg:x="11450" fg:w="3"/><text x="49.0398%" y="1535.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (5 samples, 0.02%)</title><rect x="48.8111%" y="1285" width="0.0213%" height="15" fill="rgb(225,95,13)" fg:x="11455" fg:w="5"/><text x="49.0611%" y="1295.50"></text></g><g><title>std::f64::<impl f64>::exp (5 samples, 0.02%)</title><rect x="48.8111%" y="1269" width="0.0213%" height="15" fill="rgb(228,59,30)" fg:x="11455" fg:w="5"/><text x="49.0611%" y="1279.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="48.8154%" y="1253" width="0.0170%" height="15" fill="rgb(223,112,25)" fg:x="11456" fg:w="4"/><text x="49.0654%" y="1263.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="48.8154%" y="1237" width="0.0170%" height="15" fill="rgb(218,102,41)" fg:x="11456" fg:w="4"/><text x="49.0654%" y="1247.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="48.8111%" y="1541" width="0.0256%" height="15" fill="rgb(245,131,1)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8111%" y="1525" width="0.0256%" height="15" fill="rgb(247,190,37)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8111%" y="1509" width="0.0256%" height="15" fill="rgb(247,48,3)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.8111%" y="1493" width="0.0256%" height="15" fill="rgb(254,98,26)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.8111%" y="1477" width="0.0256%" height="15" fill="rgb(234,41,37)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1487.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.8111%" y="1461" width="0.0256%" height="15" fill="rgb(226,36,36)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.8111%" y="1445" width="0.0256%" height="15" fill="rgb(207,79,28)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.8111%" y="1429" width="0.0256%" height="15" fill="rgb(218,94,51)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1439.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.8111%" y="1413" width="0.0256%" height="15" fill="rgb(229,188,18)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1423.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.8111%" y="1397" width="0.0256%" height="15" fill="rgb(237,40,38)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1407.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.8111%" y="1381" width="0.0256%" height="15" fill="rgb(244,155,10)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8111%" y="1365" width="0.0256%" height="15" fill="rgb(250,142,28)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1375.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.8111%" y="1349" width="0.0256%" height="15" fill="rgb(230,182,0)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.8111%" y="1333" width="0.0256%" height="15" fill="rgb(208,18,52)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1343.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8111%" y="1317" width="0.0256%" height="15" fill="rgb(232,4,31)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1327.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.8111%" y="1301" width="0.0256%" height="15" fill="rgb(211,172,29)" fg:x="11455" fg:w="6"/><text x="49.0611%" y="1311.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="48.8367%" y="1221" width="0.0128%" height="15" fill="rgb(217,70,45)" fg:x="11461" fg:w="3"/><text x="49.0867%" y="1231.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="48.8367%" y="1205" width="0.0128%" height="15" fill="rgb(248,172,8)" fg:x="11461" fg:w="3"/><text x="49.0867%" y="1215.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (4 samples, 0.02%)</title><rect x="48.8367%" y="1237" width="0.0170%" height="15" fill="rgb(205,154,47)" fg:x="11461" fg:w="4"/><text x="49.0867%" y="1247.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="48.8026%" y="1653" width="0.0554%" height="15" fill="rgb(239,189,12)" fg:x="11453" fg:w="13"/><text x="49.0526%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="48.8026%" y="1637" width="0.0554%" height="15" fill="rgb(214,125,53)" fg:x="11453" fg:w="13"/><text x="49.0526%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="48.8026%" y="1621" width="0.0554%" height="15" fill="rgb(237,19,8)" fg:x="11453" fg:w="13"/><text x="49.0526%" y="1631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="48.8026%" y="1605" width="0.0554%" height="15" fill="rgb(251,87,21)" fg:x="11453" fg:w="13"/><text x="49.0526%" y="1615.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="48.8111%" y="1589" width="0.0469%" height="15" fill="rgb(235,66,31)" fg:x="11455" fg:w="11"/><text x="49.0611%" y="1599.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="48.8111%" y="1573" width="0.0469%" height="15" fill="rgb(248,49,23)" fg:x="11455" fg:w="11"/><text x="49.0611%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="48.8111%" y="1557" width="0.0469%" height="15" fill="rgb(227,145,2)" fg:x="11455" fg:w="11"/><text x="49.0611%" y="1567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="48.8367%" y="1541" width="0.0213%" height="15" fill="rgb(224,115,48)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1551.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="48.8367%" y="1525" width="0.0213%" height="15" fill="rgb(253,1,7)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1535.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="48.8367%" y="1509" width="0.0213%" height="15" fill="rgb(239,188,18)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1519.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="48.8367%" y="1493" width="0.0213%" height="15" fill="rgb(214,44,17)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="48.8367%" y="1477" width="0.0213%" height="15" fill="rgb(214,154,54)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="48.8367%" y="1461" width="0.0213%" height="15" fill="rgb(240,53,12)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="48.8367%" y="1445" width="0.0213%" height="15" fill="rgb(215,228,19)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.8367%" y="1429" width="0.0213%" height="15" fill="rgb(243,116,27)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="48.8367%" y="1413" width="0.0213%" height="15" fill="rgb(227,35,20)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1423.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="48.8367%" y="1397" width="0.0213%" height="15" fill="rgb(215,117,22)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (5 samples, 0.02%)</title><rect x="48.8367%" y="1381" width="0.0213%" height="15" fill="rgb(254,163,43)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1391.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="48.8367%" y="1365" width="0.0213%" height="15" fill="rgb(221,41,19)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1375.50"></text></g><g><title>core::option::Option<T>::map (5 samples, 0.02%)</title><rect x="48.8367%" y="1349" width="0.0213%" height="15" fill="rgb(224,89,12)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (5 samples, 0.02%)</title><rect x="48.8367%" y="1333" width="0.0213%" height="15" fill="rgb(212,13,35)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1343.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (5 samples, 0.02%)</title><rect x="48.8367%" y="1317" width="0.0213%" height="15" fill="rgb(241,150,0)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (5 samples, 0.02%)</title><rect x="48.8367%" y="1301" width="0.0213%" height="15" fill="rgb(239,153,22)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1311.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (5 samples, 0.02%)</title><rect x="48.8367%" y="1285" width="0.0213%" height="15" fill="rgb(241,202,4)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1295.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="48.8367%" y="1269" width="0.0213%" height="15" fill="rgb(218,27,29)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (5 samples, 0.02%)</title><rect x="48.8367%" y="1253" width="0.0213%" height="15" fill="rgb(250,168,34)" fg:x="11461" fg:w="5"/><text x="49.0867%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="48.8580%" y="1525" width="0.0128%" height="15" fill="rgb(235,48,40)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1535.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="48.8580%" y="1509" width="0.0128%" height="15" fill="rgb(226,162,26)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="48.8580%" y="1493" width="0.0128%" height="15" fill="rgb(229,195,47)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1503.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="48.8580%" y="1477" width="0.0128%" height="15" fill="rgb(244,91,8)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1487.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="48.8580%" y="1461" width="0.0128%" height="15" fill="rgb(248,190,52)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1471.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="48.8580%" y="1445" width="0.0128%" height="15" fill="rgb(212,190,49)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1455.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="48.8580%" y="1429" width="0.0128%" height="15" fill="rgb(220,147,17)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="48.8580%" y="1413" width="0.0128%" height="15" fill="rgb(213,31,12)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1423.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="48.8580%" y="1397" width="0.0128%" height="15" fill="rgb(209,21,17)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1407.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="48.8580%" y="1381" width="0.0128%" height="15" fill="rgb(209,205,41)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1391.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="48.8580%" y="1365" width="0.0128%" height="15" fill="rgb(214,171,21)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1375.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="48.8580%" y="1349" width="0.0128%" height="15" fill="rgb(247,208,6)" fg:x="11466" fg:w="3"/><text x="49.1080%" y="1359.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="48.8708%" y="1477" width="0.0256%" height="15" fill="rgb(237,110,20)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1487.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8708%" y="1461" width="0.0256%" height="15" fill="rgb(213,128,24)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8708%" y="1445" width="0.0256%" height="15" fill="rgb(222,149,16)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.8708%" y="1429" width="0.0256%" height="15" fill="rgb(218,7,42)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1439.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.8708%" y="1413" width="0.0256%" height="15" fill="rgb(226,122,33)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1423.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.8708%" y="1397" width="0.0256%" height="15" fill="rgb(234,210,13)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.8708%" y="1381" width="0.0256%" height="15" fill="rgb(233,159,9)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1391.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.8708%" y="1365" width="0.0256%" height="15" fill="rgb(223,202,26)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1375.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.8708%" y="1349" width="0.0256%" height="15" fill="rgb(249,7,4)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1359.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.8708%" y="1333" width="0.0256%" height="15" fill="rgb(242,108,12)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1343.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.8708%" y="1317" width="0.0256%" height="15" fill="rgb(219,78,13)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1327.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8708%" y="1301" width="0.0256%" height="15" fill="rgb(246,16,54)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1311.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.8708%" y="1285" width="0.0256%" height="15" fill="rgb(251,169,3)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1295.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.8708%" y="1269" width="0.0256%" height="15" fill="rgb(214,109,44)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1279.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8708%" y="1253" width="0.0256%" height="15" fill="rgb(224,45,4)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1263.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.8708%" y="1237" width="0.0256%" height="15" fill="rgb(223,85,38)" fg:x="11469" fg:w="6"/><text x="49.1208%" y="1247.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (3 samples, 0.01%)</title><rect x="48.8964%" y="1157" width="0.0128%" height="15" fill="rgb(228,118,26)" fg:x="11475" fg:w="3"/><text x="49.1464%" y="1167.50"></text></g><g><title>std::f64::<impl f64>::exp (3 samples, 0.01%)</title><rect x="48.8964%" y="1141" width="0.0128%" height="15" fill="rgb(235,18,48)" fg:x="11475" fg:w="3"/><text x="49.1464%" y="1151.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="48.8964%" y="1125" width="0.0128%" height="15" fill="rgb(240,47,34)" fg:x="11475" fg:w="3"/><text x="49.1464%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (167 samples, 0.71%)</title><rect x="48.2103%" y="2293" width="0.7116%" height="15" fill="rgb(253,204,41)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (167 samples, 0.71%)</title><rect x="48.2103%" y="2277" width="0.7116%" height="15" fill="rgb(237,228,26)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2287.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (167 samples, 0.71%)</title><rect x="48.2103%" y="2261" width="0.7116%" height="15" fill="rgb(218,158,43)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2271.50"></text></g><g><title>rayon_core::job::JobRef::execute (167 samples, 0.71%)</title><rect x="48.2103%" y="2245" width="0.7116%" height="15" fill="rgb(226,56,12)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2255.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (167 samples, 0.71%)</title><rect x="48.2103%" y="2229" width="0.7116%" height="15" fill="rgb(208,7,46)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2239.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (167 samples, 0.71%)</title><rect x="48.2103%" y="2213" width="0.7116%" height="15" fill="rgb(235,107,37)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2223.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (167 samples, 0.71%)</title><rect x="48.2103%" y="2197" width="0.7116%" height="15" fill="rgb(211,57,11)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2207.50"></text></g><g><title>std::panic::catch_unwind (167 samples, 0.71%)</title><rect x="48.2103%" y="2181" width="0.7116%" height="15" fill="rgb(209,12,51)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2191.50"></text></g><g><title>std::panicking::try (167 samples, 0.71%)</title><rect x="48.2103%" y="2165" width="0.7116%" height="15" fill="rgb(243,55,11)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2175.50"></text></g><g><title>std::panicking::try::do_call (167 samples, 0.71%)</title><rect x="48.2103%" y="2149" width="0.7116%" height="15" fill="rgb(236,210,20)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2159.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (167 samples, 0.71%)</title><rect x="48.2103%" y="2133" width="0.7116%" height="15" fill="rgb(252,86,49)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2143.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (167 samples, 0.71%)</title><rect x="48.2103%" y="2117" width="0.7116%" height="15" fill="rgb(220,88,53)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (167 samples, 0.71%)</title><rect x="48.2103%" y="2101" width="0.7116%" height="15" fill="rgb(248,123,43)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (167 samples, 0.71%)</title><rect x="48.2103%" y="2085" width="0.7116%" height="15" fill="rgb(245,112,41)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (167 samples, 0.71%)</title><rect x="48.2103%" y="2069" width="0.7116%" height="15" fill="rgb(205,91,17)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (167 samples, 0.71%)</title><rect x="48.2103%" y="2053" width="0.7116%" height="15" fill="rgb(221,86,40)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (167 samples, 0.71%)</title><rect x="48.2103%" y="2037" width="0.7116%" height="15" fill="rgb(254,170,40)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (167 samples, 0.71%)</title><rect x="48.2103%" y="2021" width="0.7116%" height="15" fill="rgb(209,28,2)" fg:x="11314" fg:w="167"/><text x="48.4603%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (66 samples, 0.28%)</title><rect x="48.6407%" y="2005" width="0.2812%" height="15" fill="rgb(213,62,23)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (66 samples, 0.28%)</title><rect x="48.6407%" y="1989" width="0.2812%" height="15" fill="rgb(207,201,3)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="1999.50"></text></g><g><title>std::panicking::try (66 samples, 0.28%)</title><rect x="48.6407%" y="1973" width="0.2812%" height="15" fill="rgb(254,69,20)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (66 samples, 0.28%)</title><rect x="48.6407%" y="1957" width="0.2812%" height="15" fill="rgb(231,6,28)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (66 samples, 0.28%)</title><rect x="48.6407%" y="1941" width="0.2812%" height="15" fill="rgb(205,212,7)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (66 samples, 0.28%)</title><rect x="48.6407%" y="1925" width="0.2812%" height="15" fill="rgb(243,222,34)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (66 samples, 0.28%)</title><rect x="48.6407%" y="1909" width="0.2812%" height="15" fill="rgb(240,195,22)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 0.28%)</title><rect x="48.6407%" y="1893" width="0.2812%" height="15" fill="rgb(251,16,6)" fg:x="11415" fg:w="66"/><text x="48.8907%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (63 samples, 0.27%)</title><rect x="48.6535%" y="1877" width="0.2685%" height="15" fill="rgb(205,60,2)" fg:x="11418" fg:w="63"/><text x="48.9035%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (63 samples, 0.27%)</title><rect x="48.6535%" y="1861" width="0.2685%" height="15" fill="rgb(208,172,15)" fg:x="11418" fg:w="63"/><text x="48.9035%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (63 samples, 0.27%)</title><rect x="48.6535%" y="1845" width="0.2685%" height="15" fill="rgb(222,76,43)" fg:x="11418" fg:w="63"/><text x="48.9035%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (31 samples, 0.13%)</title><rect x="48.7898%" y="1829" width="0.1321%" height="15" fill="rgb(208,108,51)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (31 samples, 0.13%)</title><rect x="48.7898%" y="1813" width="0.1321%" height="15" fill="rgb(206,88,31)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1823.50"></text></g><g><title>std::panicking::try (31 samples, 0.13%)</title><rect x="48.7898%" y="1797" width="0.1321%" height="15" fill="rgb(226,36,31)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (31 samples, 0.13%)</title><rect x="48.7898%" y="1781" width="0.1321%" height="15" fill="rgb(213,43,1)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (31 samples, 0.13%)</title><rect x="48.7898%" y="1765" width="0.1321%" height="15" fill="rgb(227,63,3)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1775.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (31 samples, 0.13%)</title><rect x="48.7898%" y="1749" width="0.1321%" height="15" fill="rgb(214,163,6)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (31 samples, 0.13%)</title><rect x="48.7898%" y="1733" width="0.1321%" height="15" fill="rgb(249,178,21)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.13%)</title><rect x="48.7898%" y="1717" width="0.1321%" height="15" fill="rgb(220,1,24)" fg:x="11450" fg:w="31"/><text x="49.0398%" y="1727.50"></text></g><g><title>rayon_core::join::join_context (28 samples, 0.12%)</title><rect x="48.8026%" y="1701" width="0.1193%" height="15" fill="rgb(247,155,38)" fg:x="11453" fg:w="28"/><text x="49.0526%" y="1711.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.12%)</title><rect x="48.8026%" y="1685" width="0.1193%" height="15" fill="rgb(207,189,37)" fg:x="11453" fg:w="28"/><text x="49.0526%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (28 samples, 0.12%)</title><rect x="48.8026%" y="1669" width="0.1193%" height="15" fill="rgb(232,79,19)" fg:x="11453" fg:w="28"/><text x="49.0526%" y="1679.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="48.8580%" y="1653" width="0.0639%" height="15" fill="rgb(222,35,34)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1663.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="48.8580%" y="1637" width="0.0639%" height="15" fill="rgb(230,152,22)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1647.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="48.8580%" y="1621" width="0.0639%" height="15" fill="rgb(212,51,11)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1631.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="48.8580%" y="1605" width="0.0639%" height="15" fill="rgb(210,173,43)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1615.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="48.8580%" y="1589" width="0.0639%" height="15" fill="rgb(216,197,22)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="48.8580%" y="1573" width="0.0639%" height="15" fill="rgb(214,182,20)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="48.8580%" y="1557" width="0.0639%" height="15" fill="rgb(212,31,1)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="48.8580%" y="1541" width="0.0639%" height="15" fill="rgb(246,144,1)" fg:x="11466" fg:w="15"/><text x="49.1080%" y="1551.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="48.8708%" y="1525" width="0.0511%" height="15" fill="rgb(227,175,37)" fg:x="11469" fg:w="12"/><text x="49.1208%" y="1535.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="48.8708%" y="1509" width="0.0511%" height="15" fill="rgb(209,44,4)" fg:x="11469" fg:w="12"/><text x="49.1208%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="48.8708%" y="1493" width="0.0511%" height="15" fill="rgb(226,200,17)" fg:x="11469" fg:w="12"/><text x="49.1208%" y="1503.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="48.8964%" y="1477" width="0.0256%" height="15" fill="rgb(223,54,51)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1487.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="48.8964%" y="1461" width="0.0256%" height="15" fill="rgb(251,25,0)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1471.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="48.8964%" y="1445" width="0.0256%" height="15" fill="rgb(220,129,13)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1455.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="48.8964%" y="1429" width="0.0256%" height="15" fill="rgb(232,144,21)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1439.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="48.8964%" y="1413" width="0.0256%" height="15" fill="rgb(206,93,36)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1423.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8964%" y="1397" width="0.0256%" height="15" fill="rgb(247,44,28)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8964%" y="1381" width="0.0256%" height="15" fill="rgb(223,128,49)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="48.8964%" y="1365" width="0.0256%" height="15" fill="rgb(210,26,49)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="48.8964%" y="1349" width="0.0256%" height="15" fill="rgb(224,83,50)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1359.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="48.8964%" y="1333" width="0.0256%" height="15" fill="rgb(243,47,43)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1343.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (6 samples, 0.03%)</title><rect x="48.8964%" y="1317" width="0.0256%" height="15" fill="rgb(244,34,12)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1327.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="48.8964%" y="1301" width="0.0256%" height="15" fill="rgb(218,90,21)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1311.50"></text></g><g><title>core::option::Option<T>::map (6 samples, 0.03%)</title><rect x="48.8964%" y="1285" width="0.0256%" height="15" fill="rgb(235,49,37)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (6 samples, 0.03%)</title><rect x="48.8964%" y="1269" width="0.0256%" height="15" fill="rgb(248,29,8)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1279.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (6 samples, 0.03%)</title><rect x="48.8964%" y="1253" width="0.0256%" height="15" fill="rgb(237,186,32)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1263.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8964%" y="1237" width="0.0256%" height="15" fill="rgb(249,216,32)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1247.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (6 samples, 0.03%)</title><rect x="48.8964%" y="1221" width="0.0256%" height="15" fill="rgb(212,7,9)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1231.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="48.8964%" y="1205" width="0.0256%" height="15" fill="rgb(222,72,16)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1215.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (6 samples, 0.03%)</title><rect x="48.8964%" y="1189" width="0.0256%" height="15" fill="rgb(235,165,0)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1199.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (6 samples, 0.03%)</title><rect x="48.8964%" y="1173" width="0.0256%" height="15" fill="rgb(232,135,9)" fg:x="11475" fg:w="6"/><text x="49.1464%" y="1183.50"></text></g><g><title><f64 as num_traits::float::Float>::exp (37 samples, 0.16%)</title><rect x="48.9305%" y="1973" width="0.1577%" height="15" fill="rgb(223,13,27)" fg:x="11483" fg:w="37"/><text x="49.1805%" y="1983.50"></text></g><g><title>std::f64::<impl f64>::exp (37 samples, 0.16%)</title><rect x="48.9305%" y="1957" width="0.1577%" height="15" fill="rgb(253,5,37)" fg:x="11483" fg:w="37"/><text x="49.1805%" y="1967.50"></text></g><g><title>exp (36 samples, 0.15%)</title><rect x="48.9347%" y="1941" width="0.1534%" height="15" fill="rgb(230,96,5)" fg:x="11484" fg:w="36"/><text x="49.1847%" y="1951.50"></text></g><g><title>[libm.so.6] (32 samples, 0.14%)</title><rect x="48.9518%" y="1925" width="0.1364%" height="15" fill="rgb(254,19,33)" fg:x="11488" fg:w="32"/><text x="49.2018%" y="1935.50"></text></g><g><title><f64 as num_traits::float::Float>::recip (15 samples, 0.06%)</title><rect x="49.0881%" y="1973" width="0.0639%" height="15" fill="rgb(245,69,45)" fg:x="11520" fg:w="15"/><text x="49.3381%" y="1983.50"></text></g><g><title>core::f64::<impl f64>::recip (15 samples, 0.06%)</title><rect x="49.0881%" y="1957" width="0.0639%" height="15" fill="rgb(225,175,10)" fg:x="11520" fg:w="15"/><text x="49.3381%" y="1967.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (59 samples, 0.25%)</title><rect x="48.9262%" y="1989" width="0.2514%" height="15" fill="rgb(227,26,31)" fg:x="11482" fg:w="59"/><text x="49.1762%" y="1999.50"></text></g><g><title><f64 as num_traits::float::Float>::sqrt (6 samples, 0.03%)</title><rect x="49.1520%" y="1973" width="0.0256%" height="15" fill="rgb(209,196,1)" fg:x="11535" fg:w="6"/><text x="49.4020%" y="1983.50"></text></g><g><title>std::f64::<impl f64>::sqrt (6 samples, 0.03%)</title><rect x="49.1520%" y="1957" width="0.0256%" height="15" fill="rgb(226,12,24)" fg:x="11535" fg:w="6"/><text x="49.4020%" y="1967.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (63 samples, 0.27%)</title><rect x="48.9219%" y="2149" width="0.2685%" height="15" fill="rgb(245,13,23)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (63 samples, 0.27%)</title><rect x="48.9219%" y="2133" width="0.2685%" height="15" fill="rgb(245,68,26)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2143.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (63 samples, 0.27%)</title><rect x="48.9219%" y="2117" width="0.2685%" height="15" fill="rgb(235,47,54)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2127.50"></text></g><g><title>core::option::Option<T>::map (63 samples, 0.27%)</title><rect x="48.9219%" y="2101" width="0.2685%" height="15" fill="rgb(241,224,27)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2111.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (63 samples, 0.27%)</title><rect x="48.9219%" y="2085" width="0.2685%" height="15" fill="rgb(214,178,49)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2095.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (63 samples, 0.27%)</title><rect x="48.9219%" y="2069" width="0.2685%" height="15" fill="rgb(224,71,11)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2079.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (63 samples, 0.27%)</title><rect x="48.9219%" y="2053" width="0.2685%" height="15" fill="rgb(242,209,28)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2063.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (63 samples, 0.27%)</title><rect x="48.9219%" y="2037" width="0.2685%" height="15" fill="rgb(250,77,9)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2047.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (63 samples, 0.27%)</title><rect x="48.9219%" y="2021" width="0.2685%" height="15" fill="rgb(233,54,40)" fg:x="11481" fg:w="63"/><text x="49.1719%" y="2031.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (62 samples, 0.26%)</title><rect x="48.9262%" y="2005" width="0.2642%" height="15" fill="rgb(240,125,12)" fg:x="11482" fg:w="62"/><text x="49.1762%" y="2015.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="49.1776%" y="1989" width="0.0128%" height="15" fill="rgb(241,12,32)" fg:x="11541" fg:w="3"/><text x="49.4276%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (628 samples, 2.68%)</title><rect x="46.5400%" y="3253" width="2.6760%" height="15" fill="rgb(246,35,37)" fg:x="10922" fg:w="628"/><text x="46.7900%" y="3263.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (628 samples, 2.68%)</title><rect x="46.5400%" y="3237" width="2.6760%" height="15" fill="rgb(215,203,18)" fg:x="10922" fg:w="628"/><text x="46.7900%" y="3247.50">ra..</text></g><g><title>rayon_core::join::join_context (628 samples, 2.68%)</title><rect x="46.5400%" y="3221" width="2.6760%" height="15" fill="rgb(242,121,54)" fg:x="10922" fg:w="628"/><text x="46.7900%" y="3231.50">ra..</text></g><g><title>rayon_core::registry::in_worker (628 samples, 2.68%)</title><rect x="46.5400%" y="3205" width="2.6760%" height="15" fill="rgb(252,145,50)" fg:x="10922" fg:w="628"/><text x="46.7900%" y="3215.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (628 samples, 2.68%)</title><rect x="46.5400%" y="3189" width="2.6760%" height="15" fill="rgb(222,108,45)" fg:x="10922" fg:w="628"/><text x="46.7900%" y="3199.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (622 samples, 2.65%)</title><rect x="46.5655%" y="3173" width="2.6504%" height="15" fill="rgb(246,121,5)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3183.50">ra..</text></g><g><title>std::panic::catch_unwind (622 samples, 2.65%)</title><rect x="46.5655%" y="3157" width="2.6504%" height="15" fill="rgb(245,182,11)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3167.50">st..</text></g><g><title>std::panicking::try (622 samples, 2.65%)</title><rect x="46.5655%" y="3141" width="2.6504%" height="15" fill="rgb(253,208,43)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3151.50">st..</text></g><g><title>std::panicking::try::do_call (622 samples, 2.65%)</title><rect x="46.5655%" y="3125" width="2.6504%" height="15" fill="rgb(214,91,39)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3135.50">st..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (622 samples, 2.65%)</title><rect x="46.5655%" y="3109" width="2.6504%" height="15" fill="rgb(248,34,38)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3119.50"><c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (622 samples, 2.65%)</title><rect x="46.5655%" y="3093" width="2.6504%" height="15" fill="rgb(222,181,48)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3103.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (622 samples, 2.65%)</title><rect x="46.5655%" y="3077" width="2.6504%" height="15" fill="rgb(239,75,9)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3087.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (622 samples, 2.65%)</title><rect x="46.5655%" y="3061" width="2.6504%" height="15" fill="rgb(232,188,50)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3071.50">ra..</text></g><g><title>rayon_core::join::join_context (622 samples, 2.65%)</title><rect x="46.5655%" y="3045" width="2.6504%" height="15" fill="rgb(219,167,26)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3055.50">ra..</text></g><g><title>rayon_core::registry::in_worker (622 samples, 2.65%)</title><rect x="46.5655%" y="3029" width="2.6504%" height="15" fill="rgb(234,149,49)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3039.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (622 samples, 2.65%)</title><rect x="46.5655%" y="3013" width="2.6504%" height="15" fill="rgb(251,12,17)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3023.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (622 samples, 2.65%)</title><rect x="46.5655%" y="2997" width="2.6504%" height="15" fill="rgb(215,225,5)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="3007.50">ra..</text></g><g><title>std::panic::catch_unwind (622 samples, 2.65%)</title><rect x="46.5655%" y="2981" width="2.6504%" height="15" fill="rgb(207,91,9)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2991.50">st..</text></g><g><title>std::panicking::try (622 samples, 2.65%)</title><rect x="46.5655%" y="2965" width="2.6504%" height="15" fill="rgb(212,18,33)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2975.50">st..</text></g><g><title>std::panicking::try::do_call (622 samples, 2.65%)</title><rect x="46.5655%" y="2949" width="2.6504%" height="15" fill="rgb(231,65,2)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2959.50">st..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (622 samples, 2.65%)</title><rect x="46.5655%" y="2933" width="2.6504%" height="15" fill="rgb(222,58,52)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2943.50"><c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (622 samples, 2.65%)</title><rect x="46.5655%" y="2917" width="2.6504%" height="15" fill="rgb(223,73,44)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2927.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (622 samples, 2.65%)</title><rect x="46.5655%" y="2901" width="2.6504%" height="15" fill="rgb(234,136,50)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2911.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (622 samples, 2.65%)</title><rect x="46.5655%" y="2885" width="2.6504%" height="15" fill="rgb(254,181,20)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2895.50">ra..</text></g><g><title>rayon_core::join::join_context (622 samples, 2.65%)</title><rect x="46.5655%" y="2869" width="2.6504%" height="15" fill="rgb(208,8,18)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2879.50">ra..</text></g><g><title>rayon_core::registry::in_worker (622 samples, 2.65%)</title><rect x="46.5655%" y="2853" width="2.6504%" height="15" fill="rgb(232,185,41)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2863.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (622 samples, 2.65%)</title><rect x="46.5655%" y="2837" width="2.6504%" height="15" fill="rgb(235,73,10)" fg:x="10928" fg:w="622"/><text x="46.8155%" y="2847.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (589 samples, 2.51%)</title><rect x="46.7062%" y="2821" width="2.5098%" height="15" fill="rgb(213,156,40)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2831.50">ra..</text></g><g><title>std::panic::catch_unwind (589 samples, 2.51%)</title><rect x="46.7062%" y="2805" width="2.5098%" height="15" fill="rgb(221,164,34)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2815.50">st..</text></g><g><title>std::panicking::try (589 samples, 2.51%)</title><rect x="46.7062%" y="2789" width="2.5098%" height="15" fill="rgb(236,64,20)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2799.50">st..</text></g><g><title>std::panicking::try::do_call (589 samples, 2.51%)</title><rect x="46.7062%" y="2773" width="2.5098%" height="15" fill="rgb(207,2,39)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2783.50">st..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (589 samples, 2.51%)</title><rect x="46.7062%" y="2757" width="2.5098%" height="15" fill="rgb(227,22,50)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2767.50"><c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (589 samples, 2.51%)</title><rect x="46.7062%" y="2741" width="2.5098%" height="15" fill="rgb(208,5,15)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2751.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (589 samples, 2.51%)</title><rect x="46.7062%" y="2725" width="2.5098%" height="15" fill="rgb(223,143,22)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2735.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (589 samples, 2.51%)</title><rect x="46.7062%" y="2709" width="2.5098%" height="15" fill="rgb(236,120,46)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2719.50">ra..</text></g><g><title>rayon_core::join::join_context (589 samples, 2.51%)</title><rect x="46.7062%" y="2693" width="2.5098%" height="15" fill="rgb(231,133,36)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2703.50">ra..</text></g><g><title>rayon_core::registry::in_worker (589 samples, 2.51%)</title><rect x="46.7062%" y="2677" width="2.5098%" height="15" fill="rgb(225,148,46)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2687.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (589 samples, 2.51%)</title><rect x="46.7062%" y="2661" width="2.5098%" height="15" fill="rgb(216,100,47)" fg:x="10961" fg:w="589"/><text x="46.9562%" y="2671.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (373 samples, 1.59%)</title><rect x="47.6266%" y="2645" width="1.5894%" height="15" fill="rgb(252,214,41)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (373 samples, 1.59%)</title><rect x="47.6266%" y="2629" width="1.5894%" height="15" fill="rgb(223,181,18)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2639.50"></text></g><g><title>std::panicking::try (373 samples, 1.59%)</title><rect x="47.6266%" y="2613" width="1.5894%" height="15" fill="rgb(217,122,34)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (373 samples, 1.59%)</title><rect x="47.6266%" y="2597" width="1.5894%" height="15" fill="rgb(210,77,41)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (373 samples, 1.59%)</title><rect x="47.6266%" y="2581" width="1.5894%" height="15" fill="rgb(231,65,46)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (373 samples, 1.59%)</title><rect x="47.6266%" y="2565" width="1.5894%" height="15" fill="rgb(228,198,46)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (373 samples, 1.59%)</title><rect x="47.6266%" y="2549" width="1.5894%" height="15" fill="rgb(234,216,34)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (373 samples, 1.59%)</title><rect x="47.6266%" y="2533" width="1.5894%" height="15" fill="rgb(207,124,46)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (373 samples, 1.59%)</title><rect x="47.6266%" y="2517" width="1.5894%" height="15" fill="rgb(241,121,44)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (373 samples, 1.59%)</title><rect x="47.6266%" y="2501" width="1.5894%" height="15" fill="rgb(220,218,14)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (373 samples, 1.59%)</title><rect x="47.6266%" y="2485" width="1.5894%" height="15" fill="rgb(207,11,38)" fg:x="11177" fg:w="373"/><text x="47.8766%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (246 samples, 1.05%)</title><rect x="48.1677%" y="2469" width="1.0482%" height="15" fill="rgb(214,182,27)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (246 samples, 1.05%)</title><rect x="48.1677%" y="2453" width="1.0482%" height="15" fill="rgb(248,107,37)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2463.50"></text></g><g><title>std::panicking::try (246 samples, 1.05%)</title><rect x="48.1677%" y="2437" width="1.0482%" height="15" fill="rgb(239,196,5)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (246 samples, 1.05%)</title><rect x="48.1677%" y="2421" width="1.0482%" height="15" fill="rgb(208,149,48)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (246 samples, 1.05%)</title><rect x="48.1677%" y="2405" width="1.0482%" height="15" fill="rgb(237,4,21)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (246 samples, 1.05%)</title><rect x="48.1677%" y="2389" width="1.0482%" height="15" fill="rgb(233,162,48)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (246 samples, 1.05%)</title><rect x="48.1677%" y="2373" width="1.0482%" height="15" fill="rgb(254,118,39)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (246 samples, 1.05%)</title><rect x="48.1677%" y="2357" width="1.0482%" height="15" fill="rgb(218,36,3)" fg:x="11304" fg:w="246"/><text x="48.4177%" y="2367.50"></text></g><g><title>rayon_core::join::join_context (245 samples, 1.04%)</title><rect x="48.1720%" y="2341" width="1.0440%" height="15" fill="rgb(243,53,24)" fg:x="11305" fg:w="245"/><text x="48.4220%" y="2351.50"></text></g><g><title>rayon_core::registry::in_worker (245 samples, 1.04%)</title><rect x="48.1720%" y="2325" width="1.0440%" height="15" fill="rgb(226,107,13)" fg:x="11305" fg:w="245"/><text x="48.4220%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (245 samples, 1.04%)</title><rect x="48.1720%" y="2309" width="1.0440%" height="15" fill="rgb(242,93,54)" fg:x="11305" fg:w="245"/><text x="48.4220%" y="2319.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (69 samples, 0.29%)</title><rect x="48.9219%" y="2293" width="0.2940%" height="15" fill="rgb(225,102,3)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2303.50"></text></g><g><title>std::panic::catch_unwind (69 samples, 0.29%)</title><rect x="48.9219%" y="2277" width="0.2940%" height="15" fill="rgb(228,86,6)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2287.50"></text></g><g><title>std::panicking::try (69 samples, 0.29%)</title><rect x="48.9219%" y="2261" width="0.2940%" height="15" fill="rgb(232,127,36)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2271.50"></text></g><g><title>std::panicking::try::do_call (69 samples, 0.29%)</title><rect x="48.9219%" y="2245" width="0.2940%" height="15" fill="rgb(207,199,12)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2255.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (69 samples, 0.29%)</title><rect x="48.9219%" y="2229" width="0.2940%" height="15" fill="rgb(233,102,53)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (69 samples, 0.29%)</title><rect x="48.9219%" y="2213" width="0.2940%" height="15" fill="rgb(236,150,18)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (69 samples, 0.29%)</title><rect x="48.9219%" y="2197" width="0.2940%" height="15" fill="rgb(211,103,47)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69 samples, 0.29%)</title><rect x="48.9219%" y="2181" width="0.2940%" height="15" fill="rgb(239,126,19)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (69 samples, 0.29%)</title><rect x="48.9219%" y="2165" width="0.2940%" height="15" fill="rgb(240,70,5)" fg:x="11481" fg:w="69"/><text x="49.1719%" y="2175.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="49.1904%" y="2149" width="0.0256%" height="15" fill="rgb(218,61,41)" fg:x="11544" fg:w="6"/><text x="49.4404%" y="2159.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="49.1989%" y="2133" width="0.0170%" height="15" fill="rgb(247,188,19)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2143.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="49.1989%" y="2117" width="0.0170%" height="15" fill="rgb(211,26,29)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2127.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (4 samples, 0.02%)</title><rect x="49.1989%" y="2101" width="0.0170%" height="15" fill="rgb(216,132,45)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2111.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="49.1989%" y="2085" width="0.0170%" height="15" fill="rgb(215,83,10)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2095.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="49.1989%" y="2069" width="0.0170%" height="15" fill="rgb(214,164,24)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2079.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="49.1989%" y="2053" width="0.0170%" height="15" fill="rgb(230,69,50)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2063.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="49.1989%" y="2037" width="0.0170%" height="15" fill="rgb(235,120,6)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2047.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="49.1989%" y="2021" width="0.0170%" height="15" fill="rgb(239,128,48)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2031.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="49.1989%" y="2005" width="0.0170%" height="15" fill="rgb(251,139,25)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="2015.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="49.1989%" y="1989" width="0.0170%" height="15" fill="rgb(234,74,17)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="1999.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="49.1989%" y="1973" width="0.0170%" height="15" fill="rgb(221,217,5)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="1983.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="49.1989%" y="1957" width="0.0170%" height="15" fill="rgb(251,104,33)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="1967.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="49.1989%" y="1941" width="0.0170%" height="15" fill="rgb(223,222,2)" fg:x="11546" fg:w="4"/><text x="49.4489%" y="1951.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="49.2245%" y="2693" width="0.0213%" height="15" fill="rgb(240,3,21)" fg:x="11552" fg:w="5"/><text x="49.4745%" y="2703.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="49.2245%" y="2677" width="0.0213%" height="15" fill="rgb(230,63,12)" fg:x="11552" fg:w="5"/><text x="49.4745%" y="2687.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="49.2245%" y="2661" width="0.0213%" height="15" fill="rgb(234,215,8)" fg:x="11552" fg:w="5"/><text x="49.4745%" y="2671.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="49.2245%" y="2645" width="0.0213%" height="15" fill="rgb(237,102,2)" fg:x="11552" fg:w="5"/><text x="49.4745%" y="2655.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="49.2245%" y="2629" width="0.0213%" height="15" fill="rgb(235,183,54)" fg:x="11552" fg:w="5"/><text x="49.4745%" y="2639.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="49.2245%" y="2613" width="0.0213%" height="15" fill="rgb(239,207,52)" fg:x="11552" fg:w="5"/><text x="49.4745%" y="2623.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="49.2245%" y="2597" width="0.0213%" height="15" fill="rgb(252,5,32)" fg:x="11552" fg:w="5"/><text x="49.4745%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (6 samples, 0.03%)</title><rect x="49.2245%" y="2725" width="0.0256%" height="15" fill="rgb(247,127,27)" fg:x="11552" fg:w="6"/><text x="49.4745%" y="2735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="49.2245%" y="2709" width="0.0256%" height="15" fill="rgb(227,196,32)" fg:x="11552" fg:w="6"/><text x="49.4745%" y="2719.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (10,115 samples, 43.10%)</title><rect x="6.1531%" y="3509" width="43.1012%" height="15" fill="rgb(251,120,1)" fg:x="1444" fg:w="10115"/><text x="6.4031%" y="3519.50"><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute</text></g><g><title>rayon_core::job::JobResult<T>::call (10,114 samples, 43.10%)</title><rect x="6.1573%" y="3493" width="43.0970%" height="15" fill="rgb(213,177,1)" fg:x="1445" fg:w="10114"/><text x="6.4073%" y="3503.50">rayon_core::job::JobResult<T>::call</text></g><g><title>rayon_core::unwind::halt_unwinding (10,114 samples, 43.10%)</title><rect x="6.1573%" y="3477" width="43.0970%" height="15" fill="rgb(206,33,29)" fg:x="1445" fg:w="10114"/><text x="6.4073%" y="3487.50">rayon_core::unwind::halt_unwinding</text></g><g><title>std::panic::catch_unwind (10,114 samples, 43.10%)</title><rect x="6.1573%" y="3461" width="43.0970%" height="15" fill="rgb(220,167,1)" fg:x="1445" fg:w="10114"/><text x="6.4073%" y="3471.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (10,114 samples, 43.10%)</title><rect x="6.1573%" y="3445" width="43.0970%" height="15" fill="rgb(235,77,4)" fg:x="1445" fg:w="10114"/><text x="6.4073%" y="3455.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (10,114 samples, 43.10%)</title><rect x="6.1573%" y="3429" width="43.0970%" height="15" fill="rgb(215,4,47)" fg:x="1445" fg:w="10114"/><text x="6.4073%" y="3439.50">std::panicking::try::do_call</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10,114 samples, 43.10%)</title><rect x="6.1573%" y="3413" width="43.0970%" height="15" fill="rgb(209,194,51)" fg:x="1445" fg:w="10114"/><text x="6.4073%" y="3423.50"><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::..</text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (10,114 samples, 43.10%)</title><rect x="6.1573%" y="3397" width="43.0970%" height="15" fill="rgb(241,168,54)" fg:x="1445" fg:w="10114"/><text x="6.4073%" y="3407.50">rayon_core::job::JobResult<T>::call::_{{closure}}</text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}}::_{{closure}} (637 samples, 2.71%)</title><rect x="46.5400%" y="3381" width="2.7143%" height="15" fill="rgb(245,18,25)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3391.50">ra..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (637 samples, 2.71%)</title><rect x="46.5400%" y="3365" width="2.7143%" height="15" fill="rgb(206,165,20)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3375.50">ra..</text></g><g><title>rayon_core::unwind::halt_unwinding (637 samples, 2.71%)</title><rect x="46.5400%" y="3349" width="2.7143%" height="15" fill="rgb(245,34,44)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3359.50">ra..</text></g><g><title>std::panic::catch_unwind (637 samples, 2.71%)</title><rect x="46.5400%" y="3333" width="2.7143%" height="15" fill="rgb(207,19,53)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3343.50">st..</text></g><g><title>std::panicking::try (637 samples, 2.71%)</title><rect x="46.5400%" y="3317" width="2.7143%" height="15" fill="rgb(246,51,40)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3327.50">st..</text></g><g><title>std::panicking::try::do_call (637 samples, 2.71%)</title><rect x="46.5400%" y="3301" width="2.7143%" height="15" fill="rgb(232,54,51)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3311.50">st..</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (637 samples, 2.71%)</title><rect x="46.5400%" y="3285" width="2.7143%" height="15" fill="rgb(236,166,19)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3295.50"><c..</text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (637 samples, 2.71%)</title><rect x="46.5400%" y="3269" width="2.7143%" height="15" fill="rgb(248,110,38)" fg:x="10922" fg:w="637"/><text x="46.7900%" y="3279.50">ra..</text></g><g><title>rayon_core::join::join::call::_{{closure}} (9 samples, 0.04%)</title><rect x="49.2160%" y="3253" width="0.0384%" height="15" fill="rgb(216,175,48)" fg:x="11550" fg:w="9"/><text x="49.4660%" y="3263.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (9 samples, 0.04%)</title><rect x="49.2160%" y="3237" width="0.0384%" height="15" fill="rgb(213,139,1)" fg:x="11550" fg:w="9"/><text x="49.4660%" y="3247.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="49.2160%" y="3221" width="0.0384%" height="15" fill="rgb(205,112,50)" fg:x="11550" fg:w="9"/><text x="49.4660%" y="3231.50"></text></g><g><title>rayon_core::join::join (8 samples, 0.03%)</title><rect x="49.2202%" y="3205" width="0.0341%" height="15" fill="rgb(205,43,44)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3215.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="49.2202%" y="3189" width="0.0341%" height="15" fill="rgb(232,174,22)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3199.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="49.2202%" y="3173" width="0.0341%" height="15" fill="rgb(235,137,36)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="49.2202%" y="3157" width="0.0341%" height="15" fill="rgb(224,16,34)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="49.2202%" y="3141" width="0.0341%" height="15" fill="rgb(230,216,26)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3151.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="49.2202%" y="3125" width="0.0341%" height="15" fill="rgb(243,61,14)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3135.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="49.2202%" y="3109" width="0.0341%" height="15" fill="rgb(224,122,16)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3119.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="49.2202%" y="3093" width="0.0341%" height="15" fill="rgb(228,85,33)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="49.2202%" y="3077" width="0.0341%" height="15" fill="rgb(211,67,6)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="49.2202%" y="3061" width="0.0341%" height="15" fill="rgb(219,116,27)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3071.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (8 samples, 0.03%)</title><rect x="49.2202%" y="3045" width="0.0341%" height="15" fill="rgb(216,124,45)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3055.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (8 samples, 0.03%)</title><rect x="49.2202%" y="3029" width="0.0341%" height="15" fill="rgb(239,24,25)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3039.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="49.2202%" y="3013" width="0.0341%" height="15" fill="rgb(242,118,14)" fg:x="11551" fg:w="8"/><text x="49.4702%" y="3023.50"></text></g><g><title>rayon_core::join::join (7 samples, 0.03%)</title><rect x="49.2245%" y="2997" width="0.0298%" height="15" fill="rgb(223,62,23)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="49.2245%" y="2981" width="0.0298%" height="15" fill="rgb(224,18,6)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="49.2245%" y="2965" width="0.0298%" height="15" fill="rgb(227,166,29)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="49.2245%" y="2949" width="0.0298%" height="15" fill="rgb(239,17,48)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2959.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="49.2245%" y="2933" width="0.0298%" height="15" fill="rgb(251,165,51)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2943.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="49.2245%" y="2917" width="0.0298%" height="15" fill="rgb(212,18,42)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2927.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="49.2245%" y="2901" width="0.0298%" height="15" fill="rgb(242,144,43)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2911.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="49.2245%" y="2885" width="0.0298%" height="15" fill="rgb(250,12,26)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2895.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="49.2245%" y="2869" width="0.0298%" height="15" fill="rgb(231,55,6)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="49.2245%" y="2853" width="0.0298%" height="15" fill="rgb(208,18,42)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2863.50"></text></g><g><title>rayon_core::join::join::call::_{{closure}} (7 samples, 0.03%)</title><rect x="49.2245%" y="2837" width="0.0298%" height="15" fill="rgb(234,140,4)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2847.50"></text></g><g><title>rayon::slice::quicksort::recurse::_{{closure}} (7 samples, 0.03%)</title><rect x="49.2245%" y="2821" width="0.0298%" height="15" fill="rgb(250,47,30)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2831.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="49.2245%" y="2805" width="0.0298%" height="15" fill="rgb(222,69,3)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2815.50"></text></g><g><title>rayon_core::join::join (7 samples, 0.03%)</title><rect x="49.2245%" y="2789" width="0.0298%" height="15" fill="rgb(230,156,37)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="49.2245%" y="2773" width="0.0298%" height="15" fill="rgb(247,199,42)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="49.2245%" y="2757" width="0.0298%" height="15" fill="rgb(235,144,18)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="49.2245%" y="2741" width="0.0298%" height="15" fill="rgb(227,47,6)" fg:x="11552" fg:w="7"/><text x="49.4745%" y="2751.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (10,116 samples, 43.11%)</title><rect x="6.1531%" y="3541" width="43.1055%" height="15" fill="rgb(208,65,18)" fg:x="1444" fg:w="10116"/><text x="6.4031%" y="3551.50">rayon_core::registry::WorkerThread::execute</text></g><g><title>rayon_core::job::JobRef::execute (10,116 samples, 43.11%)</title><rect x="6.1531%" y="3525" width="43.1055%" height="15" fill="rgb(248,45,1)" fg:x="1444" fg:w="10116"/><text x="6.4031%" y="3535.50">rayon_core::job::JobRef::execute</text></g><g><title>crossbeam_epoch::epoch::AtomicEpoch::compare_exchange (6 samples, 0.03%)</title><rect x="49.3140%" y="3237" width="0.0256%" height="15" fill="rgb(249,119,47)" fg:x="11573" fg:w="6"/><text x="49.5640%" y="3247.50"></text></g><g><title>core::sync::atomic::AtomicUsize::compare_exchange (6 samples, 0.03%)</title><rect x="49.3140%" y="3221" width="0.0256%" height="15" fill="rgb(221,152,25)" fg:x="11573" fg:w="6"/><text x="49.5640%" y="3231.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (6 samples, 0.03%)</title><rect x="49.3140%" y="3205" width="0.0256%" height="15" fill="rgb(208,142,37)" fg:x="11573" fg:w="6"/><text x="49.5640%" y="3215.50"></text></g><g><title><crossbeam_epoch::sync::list::Iter<T,C> as core::iter::traits::iterator::Iterator>::next (6 samples, 0.03%)</title><rect x="49.3438%" y="3205" width="0.0256%" height="15" fill="rgb(209,177,39)" fg:x="11580" fg:w="6"/><text x="49.5938%" y="3215.50"></text></g><g><title>crossbeam_epoch::atomic::Atomic<T>::load (5 samples, 0.02%)</title><rect x="49.3480%" y="3189" width="0.0213%" height="15" fill="rgb(233,117,23)" fg:x="11581" fg:w="5"/><text x="49.5980%" y="3199.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (5 samples, 0.02%)</title><rect x="49.3480%" y="3173" width="0.0213%" height="15" fill="rgb(251,33,37)" fg:x="11581" fg:w="5"/><text x="49.5980%" y="3183.50"></text></g><g><title>core::sync::atomic::atomic_load (5 samples, 0.02%)</title><rect x="49.3480%" y="3157" width="0.0213%" height="15" fill="rgb(237,36,2)" fg:x="11581" fg:w="5"/><text x="49.5980%" y="3167.50"></text></g><g><title>crossbeam_epoch::internal::Global::try_advance (8 samples, 0.03%)</title><rect x="49.3395%" y="3221" width="0.0341%" height="15" fill="rgb(228,92,11)" fg:x="11579" fg:w="8"/><text x="49.5895%" y="3231.50"></text></g><g><title>core::iter::adapters::filter::filter_try_fold::_{{closure}} (27 samples, 0.12%)</title><rect x="49.2756%" y="3413" width="0.1151%" height="15" fill="rgb(230,86,25)" fg:x="11564" fg:w="27"/><text x="49.5256%" y="3423.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map::check::_{{closure}} (27 samples, 0.12%)</title><rect x="49.2756%" y="3397" width="0.1151%" height="15" fill="rgb(251,156,19)" fg:x="11564" fg:w="27"/><text x="49.5256%" y="3407.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal::_{{closure}} (27 samples, 0.12%)</title><rect x="49.2756%" y="3381" width="0.1151%" height="15" fill="rgb(254,178,40)" fg:x="11564" fg:w="27"/><text x="49.5256%" y="3391.50"></text></g><g><title>crossbeam_deque::deque::Stealer<T>::steal (24 samples, 0.10%)</title><rect x="49.2884%" y="3365" width="0.1023%" height="15" fill="rgb(247,8,35)" fg:x="11567" fg:w="24"/><text x="49.5384%" y="3375.50"></text></g><g><title>crossbeam_epoch::default::pin (19 samples, 0.08%)</title><rect x="49.3097%" y="3349" width="0.0810%" height="15" fill="rgb(239,216,21)" fg:x="11572" fg:w="19"/><text x="49.5597%" y="3359.50"></text></g><g><title>crossbeam_epoch::default::with_handle (19 samples, 0.08%)</title><rect x="49.3097%" y="3333" width="0.0810%" height="15" fill="rgb(232,220,45)" fg:x="11572" fg:w="19"/><text x="49.5597%" y="3343.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (19 samples, 0.08%)</title><rect x="49.3097%" y="3317" width="0.0810%" height="15" fill="rgb(244,173,19)" fg:x="11572" fg:w="19"/><text x="49.5597%" y="3327.50"></text></g><g><title>crossbeam_epoch::default::with_handle::_{{closure}} (19 samples, 0.08%)</title><rect x="49.3097%" y="3301" width="0.0810%" height="15" fill="rgb(237,97,51)" fg:x="11572" fg:w="19"/><text x="49.5597%" y="3311.50"></text></g><g><title>crossbeam_epoch::default::pin::_{{closure}} (19 samples, 0.08%)</title><rect x="49.3097%" y="3285" width="0.0810%" height="15" fill="rgb(217,68,33)" fg:x="11572" fg:w="19"/><text x="49.5597%" y="3295.50"></text></g><g><title>crossbeam_epoch::collector::LocalHandle::pin (19 samples, 0.08%)</title><rect x="49.3097%" y="3269" width="0.0810%" height="15" fill="rgb(230,161,51)" fg:x="11572" fg:w="19"/><text x="49.5597%" y="3279.50"></text></g><g><title>crossbeam_epoch::internal::Local::pin (19 samples, 0.08%)</title><rect x="49.3097%" y="3253" width="0.0810%" height="15" fill="rgb(219,44,6)" fg:x="11572" fg:w="19"/><text x="49.5597%" y="3263.50"></text></g><g><title>crossbeam_epoch::internal::Global::collect (12 samples, 0.05%)</title><rect x="49.3395%" y="3237" width="0.0511%" height="15" fill="rgb(243,226,3)" fg:x="11579" fg:w="12"/><text x="49.5895%" y="3247.50"></text></g><g><title>crossbeam_epoch::sync::queue::Queue<T>::try_pop_if (4 samples, 0.02%)</title><rect x="49.3736%" y="3221" width="0.0170%" height="15" fill="rgb(248,140,43)" fg:x="11587" fg:w="4"/><text x="49.6236%" y="3231.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="49.3736%" y="3205" width="0.0170%" height="15" fill="rgb(224,87,52)" fg:x="11587" fg:w="4"/><text x="49.6236%" y="3215.50"></text></g><g><title>crossbeam_epoch::epoch::AtomicEpoch::compare_exchange (5 samples, 0.02%)</title><rect x="49.4120%" y="3221" width="0.0213%" height="15" fill="rgb(207,207,38)" fg:x="11596" fg:w="5"/><text x="49.6620%" y="3231.50"></text></g><g><title>core::sync::atomic::AtomicUsize::compare_exchange (5 samples, 0.02%)</title><rect x="49.4120%" y="3205" width="0.0213%" height="15" fill="rgb(242,126,17)" fg:x="11596" fg:w="5"/><text x="49.6620%" y="3215.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (5 samples, 0.02%)</title><rect x="49.4120%" y="3189" width="0.0213%" height="15" fill="rgb(237,203,2)" fg:x="11596" fg:w="5"/><text x="49.6620%" y="3199.50"></text></g><g><title>crossbeam_epoch::internal::Global::try_advance (4 samples, 0.02%)</title><rect x="49.4418%" y="3205" width="0.0170%" height="15" fill="rgb(208,178,31)" fg:x="11603" fg:w="4"/><text x="49.6918%" y="3215.50"></text></g><g><title><crossbeam_epoch::sync::list::Iter<T,C> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="49.4461%" y="3189" width="0.0128%" height="15" fill="rgb(243,200,45)" fg:x="11604" fg:w="3"/><text x="49.6961%" y="3199.50"></text></g><g><title>crossbeam_epoch::atomic::Atomic<T>::load (3 samples, 0.01%)</title><rect x="49.4461%" y="3173" width="0.0128%" height="15" fill="rgb(223,41,21)" fg:x="11604" fg:w="3"/><text x="49.6961%" y="3183.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (3 samples, 0.01%)</title><rect x="49.4461%" y="3157" width="0.0128%" height="15" fill="rgb(250,46,22)" fg:x="11604" fg:w="3"/><text x="49.6961%" y="3167.50"></text></g><g><title>core::sync::atomic::atomic_load (3 samples, 0.01%)</title><rect x="49.4461%" y="3141" width="0.0128%" height="15" fill="rgb(229,38,11)" fg:x="11604" fg:w="3"/><text x="49.6961%" y="3151.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map::check::_{{closure}} (15 samples, 0.06%)</title><rect x="49.3992%" y="3381" width="0.0639%" height="15" fill="rgb(234,16,34)" fg:x="11593" fg:w="15"/><text x="49.6492%" y="3391.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal::_{{closure}} (15 samples, 0.06%)</title><rect x="49.3992%" y="3365" width="0.0639%" height="15" fill="rgb(248,131,8)" fg:x="11593" fg:w="15"/><text x="49.6492%" y="3375.50"></text></g><g><title>crossbeam_deque::deque::Stealer<T>::steal (14 samples, 0.06%)</title><rect x="49.4034%" y="3349" width="0.0597%" height="15" fill="rgb(216,4,13)" fg:x="11594" fg:w="14"/><text x="49.6534%" y="3359.50"></text></g><g><title>crossbeam_epoch::default::pin (12 samples, 0.05%)</title><rect x="49.4120%" y="3333" width="0.0511%" height="15" fill="rgb(230,212,16)" fg:x="11596" fg:w="12"/><text x="49.6620%" y="3343.50"></text></g><g><title>crossbeam_epoch::default::with_handle (12 samples, 0.05%)</title><rect x="49.4120%" y="3317" width="0.0511%" height="15" fill="rgb(211,182,21)" fg:x="11596" fg:w="12"/><text x="49.6620%" y="3327.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (12 samples, 0.05%)</title><rect x="49.4120%" y="3301" width="0.0511%" height="15" fill="rgb(233,174,39)" fg:x="11596" fg:w="12"/><text x="49.6620%" y="3311.50"></text></g><g><title>crossbeam_epoch::default::with_handle::_{{closure}} (12 samples, 0.05%)</title><rect x="49.4120%" y="3285" width="0.0511%" height="15" fill="rgb(218,82,40)" fg:x="11596" fg:w="12"/><text x="49.6620%" y="3295.50"></text></g><g><title>crossbeam_epoch::default::pin::_{{closure}} (12 samples, 0.05%)</title><rect x="49.4120%" y="3269" width="0.0511%" height="15" fill="rgb(237,52,41)" fg:x="11596" fg:w="12"/><text x="49.6620%" y="3279.50"></text></g><g><title>crossbeam_epoch::collector::LocalHandle::pin (12 samples, 0.05%)</title><rect x="49.4120%" y="3253" width="0.0511%" height="15" fill="rgb(214,57,46)" fg:x="11596" fg:w="12"/><text x="49.6620%" y="3263.50"></text></g><g><title>crossbeam_epoch::internal::Local::pin (12 samples, 0.05%)</title><rect x="49.4120%" y="3237" width="0.0511%" height="15" fill="rgb(205,61,18)" fg:x="11596" fg:w="12"/><text x="49.6620%" y="3247.50"></text></g><g><title>crossbeam_epoch::internal::Global::collect (5 samples, 0.02%)</title><rect x="49.4418%" y="3221" width="0.0213%" height="15" fill="rgb(232,132,0)" fg:x="11603" fg:w="5"/><text x="49.6918%" y="3231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find_map (46 samples, 0.20%)</title><rect x="49.2713%" y="3477" width="0.1960%" height="15" fill="rgb(207,69,15)" fg:x="11563" fg:w="46"/><text x="49.5213%" y="3487.50"></text></g><g><title><core::iter::adapters::filter::Filter<I,P> as core::iter::traits::iterator::Iterator>::try_fold (46 samples, 0.20%)</title><rect x="49.2713%" y="3461" width="0.1960%" height="15" fill="rgb(222,17,45)" fg:x="11563" fg:w="46"/><text x="49.5213%" y="3471.50"></text></g><g><title><core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::try_fold (46 samples, 0.20%)</title><rect x="49.2713%" y="3445" width="0.1960%" height="15" fill="rgb(227,87,4)" fg:x="11563" fg:w="46"/><text x="49.5213%" y="3455.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (46 samples, 0.20%)</title><rect x="49.2713%" y="3429" width="0.1960%" height="15" fill="rgb(243,116,46)" fg:x="11563" fg:w="46"/><text x="49.5213%" y="3439.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut (18 samples, 0.08%)</title><rect x="49.3907%" y="3413" width="0.0767%" height="15" fill="rgb(236,36,18)" fg:x="11591" fg:w="18"/><text x="49.6407%" y="3423.50"></text></g><g><title>core::iter::adapters::filter::filter_try_fold::_{{closure}} (18 samples, 0.08%)</title><rect x="49.3907%" y="3397" width="0.0767%" height="15" fill="rgb(251,222,32)" fg:x="11591" fg:w="18"/><text x="49.6407%" y="3407.50"></text></g><g><title>core::option::Option<T>::or_else (52 samples, 0.22%)</title><rect x="49.2586%" y="3525" width="0.2216%" height="15" fill="rgb(231,228,2)" fg:x="11560" fg:w="52"/><text x="49.5086%" y="3535.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work::_{{closure}} (52 samples, 0.22%)</title><rect x="49.2586%" y="3509" width="0.2216%" height="15" fill="rgb(230,50,12)" fg:x="11560" fg:w="52"/><text x="49.5086%" y="3519.50"></text></g><g><title>rayon_core::registry::WorkerThread::steal (50 samples, 0.21%)</title><rect x="49.2671%" y="3493" width="0.2131%" height="15" fill="rgb(226,193,35)" fg:x="11562" fg:w="50"/><text x="49.5171%" y="3503.50"></text></g><g><title>rayon_core::registry::XorShift64Star::next_usize (3 samples, 0.01%)</title><rect x="49.4674%" y="3477" width="0.0128%" height="15" fill="rgb(248,49,36)" fg:x="11609" fg:w="3"/><text x="49.7174%" y="3487.50"></text></g><g><title>crossbeam_epoch::epoch::AtomicEpoch::load (3 samples, 0.01%)</title><rect x="49.4887%" y="3381" width="0.0128%" height="15" fill="rgb(242,141,43)" fg:x="11614" fg:w="3"/><text x="49.7387%" y="3391.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (3 samples, 0.01%)</title><rect x="49.4887%" y="3365" width="0.0128%" height="15" fill="rgb(236,214,42)" fg:x="11614" fg:w="3"/><text x="49.7387%" y="3375.50"></text></g><g><title>core::sync::atomic::atomic_load (3 samples, 0.01%)</title><rect x="49.4887%" y="3349" width="0.0128%" height="15" fill="rgb(236,35,49)" fg:x="11614" fg:w="3"/><text x="49.7387%" y="3359.50"></text></g><g><title>crossbeam_deque::deque::Stealer<T>::steal (7 samples, 0.03%)</title><rect x="49.4801%" y="3509" width="0.0298%" height="15" fill="rgb(241,170,22)" fg:x="11612" fg:w="7"/><text x="49.7301%" y="3519.50"></text></g><g><title>crossbeam_epoch::default::pin (6 samples, 0.03%)</title><rect x="49.4844%" y="3493" width="0.0256%" height="15" fill="rgb(206,8,28)" fg:x="11613" fg:w="6"/><text x="49.7344%" y="3503.50"></text></g><g><title>crossbeam_epoch::default::with_handle (6 samples, 0.03%)</title><rect x="49.4844%" y="3477" width="0.0256%" height="15" fill="rgb(222,136,26)" fg:x="11613" fg:w="6"/><text x="49.7344%" y="3487.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (6 samples, 0.03%)</title><rect x="49.4844%" y="3461" width="0.0256%" height="15" fill="rgb(226,120,53)" fg:x="11613" fg:w="6"/><text x="49.7344%" y="3471.50"></text></g><g><title>crossbeam_epoch::default::with_handle::_{{closure}} (6 samples, 0.03%)</title><rect x="49.4844%" y="3445" width="0.0256%" height="15" fill="rgb(205,212,17)" fg:x="11613" fg:w="6"/><text x="49.7344%" y="3455.50"></text></g><g><title>crossbeam_epoch::default::pin::_{{closure}} (6 samples, 0.03%)</title><rect x="49.4844%" y="3429" width="0.0256%" height="15" fill="rgb(231,65,20)" fg:x="11613" fg:w="6"/><text x="49.7344%" y="3439.50"></text></g><g><title>crossbeam_epoch::collector::LocalHandle::pin (6 samples, 0.03%)</title><rect x="49.4844%" y="3413" width="0.0256%" height="15" fill="rgb(233,207,9)" fg:x="11613" fg:w="6"/><text x="49.7344%" y="3423.50"></text></g><g><title>crossbeam_epoch::internal::Local::pin (6 samples, 0.03%)</title><rect x="49.4844%" y="3397" width="0.0256%" height="15" fill="rgb(207,227,43)" fg:x="11613" fg:w="6"/><text x="49.7344%" y="3407.50"></text></g><g><title>rayon_core::registry::WorkerThread::find_work (60 samples, 0.26%)</title><rect x="49.2586%" y="3541" width="0.2557%" height="15" fill="rgb(239,184,46)" fg:x="11560" fg:w="60"/><text x="49.5086%" y="3551.50"></text></g><g><title>rayon_core::registry::WorkerThread::take_local_job (8 samples, 0.03%)</title><rect x="49.4801%" y="3525" width="0.0341%" height="15" fill="rgb(222,135,51)" fg:x="11612" fg:w="8"/><text x="49.7301%" y="3535.50"></text></g><g><title>__sched_yield (14 samples, 0.06%)</title><rect x="49.5270%" y="3525" width="0.0597%" height="15" fill="rgb(240,155,51)" fg:x="11623" fg:w="14"/><text x="49.7770%" y="3535.50"></text></g><g><title>core::bool::<impl bool>::then (19 samples, 0.08%)</title><rect x="49.5995%" y="3445" width="0.0810%" height="15" fill="rgb(244,3,54)" fg:x="11640" fg:w="19"/><text x="49.8495%" y="3455.50"></text></g><g><title>std::sys::unix::futex::futex_wait (291 samples, 1.24%)</title><rect x="49.5995%" y="3461" width="1.2400%" height="15" fill="rgb(229,122,40)" fg:x="11640" fg:w="291"/><text x="49.8495%" y="3471.50"></text></g><g><title>syscall (272 samples, 1.16%)</title><rect x="49.6804%" y="3445" width="1.1590%" height="15" fill="rgb(251,14,45)" fg:x="11659" fg:w="272"/><text x="49.9304%" y="3455.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (301 samples, 1.28%)</title><rect x="49.5867%" y="3525" width="1.2826%" height="15" fill="rgb(228,214,10)" fg:x="11637" fg:w="301"/><text x="49.8367%" y="3535.50"></text></g><g><title>std::sync::condvar::Condvar::wait (300 samples, 1.28%)</title><rect x="49.5909%" y="3509" width="1.2783%" height="15" fill="rgb(241,49,0)" fg:x="11638" fg:w="300"/><text x="49.8409%" y="3519.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (299 samples, 1.27%)</title><rect x="49.5952%" y="3493" width="1.2741%" height="15" fill="rgb(211,215,18)" fg:x="11639" fg:w="299"/><text x="49.8452%" y="3503.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (299 samples, 1.27%)</title><rect x="49.5952%" y="3477" width="1.2741%" height="15" fill="rgb(218,135,6)" fg:x="11639" fg:w="299"/><text x="49.8452%" y="3487.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock (7 samples, 0.03%)</title><rect x="50.8394%" y="3461" width="0.0298%" height="15" fill="rgb(230,167,7)" fg:x="11931" fg:w="7"/><text x="51.0894%" y="3471.50"></text></g><g><title>core::sync::atomic::AtomicU32::compare_exchange (7 samples, 0.03%)</title><rect x="50.8394%" y="3445" width="0.0298%" height="15" fill="rgb(238,2,23)" fg:x="11931" fg:w="7"/><text x="51.0894%" y="3455.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (7 samples, 0.03%)</title><rect x="50.8394%" y="3429" width="0.0298%" height="15" fill="rgb(246,166,19)" fg:x="11931" fg:w="7"/><text x="51.0894%" y="3439.50"></text></g><g><title>std::panic::catch_unwind (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3733" width="44.7247%" height="15" fill="rgb(229,213,33)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3743.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3717" width="44.7247%" height="15" fill="rgb(217,25,13)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3727.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3701" width="44.7247%" height="15" fill="rgb(240,176,3)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3711.50">std::panicking::try::do_call</text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3685" width="44.7247%" height="15" fill="rgb(223,207,19)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3695.50"><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::Fn..</text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}} (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3669" width="44.7247%" height="15" fill="rgb(209,164,25)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3679.50">std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3653" width="44.7247%" height="15" fill="rgb(221,116,36)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3663.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title><rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn>::spawn::_{{closure}} (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3637" width="44.7247%" height="15" fill="rgb(249,93,54)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3647.50"><rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn>..</text></g><g><title>rayon_core::registry::ThreadBuilder::run (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3621" width="44.7247%" height="15" fill="rgb(233,54,4)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3631.50">rayon_core::registry::ThreadBuilder::run</text></g><g><title>rayon_core::registry::main_loop (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3605" width="44.7247%" height="15" fill="rgb(205,151,44)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3615.50">rayon_core::registry::main_loop</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_out_of_work (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3589" width="44.7247%" height="15" fill="rgb(229,0,43)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3599.50">rayon_core::registry::WorkerThread::wait_until_out_of_work</text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3573" width="44.7247%" height="15" fill="rgb(253,2,32)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3583.50">rayon_core::registry::WorkerThread::wait_until</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10,496 samples, 44.72%)</title><rect x="6.1488%" y="3557" width="44.7247%" height="15" fill="rgb(229,43,12)" fg:x="1443" fg:w="10496"/><text x="6.3988%" y="3567.50">rayon_core::registry::WorkerThread::wait_until_cold</text></g><g><title>rayon_core::sleep::Sleep::no_work_found (318 samples, 1.36%)</title><rect x="49.5185%" y="3541" width="1.3550%" height="15" fill="rgb(238,167,3)" fg:x="11621" fg:w="318"/><text x="49.7685%" y="3551.50"></text></g><g><title>[libc.so.6] (10,508 samples, 44.78%)</title><rect x="6.1062%" y="3845" width="44.7759%" height="15" fill="rgb(207,11,33)" fg:x="1433" fg:w="10508"/><text x="6.3562%" y="3855.50">[libc.so.6]</text></g><g><title>[libc.so.6] (10,501 samples, 44.75%)</title><rect x="6.1360%" y="3829" width="44.7460%" height="15" fill="rgb(227,195,47)" fg:x="1440" fg:w="10501"/><text x="6.3860%" y="3839.50">[libc.so.6]</text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (10,498 samples, 44.73%)</title><rect x="6.1488%" y="3813" width="44.7333%" height="15" fill="rgb(253,212,2)" fg:x="1443" fg:w="10498"/><text x="6.3988%" y="3823.50">std::sys::unix::thread::Thread::new::thread_start</text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (10,498 samples, 44.73%)</title><rect x="6.1488%" y="3797" width="44.7333%" height="15" fill="rgb(219,9,27)" fg:x="1443" fg:w="10498"/><text x="6.3988%" y="3807.50"><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once</text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (10,498 samples, 44.73%)</title><rect x="6.1488%" y="3781" width="44.7333%" height="15" fill="rgb(219,36,24)" fg:x="1443" fg:w="10498"/><text x="6.3988%" y="3791.50"><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once</text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (10,498 samples, 44.73%)</title><rect x="6.1488%" y="3765" width="44.7333%" height="15" fill="rgb(228,175,42)" fg:x="1443" fg:w="10498"/><text x="6.3988%" y="3775.50">core::ops::function::FnOnce::call_once{{vtable.shim}}</text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}} (10,498 samples, 44.73%)</title><rect x="6.1488%" y="3749" width="44.7333%" height="15" fill="rgb(248,150,34)" fg:x="1443" fg:w="10498"/><text x="6.3988%" y="3759.50">std::thread::Builder::spawn_unchecked_::_{{closure}}</text></g><g><title>alloc::raw_vec::finish_grow (3 samples, 0.01%)</title><rect x="50.8821%" y="3829" width="0.0128%" height="15" fill="rgb(248,47,16)" fg:x="11941" fg:w="3"/><text x="51.1321%" y="3839.50"></text></g><g><title>[part2-b574575047a19255] (6 samples, 0.03%)</title><rect x="50.8821%" y="3845" width="0.0256%" height="15" fill="rgb(232,168,53)" fg:x="11941" fg:w="6"/><text x="51.1321%" y="3855.50"></text></g><g><title>cfree (3 samples, 0.01%)</title><rect x="50.8948%" y="3829" width="0.0128%" height="15" fill="rgb(224,122,30)" fg:x="11944" fg:w="3"/><text x="51.1448%" y="3839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="50.9247%" y="3605" width="0.0170%" height="15" fill="rgb(236,156,23)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="50.9247%" y="3589" width="0.0170%" height="15" fill="rgb(225,113,8)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3599.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="50.9247%" y="3573" width="0.0170%" height="15" fill="rgb(227,126,3)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3583.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="50.9247%" y="3557" width="0.0170%" height="15" fill="rgb(242,154,18)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3567.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="50.9247%" y="3541" width="0.0170%" height="15" fill="rgb(215,195,53)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3551.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="50.9247%" y="3525" width="0.0170%" height="15" fill="rgb(228,79,28)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3535.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="50.9247%" y="3509" width="0.0170%" height="15" fill="rgb(220,45,47)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3519.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="50.9247%" y="3493" width="0.0170%" height="15" fill="rgb(229,166,20)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3503.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="50.9247%" y="3477" width="0.0170%" height="15" fill="rgb(215,210,44)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3487.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="50.9247%" y="3461" width="0.0170%" height="15" fill="rgb(226,4,10)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3471.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="50.9247%" y="3445" width="0.0170%" height="15" fill="rgb(213,115,8)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3455.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9247%" y="3429" width="0.0170%" height="15" fill="rgb(254,26,25)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3439.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9247%" y="3413" width="0.0170%" height="15" fill="rgb(209,76,2)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9247%" y="3397" width="0.0170%" height="15" fill="rgb(227,184,47)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.9247%" y="3381" width="0.0170%" height="15" fill="rgb(218,169,26)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3391.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="50.9247%" y="3365" width="0.0170%" height="15" fill="rgb(228,201,7)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3375.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="50.9247%" y="3349" width="0.0170%" height="15" fill="rgb(210,160,18)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9247%" y="3333" width="0.0170%" height="15" fill="rgb(238,75,40)" fg:x="11951" fg:w="4"/><text x="51.1747%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="50.9161%" y="3701" width="0.0384%" height="15" fill="rgb(225,121,50)" fg:x="11949" fg:w="9"/><text x="51.1661%" y="3711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="50.9161%" y="3685" width="0.0384%" height="15" fill="rgb(234,89,12)" fg:x="11949" fg:w="9"/><text x="51.1661%" y="3695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="50.9161%" y="3669" width="0.0384%" height="15" fill="rgb(236,73,20)" fg:x="11949" fg:w="9"/><text x="51.1661%" y="3679.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="50.9161%" y="3653" width="0.0384%" height="15" fill="rgb(254,220,2)" fg:x="11949" fg:w="9"/><text x="51.1661%" y="3663.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="50.9161%" y="3637" width="0.0384%" height="15" fill="rgb(250,184,44)" fg:x="11949" fg:w="9"/><text x="51.1661%" y="3647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="50.9161%" y="3621" width="0.0384%" height="15" fill="rgb(211,153,4)" fg:x="11949" fg:w="9"/><text x="51.1661%" y="3631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="50.9417%" y="3605" width="0.0128%" height="15" fill="rgb(210,137,41)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3615.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="50.9417%" y="3589" width="0.0128%" height="15" fill="rgb(217,218,49)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3599.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="50.9417%" y="3573" width="0.0128%" height="15" fill="rgb(210,206,37)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3583.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="50.9417%" y="3557" width="0.0128%" height="15" fill="rgb(218,177,31)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="50.9417%" y="3541" width="0.0128%" height="15" fill="rgb(223,32,54)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="50.9417%" y="3525" width="0.0128%" height="15" fill="rgb(216,210,26)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="50.9417%" y="3509" width="0.0128%" height="15" fill="rgb(211,100,45)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.9417%" y="3493" width="0.0128%" height="15" fill="rgb(239,130,46)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3503.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="50.9417%" y="3477" width="0.0128%" height="15" fill="rgb(228,26,54)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3487.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="50.9417%" y="3461" width="0.0128%" height="15" fill="rgb(240,147,4)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="50.9417%" y="3445" width="0.0128%" height="15" fill="rgb(241,27,11)" fg:x="11955" fg:w="3"/><text x="51.1917%" y="3455.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (14 samples, 0.06%)</title><rect x="50.9161%" y="3829" width="0.0597%" height="15" fill="rgb(243,75,8)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3839.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (14 samples, 0.06%)</title><rect x="50.9161%" y="3813" width="0.0597%" height="15" fill="rgb(211,63,46)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3823.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="50.9161%" y="3797" width="0.0597%" height="15" fill="rgb(247,1,9)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3807.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="50.9161%" y="3781" width="0.0597%" height="15" fill="rgb(241,16,36)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3791.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="50.9161%" y="3765" width="0.0597%" height="15" fill="rgb(206,78,20)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3775.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="50.9161%" y="3749" width="0.0597%" height="15" fill="rgb(229,43,19)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3759.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="50.9161%" y="3733" width="0.0597%" height="15" fill="rgb(230,224,33)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3743.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (14 samples, 0.06%)</title><rect x="50.9161%" y="3717" width="0.0597%" height="15" fill="rgb(229,210,49)" fg:x="11949" fg:w="14"/><text x="51.1661%" y="3727.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}}::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3701" width="0.0213%" height="15" fill="rgb(231,57,39)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3685" width="0.0213%" height="15" fill="rgb(231,73,24)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="50.9545%" y="3669" width="0.0213%" height="15" fill="rgb(210,192,38)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3679.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="50.9545%" y="3653" width="0.0213%" height="15" fill="rgb(232,112,1)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3663.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="50.9545%" y="3637" width="0.0213%" height="15" fill="rgb(230,146,22)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3647.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="50.9545%" y="3621" width="0.0213%" height="15" fill="rgb(250,157,20)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="50.9545%" y="3605" width="0.0213%" height="15" fill="rgb(251,118,49)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3589" width="0.0213%" height="15" fill="rgb(245,45,47)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3573" width="0.0213%" height="15" fill="rgb(211,214,22)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.9545%" y="3557" width="0.0213%" height="15" fill="rgb(251,49,1)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3567.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="50.9545%" y="3541" width="0.0213%" height="15" fill="rgb(234,67,41)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3551.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.9545%" y="3525" width="0.0213%" height="15" fill="rgb(250,109,50)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3509" width="0.0213%" height="15" fill="rgb(253,99,27)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="50.9545%" y="3493" width="0.0213%" height="15" fill="rgb(251,203,53)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3503.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="50.9545%" y="3477" width="0.0213%" height="15" fill="rgb(247,19,6)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3487.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="50.9545%" y="3461" width="0.0213%" height="15" fill="rgb(212,225,7)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3471.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="50.9545%" y="3445" width="0.0213%" height="15" fill="rgb(236,194,2)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="50.9545%" y="3429" width="0.0213%" height="15" fill="rgb(246,229,9)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3413" width="0.0213%" height="15" fill="rgb(231,209,7)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3397" width="0.0213%" height="15" fill="rgb(239,199,17)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.9545%" y="3381" width="0.0213%" height="15" fill="rgb(228,57,46)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3391.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="50.9545%" y="3365" width="0.0213%" height="15" fill="rgb(213,12,23)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3375.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.9545%" y="3349" width="0.0213%" height="15" fill="rgb(225,142,34)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3333" width="0.0213%" height="15" fill="rgb(232,135,19)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="50.9545%" y="3317" width="0.0213%" height="15" fill="rgb(237,45,7)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3327.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="50.9545%" y="3301" width="0.0213%" height="15" fill="rgb(212,61,38)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3311.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="50.9545%" y="3285" width="0.0213%" height="15" fill="rgb(242,148,15)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3295.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="50.9545%" y="3269" width="0.0213%" height="15" fill="rgb(249,187,12)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="50.9545%" y="3253" width="0.0213%" height="15" fill="rgb(231,87,27)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3237" width="0.0213%" height="15" fill="rgb(205,40,28)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3221" width="0.0213%" height="15" fill="rgb(216,122,26)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.9545%" y="3205" width="0.0213%" height="15" fill="rgb(240,99,1)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3215.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="50.9545%" y="3189" width="0.0213%" height="15" fill="rgb(250,67,27)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3199.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.9545%" y="3173" width="0.0213%" height="15" fill="rgb(213,124,51)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3157" width="0.0213%" height="15" fill="rgb(220,55,10)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="50.9545%" y="3141" width="0.0213%" height="15" fill="rgb(240,99,39)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3151.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="50.9545%" y="3125" width="0.0213%" height="15" fill="rgb(221,209,35)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3135.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="50.9545%" y="3109" width="0.0213%" height="15" fill="rgb(221,212,50)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3119.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="50.9545%" y="3093" width="0.0213%" height="15" fill="rgb(239,175,48)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="50.9545%" y="3077" width="0.0213%" height="15" fill="rgb(209,48,6)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3061" width="0.0213%" height="15" fill="rgb(243,11,9)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="3045" width="0.0213%" height="15" fill="rgb(252,30,42)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.9545%" y="3029" width="0.0213%" height="15" fill="rgb(212,121,15)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3039.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="50.9545%" y="3013" width="0.0213%" height="15" fill="rgb(253,145,10)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3023.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.9545%" y="2997" width="0.0213%" height="15" fill="rgb(214,121,30)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="2981" width="0.0213%" height="15" fill="rgb(226,186,20)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="50.9545%" y="2965" width="0.0213%" height="15" fill="rgb(218,142,18)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2975.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="50.9545%" y="2949" width="0.0213%" height="15" fill="rgb(253,224,10)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2959.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="50.9545%" y="2933" width="0.0213%" height="15" fill="rgb(205,63,12)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2943.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="50.9545%" y="2917" width="0.0213%" height="15" fill="rgb(215,154,9)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="50.9545%" y="2901" width="0.0213%" height="15" fill="rgb(240,149,5)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="2885" width="0.0213%" height="15" fill="rgb(232,147,6)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="2869" width="0.0213%" height="15" fill="rgb(247,120,7)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.9545%" y="2853" width="0.0213%" height="15" fill="rgb(219,108,36)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="50.9545%" y="2837" width="0.0213%" height="15" fill="rgb(245,35,5)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.9545%" y="2821" width="0.0213%" height="15" fill="rgb(248,202,27)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="2805" width="0.0213%" height="15" fill="rgb(220,223,35)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="50.9545%" y="2789" width="0.0213%" height="15" fill="rgb(209,155,46)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="50.9545%" y="2773" width="0.0213%" height="15" fill="rgb(224,80,32)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2783.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="50.9545%" y="2757" width="0.0213%" height="15" fill="rgb(215,132,19)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="50.9545%" y="2741" width="0.0213%" height="15" fill="rgb(222,126,54)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="50.9545%" y="2725" width="0.0213%" height="15" fill="rgb(234,73,20)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="2709" width="0.0213%" height="15" fill="rgb(232,39,39)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="2693" width="0.0213%" height="15" fill="rgb(250,180,46)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.9545%" y="2677" width="0.0213%" height="15" fill="rgb(241,5,0)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2687.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="50.9545%" y="2661" width="0.0213%" height="15" fill="rgb(207,220,7)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.9545%" y="2645" width="0.0213%" height="15" fill="rgb(208,37,2)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="50.9545%" y="2629" width="0.0213%" height="15" fill="rgb(211,43,4)" fg:x="11958" fg:w="5"/><text x="51.2045%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="50.9588%" y="2613" width="0.0170%" height="15" fill="rgb(214,19,20)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="50.9588%" y="2597" width="0.0170%" height="15" fill="rgb(252,33,23)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2607.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="50.9588%" y="2581" width="0.0170%" height="15" fill="rgb(205,15,16)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="50.9588%" y="2565" width="0.0170%" height="15" fill="rgb(227,154,38)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="50.9588%" y="2549" width="0.0170%" height="15" fill="rgb(210,221,9)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2559.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9588%" y="2533" width="0.0170%" height="15" fill="rgb(231,63,52)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9588%" y="2517" width="0.0170%" height="15" fill="rgb(228,221,24)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.9588%" y="2501" width="0.0170%" height="15" fill="rgb(247,3,10)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="50.9588%" y="2485" width="0.0170%" height="15" fill="rgb(246,95,18)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="50.9588%" y="2469" width="0.0170%" height="15" fill="rgb(251,201,7)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2479.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="50.9588%" y="2453" width="0.0170%" height="15" fill="rgb(226,164,7)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2463.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="50.9588%" y="2437" width="0.0170%" height="15" fill="rgb(222,21,30)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="50.9588%" y="2421" width="0.0170%" height="15" fill="rgb(225,59,20)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2431.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="50.9588%" y="2405" width="0.0170%" height="15" fill="rgb(206,46,20)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2415.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="50.9588%" y="2389" width="0.0170%" height="15" fill="rgb(239,37,46)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2399.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9588%" y="2373" width="0.0170%" height="15" fill="rgb(236,5,21)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2383.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9588%" y="2357" width="0.0170%" height="15" fill="rgb(229,91,8)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="50.9588%" y="2341" width="0.0170%" height="15" fill="rgb(212,175,10)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="50.9588%" y="2325" width="0.0170%" height="15" fill="rgb(213,186,44)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2335.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="50.9588%" y="2309" width="0.0170%" height="15" fill="rgb(248,14,36)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2319.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="50.9588%" y="2293" width="0.0170%" height="15" fill="rgb(215,129,8)" fg:x="11959" fg:w="4"/><text x="51.2088%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="51.0099%" y="2997" width="0.0213%" height="15" fill="rgb(215,154,39)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="3007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="51.0099%" y="2981" width="0.0213%" height="15" fill="rgb(251,159,49)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2991.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="51.0099%" y="2965" width="0.0213%" height="15" fill="rgb(229,160,5)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2975.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="51.0099%" y="2949" width="0.0213%" height="15" fill="rgb(242,55,14)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2959.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="51.0099%" y="2933" width="0.0213%" height="15" fill="rgb(207,221,31)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2943.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="51.0099%" y="2917" width="0.0213%" height="15" fill="rgb(225,113,33)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="51.0099%" y="2901" width="0.0213%" height="15" fill="rgb(215,22,9)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2911.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="51.0099%" y="2885" width="0.0213%" height="15" fill="rgb(213,148,47)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2895.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="51.0099%" y="2869" width="0.0213%" height="15" fill="rgb(236,174,11)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2879.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="51.0099%" y="2853" width="0.0213%" height="15" fill="rgb(208,127,54)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="51.0099%" y="2837" width="0.0213%" height="15" fill="rgb(245,27,4)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2847.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0099%" y="2821" width="0.0213%" height="15" fill="rgb(221,153,7)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0099%" y="2805" width="0.0213%" height="15" fill="rgb(236,44,1)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0099%" y="2789" width="0.0213%" height="15" fill="rgb(237,175,3)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="51.0099%" y="2773" width="0.0213%" height="15" fill="rgb(234,222,6)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="51.0099%" y="2757" width="0.0213%" height="15" fill="rgb(230,114,44)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="51.0099%" y="2741" width="0.0213%" height="15" fill="rgb(223,83,27)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0099%" y="2725" width="0.0213%" height="15" fill="rgb(247,60,9)" fg:x="11971" fg:w="5"/><text x="51.2599%" y="2735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.0184%" y="2709" width="0.0128%" height="15" fill="rgb(215,85,27)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.0184%" y="2693" width="0.0128%" height="15" fill="rgb(251,59,50)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2703.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="2677" width="0.0128%" height="15" fill="rgb(207,192,12)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2687.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="2661" width="0.0128%" height="15" fill="rgb(244,43,49)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2671.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="2645" width="0.0128%" height="15" fill="rgb(228,66,10)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2655.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.0184%" y="2629" width="0.0128%" height="15" fill="rgb(208,227,48)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="2613" width="0.0128%" height="15" fill="rgb(241,26,23)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="2597" width="0.0128%" height="15" fill="rgb(241,178,52)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2607.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="2581" width="0.0128%" height="15" fill="rgb(224,122,36)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="2565" width="0.0128%" height="15" fill="rgb(211,213,17)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="2549" width="0.0128%" height="15" fill="rgb(209,135,2)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2559.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2533" width="0.0128%" height="15" fill="rgb(227,67,54)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2517" width="0.0128%" height="15" fill="rgb(229,109,21)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2501" width="0.0128%" height="15" fill="rgb(243,19,26)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="2485" width="0.0128%" height="15" fill="rgb(237,216,6)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="2469" width="0.0128%" height="15" fill="rgb(227,43,50)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="2453" width="0.0128%" height="15" fill="rgb(210,227,26)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2437" width="0.0128%" height="15" fill="rgb(213,217,33)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2447.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="2421" width="0.0128%" height="15" fill="rgb(232,62,50)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2431.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="2405" width="0.0128%" height="15" fill="rgb(230,95,40)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2415.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="2389" width="0.0128%" height="15" fill="rgb(244,44,25)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2399.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="2373" width="0.0128%" height="15" fill="rgb(232,142,29)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2383.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="2357" width="0.0128%" height="15" fill="rgb(225,74,42)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2341" width="0.0128%" height="15" fill="rgb(234,40,44)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2325" width="0.0128%" height="15" fill="rgb(207,122,8)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="2309" width="0.0128%" height="15" fill="rgb(249,207,36)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="2293" width="0.0128%" height="15" fill="rgb(221,37,25)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="2277" width="0.0128%" height="15" fill="rgb(218,3,14)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2261" width="0.0128%" height="15" fill="rgb(206,171,46)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2271.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.0184%" y="2245" width="0.0128%" height="15" fill="rgb(252,33,49)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.0184%" y="2229" width="0.0128%" height="15" fill="rgb(207,93,41)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="2213" width="0.0128%" height="15" fill="rgb(214,52,2)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="2197" width="0.0128%" height="15" fill="rgb(250,113,15)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="2181" width="0.0128%" height="15" fill="rgb(254,184,0)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.0184%" y="2165" width="0.0128%" height="15" fill="rgb(226,27,20)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="2149" width="0.0128%" height="15" fill="rgb(222,79,19)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="2133" width="0.0128%" height="15" fill="rgb(219,2,11)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2143.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="2117" width="0.0128%" height="15" fill="rgb(236,69,44)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="2101" width="0.0128%" height="15" fill="rgb(221,19,36)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="2085" width="0.0128%" height="15" fill="rgb(232,169,18)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2069" width="0.0128%" height="15" fill="rgb(248,200,8)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2053" width="0.0128%" height="15" fill="rgb(215,12,17)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="2037" width="0.0128%" height="15" fill="rgb(228,86,29)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="2021" width="0.0128%" height="15" fill="rgb(243,88,15)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="2005" width="0.0128%" height="15" fill="rgb(242,126,42)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="1989" width="0.0128%" height="15" fill="rgb(253,13,44)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1973" width="0.0128%" height="15" fill="rgb(232,54,38)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.0184%" y="1957" width="0.0128%" height="15" fill="rgb(206,186,5)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.0184%" y="1941" width="0.0128%" height="15" fill="rgb(254,202,36)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="1925" width="0.0128%" height="15" fill="rgb(230,120,29)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="1909" width="0.0128%" height="15" fill="rgb(213,122,21)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="1893" width="0.0128%" height="15" fill="rgb(206,113,16)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.0184%" y="1877" width="0.0128%" height="15" fill="rgb(244,12,18)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="1861" width="0.0128%" height="15" fill="rgb(214,173,35)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="1845" width="0.0128%" height="15" fill="rgb(254,110,43)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1855.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="1829" width="0.0128%" height="15" fill="rgb(217,213,31)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="1813" width="0.0128%" height="15" fill="rgb(208,79,4)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="1797" width="0.0128%" height="15" fill="rgb(228,15,49)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1781" width="0.0128%" height="15" fill="rgb(224,208,50)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1765" width="0.0128%" height="15" fill="rgb(227,192,49)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1749" width="0.0128%" height="15" fill="rgb(221,152,52)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="1733" width="0.0128%" height="15" fill="rgb(226,150,16)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="1717" width="0.0128%" height="15" fill="rgb(218,227,23)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="1701" width="0.0128%" height="15" fill="rgb(247,212,45)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1685" width="0.0128%" height="15" fill="rgb(238,139,28)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="1669" width="0.0128%" height="15" fill="rgb(233,87,45)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="1653" width="0.0128%" height="15" fill="rgb(231,62,7)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="1637" width="0.0128%" height="15" fill="rgb(248,84,16)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="1621" width="0.0128%" height="15" fill="rgb(223,151,40)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="1605" width="0.0128%" height="15" fill="rgb(248,149,3)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1589" width="0.0128%" height="15" fill="rgb(247,45,30)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1573" width="0.0128%" height="15" fill="rgb(208,91,30)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="1557" width="0.0128%" height="15" fill="rgb(214,49,3)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="1541" width="0.0128%" height="15" fill="rgb(240,157,6)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="1525" width="0.0128%" height="15" fill="rgb(243,206,46)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1509" width="0.0128%" height="15" fill="rgb(209,39,8)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.0184%" y="1493" width="0.0128%" height="15" fill="rgb(236,122,31)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.0184%" y="1477" width="0.0128%" height="15" fill="rgb(218,17,37)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="1461" width="0.0128%" height="15" fill="rgb(244,222,3)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1471.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="1445" width="0.0128%" height="15" fill="rgb(216,228,33)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1455.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="1429" width="0.0128%" height="15" fill="rgb(213,220,29)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1439.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.0184%" y="1413" width="0.0128%" height="15" fill="rgb(253,79,23)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1423.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="1397" width="0.0128%" height="15" fill="rgb(253,17,54)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1407.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="1381" width="0.0128%" height="15" fill="rgb(238,159,42)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1391.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="1365" width="0.0128%" height="15" fill="rgb(233,16,44)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1375.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="1349" width="0.0128%" height="15" fill="rgb(230,19,11)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1359.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="1333" width="0.0128%" height="15" fill="rgb(249,32,18)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1343.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1317" width="0.0128%" height="15" fill="rgb(223,165,28)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1327.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1301" width="0.0128%" height="15" fill="rgb(235,145,8)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1285" width="0.0128%" height="15" fill="rgb(230,226,0)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="1269" width="0.0128%" height="15" fill="rgb(234,61,52)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1279.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="1253" width="0.0128%" height="15" fill="rgb(242,13,32)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1263.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="1237" width="0.0128%" height="15" fill="rgb(206,183,45)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1221" width="0.0128%" height="15" fill="rgb(226,38,31)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="1205" width="0.0128%" height="15" fill="rgb(248,50,23)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1215.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="1189" width="0.0128%" height="15" fill="rgb(206,12,44)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1199.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="1173" width="0.0128%" height="15" fill="rgb(218,109,16)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1183.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="1157" width="0.0128%" height="15" fill="rgb(238,172,47)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="1141" width="0.0128%" height="15" fill="rgb(222,101,4)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1125" width="0.0128%" height="15" fill="rgb(250,11,38)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1109" width="0.0128%" height="15" fill="rgb(232,229,2)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="1093" width="0.0128%" height="15" fill="rgb(227,67,2)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="1077" width="0.0128%" height="15" fill="rgb(211,156,27)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="1061" width="0.0128%" height="15" fill="rgb(222,175,7)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1045" width="0.0128%" height="15" fill="rgb(228,200,11)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1055.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="51.0184%" y="1029" width="0.0128%" height="15" fill="rgb(238,144,15)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="1013" width="0.0128%" height="15" fill="rgb(205,57,25)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="997" width="0.0128%" height="15" fill="rgb(247,202,6)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="981" width="0.0128%" height="15" fill="rgb(211,37,16)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="991.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="965" width="0.0128%" height="15" fill="rgb(231,122,25)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="949" width="0.0128%" height="15" fill="rgb(205,132,35)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="933" width="0.0128%" height="15" fill="rgb(230,172,9)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.0184%" y="917" width="0.0128%" height="15" fill="rgb(225,204,30)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="927.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.0184%" y="901" width="0.0128%" height="15" fill="rgb(243,66,31)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="885" width="0.0128%" height="15" fill="rgb(207,211,27)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="895.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="869" width="0.0128%" height="15" fill="rgb(223,85,43)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="879.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="853" width="0.0128%" height="15" fill="rgb(248,92,49)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="863.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.0184%" y="837" width="0.0128%" height="15" fill="rgb(248,211,31)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="821" width="0.0128%" height="15" fill="rgb(236,18,12)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="831.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="805" width="0.0128%" height="15" fill="rgb(213,93,25)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="815.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="789" width="0.0128%" height="15" fill="rgb(239,6,53)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="799.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="773" width="0.0128%" height="15" fill="rgb(239,70,13)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="757" width="0.0128%" height="15" fill="rgb(222,136,42)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="741" width="0.0128%" height="15" fill="rgb(232,223,34)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="725" width="0.0128%" height="15" fill="rgb(238,25,9)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="709" width="0.0128%" height="15" fill="rgb(246,12,36)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="693" width="0.0128%" height="15" fill="rgb(241,203,47)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="703.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="677" width="0.0128%" height="15" fill="rgb(218,61,21)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="661" width="0.0128%" height="15" fill="rgb(211,127,12)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="671.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="645" width="0.0128%" height="15" fill="rgb(213,151,51)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.0184%" y="629" width="0.0128%" height="15" fill="rgb(243,66,16)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.0184%" y="613" width="0.0128%" height="15" fill="rgb(234,28,26)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="597" width="0.0128%" height="15" fill="rgb(247,85,1)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="607.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="581" width="0.0128%" height="15" fill="rgb(248,206,53)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="591.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.0184%" y="565" width="0.0128%" height="15" fill="rgb(209,61,12)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="575.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.0184%" y="549" width="0.0128%" height="15" fill="rgb(220,85,43)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="533" width="0.0128%" height="15" fill="rgb(251,113,2)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="543.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="517" width="0.0128%" height="15" fill="rgb(217,211,7)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="527.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="501" width="0.0128%" height="15" fill="rgb(233,141,24)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="511.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="485" width="0.0128%" height="15" fill="rgb(217,65,8)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="469" width="0.0128%" height="15" fill="rgb(236,115,41)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="453" width="0.0128%" height="15" fill="rgb(249,136,39)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="463.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="437" width="0.0128%" height="15" fill="rgb(231,169,29)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="421" width="0.0128%" height="15" fill="rgb(208,7,11)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="405" width="0.0128%" height="15" fill="rgb(249,127,18)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="415.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.0184%" y="389" width="0.0128%" height="15" fill="rgb(223,39,51)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0184%" y="373" width="0.0128%" height="15" fill="rgb(243,225,54)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="383.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="357" width="0.0128%" height="15" fill="rgb(228,204,19)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="367.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.0184%" y="341" width="0.0128%" height="15" fill="rgb(246,90,14)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="351.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.0184%" y="325" width="0.0128%" height="15" fill="rgb(229,122,25)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="335.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.0184%" y="309" width="0.0128%" height="15" fill="rgb(245,179,39)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="319.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.0184%" y="293" width="0.0128%" height="15" fill="rgb(237,87,4)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="303.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="277" width="0.0128%" height="15" fill="rgb(237,175,53)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="287.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="261" width="0.0128%" height="15" fill="rgb(241,20,8)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="245" width="0.0128%" height="15" fill="rgb(222,52,23)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0184%" y="229" width="0.0128%" height="15" fill="rgb(206,48,53)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="239.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="51.0184%" y="213" width="0.0128%" height="15" fill="rgb(236,108,27)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="223.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="51.0184%" y="197" width="0.0128%" height="15" fill="rgb(249,81,40)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="207.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="51.0184%" y="181" width="0.0128%" height="15" fill="rgb(232,45,25)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="191.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="51.0184%" y="165" width="0.0128%" height="15" fill="rgb(235,15,16)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="175.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="51.0184%" y="149" width="0.0128%" height="15" fill="rgb(205,185,51)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="51.0184%" y="133" width="0.0128%" height="15" fill="rgb(229,174,39)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="143.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="51.0184%" y="117" width="0.0128%" height="15" fill="rgb(227,72,3)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="127.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="101" width="0.0128%" height="15" fill="rgb(205,146,28)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="111.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="51.0184%" y="85" width="0.0128%" height="15" fill="rgb(251,45,18)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="95.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="51.0184%" y="69" width="0.0128%" height="15" fill="rgb(238,134,48)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="79.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="51.0184%" y="53" width="0.0128%" height="15" fill="rgb(225,68,6)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="63.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="51.0184%" y="37" width="0.0128%" height="15" fill="rgb(212,198,29)" fg:x="11973" fg:w="3"/><text x="51.2684%" y="47.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="51.0099%" y="3109" width="0.0298%" height="15" fill="rgb(248,191,11)" fg:x="11971" fg:w="7"/><text x="51.2599%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="51.0099%" y="3093" width="0.0298%" height="15" fill="rgb(210,199,32)" fg:x="11971" fg:w="7"/><text x="51.2599%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="51.0099%" y="3077" width="0.0298%" height="15" fill="rgb(245,198,1)" fg:x="11971" fg:w="7"/><text x="51.2599%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="51.0099%" y="3061" width="0.0298%" height="15" fill="rgb(218,26,31)" fg:x="11971" fg:w="7"/><text x="51.2599%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="51.0099%" y="3045" width="0.0298%" height="15" fill="rgb(223,199,12)" fg:x="11971" fg:w="7"/><text x="51.2599%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="51.0099%" y="3029" width="0.0298%" height="15" fill="rgb(226,107,32)" fg:x="11971" fg:w="7"/><text x="51.2599%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="51.0099%" y="3013" width="0.0298%" height="15" fill="rgb(215,44,41)" fg:x="11971" fg:w="7"/><text x="51.2599%" y="3023.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="51.0397%" y="2933" width="0.0256%" height="15" fill="rgb(250,32,24)" fg:x="11978" fg:w="6"/><text x="51.2897%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="51.0397%" y="2917" width="0.0256%" height="15" fill="rgb(231,7,51)" fg:x="11978" fg:w="6"/><text x="51.2897%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="51.0397%" y="2901" width="0.0256%" height="15" fill="rgb(216,35,53)" fg:x="11978" fg:w="6"/><text x="51.2897%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="51.0397%" y="2885" width="0.0256%" height="15" fill="rgb(237,33,42)" fg:x="11978" fg:w="6"/><text x="51.2897%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="51.0397%" y="2869" width="0.0256%" height="15" fill="rgb(221,60,18)" fg:x="11978" fg:w="6"/><text x="51.2897%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="51.0397%" y="2853" width="0.0256%" height="15" fill="rgb(222,131,27)" fg:x="11978" fg:w="6"/><text x="51.2897%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="51.0397%" y="2837" width="0.0256%" height="15" fill="rgb(238,26,0)" fg:x="11978" fg:w="6"/><text x="51.2897%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="51.0482%" y="2821" width="0.0170%" height="15" fill="rgb(238,163,52)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="51.0482%" y="2805" width="0.0170%" height="15" fill="rgb(221,2,27)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2815.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="51.0482%" y="2789" width="0.0170%" height="15" fill="rgb(218,202,27)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="51.0482%" y="2773" width="0.0170%" height="15" fill="rgb(250,76,39)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="51.0482%" y="2757" width="0.0170%" height="15" fill="rgb(235,188,46)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2741" width="0.0170%" height="15" fill="rgb(218,29,42)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2725" width="0.0170%" height="15" fill="rgb(240,103,48)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.0482%" y="2709" width="0.0170%" height="15" fill="rgb(216,164,25)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="51.0482%" y="2693" width="0.0170%" height="15" fill="rgb(224,114,29)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.0482%" y="2677" width="0.0170%" height="15" fill="rgb(212,27,2)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2661" width="0.0170%" height="15" fill="rgb(248,76,2)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="51.0482%" y="2645" width="0.0170%" height="15" fill="rgb(250,116,44)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="51.0482%" y="2629" width="0.0170%" height="15" fill="rgb(237,219,11)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2639.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="51.0482%" y="2613" width="0.0170%" height="15" fill="rgb(213,77,33)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="51.0482%" y="2597" width="0.0170%" height="15" fill="rgb(209,175,41)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="51.0482%" y="2581" width="0.0170%" height="15" fill="rgb(227,15,15)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2565" width="0.0170%" height="15" fill="rgb(241,144,53)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2549" width="0.0170%" height="15" fill="rgb(231,202,16)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.0482%" y="2533" width="0.0170%" height="15" fill="rgb(234,128,20)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="51.0482%" y="2517" width="0.0170%" height="15" fill="rgb(226,178,24)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.0482%" y="2501" width="0.0170%" height="15" fill="rgb(217,121,26)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2485" width="0.0170%" height="15" fill="rgb(209,19,54)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="51.0482%" y="2469" width="0.0170%" height="15" fill="rgb(250,28,50)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="51.0482%" y="2453" width="0.0170%" height="15" fill="rgb(214,140,19)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2463.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="51.0482%" y="2437" width="0.0170%" height="15" fill="rgb(225,198,6)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="51.0482%" y="2421" width="0.0170%" height="15" fill="rgb(241,39,34)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="51.0482%" y="2405" width="0.0170%" height="15" fill="rgb(251,119,17)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2389" width="0.0170%" height="15" fill="rgb(228,94,45)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2373" width="0.0170%" height="15" fill="rgb(225,122,29)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.0482%" y="2357" width="0.0170%" height="15" fill="rgb(247,171,50)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="51.0482%" y="2341" width="0.0170%" height="15" fill="rgb(253,181,30)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="51.0482%" y="2325" width="0.0170%" height="15" fill="rgb(227,133,46)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2335.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="51.0482%" y="2309" width="0.0170%" height="15" fill="rgb(205,130,37)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="51.0482%" y="2293" width="0.0170%" height="15" fill="rgb(231,177,50)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="51.0482%" y="2277" width="0.0170%" height="15" fill="rgb(216,51,40)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="51.0482%" y="2261" width="0.0170%" height="15" fill="rgb(224,106,4)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="51.0482%" y="2245" width="0.0170%" height="15" fill="rgb(252,228,8)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2229" width="0.0170%" height="15" fill="rgb(232,170,37)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2213" width="0.0170%" height="15" fill="rgb(244,207,36)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="51.0482%" y="2197" width="0.0170%" height="15" fill="rgb(254,174,33)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="51.0482%" y="2181" width="0.0170%" height="15" fill="rgb(224,116,36)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2191.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="51.0482%" y="2165" width="0.0170%" height="15" fill="rgb(205,205,28)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2175.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="51.0482%" y="2149" width="0.0170%" height="15" fill="rgb(224,78,24)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="51.0482%" y="2133" width="0.0170%" height="15" fill="rgb(205,199,46)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="51.0482%" y="2117" width="0.0170%" height="15" fill="rgb(222,172,47)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="51.0482%" y="2101" width="0.0170%" height="15" fill="rgb(232,38,32)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="51.0482%" y="2085" width="0.0170%" height="15" fill="rgb(225,77,4)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="51.0482%" y="2069" width="0.0170%" height="15" fill="rgb(240,87,40)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2079.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (4 samples, 0.02%)</title><rect x="51.0482%" y="2053" width="0.0170%" height="15" fill="rgb(254,196,26)" fg:x="11980" fg:w="4"/><text x="51.2982%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="51.0781%" y="2581" width="0.0256%" height="15" fill="rgb(232,149,4)" fg:x="11987" fg:w="6"/><text x="51.3281%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="51.0781%" y="2565" width="0.0256%" height="15" fill="rgb(254,213,46)" fg:x="11987" fg:w="6"/><text x="51.3281%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="51.0781%" y="2549" width="0.0256%" height="15" fill="rgb(235,107,2)" fg:x="11987" fg:w="6"/><text x="51.3281%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="51.0781%" y="2533" width="0.0256%" height="15" fill="rgb(210,189,17)" fg:x="11987" fg:w="6"/><text x="51.3281%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="51.0781%" y="2517" width="0.0256%" height="15" fill="rgb(247,80,35)" fg:x="11987" fg:w="6"/><text x="51.3281%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="51.0781%" y="2501" width="0.0256%" height="15" fill="rgb(237,185,3)" fg:x="11987" fg:w="6"/><text x="51.3281%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="51.0781%" y="2485" width="0.0256%" height="15" fill="rgb(228,95,48)" fg:x="11987" fg:w="6"/><text x="51.3281%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="51.0823%" y="2469" width="0.0213%" height="15" fill="rgb(218,218,10)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="51.0823%" y="2453" width="0.0213%" height="15" fill="rgb(221,102,28)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2463.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="51.0823%" y="2437" width="0.0213%" height="15" fill="rgb(254,50,1)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="51.0823%" y="2421" width="0.0213%" height="15" fill="rgb(240,223,25)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="51.0823%" y="2405" width="0.0213%" height="15" fill="rgb(217,107,22)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0823%" y="2389" width="0.0213%" height="15" fill="rgb(231,152,23)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0823%" y="2373" width="0.0213%" height="15" fill="rgb(211,108,2)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="51.0823%" y="2357" width="0.0213%" height="15" fill="rgb(217,45,50)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="51.0823%" y="2341" width="0.0213%" height="15" fill="rgb(213,106,11)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="51.0823%" y="2325" width="0.0213%" height="15" fill="rgb(253,177,35)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2335.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="51.0823%" y="2309" width="0.0213%" height="15" fill="rgb(253,59,9)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="51.0823%" y="2293" width="0.0213%" height="15" fill="rgb(233,18,41)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="51.0823%" y="2277" width="0.0213%" height="15" fill="rgb(237,88,23)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="51.0823%" y="2261" width="0.0213%" height="15" fill="rgb(250,26,31)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="51.0823%" y="2245" width="0.0213%" height="15" fill="rgb(225,188,49)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0823%" y="2229" width="0.0213%" height="15" fill="rgb(254,126,49)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0823%" y="2213" width="0.0213%" height="15" fill="rgb(238,165,30)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="51.0823%" y="2197" width="0.0213%" height="15" fill="rgb(249,32,48)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="51.0823%" y="2181" width="0.0213%" height="15" fill="rgb(231,219,37)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2191.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="51.0823%" y="2165" width="0.0213%" height="15" fill="rgb(232,93,12)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2175.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="51.0823%" y="2149" width="0.0213%" height="15" fill="rgb(228,13,38)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="51.0823%" y="2133" width="0.0213%" height="15" fill="rgb(223,126,45)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="51.0823%" y="2117" width="0.0213%" height="15" fill="rgb(215,178,2)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="51.0823%" y="2101" width="0.0213%" height="15" fill="rgb(232,157,8)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="51.0823%" y="2085" width="0.0213%" height="15" fill="rgb(212,77,51)" fg:x="11988" fg:w="5"/><text x="51.3323%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="51.0908%" y="2069" width="0.0128%" height="15" fill="rgb(242,123,43)" fg:x="11990" fg:w="3"/><text x="51.3408%" y="2079.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="51.1036%" y="2405" width="0.0213%" height="15" fill="rgb(212,80,35)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="51.1036%" y="2389" width="0.0213%" height="15" fill="rgb(239,75,4)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="51.1036%" y="2373" width="0.0213%" height="15" fill="rgb(233,10,16)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="51.1036%" y="2357" width="0.0213%" height="15" fill="rgb(226,118,40)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="51.1036%" y="2341" width="0.0213%" height="15" fill="rgb(210,145,37)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="51.1036%" y="2325" width="0.0213%" height="15" fill="rgb(250,56,16)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2335.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="51.1036%" y="2309" width="0.0213%" height="15" fill="rgb(207,89,25)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="51.1036%" y="2293" width="0.0213%" height="15" fill="rgb(248,169,6)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="51.1036%" y="2277" width="0.0213%" height="15" fill="rgb(249,165,5)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="51.1036%" y="2261" width="0.0213%" height="15" fill="rgb(231,54,21)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="51.1036%" y="2245" width="0.0213%" height="15" fill="rgb(215,11,24)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="51.1036%" y="2229" width="0.0213%" height="15" fill="rgb(248,49,21)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="51.1036%" y="2213" width="0.0213%" height="15" fill="rgb(208,224,20)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="51.1036%" y="2197" width="0.0213%" height="15" fill="rgb(210,80,10)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="51.1036%" y="2181" width="0.0213%" height="15" fill="rgb(214,2,50)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2191.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="51.1036%" y="2165" width="0.0213%" height="15" fill="rgb(223,25,26)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2175.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="51.1036%" y="2149" width="0.0213%" height="15" fill="rgb(249,155,42)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="51.1036%" y="2133" width="0.0213%" height="15" fill="rgb(210,13,23)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="51.1036%" y="2117" width="0.0213%" height="15" fill="rgb(238,64,9)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="51.1036%" y="2101" width="0.0213%" height="15" fill="rgb(220,76,14)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="51.1036%" y="2085" width="0.0213%" height="15" fill="rgb(220,109,18)" fg:x="11993" fg:w="5"/><text x="51.3536%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="51.1079%" y="2069" width="0.0170%" height="15" fill="rgb(211,93,42)" fg:x="11994" fg:w="4"/><text x="51.3579%" y="2079.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="51.1122%" y="2053" width="0.0128%" height="15" fill="rgb(212,7,0)" fg:x="11995" fg:w="3"/><text x="51.3622%" y="2063.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="51.1249%" y="2069" width="0.0298%" height="15" fill="rgb(211,23,49)" fg:x="11998" fg:w="7"/><text x="51.3749%" y="2079.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="51.1249%" y="2053" width="0.0298%" height="15" fill="rgb(229,73,2)" fg:x="11998" fg:w="7"/><text x="51.3749%" y="2063.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="51.1249%" y="2037" width="0.0298%" height="15" fill="rgb(240,57,45)" fg:x="11998" fg:w="7"/><text x="51.3749%" y="2047.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="51.1249%" y="2021" width="0.0298%" height="15" fill="rgb(230,156,33)" fg:x="11998" fg:w="7"/><text x="51.3749%" y="2031.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="51.1249%" y="2005" width="0.0298%" height="15" fill="rgb(207,5,16)" fg:x="11998" fg:w="7"/><text x="51.3749%" y="2015.50"></text></g><g><title>rayon::slice::quicksort::partition (6 samples, 0.03%)</title><rect x="51.1292%" y="1989" width="0.0256%" height="15" fill="rgb(240,0,36)" fg:x="11999" fg:w="6"/><text x="51.3792%" y="1999.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (6 samples, 0.03%)</title><rect x="51.1292%" y="1973" width="0.0256%" height="15" fill="rgb(241,174,44)" fg:x="11999" fg:w="6"/><text x="51.3792%" y="1983.50"></text></g><g><title>[libc.so.6] (47 samples, 0.20%)</title><rect x="50.9758%" y="3829" width="0.2003%" height="15" fill="rgb(241,228,36)" fg:x="11963" fg:w="47"/><text x="51.2258%" y="3839.50"></text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (39 samples, 0.17%)</title><rect x="51.0099%" y="3813" width="0.1662%" height="15" fill="rgb(236,43,44)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3823.50"></text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (39 samples, 0.17%)</title><rect x="51.0099%" y="3797" width="0.1662%" height="15" fill="rgb(229,210,28)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3807.50"></text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (39 samples, 0.17%)</title><rect x="51.0099%" y="3781" width="0.1662%" height="15" fill="rgb(248,121,42)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3791.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3765" width="0.1662%" height="15" fill="rgb(212,206,34)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3775.50"></text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3749" width="0.1662%" height="15" fill="rgb(220,26,54)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3759.50"></text></g><g><title>std::panic::catch_unwind (39 samples, 0.17%)</title><rect x="51.0099%" y="3733" width="0.1662%" height="15" fill="rgb(226,214,47)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3743.50"></text></g><g><title>std::panicking::try (39 samples, 0.17%)</title><rect x="51.0099%" y="3717" width="0.1662%" height="15" fill="rgb(243,18,48)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3727.50"></text></g><g><title>std::panicking::try::do_call (39 samples, 0.17%)</title><rect x="51.0099%" y="3701" width="0.1662%" height="15" fill="rgb(250,225,49)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (39 samples, 0.17%)</title><rect x="51.0099%" y="3685" width="0.1662%" height="15" fill="rgb(242,98,24)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3695.50"></text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3669" width="0.1662%" height="15" fill="rgb(216,60,22)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3679.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (39 samples, 0.17%)</title><rect x="51.0099%" y="3653" width="0.1662%" height="15" fill="rgb(215,96,0)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3663.50"></text></g><g><title><rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn>::spawn::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3637" width="0.1662%" height="15" fill="rgb(222,28,19)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3647.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (39 samples, 0.17%)</title><rect x="51.0099%" y="3621" width="0.1662%" height="15" fill="rgb(212,207,12)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3631.50"></text></g><g><title>rayon_core::registry::main_loop (39 samples, 0.17%)</title><rect x="51.0099%" y="3605" width="0.1662%" height="15" fill="rgb(243,43,37)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_out_of_work (39 samples, 0.17%)</title><rect x="51.0099%" y="3589" width="0.1662%" height="15" fill="rgb(212,44,46)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3599.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (39 samples, 0.17%)</title><rect x="51.0099%" y="3573" width="0.1662%" height="15" fill="rgb(207,89,11)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (39 samples, 0.17%)</title><rect x="51.0099%" y="3557" width="0.1662%" height="15" fill="rgb(208,14,44)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3567.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (39 samples, 0.17%)</title><rect x="51.0099%" y="3541" width="0.1662%" height="15" fill="rgb(210,206,26)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3551.50"></text></g><g><title>rayon_core::job::JobRef::execute (39 samples, 0.17%)</title><rect x="51.0099%" y="3525" width="0.1662%" height="15" fill="rgb(232,207,36)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3535.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (39 samples, 0.17%)</title><rect x="51.0099%" y="3509" width="0.1662%" height="15" fill="rgb(247,201,17)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3519.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (39 samples, 0.17%)</title><rect x="51.0099%" y="3493" width="0.1662%" height="15" fill="rgb(250,59,9)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3503.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (39 samples, 0.17%)</title><rect x="51.0099%" y="3477" width="0.1662%" height="15" fill="rgb(241,42,22)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3487.50"></text></g><g><title>std::panic::catch_unwind (39 samples, 0.17%)</title><rect x="51.0099%" y="3461" width="0.1662%" height="15" fill="rgb(212,70,43)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3471.50"></text></g><g><title>std::panicking::try (39 samples, 0.17%)</title><rect x="51.0099%" y="3445" width="0.1662%" height="15" fill="rgb(205,222,3)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3455.50"></text></g><g><title>std::panicking::try::do_call (39 samples, 0.17%)</title><rect x="51.0099%" y="3429" width="0.1662%" height="15" fill="rgb(252,80,42)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3439.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (39 samples, 0.17%)</title><rect x="51.0099%" y="3413" width="0.1662%" height="15" fill="rgb(246,80,45)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3423.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3397" width="0.1662%" height="15" fill="rgb(242,119,18)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3407.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3381" width="0.1662%" height="15" fill="rgb(226,225,51)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3365" width="0.1662%" height="15" fill="rgb(247,129,12)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.17%)</title><rect x="51.0099%" y="3349" width="0.1662%" height="15" fill="rgb(243,201,42)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3359.50"></text></g><g><title>rayon_core::join::join_context (39 samples, 0.17%)</title><rect x="51.0099%" y="3333" width="0.1662%" height="15" fill="rgb(246,140,19)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3343.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.17%)</title><rect x="51.0099%" y="3317" width="0.1662%" height="15" fill="rgb(234,69,5)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3327.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3301" width="0.1662%" height="15" fill="rgb(218,173,43)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3311.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (39 samples, 0.17%)</title><rect x="51.0099%" y="3285" width="0.1662%" height="15" fill="rgb(206,187,11)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3295.50"></text></g><g><title>std::panic::catch_unwind (39 samples, 0.17%)</title><rect x="51.0099%" y="3269" width="0.1662%" height="15" fill="rgb(210,154,37)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3279.50"></text></g><g><title>std::panicking::try (39 samples, 0.17%)</title><rect x="51.0099%" y="3253" width="0.1662%" height="15" fill="rgb(246,198,25)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3263.50"></text></g><g><title>std::panicking::try::do_call (39 samples, 0.17%)</title><rect x="51.0099%" y="3237" width="0.1662%" height="15" fill="rgb(218,157,1)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3247.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (39 samples, 0.17%)</title><rect x="51.0099%" y="3221" width="0.1662%" height="15" fill="rgb(235,140,27)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3205" width="0.1662%" height="15" fill="rgb(243,206,52)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3189" width="0.1662%" height="15" fill="rgb(218,24,53)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.17%)</title><rect x="51.0099%" y="3173" width="0.1662%" height="15" fill="rgb(241,214,52)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3183.50"></text></g><g><title>rayon_core::join::join_context (39 samples, 0.17%)</title><rect x="51.0099%" y="3157" width="0.1662%" height="15" fill="rgb(249,171,25)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3167.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.17%)</title><rect x="51.0099%" y="3141" width="0.1662%" height="15" fill="rgb(233,90,33)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39 samples, 0.17%)</title><rect x="51.0099%" y="3125" width="0.1662%" height="15" fill="rgb(232,35,33)" fg:x="11971" fg:w="39"/><text x="51.2599%" y="3135.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="51.0397%" y="3109" width="0.1364%" height="15" fill="rgb(216,218,6)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3119.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="51.0397%" y="3093" width="0.1364%" height="15" fill="rgb(250,41,51)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3103.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="51.0397%" y="3077" width="0.1364%" height="15" fill="rgb(225,141,41)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3087.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="51.0397%" y="3061" width="0.1364%" height="15" fill="rgb(245,25,0)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3071.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="51.0397%" y="3045" width="0.1364%" height="15" fill="rgb(210,140,54)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (32 samples, 0.14%)</title><rect x="51.0397%" y="3029" width="0.1364%" height="15" fill="rgb(221,225,48)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="51.0397%" y="3013" width="0.1364%" height="15" fill="rgb(234,202,5)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="51.0397%" y="2997" width="0.1364%" height="15" fill="rgb(222,215,50)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="51.0397%" y="2981" width="0.1364%" height="15" fill="rgb(229,32,47)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="51.0397%" y="2965" width="0.1364%" height="15" fill="rgb(213,11,37)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="51.0397%" y="2949" width="0.1364%" height="15" fill="rgb(219,45,5)" fg:x="11978" fg:w="32"/><text x="51.2897%" y="2959.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (25 samples, 0.11%)</title><rect x="51.0695%" y="2933" width="0.1065%" height="15" fill="rgb(217,227,30)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2943.50"></text></g><g><title>std::panic::catch_unwind (25 samples, 0.11%)</title><rect x="51.0695%" y="2917" width="0.1065%" height="15" fill="rgb(243,178,26)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2927.50"></text></g><g><title>std::panicking::try (25 samples, 0.11%)</title><rect x="51.0695%" y="2901" width="0.1065%" height="15" fill="rgb(209,171,19)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2911.50"></text></g><g><title>std::panicking::try::do_call (25 samples, 0.11%)</title><rect x="51.0695%" y="2885" width="0.1065%" height="15" fill="rgb(250,3,8)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2895.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (25 samples, 0.11%)</title><rect x="51.0695%" y="2869" width="0.1065%" height="15" fill="rgb(212,54,6)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (25 samples, 0.11%)</title><rect x="51.0695%" y="2853" width="0.1065%" height="15" fill="rgb(210,39,18)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="51.0695%" y="2837" width="0.1065%" height="15" fill="rgb(209,199,4)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="51.0695%" y="2821" width="0.1065%" height="15" fill="rgb(210,60,44)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2831.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="51.0695%" y="2805" width="0.1065%" height="15" fill="rgb(248,34,23)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2815.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="51.0695%" y="2789" width="0.1065%" height="15" fill="rgb(247,122,6)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="51.0695%" y="2773" width="0.1065%" height="15" fill="rgb(232,180,5)" fg:x="11985" fg:w="25"/><text x="51.3195%" y="2783.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="51.0781%" y="2757" width="0.0980%" height="15" fill="rgb(231,70,27)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2767.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="51.0781%" y="2741" width="0.0980%" height="15" fill="rgb(228,14,18)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2751.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="51.0781%" y="2725" width="0.0980%" height="15" fill="rgb(248,64,3)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2735.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="51.0781%" y="2709" width="0.0980%" height="15" fill="rgb(232,151,26)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2719.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="51.0781%" y="2693" width="0.0980%" height="15" fill="rgb(235,192,12)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (23 samples, 0.10%)</title><rect x="51.0781%" y="2677" width="0.0980%" height="15" fill="rgb(231,7,31)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="51.0781%" y="2661" width="0.0980%" height="15" fill="rgb(235,67,13)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="51.0781%" y="2645" width="0.0980%" height="15" fill="rgb(222,94,25)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2655.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="51.0781%" y="2629" width="0.0980%" height="15" fill="rgb(227,16,13)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2639.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="51.0781%" y="2613" width="0.0980%" height="15" fill="rgb(246,108,38)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2623.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="51.0781%" y="2597" width="0.0980%" height="15" fill="rgb(245,32,17)" fg:x="11987" fg:w="23"/><text x="51.3281%" y="2607.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="51.1036%" y="2581" width="0.0724%" height="15" fill="rgb(212,66,20)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2591.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="51.1036%" y="2565" width="0.0724%" height="15" fill="rgb(233,115,9)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2575.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="51.1036%" y="2549" width="0.0724%" height="15" fill="rgb(215,1,13)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2559.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="51.1036%" y="2533" width="0.0724%" height="15" fill="rgb(240,164,47)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2543.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="51.1036%" y="2517" width="0.0724%" height="15" fill="rgb(222,191,54)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="51.1036%" y="2501" width="0.0724%" height="15" fill="rgb(208,81,34)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="51.1036%" y="2485" width="0.0724%" height="15" fill="rgb(225,215,42)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="51.1036%" y="2469" width="0.0724%" height="15" fill="rgb(250,13,38)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2479.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="51.1036%" y="2453" width="0.0724%" height="15" fill="rgb(247,106,45)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2463.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="51.1036%" y="2437" width="0.0724%" height="15" fill="rgb(205,16,25)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2447.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="51.1036%" y="2421" width="0.0724%" height="15" fill="rgb(229,190,35)" fg:x="11993" fg:w="17"/><text x="51.3536%" y="2431.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="51.1249%" y="2405" width="0.0511%" height="15" fill="rgb(206,110,16)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2415.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="51.1249%" y="2389" width="0.0511%" height="15" fill="rgb(229,117,17)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2399.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="51.1249%" y="2373" width="0.0511%" height="15" fill="rgb(211,59,33)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2383.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="51.1249%" y="2357" width="0.0511%" height="15" fill="rgb(241,121,30)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2367.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="51.1249%" y="2341" width="0.0511%" height="15" fill="rgb(239,164,1)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="51.1249%" y="2325" width="0.0511%" height="15" fill="rgb(214,209,54)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="51.1249%" y="2309" width="0.0511%" height="15" fill="rgb(211,156,42)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="51.1249%" y="2293" width="0.0511%" height="15" fill="rgb(218,191,40)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="51.1249%" y="2277" width="0.0511%" height="15" fill="rgb(223,110,40)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2287.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="51.1249%" y="2261" width="0.0511%" height="15" fill="rgb(225,16,30)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2271.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="51.1249%" y="2245" width="0.0511%" height="15" fill="rgb(253,152,4)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2255.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="51.1249%" y="2229" width="0.0511%" height="15" fill="rgb(230,151,35)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2239.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="51.1249%" y="2213" width="0.0511%" height="15" fill="rgb(250,189,38)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2223.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="51.1249%" y="2197" width="0.0511%" height="15" fill="rgb(226,20,12)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2207.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (12 samples, 0.05%)</title><rect x="51.1249%" y="2181" width="0.0511%" height="15" fill="rgb(215,204,4)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2191.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (12 samples, 0.05%)</title><rect x="51.1249%" y="2165" width="0.0511%" height="15" fill="rgb(247,28,3)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2175.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="51.1249%" y="2149" width="0.0511%" height="15" fill="rgb(251,180,48)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2159.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="51.1249%" y="2133" width="0.0511%" height="15" fill="rgb(214,144,33)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2143.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (12 samples, 0.05%)</title><rect x="51.1249%" y="2117" width="0.0511%" height="15" fill="rgb(245,102,42)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2127.50"></text></g><g><title>core::ops::function::Fn::call (12 samples, 0.05%)</title><rect x="51.1249%" y="2101" width="0.0511%" height="15" fill="rgb(220,168,52)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2111.50"></text></g><g><title>criterion::analysis::estimates::stats (12 samples, 0.05%)</title><rect x="51.1249%" y="2085" width="0.0511%" height="15" fill="rgb(205,154,39)" fg:x="11998" fg:w="12"/><text x="51.3749%" y="2095.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="51.1548%" y="2069" width="0.0213%" height="15" fill="rgb(253,99,52)" fg:x="12005" fg:w="5"/><text x="51.4048%" y="2079.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="51.1548%" y="2053" width="0.0213%" height="15" fill="rgb(223,74,13)" fg:x="12005" fg:w="5"/><text x="51.4048%" y="2063.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="51.1548%" y="2037" width="0.0213%" height="15" fill="rgb(242,58,45)" fg:x="12005" fg:w="5"/><text x="51.4048%" y="2047.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="51.1548%" y="2021" width="0.0213%" height="15" fill="rgb(240,12,33)" fg:x="12005" fg:w="5"/><text x="51.4048%" y="2031.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="51.1590%" y="2005" width="0.0170%" height="15" fill="rgb(238,140,16)" fg:x="12006" fg:w="4"/><text x="51.4090%" y="2015.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="51.1633%" y="1989" width="0.0128%" height="15" fill="rgb(249,48,43)" fg:x="12007" fg:w="3"/><text x="51.4133%" y="1999.50"></text></g><g><title>[libm.so.6] (122 samples, 0.52%)</title><rect x="51.1761%" y="3829" width="0.5199%" height="15" fill="rgb(213,122,51)" fg:x="12010" fg:w="122"/><text x="51.4261%" y="3839.50"></text></g><g><title>alloc::raw_vec::RawVec<T,A>::reserve_for_push (8 samples, 0.03%)</title><rect x="51.6959%" y="3829" width="0.0341%" height="15" fill="rgb(235,64,20)" fg:x="12132" fg:w="8"/><text x="51.9459%" y="3839.50"></text></g><g><title>alloc::raw_vec::RawVec<T,A>::grow_amortized (7 samples, 0.03%)</title><rect x="51.7002%" y="3813" width="0.0298%" height="15" fill="rgb(249,71,13)" fg:x="12133" fg:w="7"/><text x="51.9502%" y="3823.50"></text></g><g><title>core::num::<impl usize>::checked_add (6 samples, 0.03%)</title><rect x="51.7044%" y="3797" width="0.0256%" height="15" fill="rgb(232,226,49)" fg:x="12134" fg:w="6"/><text x="51.9544%" y="3807.50"></text></g><g><title>core::num::<impl usize>::overflowing_add (6 samples, 0.03%)</title><rect x="51.7044%" y="3781" width="0.0256%" height="15" fill="rgb(215,110,41)" fg:x="12134" fg:w="6"/><text x="51.9544%" y="3791.50"></text></g><g><title>alloc::raw_vec::finish_grow (4 samples, 0.02%)</title><rect x="51.7300%" y="3829" width="0.0170%" height="15" fill="rgb(215,47,46)" fg:x="12140" fg:w="4"/><text x="51.9800%" y="3839.50"></text></g><g><title>cfree (6 samples, 0.03%)</title><rect x="51.7513%" y="3829" width="0.0256%" height="15" fill="rgb(221,94,47)" fg:x="12145" fg:w="6"/><text x="52.0013%" y="3839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="51.7811%" y="2949" width="0.0128%" height="15" fill="rgb(221,177,54)" fg:x="12152" fg:w="3"/><text x="52.0311%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.7811%" y="2933" width="0.0128%" height="15" fill="rgb(252,207,46)" fg:x="12152" fg:w="3"/><text x="52.0311%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.7811%" y="2917" width="0.0128%" height="15" fill="rgb(249,54,37)" fg:x="12152" fg:w="3"/><text x="52.0311%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.7811%" y="2901" width="0.0128%" height="15" fill="rgb(238,32,14)" fg:x="12152" fg:w="3"/><text x="52.0311%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.7811%" y="2885" width="0.0128%" height="15" fill="rgb(229,113,39)" fg:x="12152" fg:w="3"/><text x="52.0311%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.7811%" y="2869" width="0.0128%" height="15" fill="rgb(215,65,48)" fg:x="12152" fg:w="3"/><text x="52.0311%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.7811%" y="2853" width="0.0128%" height="15" fill="rgb(241,5,20)" fg:x="12152" fg:w="3"/><text x="52.0311%" y="2863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="51.7939%" y="2773" width="0.0128%" height="15" fill="rgb(231,13,22)" fg:x="12155" fg:w="3"/><text x="52.0439%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.7939%" y="2757" width="0.0128%" height="15" fill="rgb(252,213,31)" fg:x="12155" fg:w="3"/><text x="52.0439%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.7939%" y="2741" width="0.0128%" height="15" fill="rgb(219,211,29)" fg:x="12155" fg:w="3"/><text x="52.0439%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.7939%" y="2725" width="0.0128%" height="15" fill="rgb(231,89,7)" fg:x="12155" fg:w="3"/><text x="52.0439%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.7939%" y="2709" width="0.0128%" height="15" fill="rgb(226,215,22)" fg:x="12155" fg:w="3"/><text x="52.0439%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.7939%" y="2693" width="0.0128%" height="15" fill="rgb(208,18,51)" fg:x="12155" fg:w="3"/><text x="52.0439%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.7939%" y="2677" width="0.0128%" height="15" fill="rgb(210,170,23)" fg:x="12155" fg:w="3"/><text x="52.0439%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="51.7769%" y="3237" width="0.0341%" height="15" fill="rgb(235,225,10)" fg:x="12151" fg:w="8"/><text x="52.0269%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="51.7769%" y="3221" width="0.0341%" height="15" fill="rgb(224,45,26)" fg:x="12151" fg:w="8"/><text x="52.0269%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="51.7769%" y="3205" width="0.0341%" height="15" fill="rgb(208,179,49)" fg:x="12151" fg:w="8"/><text x="52.0269%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="51.7769%" y="3189" width="0.0341%" height="15" fill="rgb(209,99,7)" fg:x="12151" fg:w="8"/><text x="52.0269%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="51.7769%" y="3173" width="0.0341%" height="15" fill="rgb(205,7,7)" fg:x="12151" fg:w="8"/><text x="52.0269%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="51.7769%" y="3157" width="0.0341%" height="15" fill="rgb(251,223,54)" fg:x="12151" fg:w="8"/><text x="52.0269%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="51.7769%" y="3141" width="0.0341%" height="15" fill="rgb(248,132,54)" fg:x="12151" fg:w="8"/><text x="52.0269%" y="3151.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="51.7811%" y="3125" width="0.0298%" height="15" fill="rgb(240,209,11)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3135.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="51.7811%" y="3109" width="0.0298%" height="15" fill="rgb(239,108,4)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3119.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="51.7811%" y="3093" width="0.0298%" height="15" fill="rgb(225,49,5)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3103.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="51.7811%" y="3077" width="0.0298%" height="15" fill="rgb(225,175,16)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3087.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="51.7811%" y="3061" width="0.0298%" height="15" fill="rgb(228,75,30)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="51.7811%" y="3045" width="0.0298%" height="15" fill="rgb(238,141,48)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="51.7811%" y="3029" width="0.0298%" height="15" fill="rgb(234,189,36)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="51.7811%" y="3013" width="0.0298%" height="15" fill="rgb(253,140,39)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="51.7811%" y="2997" width="0.0298%" height="15" fill="rgb(210,199,14)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="51.7811%" y="2981" width="0.0298%" height="15" fill="rgb(214,84,15)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="51.7811%" y="2965" width="0.0298%" height="15" fill="rgb(230,77,51)" fg:x="12152" fg:w="7"/><text x="52.0311%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="51.7939%" y="2949" width="0.0170%" height="15" fill="rgb(221,142,37)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="51.7939%" y="2933" width="0.0170%" height="15" fill="rgb(205,122,3)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2943.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="51.7939%" y="2917" width="0.0170%" height="15" fill="rgb(232,101,11)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="51.7939%" y="2901" width="0.0170%" height="15" fill="rgb(234,68,49)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="51.7939%" y="2885" width="0.0170%" height="15" fill="rgb(223,10,21)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="51.7939%" y="2869" width="0.0170%" height="15" fill="rgb(217,164,1)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="51.7939%" y="2853" width="0.0170%" height="15" fill="rgb(245,125,50)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.7939%" y="2837" width="0.0170%" height="15" fill="rgb(234,123,14)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="51.7939%" y="2821" width="0.0170%" height="15" fill="rgb(239,144,44)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.7939%" y="2805" width="0.0170%" height="15" fill="rgb(218,132,28)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="51.7939%" y="2789" width="0.0170%" height="15" fill="rgb(212,63,43)" fg:x="12155" fg:w="4"/><text x="52.0439%" y="2799.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="51.8110%" y="3061" width="0.0128%" height="15" fill="rgb(220,12,14)" fg:x="12159" fg:w="3"/><text x="52.0610%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8110%" y="3045" width="0.0128%" height="15" fill="rgb(217,52,49)" fg:x="12159" fg:w="3"/><text x="52.0610%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8110%" y="3029" width="0.0128%" height="15" fill="rgb(217,205,38)" fg:x="12159" fg:w="3"/><text x="52.0610%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8110%" y="3013" width="0.0128%" height="15" fill="rgb(244,189,31)" fg:x="12159" fg:w="3"/><text x="52.0610%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.8110%" y="2997" width="0.0128%" height="15" fill="rgb(212,67,41)" fg:x="12159" fg:w="3"/><text x="52.0610%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.8110%" y="2981" width="0.0128%" height="15" fill="rgb(235,46,23)" fg:x="12159" fg:w="3"/><text x="52.0610%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8110%" y="2965" width="0.0128%" height="15" fill="rgb(238,137,37)" fg:x="12159" fg:w="3"/><text x="52.0610%" y="2975.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="51.8238%" y="2885" width="0.0128%" height="15" fill="rgb(223,105,51)" fg:x="12162" fg:w="3"/><text x="52.0738%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8238%" y="2869" width="0.0128%" height="15" fill="rgb(225,65,24)" fg:x="12162" fg:w="3"/><text x="52.0738%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8238%" y="2853" width="0.0128%" height="15" fill="rgb(243,140,34)" fg:x="12162" fg:w="3"/><text x="52.0738%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8238%" y="2837" width="0.0128%" height="15" fill="rgb(213,74,16)" fg:x="12162" fg:w="3"/><text x="52.0738%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.8238%" y="2821" width="0.0128%" height="15" fill="rgb(217,130,17)" fg:x="12162" fg:w="3"/><text x="52.0738%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.8238%" y="2805" width="0.0128%" height="15" fill="rgb(206,216,53)" fg:x="12162" fg:w="3"/><text x="52.0738%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8238%" y="2789" width="0.0128%" height="15" fill="rgb(254,15,28)" fg:x="12162" fg:w="3"/><text x="52.0738%" y="2799.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (17 samples, 0.07%)</title><rect x="51.7769%" y="3349" width="0.0724%" height="15" fill="rgb(211,228,33)" fg:x="12151" fg:w="17"/><text x="52.0269%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="51.7769%" y="3333" width="0.0724%" height="15" fill="rgb(211,170,32)" fg:x="12151" fg:w="17"/><text x="52.0269%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="51.7769%" y="3317" width="0.0724%" height="15" fill="rgb(247,86,3)" fg:x="12151" fg:w="17"/><text x="52.0269%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="51.7769%" y="3301" width="0.0724%" height="15" fill="rgb(216,75,35)" fg:x="12151" fg:w="17"/><text x="52.0269%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="51.7769%" y="3285" width="0.0724%" height="15" fill="rgb(247,172,49)" fg:x="12151" fg:w="17"/><text x="52.0269%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="51.7769%" y="3269" width="0.0724%" height="15" fill="rgb(235,120,42)" fg:x="12151" fg:w="17"/><text x="52.0269%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="51.7769%" y="3253" width="0.0724%" height="15" fill="rgb(224,207,43)" fg:x="12151" fg:w="17"/><text x="52.0269%" y="3263.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="51.8110%" y="3237" width="0.0384%" height="15" fill="rgb(245,222,21)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3247.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="51.8110%" y="3221" width="0.0384%" height="15" fill="rgb(207,110,9)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3231.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="51.8110%" y="3205" width="0.0384%" height="15" fill="rgb(220,124,10)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3215.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="51.8110%" y="3189" width="0.0384%" height="15" fill="rgb(224,111,2)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3199.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="51.8110%" y="3173" width="0.0384%" height="15" fill="rgb(249,72,27)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="51.8110%" y="3157" width="0.0384%" height="15" fill="rgb(249,123,47)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="51.8110%" y="3141" width="0.0384%" height="15" fill="rgb(232,197,39)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="51.8110%" y="3125" width="0.0384%" height="15" fill="rgb(232,65,30)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="51.8110%" y="3109" width="0.0384%" height="15" fill="rgb(228,216,39)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="51.8110%" y="3093" width="0.0384%" height="15" fill="rgb(237,211,37)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="51.8110%" y="3077" width="0.0384%" height="15" fill="rgb(227,9,50)" fg:x="12159" fg:w="9"/><text x="52.0610%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="51.8238%" y="3061" width="0.0256%" height="15" fill="rgb(244,22,6)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="51.8238%" y="3045" width="0.0256%" height="15" fill="rgb(241,139,2)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="3055.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="51.8238%" y="3029" width="0.0256%" height="15" fill="rgb(230,5,14)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="51.8238%" y="3013" width="0.0256%" height="15" fill="rgb(240,90,19)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="51.8238%" y="2997" width="0.0256%" height="15" fill="rgb(246,94,54)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="51.8238%" y="2981" width="0.0256%" height="15" fill="rgb(250,92,21)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="51.8238%" y="2965" width="0.0256%" height="15" fill="rgb(241,196,19)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="51.8238%" y="2949" width="0.0256%" height="15" fill="rgb(240,219,46)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="51.8238%" y="2933" width="0.0256%" height="15" fill="rgb(236,149,40)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="51.8238%" y="2917" width="0.0256%" height="15" fill="rgb(220,132,23)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="51.8238%" y="2901" width="0.0256%" height="15" fill="rgb(218,193,19)" fg:x="12162" fg:w="6"/><text x="52.0738%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.8365%" y="2885" width="0.0128%" height="15" fill="rgb(228,82,23)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.8365%" y="2869" width="0.0128%" height="15" fill="rgb(250,130,50)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2879.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.8365%" y="2853" width="0.0128%" height="15" fill="rgb(241,221,12)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.8365%" y="2837" width="0.0128%" height="15" fill="rgb(226,224,52)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.8365%" y="2821" width="0.0128%" height="15" fill="rgb(212,20,14)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8365%" y="2805" width="0.0128%" height="15" fill="rgb(237,199,40)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8365%" y="2789" width="0.0128%" height="15" fill="rgb(235,175,18)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8365%" y="2773" width="0.0128%" height="15" fill="rgb(222,82,23)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.8365%" y="2757" width="0.0128%" height="15" fill="rgb(216,94,22)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.8365%" y="2741" width="0.0128%" height="15" fill="rgb(212,163,31)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8365%" y="2725" width="0.0128%" height="15" fill="rgb(242,179,4)" fg:x="12165" fg:w="3"/><text x="52.0865%" y="2735.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="51.8493%" y="2949" width="0.0170%" height="15" fill="rgb(226,207,41)" fg:x="12168" fg:w="4"/><text x="52.0993%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="51.8493%" y="2933" width="0.0170%" height="15" fill="rgb(231,106,10)" fg:x="12168" fg:w="4"/><text x="52.0993%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="51.8493%" y="2917" width="0.0170%" height="15" fill="rgb(254,172,29)" fg:x="12168" fg:w="4"/><text x="52.0993%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.8493%" y="2901" width="0.0170%" height="15" fill="rgb(227,15,26)" fg:x="12168" fg:w="4"/><text x="52.0993%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="51.8493%" y="2885" width="0.0170%" height="15" fill="rgb(235,37,49)" fg:x="12168" fg:w="4"/><text x="52.0993%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.8493%" y="2869" width="0.0170%" height="15" fill="rgb(215,184,47)" fg:x="12168" fg:w="4"/><text x="52.0993%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="51.8493%" y="2853" width="0.0170%" height="15" fill="rgb(237,123,19)" fg:x="12168" fg:w="4"/><text x="52.0993%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.8536%" y="2837" width="0.0128%" height="15" fill="rgb(245,86,29)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.8536%" y="2821" width="0.0128%" height="15" fill="rgb(225,56,26)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2831.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.8536%" y="2805" width="0.0128%" height="15" fill="rgb(232,83,26)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.8536%" y="2789" width="0.0128%" height="15" fill="rgb(254,187,48)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.8536%" y="2773" width="0.0128%" height="15" fill="rgb(218,221,30)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8536%" y="2757" width="0.0128%" height="15" fill="rgb(244,12,23)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8536%" y="2741" width="0.0128%" height="15" fill="rgb(239,6,52)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8536%" y="2725" width="0.0128%" height="15" fill="rgb(223,129,50)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.8536%" y="2709" width="0.0128%" height="15" fill="rgb(227,75,3)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.8536%" y="2693" width="0.0128%" height="15" fill="rgb(241,49,5)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8536%" y="2677" width="0.0128%" height="15" fill="rgb(213,100,7)" fg:x="12169" fg:w="3"/><text x="52.1036%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="51.8493%" y="3061" width="0.0256%" height="15" fill="rgb(250,87,14)" fg:x="12168" fg:w="6"/><text x="52.0993%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="51.8493%" y="3045" width="0.0256%" height="15" fill="rgb(252,168,4)" fg:x="12168" fg:w="6"/><text x="52.0993%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="51.8493%" y="3029" width="0.0256%" height="15" fill="rgb(206,83,1)" fg:x="12168" fg:w="6"/><text x="52.0993%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="51.8493%" y="3013" width="0.0256%" height="15" fill="rgb(208,116,31)" fg:x="12168" fg:w="6"/><text x="52.0993%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="51.8493%" y="2997" width="0.0256%" height="15" fill="rgb(238,179,50)" fg:x="12168" fg:w="6"/><text x="52.0993%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="51.8493%" y="2981" width="0.0256%" height="15" fill="rgb(236,164,44)" fg:x="12168" fg:w="6"/><text x="52.0993%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="51.8493%" y="2965" width="0.0256%" height="15" fill="rgb(233,102,14)" fg:x="12168" fg:w="6"/><text x="52.0993%" y="2975.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="51.8792%" y="2773" width="0.0128%" height="15" fill="rgb(222,40,2)" fg:x="12175" fg:w="3"/><text x="52.1292%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8792%" y="2757" width="0.0128%" height="15" fill="rgb(244,79,26)" fg:x="12175" fg:w="3"/><text x="52.1292%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8792%" y="2741" width="0.0128%" height="15" fill="rgb(220,94,30)" fg:x="12175" fg:w="3"/><text x="52.1292%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8792%" y="2725" width="0.0128%" height="15" fill="rgb(245,200,17)" fg:x="12175" fg:w="3"/><text x="52.1292%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.8792%" y="2709" width="0.0128%" height="15" fill="rgb(240,222,54)" fg:x="12175" fg:w="3"/><text x="52.1292%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.8792%" y="2693" width="0.0128%" height="15" fill="rgb(218,48,43)" fg:x="12175" fg:w="3"/><text x="52.1292%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.8792%" y="2677" width="0.0128%" height="15" fill="rgb(226,84,22)" fg:x="12175" fg:w="3"/><text x="52.1292%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="51.8792%" y="2885" width="0.0426%" height="15" fill="rgb(209,83,37)" fg:x="12175" fg:w="10"/><text x="52.1292%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="51.8792%" y="2869" width="0.0426%" height="15" fill="rgb(207,19,46)" fg:x="12175" fg:w="10"/><text x="52.1292%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="51.8792%" y="2853" width="0.0426%" height="15" fill="rgb(212,142,49)" fg:x="12175" fg:w="10"/><text x="52.1292%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="51.8792%" y="2837" width="0.0426%" height="15" fill="rgb(253,167,52)" fg:x="12175" fg:w="10"/><text x="52.1292%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="51.8792%" y="2821" width="0.0426%" height="15" fill="rgb(249,143,17)" fg:x="12175" fg:w="10"/><text x="52.1292%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="51.8792%" y="2805" width="0.0426%" height="15" fill="rgb(228,79,2)" fg:x="12175" fg:w="10"/><text x="52.1292%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="51.8792%" y="2789" width="0.0426%" height="15" fill="rgb(244,70,6)" fg:x="12175" fg:w="10"/><text x="52.1292%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="51.9005%" y="2773" width="0.0213%" height="15" fill="rgb(231,72,17)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="51.9005%" y="2757" width="0.0213%" height="15" fill="rgb(228,9,31)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2767.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="51.9005%" y="2741" width="0.0213%" height="15" fill="rgb(224,181,6)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="51.9005%" y="2725" width="0.0213%" height="15" fill="rgb(254,110,22)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="51.9005%" y="2709" width="0.0213%" height="15" fill="rgb(247,172,9)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2693" width="0.0213%" height="15" fill="rgb(224,116,2)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2677" width="0.0213%" height="15" fill="rgb(251,9,14)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="51.9005%" y="2661" width="0.0213%" height="15" fill="rgb(236,37,50)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="51.9005%" y="2645" width="0.0213%" height="15" fill="rgb(223,124,53)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="51.9005%" y="2629" width="0.0213%" height="15" fill="rgb(249,143,42)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2613" width="0.0213%" height="15" fill="rgb(208,213,41)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="51.9005%" y="2597" width="0.0213%" height="15" fill="rgb(211,172,32)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2581" width="0.0213%" height="15" fill="rgb(220,216,44)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2565" width="0.0213%" height="15" fill="rgb(243,202,2)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="51.9005%" y="2549" width="0.0213%" height="15" fill="rgb(216,129,30)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="51.9005%" y="2533" width="0.0213%" height="15" fill="rgb(244,209,27)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="51.9005%" y="2517" width="0.0213%" height="15" fill="rgb(212,134,24)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="51.9005%" y="2501" width="0.0213%" height="15" fill="rgb(205,228,6)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="51.9005%" y="2485" width="0.0213%" height="15" fill="rgb(251,134,22)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="51.9005%" y="2469" width="0.0213%" height="15" fill="rgb(221,156,48)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="51.9005%" y="2453" width="0.0213%" height="15" fill="rgb(230,23,36)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="51.9005%" y="2437" width="0.0213%" height="15" fill="rgb(218,195,22)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2421" width="0.0213%" height="15" fill="rgb(209,17,11)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2405" width="0.0213%" height="15" fill="rgb(220,163,38)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="51.9005%" y="2389" width="0.0213%" height="15" fill="rgb(229,63,27)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="51.9005%" y="2373" width="0.0213%" height="15" fill="rgb(243,104,16)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2383.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="51.9005%" y="2357" width="0.0213%" height="15" fill="rgb(219,41,7)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="51.9005%" y="2341" width="0.0213%" height="15" fill="rgb(249,195,33)" fg:x="12180" fg:w="5"/><text x="52.1505%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="51.9090%" y="2325" width="0.0128%" height="15" fill="rgb(250,51,53)" fg:x="12182" fg:w="3"/><text x="52.1590%" y="2335.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="51.9090%" y="2309" width="0.0128%" height="15" fill="rgb(225,136,22)" fg:x="12182" fg:w="3"/><text x="52.1590%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="51.9090%" y="2293" width="0.0128%" height="15" fill="rgb(240,189,37)" fg:x="12182" fg:w="3"/><text x="52.1590%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="51.9090%" y="2277" width="0.0128%" height="15" fill="rgb(254,58,36)" fg:x="12182" fg:w="3"/><text x="52.1590%" y="2287.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="51.8493%" y="3173" width="0.0852%" height="15" fill="rgb(236,185,29)" fg:x="12168" fg:w="20"/><text x="52.0993%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="51.8493%" y="3157" width="0.0852%" height="15" fill="rgb(222,201,27)" fg:x="12168" fg:w="20"/><text x="52.0993%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="51.8493%" y="3141" width="0.0852%" height="15" fill="rgb(207,198,41)" fg:x="12168" fg:w="20"/><text x="52.0993%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="51.8493%" y="3125" width="0.0852%" height="15" fill="rgb(220,40,15)" fg:x="12168" fg:w="20"/><text x="52.0993%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="51.8493%" y="3109" width="0.0852%" height="15" fill="rgb(232,196,0)" fg:x="12168" fg:w="20"/><text x="52.0993%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="51.8493%" y="3093" width="0.0852%" height="15" fill="rgb(250,28,15)" fg:x="12168" fg:w="20"/><text x="52.0993%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="51.8493%" y="3077" width="0.0852%" height="15" fill="rgb(251,16,42)" fg:x="12168" fg:w="20"/><text x="52.0993%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="51.8792%" y="3061" width="0.0554%" height="15" fill="rgb(223,182,23)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="51.8792%" y="3045" width="0.0554%" height="15" fill="rgb(241,17,54)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="3055.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="51.8792%" y="3029" width="0.0554%" height="15" fill="rgb(207,204,13)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="51.8792%" y="3013" width="0.0554%" height="15" fill="rgb(251,226,51)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="51.8792%" y="2997" width="0.0554%" height="15" fill="rgb(218,30,18)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="51.8792%" y="2981" width="0.0554%" height="15" fill="rgb(215,134,54)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="51.8792%" y="2965" width="0.0554%" height="15" fill="rgb(237,6,17)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="51.8792%" y="2949" width="0.0554%" height="15" fill="rgb(213,118,44)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="51.8792%" y="2933" width="0.0554%" height="15" fill="rgb(251,196,2)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="51.8792%" y="2917" width="0.0554%" height="15" fill="rgb(211,201,22)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="51.8792%" y="2901" width="0.0554%" height="15" fill="rgb(212,150,28)" fg:x="12175" fg:w="13"/><text x="52.1292%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9218%" y="2885" width="0.0128%" height="15" fill="rgb(237,68,22)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9218%" y="2869" width="0.0128%" height="15" fill="rgb(230,15,29)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2879.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9218%" y="2853" width="0.0128%" height="15" fill="rgb(225,43,51)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9218%" y="2837" width="0.0128%" height="15" fill="rgb(246,87,26)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9218%" y="2821" width="0.0128%" height="15" fill="rgb(235,96,37)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9218%" y="2805" width="0.0128%" height="15" fill="rgb(212,131,45)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9218%" y="2789" width="0.0128%" height="15" fill="rgb(247,20,0)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9218%" y="2773" width="0.0128%" height="15" fill="rgb(220,180,37)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9218%" y="2757" width="0.0128%" height="15" fill="rgb(225,143,42)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9218%" y="2741" width="0.0128%" height="15" fill="rgb(240,215,29)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9218%" y="2725" width="0.0128%" height="15" fill="rgb(242,41,7)" fg:x="12185" fg:w="3"/><text x="52.1718%" y="2735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.9345%" y="3173" width="0.0128%" height="15" fill="rgb(213,179,2)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.9345%" y="3157" width="0.0128%" height="15" fill="rgb(247,204,38)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3167.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="3141" width="0.0128%" height="15" fill="rgb(239,78,35)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3151.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="3125" width="0.0128%" height="15" fill="rgb(254,128,40)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3135.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="3109" width="0.0128%" height="15" fill="rgb(237,63,43)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3119.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.9345%" y="3093" width="0.0128%" height="15" fill="rgb(244,186,38)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="3077" width="0.0128%" height="15" fill="rgb(206,229,15)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3087.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="3061" width="0.0128%" height="15" fill="rgb(245,46,51)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3071.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="3045" width="0.0128%" height="15" fill="rgb(233,101,54)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3055.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="3029" width="0.0128%" height="15" fill="rgb(228,54,22)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="3013" width="0.0128%" height="15" fill="rgb(222,67,4)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3023.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2997" width="0.0128%" height="15" fill="rgb(240,60,21)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2981" width="0.0128%" height="15" fill="rgb(251,194,29)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2965" width="0.0128%" height="15" fill="rgb(230,119,14)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="2949" width="0.0128%" height="15" fill="rgb(219,11,11)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="2933" width="0.0128%" height="15" fill="rgb(213,72,4)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="2917" width="0.0128%" height="15" fill="rgb(225,144,31)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2901" width="0.0128%" height="15" fill="rgb(224,138,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="2885" width="0.0128%" height="15" fill="rgb(207,45,54)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="2869" width="0.0128%" height="15" fill="rgb(247,221,51)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2879.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="2853" width="0.0128%" height="15" fill="rgb(217,225,2)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="2837" width="0.0128%" height="15" fill="rgb(224,180,45)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="2821" width="0.0128%" height="15" fill="rgb(224,58,4)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2805" width="0.0128%" height="15" fill="rgb(230,127,6)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2789" width="0.0128%" height="15" fill="rgb(248,37,23)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="2773" width="0.0128%" height="15" fill="rgb(237,100,48)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="2757" width="0.0128%" height="15" fill="rgb(249,64,6)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="2741" width="0.0128%" height="15" fill="rgb(218,23,10)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2725" width="0.0128%" height="15" fill="rgb(216,17,34)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="2709" width="0.0128%" height="15" fill="rgb(210,111,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="2693" width="0.0128%" height="15" fill="rgb(218,93,47)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2703.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="2677" width="0.0128%" height="15" fill="rgb(250,223,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="2661" width="0.0128%" height="15" fill="rgb(221,194,11)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="2645" width="0.0128%" height="15" fill="rgb(232,22,34)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2629" width="0.0128%" height="15" fill="rgb(240,94,50)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2613" width="0.0128%" height="15" fill="rgb(213,114,21)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="2597" width="0.0128%" height="15" fill="rgb(228,97,38)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="2581" width="0.0128%" height="15" fill="rgb(251,225,14)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="2565" width="0.0128%" height="15" fill="rgb(214,64,10)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2549" width="0.0128%" height="15" fill="rgb(253,228,5)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.9345%" y="2533" width="0.0128%" height="15" fill="rgb(213,182,29)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.9345%" y="2517" width="0.0128%" height="15" fill="rgb(240,82,45)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="2501" width="0.0128%" height="15" fill="rgb(228,203,6)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2511.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="2485" width="0.0128%" height="15" fill="rgb(234,57,5)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="2469" width="0.0128%" height="15" fill="rgb(247,18,0)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.9345%" y="2453" width="0.0128%" height="15" fill="rgb(215,200,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2463.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="2437" width="0.0128%" height="15" fill="rgb(224,40,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2447.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="2421" width="0.0128%" height="15" fill="rgb(251,159,48)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2431.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="2405" width="0.0128%" height="15" fill="rgb(210,181,11)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2415.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="2389" width="0.0128%" height="15" fill="rgb(253,145,40)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2399.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="2373" width="0.0128%" height="15" fill="rgb(250,208,51)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2357" width="0.0128%" height="15" fill="rgb(229,71,16)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2367.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2341" width="0.0128%" height="15" fill="rgb(244,198,8)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2325" width="0.0128%" height="15" fill="rgb(207,190,23)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="2309" width="0.0128%" height="15" fill="rgb(229,158,50)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2319.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="2293" width="0.0128%" height="15" fill="rgb(212,161,44)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2303.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="2277" width="0.0128%" height="15" fill="rgb(237,229,10)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2261" width="0.0128%" height="15" fill="rgb(212,141,18)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2271.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.9345%" y="2245" width="0.0128%" height="15" fill="rgb(230,72,34)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.9345%" y="2229" width="0.0128%" height="15" fill="rgb(228,37,28)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="2213" width="0.0128%" height="15" fill="rgb(235,147,17)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2223.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="2197" width="0.0128%" height="15" fill="rgb(240,206,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2207.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="2181" width="0.0128%" height="15" fill="rgb(229,165,7)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2191.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.9345%" y="2165" width="0.0128%" height="15" fill="rgb(208,201,44)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="2149" width="0.0128%" height="15" fill="rgb(234,158,25)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="2133" width="0.0128%" height="15" fill="rgb(225,128,48)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2143.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="2117" width="0.0128%" height="15" fill="rgb(243,108,36)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="2101" width="0.0128%" height="15" fill="rgb(224,216,14)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="2085" width="0.0128%" height="15" fill="rgb(225,15,49)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2095.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2069" width="0.0128%" height="15" fill="rgb(225,73,44)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2053" width="0.0128%" height="15" fill="rgb(242,150,47)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="2037" width="0.0128%" height="15" fill="rgb(237,204,45)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="2021" width="0.0128%" height="15" fill="rgb(213,59,12)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2031.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="2005" width="0.0128%" height="15" fill="rgb(244,105,5)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="2015.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="1989" width="0.0128%" height="15" fill="rgb(228,55,22)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1999.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1973" width="0.0128%" height="15" fill="rgb(247,180,43)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1983.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.9345%" y="1957" width="0.0128%" height="15" fill="rgb(245,78,5)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1967.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.9345%" y="1941" width="0.0128%" height="15" fill="rgb(214,199,9)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="1925" width="0.0128%" height="15" fill="rgb(211,34,8)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1935.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="1909" width="0.0128%" height="15" fill="rgb(246,118,6)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1919.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="1893" width="0.0128%" height="15" fill="rgb(253,65,28)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1903.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.9345%" y="1877" width="0.0128%" height="15" fill="rgb(210,6,41)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="1861" width="0.0128%" height="15" fill="rgb(205,158,44)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="1845" width="0.0128%" height="15" fill="rgb(224,49,4)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1855.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="1829" width="0.0128%" height="15" fill="rgb(209,129,1)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="1813" width="0.0128%" height="15" fill="rgb(240,80,18)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="1797" width="0.0128%" height="15" fill="rgb(233,151,37)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1807.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1781" width="0.0128%" height="15" fill="rgb(251,87,23)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1765" width="0.0128%" height="15" fill="rgb(247,100,35)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1749" width="0.0128%" height="15" fill="rgb(232,176,7)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="1733" width="0.0128%" height="15" fill="rgb(211,176,39)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1743.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="1717" width="0.0128%" height="15" fill="rgb(253,147,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1727.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="1701" width="0.0128%" height="15" fill="rgb(231,69,54)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1711.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1685" width="0.0128%" height="15" fill="rgb(213,66,31)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="1669" width="0.0128%" height="15" fill="rgb(207,67,21)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1679.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="1653" width="0.0128%" height="15" fill="rgb(249,19,22)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1663.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="1637" width="0.0128%" height="15" fill="rgb(250,188,2)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1647.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="1621" width="0.0128%" height="15" fill="rgb(252,190,2)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="1605" width="0.0128%" height="15" fill="rgb(220,54,34)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1589" width="0.0128%" height="15" fill="rgb(207,23,50)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1573" width="0.0128%" height="15" fill="rgb(240,151,24)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="1557" width="0.0128%" height="15" fill="rgb(212,4,29)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="1541" width="0.0128%" height="15" fill="rgb(228,147,31)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="1525" width="0.0128%" height="15" fill="rgb(252,179,49)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1509" width="0.0128%" height="15" fill="rgb(206,18,42)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="1493" width="0.0128%" height="15" fill="rgb(221,90,0)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="1477" width="0.0128%" height="15" fill="rgb(239,5,54)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="1461" width="0.0128%" height="15" fill="rgb(217,177,4)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="1445" width="0.0128%" height="15" fill="rgb(213,4,2)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="1429" width="0.0128%" height="15" fill="rgb(248,186,17)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1413" width="0.0128%" height="15" fill="rgb(221,8,49)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1397" width="0.0128%" height="15" fill="rgb(237,214,35)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="1381" width="0.0128%" height="15" fill="rgb(245,158,0)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="1365" width="0.0128%" height="15" fill="rgb(231,6,22)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="1349" width="0.0128%" height="15" fill="rgb(210,156,7)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1333" width="0.0128%" height="15" fill="rgb(205,134,0)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="51.9345%" y="1317" width="0.0128%" height="15" fill="rgb(229,216,22)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1327.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.9345%" y="1301" width="0.0128%" height="15" fill="rgb(244,71,35)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1311.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="1285" width="0.0128%" height="15" fill="rgb(211,20,9)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1295.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="1269" width="0.0128%" height="15" fill="rgb(210,82,41)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1279.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="51.9345%" y="1253" width="0.0128%" height="15" fill="rgb(228,82,5)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1263.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="51.9345%" y="1237" width="0.0128%" height="15" fill="rgb(214,185,36)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="1221" width="0.0128%" height="15" fill="rgb(227,74,36)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="1205" width="0.0128%" height="15" fill="rgb(233,120,27)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1215.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="1189" width="0.0128%" height="15" fill="rgb(244,198,31)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="1173" width="0.0128%" height="15" fill="rgb(207,127,35)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="1157" width="0.0128%" height="15" fill="rgb(244,158,34)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1167.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1141" width="0.0128%" height="15" fill="rgb(236,45,7)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1125" width="0.0128%" height="15" fill="rgb(237,15,42)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1109" width="0.0128%" height="15" fill="rgb(232,188,0)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="1093" width="0.0128%" height="15" fill="rgb(216,56,2)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="1077" width="0.0128%" height="15" fill="rgb(224,87,35)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="1061" width="0.0128%" height="15" fill="rgb(223,120,27)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="1045" width="0.0128%" height="15" fill="rgb(252,120,10)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="1029" width="0.0128%" height="15" fill="rgb(231,166,17)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1039.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="1013" width="0.0128%" height="15" fill="rgb(232,65,20)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1023.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="997" width="0.0128%" height="15" fill="rgb(230,105,11)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="1007.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="981" width="0.0128%" height="15" fill="rgb(229,20,12)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="965" width="0.0128%" height="15" fill="rgb(220,141,48)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="949" width="0.0128%" height="15" fill="rgb(253,114,21)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="933" width="0.0128%" height="15" fill="rgb(253,225,53)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="917" width="0.0128%" height="15" fill="rgb(245,116,33)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="927.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="901" width="0.0128%" height="15" fill="rgb(247,15,19)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="885" width="0.0128%" height="15" fill="rgb(211,19,15)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="869" width="0.0128%" height="15" fill="rgb(211,153,42)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="879.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="853" width="0.0128%" height="15" fill="rgb(212,157,45)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="863.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="837" width="0.0128%" height="15" fill="rgb(235,151,54)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="847.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="821" width="0.0128%" height="15" fill="rgb(216,228,36)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="831.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="805" width="0.0128%" height="15" fill="rgb(234,139,52)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="815.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="789" width="0.0128%" height="15" fill="rgb(219,138,3)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="773" width="0.0128%" height="15" fill="rgb(206,183,46)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="757" width="0.0128%" height="15" fill="rgb(209,37,43)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="741" width="0.0128%" height="15" fill="rgb(242,168,37)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="751.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="725" width="0.0128%" height="15" fill="rgb(212,14,39)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="709" width="0.0128%" height="15" fill="rgb(254,215,13)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="693" width="0.0128%" height="15" fill="rgb(243,119,15)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="51.9345%" y="677" width="0.0128%" height="15" fill="rgb(238,119,23)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="687.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="51.9345%" y="661" width="0.0128%" height="15" fill="rgb(231,188,28)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="671.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="51.9345%" y="645" width="0.0128%" height="15" fill="rgb(242,114,1)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="655.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="51.9345%" y="629" width="0.0128%" height="15" fill="rgb(206,73,47)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="51.9345%" y="613" width="0.0128%" height="15" fill="rgb(246,31,27)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="623.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="597" width="0.0128%" height="15" fill="rgb(244,55,0)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="581" width="0.0128%" height="15" fill="rgb(246,193,28)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9345%" y="565" width="0.0128%" height="15" fill="rgb(231,2,4)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="575.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="51.9345%" y="549" width="0.0128%" height="15" fill="rgb(207,14,45)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9345%" y="533" width="0.0128%" height="15" fill="rgb(224,7,44)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="51.9345%" y="517" width="0.0128%" height="15" fill="rgb(211,39,53)" fg:x="12188" fg:w="3"/><text x="52.1845%" y="527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="51.9473%" y="2389" width="0.0128%" height="15" fill="rgb(249,69,33)" fg:x="12191" fg:w="3"/><text x="52.1973%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="51.9473%" y="2373" width="0.0128%" height="15" fill="rgb(247,27,1)" fg:x="12191" fg:w="3"/><text x="52.1973%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="51.9473%" y="2357" width="0.0128%" height="15" fill="rgb(254,136,37)" fg:x="12191" fg:w="3"/><text x="52.1973%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="51.9473%" y="2341" width="0.0128%" height="15" fill="rgb(251,18,37)" fg:x="12191" fg:w="3"/><text x="52.1973%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="51.9473%" y="2325" width="0.0128%" height="15" fill="rgb(214,17,23)" fg:x="12191" fg:w="3"/><text x="52.1973%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="51.9473%" y="2773" width="0.0170%" height="15" fill="rgb(243,100,3)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2757" width="0.0170%" height="15" fill="rgb(208,200,38)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2741" width="0.0170%" height="15" fill="rgb(226,205,22)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.9473%" y="2725" width="0.0170%" height="15" fill="rgb(254,218,25)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="51.9473%" y="2709" width="0.0170%" height="15" fill="rgb(219,207,12)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.9473%" y="2693" width="0.0170%" height="15" fill="rgb(231,45,25)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2677" width="0.0170%" height="15" fill="rgb(246,109,13)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="51.9473%" y="2661" width="0.0170%" height="15" fill="rgb(243,184,25)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2645" width="0.0170%" height="15" fill="rgb(240,202,6)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2629" width="0.0170%" height="15" fill="rgb(214,9,36)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.9473%" y="2613" width="0.0170%" height="15" fill="rgb(228,32,9)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="51.9473%" y="2597" width="0.0170%" height="15" fill="rgb(220,36,11)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="51.9473%" y="2581" width="0.0170%" height="15" fill="rgb(246,205,44)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="51.9473%" y="2565" width="0.0170%" height="15" fill="rgb(253,39,22)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="51.9473%" y="2549" width="0.0170%" height="15" fill="rgb(209,139,6)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="51.9473%" y="2533" width="0.0170%" height="15" fill="rgb(237,139,7)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="51.9473%" y="2517" width="0.0170%" height="15" fill="rgb(234,28,47)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="51.9473%" y="2501" width="0.0170%" height="15" fill="rgb(228,21,49)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2485" width="0.0170%" height="15" fill="rgb(225,117,47)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2469" width="0.0170%" height="15" fill="rgb(227,93,13)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="51.9473%" y="2453" width="0.0170%" height="15" fill="rgb(250,179,20)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="51.9473%" y="2437" width="0.0170%" height="15" fill="rgb(226,132,39)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2447.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="51.9473%" y="2421" width="0.0170%" height="15" fill="rgb(237,133,28)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="51.9473%" y="2405" width="0.0170%" height="15" fill="rgb(231,209,53)" fg:x="12191" fg:w="4"/><text x="52.1973%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="51.9644%" y="2325" width="0.0170%" height="15" fill="rgb(244,107,35)" fg:x="12195" fg:w="4"/><text x="52.2144%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="51.9644%" y="2309" width="0.0170%" height="15" fill="rgb(232,166,10)" fg:x="12195" fg:w="4"/><text x="52.2144%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="51.9644%" y="2293" width="0.0170%" height="15" fill="rgb(243,2,17)" fg:x="12195" fg:w="4"/><text x="52.2144%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="51.9644%" y="2277" width="0.0170%" height="15" fill="rgb(226,54,26)" fg:x="12195" fg:w="4"/><text x="52.2144%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="51.9644%" y="2261" width="0.0170%" height="15" fill="rgb(229,164,7)" fg:x="12195" fg:w="4"/><text x="52.2144%" y="2271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="51.9644%" y="2597" width="0.0298%" height="15" fill="rgb(228,61,25)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="51.9644%" y="2581" width="0.0298%" height="15" fill="rgb(225,227,23)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="51.9644%" y="2565" width="0.0298%" height="15" fill="rgb(233,123,0)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="51.9644%" y="2549" width="0.0298%" height="15" fill="rgb(209,149,31)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="51.9644%" y="2533" width="0.0298%" height="15" fill="rgb(211,147,2)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="51.9644%" y="2517" width="0.0298%" height="15" fill="rgb(233,224,47)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="51.9644%" y="2501" width="0.0298%" height="15" fill="rgb(219,203,47)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="51.9644%" y="2485" width="0.0298%" height="15" fill="rgb(249,224,17)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="51.9644%" y="2469" width="0.0298%" height="15" fill="rgb(222,225,52)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="51.9644%" y="2453" width="0.0298%" height="15" fill="rgb(254,20,16)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="51.9644%" y="2437" width="0.0298%" height="15" fill="rgb(208,43,47)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="51.9644%" y="2421" width="0.0298%" height="15" fill="rgb(251,218,39)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="51.9644%" y="2405" width="0.0298%" height="15" fill="rgb(212,124,32)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="51.9644%" y="2389" width="0.0298%" height="15" fill="rgb(220,121,52)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="51.9644%" y="2373" width="0.0298%" height="15" fill="rgb(231,57,38)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2383.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="51.9644%" y="2357" width="0.0298%" height="15" fill="rgb(233,169,36)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="51.9644%" y="2341" width="0.0298%" height="15" fill="rgb(254,181,43)" fg:x="12195" fg:w="7"/><text x="52.2144%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="51.9814%" y="2325" width="0.0128%" height="15" fill="rgb(234,14,8)" fg:x="12199" fg:w="3"/><text x="52.2314%" y="2335.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="51.9814%" y="2309" width="0.0128%" height="15" fill="rgb(241,169,47)" fg:x="12199" fg:w="3"/><text x="52.2314%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="51.9814%" y="2293" width="0.0128%" height="15" fill="rgb(233,29,3)" fg:x="12199" fg:w="3"/><text x="52.2314%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="51.9814%" y="2277" width="0.0128%" height="15" fill="rgb(247,116,29)" fg:x="12199" fg:w="3"/><text x="52.2314%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="51.9814%" y="2261" width="0.0128%" height="15" fill="rgb(216,26,0)" fg:x="12199" fg:w="3"/><text x="52.2314%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="51.9814%" y="2245" width="0.0128%" height="15" fill="rgb(225,84,14)" fg:x="12199" fg:w="3"/><text x="52.2314%" y="2255.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="51.9473%" y="2885" width="0.0554%" height="15" fill="rgb(225,106,14)" fg:x="12191" fg:w="13"/><text x="52.1973%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="51.9473%" y="2869" width="0.0554%" height="15" fill="rgb(252,4,49)" fg:x="12191" fg:w="13"/><text x="52.1973%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="51.9473%" y="2853" width="0.0554%" height="15" fill="rgb(234,54,48)" fg:x="12191" fg:w="13"/><text x="52.1973%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="51.9473%" y="2837" width="0.0554%" height="15" fill="rgb(216,28,24)" fg:x="12191" fg:w="13"/><text x="52.1973%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="51.9473%" y="2821" width="0.0554%" height="15" fill="rgb(234,154,53)" fg:x="12191" fg:w="13"/><text x="52.1973%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="51.9473%" y="2805" width="0.0554%" height="15" fill="rgb(206,133,42)" fg:x="12191" fg:w="13"/><text x="52.1973%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="51.9473%" y="2789" width="0.0554%" height="15" fill="rgb(216,121,10)" fg:x="12191" fg:w="13"/><text x="52.1973%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="51.9644%" y="2773" width="0.0384%" height="15" fill="rgb(221,77,38)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="51.9644%" y="2757" width="0.0384%" height="15" fill="rgb(237,40,28)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2767.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="51.9644%" y="2741" width="0.0384%" height="15" fill="rgb(247,58,50)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="51.9644%" y="2725" width="0.0384%" height="15" fill="rgb(227,29,50)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="51.9644%" y="2709" width="0.0384%" height="15" fill="rgb(243,124,43)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="51.9644%" y="2693" width="0.0384%" height="15" fill="rgb(248,102,10)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="51.9644%" y="2677" width="0.0384%" height="15" fill="rgb(233,49,36)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="51.9644%" y="2661" width="0.0384%" height="15" fill="rgb(228,225,36)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="51.9644%" y="2645" width="0.0384%" height="15" fill="rgb(213,128,30)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="51.9644%" y="2629" width="0.0384%" height="15" fill="rgb(246,71,16)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="51.9644%" y="2613" width="0.0384%" height="15" fill="rgb(208,98,38)" fg:x="12195" fg:w="9"/><text x="52.2144%" y="2623.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="52.0027%" y="2325" width="0.0128%" height="15" fill="rgb(228,182,37)" fg:x="12204" fg:w="3"/><text x="52.2527%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="52.0027%" y="2309" width="0.0128%" height="15" fill="rgb(248,24,50)" fg:x="12204" fg:w="3"/><text x="52.2527%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="52.0027%" y="2293" width="0.0128%" height="15" fill="rgb(234,11,24)" fg:x="12204" fg:w="3"/><text x="52.2527%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="52.0027%" y="2277" width="0.0128%" height="15" fill="rgb(218,201,51)" fg:x="12204" fg:w="3"/><text x="52.2527%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="52.0027%" y="2261" width="0.0128%" height="15" fill="rgb(243,101,53)" fg:x="12204" fg:w="3"/><text x="52.2527%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="52.0027%" y="2245" width="0.0128%" height="15" fill="rgb(207,152,16)" fg:x="12204" fg:w="3"/><text x="52.2527%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="52.0027%" y="2229" width="0.0128%" height="15" fill="rgb(220,155,29)" fg:x="12204" fg:w="3"/><text x="52.2527%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="52.0027%" y="2597" width="0.0256%" height="15" fill="rgb(250,107,21)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0027%" y="2581" width="0.0256%" height="15" fill="rgb(214,73,46)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0027%" y="2565" width="0.0256%" height="15" fill="rgb(242,2,24)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="52.0027%" y="2549" width="0.0256%" height="15" fill="rgb(232,192,53)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="52.0027%" y="2533" width="0.0256%" height="15" fill="rgb(227,125,6)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="52.0027%" y="2517" width="0.0256%" height="15" fill="rgb(205,20,1)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="52.0027%" y="2501" width="0.0256%" height="15" fill="rgb(205,89,1)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="52.0027%" y="2485" width="0.0256%" height="15" fill="rgb(220,112,24)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="52.0027%" y="2469" width="0.0256%" height="15" fill="rgb(207,113,0)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="52.0027%" y="2453" width="0.0256%" height="15" fill="rgb(226,154,25)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="52.0027%" y="2437" width="0.0256%" height="15" fill="rgb(222,20,23)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0027%" y="2421" width="0.0256%" height="15" fill="rgb(249,50,39)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0027%" y="2405" width="0.0256%" height="15" fill="rgb(212,185,12)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="52.0027%" y="2389" width="0.0256%" height="15" fill="rgb(226,125,32)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0027%" y="2373" width="0.0256%" height="15" fill="rgb(251,97,26)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2383.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="52.0027%" y="2357" width="0.0256%" height="15" fill="rgb(253,154,24)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="52.0027%" y="2341" width="0.0256%" height="15" fill="rgb(217,24,33)" fg:x="12204" fg:w="6"/><text x="52.2527%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="52.0155%" y="2325" width="0.0128%" height="15" fill="rgb(209,65,30)" fg:x="12207" fg:w="3"/><text x="52.2655%" y="2335.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="52.0155%" y="2309" width="0.0128%" height="15" fill="rgb(237,198,25)" fg:x="12207" fg:w="3"/><text x="52.2655%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="52.0155%" y="2293" width="0.0128%" height="15" fill="rgb(231,188,22)" fg:x="12207" fg:w="3"/><text x="52.2655%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="52.0155%" y="2277" width="0.0128%" height="15" fill="rgb(213,156,21)" fg:x="12207" fg:w="3"/><text x="52.2655%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="52.0155%" y="2261" width="0.0128%" height="15" fill="rgb(208,37,42)" fg:x="12207" fg:w="3"/><text x="52.2655%" y="2271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="52.0027%" y="2709" width="0.0384%" height="15" fill="rgb(229,126,30)" fg:x="12204" fg:w="9"/><text x="52.2527%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="52.0027%" y="2693" width="0.0384%" height="15" fill="rgb(225,60,17)" fg:x="12204" fg:w="9"/><text x="52.2527%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="52.0027%" y="2677" width="0.0384%" height="15" fill="rgb(253,84,1)" fg:x="12204" fg:w="9"/><text x="52.2527%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="52.0027%" y="2661" width="0.0384%" height="15" fill="rgb(254,130,54)" fg:x="12204" fg:w="9"/><text x="52.2527%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="52.0027%" y="2645" width="0.0384%" height="15" fill="rgb(242,137,42)" fg:x="12204" fg:w="9"/><text x="52.2527%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="52.0027%" y="2629" width="0.0384%" height="15" fill="rgb(219,139,0)" fg:x="12204" fg:w="9"/><text x="52.2527%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="52.0027%" y="2613" width="0.0384%" height="15" fill="rgb(205,113,11)" fg:x="12204" fg:w="9"/><text x="52.2527%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="52.0283%" y="2597" width="0.0128%" height="15" fill="rgb(223,101,1)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="52.0283%" y="2581" width="0.0128%" height="15" fill="rgb(228,178,45)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2591.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="52.0283%" y="2565" width="0.0128%" height="15" fill="rgb(246,228,26)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="52.0283%" y="2549" width="0.0128%" height="15" fill="rgb(210,157,31)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="52.0283%" y="2533" width="0.0128%" height="15" fill="rgb(243,171,28)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="52.0283%" y="2517" width="0.0128%" height="15" fill="rgb(210,1,33)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="52.0283%" y="2501" width="0.0128%" height="15" fill="rgb(206,92,20)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="52.0283%" y="2485" width="0.0128%" height="15" fill="rgb(212,125,47)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="52.0283%" y="2469" width="0.0128%" height="15" fill="rgb(215,142,12)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="52.0283%" y="2453" width="0.0128%" height="15" fill="rgb(251,129,15)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="52.0283%" y="2437" width="0.0128%" height="15" fill="rgb(242,199,14)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="52.0283%" y="2421" width="0.0128%" height="15" fill="rgb(244,184,37)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="52.0283%" y="2405" width="0.0128%" height="15" fill="rgb(243,90,19)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="52.0283%" y="2389" width="0.0128%" height="15" fill="rgb(231,142,48)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="52.0283%" y="2373" width="0.0128%" height="15" fill="rgb(228,130,51)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="52.0283%" y="2357" width="0.0128%" height="15" fill="rgb(238,211,6)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="52.0283%" y="2341" width="0.0128%" height="15" fill="rgb(221,201,43)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="52.0283%" y="2325" width="0.0128%" height="15" fill="rgb(221,68,13)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="52.0283%" y="2309" width="0.0128%" height="15" fill="rgb(241,152,38)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="52.0283%" y="2293" width="0.0128%" height="15" fill="rgb(213,152,12)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2303.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="52.0283%" y="2277" width="0.0128%" height="15" fill="rgb(226,38,48)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="52.0283%" y="2261" width="0.0128%" height="15" fill="rgb(222,139,42)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="52.0283%" y="2245" width="0.0128%" height="15" fill="rgb(211,184,7)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2255.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="52.0283%" y="2229" width="0.0128%" height="15" fill="rgb(205,64,34)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="52.0283%" y="2213" width="0.0128%" height="15" fill="rgb(208,85,9)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="52.0283%" y="2197" width="0.0128%" height="15" fill="rgb(252,128,32)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="52.0283%" y="2181" width="0.0128%" height="15" fill="rgb(211,158,6)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="52.0283%" y="2165" width="0.0128%" height="15" fill="rgb(209,57,37)" fg:x="12210" fg:w="3"/><text x="52.2783%" y="2175.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (27 samples, 0.12%)</title><rect x="51.9473%" y="2997" width="0.1151%" height="15" fill="rgb(209,44,50)" fg:x="12191" fg:w="27"/><text x="52.1973%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (27 samples, 0.12%)</title><rect x="51.9473%" y="2981" width="0.1151%" height="15" fill="rgb(221,187,20)" fg:x="12191" fg:w="27"/><text x="52.1973%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="51.9473%" y="2965" width="0.1151%" height="15" fill="rgb(225,109,31)" fg:x="12191" fg:w="27"/><text x="52.1973%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="51.9473%" y="2949" width="0.1151%" height="15" fill="rgb(239,224,44)" fg:x="12191" fg:w="27"/><text x="52.1973%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="51.9473%" y="2933" width="0.1151%" height="15" fill="rgb(216,93,49)" fg:x="12191" fg:w="27"/><text x="52.1973%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="51.9473%" y="2917" width="0.1151%" height="15" fill="rgb(246,33,9)" fg:x="12191" fg:w="27"/><text x="52.1973%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="51.9473%" y="2901" width="0.1151%" height="15" fill="rgb(226,185,30)" fg:x="12191" fg:w="27"/><text x="52.1973%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="52.0027%" y="2885" width="0.0597%" height="15" fill="rgb(212,75,52)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="52.0027%" y="2869" width="0.0597%" height="15" fill="rgb(244,54,4)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2879.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="52.0027%" y="2853" width="0.0597%" height="15" fill="rgb(206,128,41)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="52.0027%" y="2837" width="0.0597%" height="15" fill="rgb(212,211,36)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="52.0027%" y="2821" width="0.0597%" height="15" fill="rgb(234,41,50)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="52.0027%" y="2805" width="0.0597%" height="15" fill="rgb(210,72,48)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="52.0027%" y="2789" width="0.0597%" height="15" fill="rgb(230,197,35)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="52.0027%" y="2773" width="0.0597%" height="15" fill="rgb(207,206,3)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="52.0027%" y="2757" width="0.0597%" height="15" fill="rgb(232,175,0)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="52.0027%" y="2741" width="0.0597%" height="15" fill="rgb(219,79,54)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="52.0027%" y="2725" width="0.0597%" height="15" fill="rgb(235,191,37)" fg:x="12204" fg:w="14"/><text x="52.2527%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.0411%" y="2709" width="0.0213%" height="15" fill="rgb(229,195,14)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.0411%" y="2693" width="0.0213%" height="15" fill="rgb(229,32,29)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2703.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.0411%" y="2677" width="0.0213%" height="15" fill="rgb(222,199,2)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.0411%" y="2661" width="0.0213%" height="15" fill="rgb(225,203,28)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.0411%" y="2645" width="0.0213%" height="15" fill="rgb(241,29,21)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2629" width="0.0213%" height="15" fill="rgb(207,65,9)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2613" width="0.0213%" height="15" fill="rgb(220,208,33)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.0411%" y="2597" width="0.0213%" height="15" fill="rgb(218,150,45)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.0411%" y="2581" width="0.0213%" height="15" fill="rgb(231,85,32)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.0411%" y="2565" width="0.0213%" height="15" fill="rgb(246,200,29)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2549" width="0.0213%" height="15" fill="rgb(228,49,27)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="52.0411%" y="2533" width="0.0213%" height="15" fill="rgb(213,25,17)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2517" width="0.0213%" height="15" fill="rgb(222,72,16)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2501" width="0.0213%" height="15" fill="rgb(230,120,10)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.0411%" y="2485" width="0.0213%" height="15" fill="rgb(239,72,5)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="52.0411%" y="2469" width="0.0213%" height="15" fill="rgb(214,78,38)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="52.0411%" y="2453" width="0.0213%" height="15" fill="rgb(210,109,19)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="52.0411%" y="2437" width="0.0213%" height="15" fill="rgb(235,177,32)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="52.0411%" y="2421" width="0.0213%" height="15" fill="rgb(226,41,17)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="52.0411%" y="2405" width="0.0213%" height="15" fill="rgb(221,123,15)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="52.0411%" y="2389" width="0.0213%" height="15" fill="rgb(229,147,11)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="52.0411%" y="2373" width="0.0213%" height="15" fill="rgb(233,60,3)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2357" width="0.0213%" height="15" fill="rgb(228,111,5)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2341" width="0.0213%" height="15" fill="rgb(251,206,16)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="52.0411%" y="2325" width="0.0213%" height="15" fill="rgb(254,16,45)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0411%" y="2309" width="0.0213%" height="15" fill="rgb(252,212,38)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="52.0411%" y="2293" width="0.0213%" height="15" fill="rgb(210,96,14)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2303.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="52.0411%" y="2277" width="0.0213%" height="15" fill="rgb(206,119,54)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="52.0411%" y="2261" width="0.0213%" height="15" fill="rgb(251,38,45)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="52.0411%" y="2245" width="0.0213%" height="15" fill="rgb(214,195,9)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2255.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="52.0411%" y="2229" width="0.0213%" height="15" fill="rgb(216,60,8)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="52.0411%" y="2213" width="0.0213%" height="15" fill="rgb(218,186,1)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="52.0411%" y="2197" width="0.0213%" height="15" fill="rgb(240,106,50)" fg:x="12213" fg:w="5"/><text x="52.2911%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="52.0453%" y="2181" width="0.0170%" height="15" fill="rgb(215,36,17)" fg:x="12214" fg:w="4"/><text x="52.2953%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="52.0496%" y="2165" width="0.0128%" height="15" fill="rgb(232,93,41)" fg:x="12215" fg:w="3"/><text x="52.2996%" y="2175.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="52.0624%" y="2325" width="0.0170%" height="15" fill="rgb(230,208,41)" fg:x="12218" fg:w="4"/><text x="52.3124%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="52.0624%" y="2309" width="0.0170%" height="15" fill="rgb(244,65,40)" fg:x="12218" fg:w="4"/><text x="52.3124%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="52.0624%" y="2293" width="0.0170%" height="15" fill="rgb(215,128,52)" fg:x="12218" fg:w="4"/><text x="52.3124%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="52.0624%" y="2277" width="0.0170%" height="15" fill="rgb(240,116,47)" fg:x="12218" fg:w="4"/><text x="52.3124%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="52.0624%" y="2261" width="0.0170%" height="15" fill="rgb(243,42,15)" fg:x="12218" fg:w="4"/><text x="52.3124%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="52.0666%" y="2245" width="0.0128%" height="15" fill="rgb(248,30,20)" fg:x="12219" fg:w="3"/><text x="52.3166%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="52.0666%" y="2229" width="0.0128%" height="15" fill="rgb(246,15,29)" fg:x="12219" fg:w="3"/><text x="52.3166%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="52.0624%" y="2597" width="0.0256%" height="15" fill="rgb(211,46,52)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0624%" y="2581" width="0.0256%" height="15" fill="rgb(223,5,41)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0624%" y="2565" width="0.0256%" height="15" fill="rgb(236,124,22)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="52.0624%" y="2549" width="0.0256%" height="15" fill="rgb(234,4,3)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="52.0624%" y="2533" width="0.0256%" height="15" fill="rgb(238,124,37)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="52.0624%" y="2517" width="0.0256%" height="15" fill="rgb(236,176,54)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="52.0624%" y="2501" width="0.0256%" height="15" fill="rgb(248,202,33)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="52.0624%" y="2485" width="0.0256%" height="15" fill="rgb(227,190,18)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="52.0624%" y="2469" width="0.0256%" height="15" fill="rgb(218,2,14)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="52.0624%" y="2453" width="0.0256%" height="15" fill="rgb(222,126,22)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="52.0624%" y="2437" width="0.0256%" height="15" fill="rgb(214,17,20)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0624%" y="2421" width="0.0256%" height="15" fill="rgb(215,157,40)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0624%" y="2405" width="0.0256%" height="15" fill="rgb(237,205,0)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="52.0624%" y="2389" width="0.0256%" height="15" fill="rgb(229,36,48)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="52.0624%" y="2373" width="0.0256%" height="15" fill="rgb(229,85,31)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2383.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="52.0624%" y="2357" width="0.0256%" height="15" fill="rgb(250,102,44)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="52.0624%" y="2341" width="0.0256%" height="15" fill="rgb(214,89,53)" fg:x="12218" fg:w="6"/><text x="52.3124%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="52.0624%" y="2709" width="0.0341%" height="15" fill="rgb(213,123,25)" fg:x="12218" fg:w="8"/><text x="52.3124%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="52.0624%" y="2693" width="0.0341%" height="15" fill="rgb(237,218,45)" fg:x="12218" fg:w="8"/><text x="52.3124%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="52.0624%" y="2677" width="0.0341%" height="15" fill="rgb(213,9,1)" fg:x="12218" fg:w="8"/><text x="52.3124%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="52.0624%" y="2661" width="0.0341%" height="15" fill="rgb(221,97,31)" fg:x="12218" fg:w="8"/><text x="52.3124%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="52.0624%" y="2645" width="0.0341%" height="15" fill="rgb(251,45,39)" fg:x="12218" fg:w="8"/><text x="52.3124%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="52.0624%" y="2629" width="0.0341%" height="15" fill="rgb(222,88,1)" fg:x="12218" fg:w="8"/><text x="52.3124%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="52.0624%" y="2613" width="0.0341%" height="15" fill="rgb(240,131,48)" fg:x="12218" fg:w="8"/><text x="52.3124%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="52.0624%" y="2821" width="0.0554%" height="15" fill="rgb(216,110,38)" fg:x="12218" fg:w="13"/><text x="52.3124%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="52.0624%" y="2805" width="0.0554%" height="15" fill="rgb(219,225,3)" fg:x="12218" fg:w="13"/><text x="52.3124%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="52.0624%" y="2789" width="0.0554%" height="15" fill="rgb(207,197,18)" fg:x="12218" fg:w="13"/><text x="52.3124%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="52.0624%" y="2773" width="0.0554%" height="15" fill="rgb(221,84,2)" fg:x="12218" fg:w="13"/><text x="52.3124%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="52.0624%" y="2757" width="0.0554%" height="15" fill="rgb(225,200,6)" fg:x="12218" fg:w="13"/><text x="52.3124%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="52.0624%" y="2741" width="0.0554%" height="15" fill="rgb(211,206,24)" fg:x="12218" fg:w="13"/><text x="52.3124%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="52.0624%" y="2725" width="0.0554%" height="15" fill="rgb(210,63,27)" fg:x="12218" fg:w="13"/><text x="52.3124%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.0965%" y="2709" width="0.0213%" height="15" fill="rgb(233,101,34)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.0965%" y="2693" width="0.0213%" height="15" fill="rgb(208,215,49)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2703.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.0965%" y="2677" width="0.0213%" height="15" fill="rgb(208,8,52)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.0965%" y="2661" width="0.0213%" height="15" fill="rgb(214,64,16)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.0965%" y="2645" width="0.0213%" height="15" fill="rgb(245,100,18)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2629" width="0.0213%" height="15" fill="rgb(220,49,17)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2613" width="0.0213%" height="15" fill="rgb(243,118,10)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.0965%" y="2597" width="0.0213%" height="15" fill="rgb(234,85,32)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.0965%" y="2581" width="0.0213%" height="15" fill="rgb(213,56,50)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.0965%" y="2565" width="0.0213%" height="15" fill="rgb(224,131,52)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2549" width="0.0213%" height="15" fill="rgb(239,103,11)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="52.0965%" y="2533" width="0.0213%" height="15" fill="rgb(219,223,23)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2517" width="0.0213%" height="15" fill="rgb(206,80,16)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2501" width="0.0213%" height="15" fill="rgb(219,164,0)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.0965%" y="2485" width="0.0213%" height="15" fill="rgb(233,143,5)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="52.0965%" y="2469" width="0.0213%" height="15" fill="rgb(224,80,25)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="52.0965%" y="2453" width="0.0213%" height="15" fill="rgb(215,14,51)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="52.0965%" y="2437" width="0.0213%" height="15" fill="rgb(230,25,50)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="52.0965%" y="2421" width="0.0213%" height="15" fill="rgb(222,17,38)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="52.0965%" y="2405" width="0.0213%" height="15" fill="rgb(220,199,17)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="52.0965%" y="2389" width="0.0213%" height="15" fill="rgb(229,53,46)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="52.0965%" y="2373" width="0.0213%" height="15" fill="rgb(253,55,17)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2357" width="0.0213%" height="15" fill="rgb(236,71,21)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2341" width="0.0213%" height="15" fill="rgb(253,178,22)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="52.0965%" y="2325" width="0.0213%" height="15" fill="rgb(220,75,12)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="52.0965%" y="2309" width="0.0213%" height="15" fill="rgb(211,211,9)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="52.0965%" y="2293" width="0.0213%" height="15" fill="rgb(234,82,35)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2303.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="52.0965%" y="2277" width="0.0213%" height="15" fill="rgb(216,17,8)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="52.0965%" y="2261" width="0.0213%" height="15" fill="rgb(217,14,28)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="52.0965%" y="2245" width="0.0213%" height="15" fill="rgb(229,141,54)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2255.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="52.0965%" y="2229" width="0.0213%" height="15" fill="rgb(220,86,5)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="52.0965%" y="2213" width="0.0213%" height="15" fill="rgb(215,172,31)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="52.0965%" y="2197" width="0.0213%" height="15" fill="rgb(226,21,17)" fg:x="12226" fg:w="5"/><text x="52.3465%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="52.1050%" y="2181" width="0.0128%" height="15" fill="rgb(230,4,42)" fg:x="12228" fg:w="3"/><text x="52.3550%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="52.1050%" y="2165" width="0.0128%" height="15" fill="rgb(241,111,32)" fg:x="12228" fg:w="3"/><text x="52.3550%" y="2175.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="52.1178%" y="2645" width="0.0170%" height="15" fill="rgb(236,0,50)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2629" width="0.0170%" height="15" fill="rgb(216,29,6)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2613" width="0.0170%" height="15" fill="rgb(240,129,25)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="52.1178%" y="2597" width="0.0170%" height="15" fill="rgb(228,185,47)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="52.1178%" y="2581" width="0.0170%" height="15" fill="rgb(237,189,4)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="52.1178%" y="2565" width="0.0170%" height="15" fill="rgb(227,57,15)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2549" width="0.0170%" height="15" fill="rgb(237,93,10)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="52.1178%" y="2533" width="0.0170%" height="15" fill="rgb(232,120,37)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2517" width="0.0170%" height="15" fill="rgb(226,2,48)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2501" width="0.0170%" height="15" fill="rgb(241,28,54)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="52.1178%" y="2485" width="0.0170%" height="15" fill="rgb(251,195,32)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="52.1178%" y="2469" width="0.0170%" height="15" fill="rgb(246,8,2)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="52.1178%" y="2453" width="0.0170%" height="15" fill="rgb(219,213,20)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="52.1178%" y="2437" width="0.0170%" height="15" fill="rgb(251,179,6)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="52.1178%" y="2421" width="0.0170%" height="15" fill="rgb(211,40,10)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="52.1178%" y="2405" width="0.0170%" height="15" fill="rgb(241,144,26)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="52.1178%" y="2389" width="0.0170%" height="15" fill="rgb(249,44,29)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="52.1178%" y="2373" width="0.0170%" height="15" fill="rgb(233,229,51)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2357" width="0.0170%" height="15" fill="rgb(206,77,20)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2341" width="0.0170%" height="15" fill="rgb(209,227,48)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="52.1178%" y="2325" width="0.0170%" height="15" fill="rgb(226,93,25)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1178%" y="2309" width="0.0170%" height="15" fill="rgb(216,53,11)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="52.1178%" y="2293" width="0.0170%" height="15" fill="rgb(246,133,9)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2303.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="52.1178%" y="2277" width="0.0170%" height="15" fill="rgb(205,68,52)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="52.1178%" y="2261" width="0.0170%" height="15" fill="rgb(249,47,25)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="52.1178%" y="2245" width="0.0170%" height="15" fill="rgb(210,210,4)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2255.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="52.1178%" y="2229" width="0.0170%" height="15" fill="rgb(248,0,45)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="52.1178%" y="2213" width="0.0170%" height="15" fill="rgb(222,198,18)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="52.1178%" y="2197" width="0.0170%" height="15" fill="rgb(230,190,25)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="52.1178%" y="2181" width="0.0170%" height="15" fill="rgb(221,3,49)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (4 samples, 0.02%)</title><rect x="52.1178%" y="2165" width="0.0170%" height="15" fill="rgb(250,229,43)" fg:x="12231" fg:w="4"/><text x="52.3678%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (89 samples, 0.38%)</title><rect x="51.7769%" y="3445" width="0.3792%" height="15" fill="rgb(222,51,50)" fg:x="12151" fg:w="89"/><text x="52.0269%" y="3455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (89 samples, 0.38%)</title><rect x="51.7769%" y="3429" width="0.3792%" height="15" fill="rgb(247,190,9)" fg:x="12151" fg:w="89"/><text x="52.0269%" y="3439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (89 samples, 0.38%)</title><rect x="51.7769%" y="3413" width="0.3792%" height="15" fill="rgb(224,53,50)" fg:x="12151" fg:w="89"/><text x="52.0269%" y="3423.50"></text></g><g><title>rayon_core::join::join_context (89 samples, 0.38%)</title><rect x="51.7769%" y="3397" width="0.3792%" height="15" fill="rgb(221,30,23)" fg:x="12151" fg:w="89"/><text x="52.0269%" y="3407.50"></text></g><g><title>rayon_core::registry::in_worker (89 samples, 0.38%)</title><rect x="51.7769%" y="3381" width="0.3792%" height="15" fill="rgb(240,70,24)" fg:x="12151" fg:w="89"/><text x="52.0269%" y="3391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (89 samples, 0.38%)</title><rect x="51.7769%" y="3365" width="0.3792%" height="15" fill="rgb(239,144,52)" fg:x="12151" fg:w="89"/><text x="52.0269%" y="3375.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (72 samples, 0.31%)</title><rect x="51.8493%" y="3349" width="0.3068%" height="15" fill="rgb(220,167,0)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3359.50"></text></g><g><title>std::panic::catch_unwind (72 samples, 0.31%)</title><rect x="51.8493%" y="3333" width="0.3068%" height="15" fill="rgb(240,72,24)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3343.50"></text></g><g><title>std::panicking::try (72 samples, 0.31%)</title><rect x="51.8493%" y="3317" width="0.3068%" height="15" fill="rgb(219,170,25)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3327.50"></text></g><g><title>std::panicking::try::do_call (72 samples, 0.31%)</title><rect x="51.8493%" y="3301" width="0.3068%" height="15" fill="rgb(207,30,20)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3311.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (72 samples, 0.31%)</title><rect x="51.8493%" y="3285" width="0.3068%" height="15" fill="rgb(207,105,32)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (72 samples, 0.31%)</title><rect x="51.8493%" y="3269" width="0.3068%" height="15" fill="rgb(251,48,32)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (72 samples, 0.31%)</title><rect x="51.8493%" y="3253" width="0.3068%" height="15" fill="rgb(245,110,53)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (72 samples, 0.31%)</title><rect x="51.8493%" y="3237" width="0.3068%" height="15" fill="rgb(222,214,7)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3247.50"></text></g><g><title>rayon_core::join::join_context (72 samples, 0.31%)</title><rect x="51.8493%" y="3221" width="0.3068%" height="15" fill="rgb(206,37,12)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3231.50"></text></g><g><title>rayon_core::registry::in_worker (72 samples, 0.31%)</title><rect x="51.8493%" y="3205" width="0.3068%" height="15" fill="rgb(205,41,21)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (72 samples, 0.31%)</title><rect x="51.8493%" y="3189" width="0.3068%" height="15" fill="rgb(226,196,48)" fg:x="12168" fg:w="72"/><text x="52.0993%" y="3199.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (49 samples, 0.21%)</title><rect x="51.9473%" y="3173" width="0.2088%" height="15" fill="rgb(231,140,48)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3183.50"></text></g><g><title>std::panic::catch_unwind (49 samples, 0.21%)</title><rect x="51.9473%" y="3157" width="0.2088%" height="15" fill="rgb(253,70,18)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3167.50"></text></g><g><title>std::panicking::try (49 samples, 0.21%)</title><rect x="51.9473%" y="3141" width="0.2088%" height="15" fill="rgb(215,16,48)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3151.50"></text></g><g><title>std::panicking::try::do_call (49 samples, 0.21%)</title><rect x="51.9473%" y="3125" width="0.2088%" height="15" fill="rgb(229,188,14)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3135.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (49 samples, 0.21%)</title><rect x="51.9473%" y="3109" width="0.2088%" height="15" fill="rgb(236,83,42)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (49 samples, 0.21%)</title><rect x="51.9473%" y="3093" width="0.2088%" height="15" fill="rgb(242,57,22)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (49 samples, 0.21%)</title><rect x="51.9473%" y="3077" width="0.2088%" height="15" fill="rgb(236,22,12)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.21%)</title><rect x="51.9473%" y="3061" width="0.2088%" height="15" fill="rgb(243,171,24)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (49 samples, 0.21%)</title><rect x="51.9473%" y="3045" width="0.2088%" height="15" fill="rgb(228,216,14)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.21%)</title><rect x="51.9473%" y="3029" width="0.2088%" height="15" fill="rgb(214,204,35)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (49 samples, 0.21%)</title><rect x="51.9473%" y="3013" width="0.2088%" height="15" fill="rgb(252,36,26)" fg:x="12191" fg:w="49"/><text x="52.1973%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="52.0624%" y="2997" width="0.0937%" height="15" fill="rgb(231,57,41)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="52.0624%" y="2981" width="0.0937%" height="15" fill="rgb(233,38,28)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2991.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="52.0624%" y="2965" width="0.0937%" height="15" fill="rgb(225,177,7)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="52.0624%" y="2949" width="0.0937%" height="15" fill="rgb(218,59,27)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="52.0624%" y="2933" width="0.0937%" height="15" fill="rgb(224,44,19)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (22 samples, 0.09%)</title><rect x="52.0624%" y="2917" width="0.0937%" height="15" fill="rgb(243,111,29)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="52.0624%" y="2901" width="0.0937%" height="15" fill="rgb(236,102,35)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="52.0624%" y="2885" width="0.0937%" height="15" fill="rgb(224,173,52)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="52.0624%" y="2869" width="0.0937%" height="15" fill="rgb(224,132,49)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="52.0624%" y="2853" width="0.0937%" height="15" fill="rgb(215,37,36)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="52.0624%" y="2837" width="0.0937%" height="15" fill="rgb(249,105,5)" fg:x="12218" fg:w="22"/><text x="52.3124%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="52.1178%" y="2821" width="0.0384%" height="15" fill="rgb(226,70,15)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="52.1178%" y="2805" width="0.0384%" height="15" fill="rgb(237,114,2)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2815.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="52.1178%" y="2789" width="0.0384%" height="15" fill="rgb(241,0,26)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="52.1178%" y="2773" width="0.0384%" height="15" fill="rgb(241,111,54)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="52.1178%" y="2757" width="0.0384%" height="15" fill="rgb(250,157,16)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1178%" y="2741" width="0.0384%" height="15" fill="rgb(219,103,53)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1178%" y="2725" width="0.0384%" height="15" fill="rgb(217,181,52)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="52.1178%" y="2709" width="0.0384%" height="15" fill="rgb(245,180,41)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="52.1178%" y="2693" width="0.0384%" height="15" fill="rgb(241,27,37)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="52.1178%" y="2677" width="0.0384%" height="15" fill="rgb(221,140,50)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1178%" y="2661" width="0.0384%" height="15" fill="rgb(233,105,1)" fg:x="12231" fg:w="9"/><text x="52.3678%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1348%" y="2645" width="0.0213%" height="15" fill="rgb(247,86,7)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1348%" y="2629" width="0.0213%" height="15" fill="rgb(240,164,51)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2639.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1348%" y="2613" width="0.0213%" height="15" fill="rgb(251,97,53)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1348%" y="2597" width="0.0213%" height="15" fill="rgb(236,46,0)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1348%" y="2581" width="0.0213%" height="15" fill="rgb(251,70,35)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2565" width="0.0213%" height="15" fill="rgb(248,172,23)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2549" width="0.0213%" height="15" fill="rgb(222,62,52)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1348%" y="2533" width="0.0213%" height="15" fill="rgb(228,80,39)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1348%" y="2517" width="0.0213%" height="15" fill="rgb(217,86,12)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1348%" y="2501" width="0.0213%" height="15" fill="rgb(231,205,9)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2485" width="0.0213%" height="15" fill="rgb(213,131,7)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1348%" y="2469" width="0.0213%" height="15" fill="rgb(248,129,7)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1348%" y="2453" width="0.0213%" height="15" fill="rgb(236,79,50)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2463.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1348%" y="2437" width="0.0213%" height="15" fill="rgb(225,202,28)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1348%" y="2421" width="0.0213%" height="15" fill="rgb(206,24,31)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1348%" y="2405" width="0.0213%" height="15" fill="rgb(232,221,31)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2389" width="0.0213%" height="15" fill="rgb(251,168,33)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2373" width="0.0213%" height="15" fill="rgb(213,60,1)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1348%" y="2357" width="0.0213%" height="15" fill="rgb(234,41,2)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="52.1348%" y="2341" width="0.0213%" height="15" fill="rgb(215,199,35)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="52.1348%" y="2325" width="0.0213%" height="15" fill="rgb(210,28,4)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2335.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="52.1348%" y="2309" width="0.0213%" height="15" fill="rgb(231,122,37)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="52.1348%" y="2293" width="0.0213%" height="15" fill="rgb(236,177,25)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2303.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="52.1348%" y="2277" width="0.0213%" height="15" fill="rgb(219,30,22)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2287.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="52.1348%" y="2261" width="0.0213%" height="15" fill="rgb(216,211,54)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="52.1348%" y="2245" width="0.0213%" height="15" fill="rgb(227,203,45)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2255.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2229" width="0.0213%" height="15" fill="rgb(208,40,30)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2239.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2213" width="0.0213%" height="15" fill="rgb(227,87,30)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2223.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="52.1348%" y="2197" width="0.0213%" height="15" fill="rgb(208,221,31)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2207.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1348%" y="2181" width="0.0213%" height="15" fill="rgb(222,26,0)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2191.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="52.1348%" y="2165" width="0.0213%" height="15" fill="rgb(210,101,14)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2175.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="52.1348%" y="2149" width="0.0213%" height="15" fill="rgb(235,86,20)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="52.1348%" y="2133" width="0.0213%" height="15" fill="rgb(252,176,17)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="52.1348%" y="2117" width="0.0213%" height="15" fill="rgb(216,50,19)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="52.1348%" y="2101" width="0.0213%" height="15" fill="rgb(246,160,31)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="52.1348%" y="2085" width="0.0213%" height="15" fill="rgb(245,68,16)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="52.1348%" y="2069" width="0.0213%" height="15" fill="rgb(247,211,51)" fg:x="12235" fg:w="5"/><text x="52.3848%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="52.1604%" y="2069" width="0.0213%" height="15" fill="rgb(233,211,24)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="52.1604%" y="2053" width="0.0213%" height="15" fill="rgb(253,33,19)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="2037" width="0.0213%" height="15" fill="rgb(210,41,1)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="2021" width="0.0213%" height="15" fill="rgb(220,49,39)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="2005" width="0.0213%" height="15" fill="rgb(246,79,44)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="52.1604%" y="1989" width="0.0213%" height="15" fill="rgb(234,125,29)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1604%" y="1973" width="0.0213%" height="15" fill="rgb(228,139,28)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1604%" y="1957" width="0.0213%" height="15" fill="rgb(227,205,23)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1967.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1604%" y="1941" width="0.0213%" height="15" fill="rgb(207,80,47)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1604%" y="1925" width="0.0213%" height="15" fill="rgb(216,23,5)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1604%" y="1909" width="0.0213%" height="15" fill="rgb(216,81,20)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1893" width="0.0213%" height="15" fill="rgb(215,167,14)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1877" width="0.0213%" height="15" fill="rgb(249,126,31)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1861" width="0.0213%" height="15" fill="rgb(206,229,12)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1604%" y="1845" width="0.0213%" height="15" fill="rgb(217,22,8)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1604%" y="1829" width="0.0213%" height="15" fill="rgb(241,40,37)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1604%" y="1813" width="0.0213%" height="15" fill="rgb(229,64,47)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1797" width="0.0213%" height="15" fill="rgb(238,81,23)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="52.1604%" y="1781" width="0.0213%" height="15" fill="rgb(205,114,7)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="52.1604%" y="1765" width="0.0213%" height="15" fill="rgb(252,221,45)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="1749" width="0.0213%" height="15" fill="rgb(242,222,31)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1759.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="1733" width="0.0213%" height="15" fill="rgb(207,220,0)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="1717" width="0.0213%" height="15" fill="rgb(239,15,42)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="52.1604%" y="1701" width="0.0213%" height="15" fill="rgb(206,38,16)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1604%" y="1685" width="0.0213%" height="15" fill="rgb(230,46,39)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1695.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1604%" y="1669" width="0.0213%" height="15" fill="rgb(214,78,16)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1679.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1604%" y="1653" width="0.0213%" height="15" fill="rgb(234,86,38)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1663.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1604%" y="1637" width="0.0213%" height="15" fill="rgb(249,194,32)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1604%" y="1621" width="0.0213%" height="15" fill="rgb(244,145,18)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1605" width="0.0213%" height="15" fill="rgb(224,17,30)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1589" width="0.0213%" height="15" fill="rgb(215,88,49)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1573" width="0.0213%" height="15" fill="rgb(208,114,27)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1604%" y="1557" width="0.0213%" height="15" fill="rgb(219,59,45)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1567.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1604%" y="1541" width="0.0213%" height="15" fill="rgb(221,74,42)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1551.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1604%" y="1525" width="0.0213%" height="15" fill="rgb(208,45,37)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1509" width="0.0213%" height="15" fill="rgb(249,228,48)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1604%" y="1493" width="0.0213%" height="15" fill="rgb(228,59,33)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1503.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1604%" y="1477" width="0.0213%" height="15" fill="rgb(210,17,14)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1487.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1604%" y="1461" width="0.0213%" height="15" fill="rgb(241,198,29)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1471.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1604%" y="1445" width="0.0213%" height="15" fill="rgb(251,132,40)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1604%" y="1429" width="0.0213%" height="15" fill="rgb(234,52,17)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1413" width="0.0213%" height="15" fill="rgb(240,215,21)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1397" width="0.0213%" height="15" fill="rgb(237,81,39)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1604%" y="1381" width="0.0213%" height="15" fill="rgb(205,148,31)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1391.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1604%" y="1365" width="0.0213%" height="15" fill="rgb(252,56,6)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1375.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1604%" y="1349" width="0.0213%" height="15" fill="rgb(224,203,6)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1333" width="0.0213%" height="15" fill="rgb(223,34,36)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1343.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="52.1604%" y="1317" width="0.0213%" height="15" fill="rgb(220,86,7)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1327.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="52.1604%" y="1301" width="0.0213%" height="15" fill="rgb(253,107,44)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1311.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="1285" width="0.0213%" height="15" fill="rgb(225,183,8)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1295.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="1269" width="0.0213%" height="15" fill="rgb(219,197,26)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1279.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="1253" width="0.0213%" height="15" fill="rgb(224,21,47)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1263.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="52.1604%" y="1237" width="0.0213%" height="15" fill="rgb(233,224,31)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1604%" y="1221" width="0.0213%" height="15" fill="rgb(236,225,39)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1604%" y="1205" width="0.0213%" height="15" fill="rgb(205,143,4)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1215.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1604%" y="1189" width="0.0213%" height="15" fill="rgb(247,8,42)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1604%" y="1173" width="0.0213%" height="15" fill="rgb(252,89,51)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1604%" y="1157" width="0.0213%" height="15" fill="rgb(236,46,23)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1167.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1141" width="0.0213%" height="15" fill="rgb(245,162,42)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1125" width="0.0213%" height="15" fill="rgb(253,54,1)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1109" width="0.0213%" height="15" fill="rgb(220,30,38)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1604%" y="1093" width="0.0213%" height="15" fill="rgb(234,116,5)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1103.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1604%" y="1077" width="0.0213%" height="15" fill="rgb(241,142,25)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1604%" y="1061" width="0.0213%" height="15" fill="rgb(242,61,2)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="1045" width="0.0213%" height="15" fill="rgb(226,126,9)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="52.1604%" y="1029" width="0.0213%" height="15" fill="rgb(229,50,0)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1039.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="52.1604%" y="1013" width="0.0213%" height="15" fill="rgb(211,18,7)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="997" width="0.0213%" height="15" fill="rgb(223,59,50)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="1007.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="981" width="0.0213%" height="15" fill="rgb(253,227,18)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="991.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="965" width="0.0213%" height="15" fill="rgb(238,195,38)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="975.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="52.1604%" y="949" width="0.0213%" height="15" fill="rgb(240,227,36)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="959.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1604%" y="933" width="0.0213%" height="15" fill="rgb(226,128,19)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="943.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1604%" y="917" width="0.0213%" height="15" fill="rgb(206,34,19)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="927.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1604%" y="901" width="0.0213%" height="15" fill="rgb(234,30,32)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="911.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1604%" y="885" width="0.0213%" height="15" fill="rgb(208,29,17)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="895.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1604%" y="869" width="0.0213%" height="15" fill="rgb(225,131,17)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="879.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="853" width="0.0213%" height="15" fill="rgb(220,32,16)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="863.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="837" width="0.0213%" height="15" fill="rgb(210,106,14)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="821" width="0.0213%" height="15" fill="rgb(211,98,18)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1604%" y="805" width="0.0213%" height="15" fill="rgb(232,48,6)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="815.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1604%" y="789" width="0.0213%" height="15" fill="rgb(231,208,2)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1604%" y="773" width="0.0213%" height="15" fill="rgb(229,5,24)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="757" width="0.0213%" height="15" fill="rgb(209,32,27)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="767.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="52.1604%" y="741" width="0.0213%" height="15" fill="rgb(241,36,17)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="725" width="0.0213%" height="15" fill="rgb(221,187,38)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="709" width="0.0213%" height="15" fill="rgb(228,8,22)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1604%" y="693" width="0.0213%" height="15" fill="rgb(234,5,41)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="703.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1604%" y="677" width="0.0213%" height="15" fill="rgb(244,144,32)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1604%" y="661" width="0.0213%" height="15" fill="rgb(244,22,23)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="671.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="645" width="0.0213%" height="15" fill="rgb(231,141,4)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="52.1604%" y="629" width="0.0213%" height="15" fill="rgb(235,77,52)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="52.1604%" y="613" width="0.0213%" height="15" fill="rgb(234,177,39)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="597" width="0.0213%" height="15" fill="rgb(235,115,20)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="607.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="581" width="0.0213%" height="15" fill="rgb(253,153,4)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="591.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="52.1604%" y="565" width="0.0213%" height="15" fill="rgb(229,118,4)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="575.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="52.1604%" y="549" width="0.0213%" height="15" fill="rgb(235,7,13)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="52.1604%" y="533" width="0.0213%" height="15" fill="rgb(213,29,54)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="543.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="52.1604%" y="517" width="0.0213%" height="15" fill="rgb(211,115,35)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="527.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="52.1604%" y="501" width="0.0213%" height="15" fill="rgb(228,100,14)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="511.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="52.1604%" y="485" width="0.0213%" height="15" fill="rgb(213,172,34)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="52.1604%" y="469" width="0.0213%" height="15" fill="rgb(206,110,13)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="479.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="453" width="0.0213%" height="15" fill="rgb(231,53,22)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="463.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="437" width="0.0213%" height="15" fill="rgb(223,174,3)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="421" width="0.0213%" height="15" fill="rgb(219,58,21)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="52.1604%" y="405" width="0.0213%" height="15" fill="rgb(208,190,49)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="415.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="52.1604%" y="389" width="0.0213%" height="15" fill="rgb(230,223,11)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="52.1604%" y="373" width="0.0213%" height="15" fill="rgb(244,176,1)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="383.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="52.1604%" y="357" width="0.0213%" height="15" fill="rgb(241,221,26)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="52.1604%" y="341" width="0.0213%" height="15" fill="rgb(253,156,45)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="351.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="52.1604%" y="325" width="0.0213%" height="15" fill="rgb(251,18,29)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="335.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="52.1604%" y="309" width="0.0213%" height="15" fill="rgb(239,156,34)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="319.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="52.1604%" y="293" width="0.0213%" height="15" fill="rgb(207,59,20)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="303.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="52.1604%" y="277" width="0.0213%" height="15" fill="rgb(249,67,0)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="287.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="52.1604%" y="261" width="0.0213%" height="15" fill="rgb(221,168,4)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="271.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="52.1604%" y="245" width="0.0213%" height="15" fill="rgb(238,221,39)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="255.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="52.1604%" y="229" width="0.0213%" height="15" fill="rgb(216,116,13)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="239.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="52.1604%" y="213" width="0.0213%" height="15" fill="rgb(225,198,27)" fg:x="12241" fg:w="5"/><text x="52.4104%" y="223.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (99 samples, 0.42%)</title><rect x="51.7769%" y="3829" width="0.4219%" height="15" fill="rgb(253,194,34)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3839.50"></text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}} (99 samples, 0.42%)</title><rect x="51.7769%" y="3813" width="0.4219%" height="15" fill="rgb(208,207,45)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3823.50"></text></g><g><title>std::panic::catch_unwind (99 samples, 0.42%)</title><rect x="51.7769%" y="3797" width="0.4219%" height="15" fill="rgb(218,3,25)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3807.50"></text></g><g><title>std::panicking::try (99 samples, 0.42%)</title><rect x="51.7769%" y="3781" width="0.4219%" height="15" fill="rgb(250,8,53)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3791.50"></text></g><g><title>std::panicking::try::do_call (99 samples, 0.42%)</title><rect x="51.7769%" y="3765" width="0.4219%" height="15" fill="rgb(242,32,6)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3775.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (99 samples, 0.42%)</title><rect x="51.7769%" y="3749" width="0.4219%" height="15" fill="rgb(208,124,46)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3759.50"></text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}} (99 samples, 0.42%)</title><rect x="51.7769%" y="3733" width="0.4219%" height="15" fill="rgb(245,80,18)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3743.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (99 samples, 0.42%)</title><rect x="51.7769%" y="3717" width="0.4219%" height="15" fill="rgb(209,36,14)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3727.50"></text></g><g><title><rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn>::spawn::_{{closure}} (99 samples, 0.42%)</title><rect x="51.7769%" y="3701" width="0.4219%" height="15" fill="rgb(253,64,2)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3711.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (99 samples, 0.42%)</title><rect x="51.7769%" y="3685" width="0.4219%" height="15" fill="rgb(238,122,35)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3695.50"></text></g><g><title>rayon_core::registry::main_loop (99 samples, 0.42%)</title><rect x="51.7769%" y="3669" width="0.4219%" height="15" fill="rgb(213,208,17)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3679.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_out_of_work (99 samples, 0.42%)</title><rect x="51.7769%" y="3653" width="0.4219%" height="15" fill="rgb(220,144,4)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3663.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (99 samples, 0.42%)</title><rect x="51.7769%" y="3637" width="0.4219%" height="15" fill="rgb(243,209,11)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3647.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (99 samples, 0.42%)</title><rect x="51.7769%" y="3621" width="0.4219%" height="15" fill="rgb(223,151,23)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3631.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (99 samples, 0.42%)</title><rect x="51.7769%" y="3605" width="0.4219%" height="15" fill="rgb(212,49,47)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3615.50"></text></g><g><title>rayon_core::job::JobRef::execute (99 samples, 0.42%)</title><rect x="51.7769%" y="3589" width="0.4219%" height="15" fill="rgb(250,191,1)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3599.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (99 samples, 0.42%)</title><rect x="51.7769%" y="3573" width="0.4219%" height="15" fill="rgb(218,20,45)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3583.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (99 samples, 0.42%)</title><rect x="51.7769%" y="3557" width="0.4219%" height="15" fill="rgb(239,63,48)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3567.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (99 samples, 0.42%)</title><rect x="51.7769%" y="3541" width="0.4219%" height="15" fill="rgb(233,150,0)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3551.50"></text></g><g><title>std::panic::catch_unwind (99 samples, 0.42%)</title><rect x="51.7769%" y="3525" width="0.4219%" height="15" fill="rgb(208,52,25)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3535.50"></text></g><g><title>std::panicking::try (99 samples, 0.42%)</title><rect x="51.7769%" y="3509" width="0.4219%" height="15" fill="rgb(235,210,16)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3519.50"></text></g><g><title>std::panicking::try::do_call (99 samples, 0.42%)</title><rect x="51.7769%" y="3493" width="0.4219%" height="15" fill="rgb(244,166,50)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3503.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (99 samples, 0.42%)</title><rect x="51.7769%" y="3477" width="0.4219%" height="15" fill="rgb(228,201,9)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3487.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (99 samples, 0.42%)</title><rect x="51.7769%" y="3461" width="0.4219%" height="15" fill="rgb(247,195,43)" fg:x="12151" fg:w="99"/><text x="52.0269%" y="3471.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}}::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3445" width="0.0426%" height="15" fill="rgb(236,61,15)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3455.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3429" width="0.0426%" height="15" fill="rgb(209,141,24)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3439.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="52.1561%" y="3413" width="0.0426%" height="15" fill="rgb(226,134,12)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3423.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="52.1561%" y="3397" width="0.0426%" height="15" fill="rgb(237,4,25)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3407.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="52.1561%" y="3381" width="0.0426%" height="15" fill="rgb(206,70,41)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3391.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="52.1561%" y="3365" width="0.0426%" height="15" fill="rgb(232,56,2)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3375.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="52.1561%" y="3349" width="0.0426%" height="15" fill="rgb(221,49,19)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3333" width="0.0426%" height="15" fill="rgb(235,78,7)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3317" width="0.0426%" height="15" fill="rgb(218,80,26)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="52.1561%" y="3301" width="0.0426%" height="15" fill="rgb(205,47,4)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="52.1561%" y="3285" width="0.0426%" height="15" fill="rgb(209,94,54)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="52.1561%" y="3269" width="0.0426%" height="15" fill="rgb(234,211,42)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3253" width="0.0426%" height="15" fill="rgb(227,78,30)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3263.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="52.1561%" y="3237" width="0.0426%" height="15" fill="rgb(212,221,30)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3247.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="52.1561%" y="3221" width="0.0426%" height="15" fill="rgb(213,160,10)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3231.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="52.1561%" y="3205" width="0.0426%" height="15" fill="rgb(223,19,28)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3215.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="52.1561%" y="3189" width="0.0426%" height="15" fill="rgb(241,107,51)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3199.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="52.1561%" y="3173" width="0.0426%" height="15" fill="rgb(235,154,23)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3157" width="0.0426%" height="15" fill="rgb(245,1,51)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3141" width="0.0426%" height="15" fill="rgb(228,56,34)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="52.1561%" y="3125" width="0.0426%" height="15" fill="rgb(211,120,9)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="52.1561%" y="3109" width="0.0426%" height="15" fill="rgb(244,44,4)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="52.1561%" y="3093" width="0.0426%" height="15" fill="rgb(227,125,22)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="3077" width="0.0426%" height="15" fill="rgb(239,70,32)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="52.1561%" y="3061" width="0.0426%" height="15" fill="rgb(243,60,43)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="52.1561%" y="3045" width="0.0426%" height="15" fill="rgb(248,73,39)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3055.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="52.1561%" y="3029" width="0.0426%" height="15" fill="rgb(249,223,11)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="52.1561%" y="3013" width="0.0426%" height="15" fill="rgb(232,92,47)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="52.1561%" y="2997" width="0.0426%" height="15" fill="rgb(214,203,14)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="2981" width="0.0426%" height="15" fill="rgb(215,193,31)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="2965" width="0.0426%" height="15" fill="rgb(226,150,22)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="52.1561%" y="2949" width="0.0426%" height="15" fill="rgb(246,114,29)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="52.1561%" y="2933" width="0.0426%" height="15" fill="rgb(232,121,43)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="52.1561%" y="2917" width="0.0426%" height="15" fill="rgb(247,176,13)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="2901" width="0.0426%" height="15" fill="rgb(236,156,32)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="52.1561%" y="2885" width="0.0426%" height="15" fill="rgb(235,141,3)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="52.1561%" y="2869" width="0.0426%" height="15" fill="rgb(233,30,25)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2879.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="52.1561%" y="2853" width="0.0426%" height="15" fill="rgb(214,199,27)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="52.1561%" y="2837" width="0.0426%" height="15" fill="rgb(242,210,52)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="52.1561%" y="2821" width="0.0426%" height="15" fill="rgb(229,175,34)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="2805" width="0.0426%" height="15" fill="rgb(222,27,8)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="2789" width="0.0426%" height="15" fill="rgb(253,196,8)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="52.1561%" y="2773" width="0.0426%" height="15" fill="rgb(245,47,4)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="52.1561%" y="2757" width="0.0426%" height="15" fill="rgb(217,165,0)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="52.1561%" y="2741" width="0.0426%" height="15" fill="rgb(237,229,12)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="52.1561%" y="2725" width="0.0426%" height="15" fill="rgb(214,35,13)" fg:x="12240" fg:w="10"/><text x="52.4061%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="52.1604%" y="2709" width="0.0384%" height="15" fill="rgb(241,229,33)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="52.1604%" y="2693" width="0.0384%" height="15" fill="rgb(249,54,31)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2703.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="52.1604%" y="2677" width="0.0384%" height="15" fill="rgb(228,96,51)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="52.1604%" y="2661" width="0.0384%" height="15" fill="rgb(208,67,38)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="52.1604%" y="2645" width="0.0384%" height="15" fill="rgb(208,59,42)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2629" width="0.0384%" height="15" fill="rgb(210,47,29)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2613" width="0.0384%" height="15" fill="rgb(227,163,47)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="52.1604%" y="2597" width="0.0384%" height="15" fill="rgb(230,100,5)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="52.1604%" y="2581" width="0.0384%" height="15" fill="rgb(209,67,4)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="52.1604%" y="2565" width="0.0384%" height="15" fill="rgb(251,199,40)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2549" width="0.0384%" height="15" fill="rgb(236,132,16)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="52.1604%" y="2533" width="0.0384%" height="15" fill="rgb(245,20,10)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="52.1604%" y="2517" width="0.0384%" height="15" fill="rgb(242,188,8)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2527.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="52.1604%" y="2501" width="0.0384%" height="15" fill="rgb(226,19,51)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="52.1604%" y="2485" width="0.0384%" height="15" fill="rgb(218,45,15)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="52.1604%" y="2469" width="0.0384%" height="15" fill="rgb(221,207,33)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2453" width="0.0384%" height="15" fill="rgb(206,180,25)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2437" width="0.0384%" height="15" fill="rgb(245,48,40)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="52.1604%" y="2421" width="0.0384%" height="15" fill="rgb(252,19,10)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="52.1604%" y="2405" width="0.0384%" height="15" fill="rgb(217,119,53)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="52.1604%" y="2389" width="0.0384%" height="15" fill="rgb(254,67,46)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2373" width="0.0384%" height="15" fill="rgb(216,94,15)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (9 samples, 0.04%)</title><rect x="52.1604%" y="2357" width="0.0384%" height="15" fill="rgb(232,134,47)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="52.1604%" y="2341" width="0.0384%" height="15" fill="rgb(249,166,29)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (9 samples, 0.04%)</title><rect x="52.1604%" y="2325" width="0.0384%" height="15" fill="rgb(221,36,33)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (9 samples, 0.04%)</title><rect x="52.1604%" y="2309" width="0.0384%" height="15" fill="rgb(251,109,6)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (9 samples, 0.04%)</title><rect x="52.1604%" y="2293" width="0.0384%" height="15" fill="rgb(217,147,7)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (9 samples, 0.04%)</title><rect x="52.1604%" y="2277" width="0.0384%" height="15" fill="rgb(222,112,5)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="52.1604%" y="2261" width="0.0384%" height="15" fill="rgb(232,133,14)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="52.1604%" y="2245" width="0.0384%" height="15" fill="rgb(239,23,3)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2255.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="52.1604%" y="2229" width="0.0384%" height="15" fill="rgb(244,192,24)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="52.1604%" y="2213" width="0.0384%" height="15" fill="rgb(245,158,14)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="52.1604%" y="2197" width="0.0384%" height="15" fill="rgb(221,169,43)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2181" width="0.0384%" height="15" fill="rgb(244,228,52)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2165" width="0.0384%" height="15" fill="rgb(221,201,45)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2149" width="0.0384%" height="15" fill="rgb(244,101,3)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="52.1604%" y="2133" width="0.0384%" height="15" fill="rgb(242,211,29)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="52.1604%" y="2117" width="0.0384%" height="15" fill="rgb(236,219,37)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="52.1604%" y="2101" width="0.0384%" height="15" fill="rgb(239,146,38)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="52.1604%" y="2085" width="0.0384%" height="15" fill="rgb(226,220,51)" fg:x="12241" fg:w="9"/><text x="52.4104%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="52.1817%" y="2069" width="0.0170%" height="15" fill="rgb(248,116,6)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="52.1817%" y="2053" width="0.0170%" height="15" fill="rgb(238,6,34)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="2063.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="52.1817%" y="2037" width="0.0170%" height="15" fill="rgb(253,175,45)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="52.1817%" y="2021" width="0.0170%" height="15" fill="rgb(217,49,42)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="52.1817%" y="2005" width="0.0170%" height="15" fill="rgb(238,3,0)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1817%" y="1989" width="0.0170%" height="15" fill="rgb(244,151,41)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1817%" y="1973" width="0.0170%" height="15" fill="rgb(227,46,40)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="52.1817%" y="1957" width="0.0170%" height="15" fill="rgb(235,156,5)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="52.1817%" y="1941" width="0.0170%" height="15" fill="rgb(212,28,35)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="52.1817%" y="1925" width="0.0170%" height="15" fill="rgb(219,172,10)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="52.1817%" y="1909" width="0.0170%" height="15" fill="rgb(252,71,33)" fg:x="12246" fg:w="4"/><text x="52.4317%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="52.1860%" y="1893" width="0.0128%" height="15" fill="rgb(225,220,27)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="52.1860%" y="1877" width="0.0128%" height="15" fill="rgb(227,137,16)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1887.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="52.1860%" y="1861" width="0.0128%" height="15" fill="rgb(240,196,50)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="52.1860%" y="1845" width="0.0128%" height="15" fill="rgb(207,200,8)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="52.1860%" y="1829" width="0.0128%" height="15" fill="rgb(250,126,8)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="52.1860%" y="1813" width="0.0128%" height="15" fill="rgb(207,8,45)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="52.1860%" y="1797" width="0.0128%" height="15" fill="rgb(227,157,45)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="52.1860%" y="1781" width="0.0128%" height="15" fill="rgb(208,109,49)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="52.1860%" y="1765" width="0.0128%" height="15" fill="rgb(225,65,49)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="52.1860%" y="1749" width="0.0128%" height="15" fill="rgb(231,159,13)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="52.1860%" y="1733" width="0.0128%" height="15" fill="rgb(229,123,6)" fg:x="12247" fg:w="3"/><text x="52.4360%" y="1743.50"></text></g><g><title>core::slice::memchr::memchr_aligned (129 samples, 0.55%)</title><rect x="52.1987%" y="3829" width="0.5497%" height="15" fill="rgb(223,205,0)" fg:x="12250" fg:w="129"/><text x="52.4487%" y="3839.50"></text></g><g><title>alloc::vec::Vec<T,A>::push (3 samples, 0.01%)</title><rect x="52.7740%" y="3781" width="0.0128%" height="15" fill="rgb(234,23,23)" fg:x="12385" fg:w="3"/><text x="53.0240%" y="3791.50"></text></g><g><title><core::str::iter::Lines as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="52.7868%" y="3765" width="0.0384%" height="15" fill="rgb(232,227,11)" fg:x="12388" fg:w="9"/><text x="53.0368%" y="3775.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="52.7868%" y="3749" width="0.0384%" height="15" fill="rgb(220,219,25)" fg:x="12388" fg:w="9"/><text x="53.0368%" y="3759.50"></text></g><g><title><core::str::iter::SplitInclusive<P> as core::iter::traits::iterator::Iterator>::next (9 samples, 0.04%)</title><rect x="52.7868%" y="3733" width="0.0384%" height="15" fill="rgb(246,55,5)" fg:x="12388" fg:w="9"/><text x="53.0368%" y="3743.50"></text></g><g><title>core::str::iter::SplitInternal<P>::next_inclusive (9 samples, 0.04%)</title><rect x="52.7868%" y="3717" width="0.0384%" height="15" fill="rgb(239,90,32)" fg:x="12388" fg:w="9"/><text x="53.0368%" y="3727.50"></text></g><g><title><core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match (9 samples, 0.04%)</title><rect x="52.7868%" y="3701" width="0.0384%" height="15" fill="rgb(210,32,13)" fg:x="12388" fg:w="9"/><text x="53.0368%" y="3711.50"></text></g><g><title>core::slice::memchr::memchr (9 samples, 0.04%)</title><rect x="52.7868%" y="3685" width="0.0384%" height="15" fill="rgb(213,121,5)" fg:x="12388" fg:w="9"/><text x="53.0368%" y="3695.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::for_each (124 samples, 0.53%)</title><rect x="52.7740%" y="3813" width="0.5284%" height="15" fill="rgb(224,13,0)" fg:x="12385" fg:w="124"/><text x="53.0240%" y="3823.50"></text></g><g><title>day_11::part2::_{{closure}} (124 samples, 0.53%)</title><rect x="52.7740%" y="3797" width="0.5284%" height="15" fill="rgb(248,173,52)" fg:x="12385" fg:w="124"/><text x="53.0240%" y="3807.50"></text></g><g><title>core::iter::traits::iterator::Iterator::nth (121 samples, 0.52%)</title><rect x="52.7868%" y="3781" width="0.5156%" height="15" fill="rgb(227,193,18)" fg:x="12388" fg:w="121"/><text x="53.0368%" y="3791.50"></text></g><g><title>core::iter::traits::iterator::Iterator::advance_by (112 samples, 0.48%)</title><rect x="52.8251%" y="3765" width="0.4772%" height="15" fill="rgb(221,87,34)" fg:x="12397" fg:w="112"/><text x="53.0751%" y="3775.50"></text></g><g><title><core::str::iter::Lines as core::iter::traits::iterator::Iterator>::next (112 samples, 0.48%)</title><rect x="52.8251%" y="3749" width="0.4772%" height="15" fill="rgb(217,30,3)" fg:x="12397" fg:w="112"/><text x="53.0751%" y="3759.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (112 samples, 0.48%)</title><rect x="52.8251%" y="3733" width="0.4772%" height="15" fill="rgb(237,109,30)" fg:x="12397" fg:w="112"/><text x="53.0751%" y="3743.50"></text></g><g><title><core::str::iter::SplitInclusive<P> as core::iter::traits::iterator::Iterator>::next (112 samples, 0.48%)</title><rect x="52.8251%" y="3717" width="0.4772%" height="15" fill="rgb(232,92,45)" fg:x="12397" fg:w="112"/><text x="53.0751%" y="3727.50"></text></g><g><title>core::str::iter::SplitInternal<P>::next_inclusive (112 samples, 0.48%)</title><rect x="52.8251%" y="3701" width="0.4772%" height="15" fill="rgb(234,8,6)" fg:x="12397" fg:w="112"/><text x="53.0751%" y="3711.50"></text></g><g><title><core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match (112 samples, 0.48%)</title><rect x="52.8251%" y="3685" width="0.4772%" height="15" fill="rgb(235,221,23)" fg:x="12397" fg:w="112"/><text x="53.0751%" y="3695.50"></text></g><g><title>core::slice::memchr::memchr (112 samples, 0.48%)</title><rect x="52.8251%" y="3669" width="0.4772%" height="15" fill="rgb(250,59,45)" fg:x="12397" fg:w="112"/><text x="53.0751%" y="3679.50"></text></g><g><title>day_11::part2 (127 samples, 0.54%)</title><rect x="52.7740%" y="3829" width="0.5412%" height="15" fill="rgb(236,23,0)" fg:x="12385" fg:w="127"/><text x="53.0240%" y="3839.50"></text></g><g><title>core::ptr::drop_in_place<alloc::vec::Vec<day_11::Point>> (3 samples, 0.01%)</title><rect x="53.3024%" y="3813" width="0.0128%" height="15" fill="rgb(208,128,24)" fg:x="12509" fg:w="3"/><text x="53.5524%" y="3823.50"></text></g><g><title>core::ptr::drop_in_place<alloc::raw_vec::RawVec<day_11::Point>> (3 samples, 0.01%)</title><rect x="53.3024%" y="3797" width="0.0128%" height="15" fill="rgb(235,27,46)" fg:x="12509" fg:w="3"/><text x="53.5524%" y="3807.50"></text></g><g><title><alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop (3 samples, 0.01%)</title><rect x="53.3024%" y="3781" width="0.0128%" height="15" fill="rgb(206,19,20)" fg:x="12509" fg:w="3"/><text x="53.5524%" y="3791.50"></text></g><g><title><alloc::alloc::Global as core::alloc::Allocator>::deallocate (3 samples, 0.01%)</title><rect x="53.3024%" y="3765" width="0.0128%" height="15" fill="rgb(236,178,5)" fg:x="12509" fg:w="3"/><text x="53.5524%" y="3775.50"></text></g><g><title>alloc::alloc::dealloc (3 samples, 0.01%)</title><rect x="53.3024%" y="3749" width="0.0128%" height="15" fill="rgb(240,120,37)" fg:x="12509" fg:w="3"/><text x="53.5524%" y="3759.50"></text></g><g><title>exp (337 samples, 1.44%)</title><rect x="53.3152%" y="3829" width="1.4360%" height="15" fill="rgb(225,137,33)" fg:x="12512" fg:w="337"/><text x="53.5652%" y="3839.50"></text></g><g><title>malloc (4 samples, 0.02%)</title><rect x="54.7512%" y="3829" width="0.0170%" height="15" fill="rgb(228,206,9)" fg:x="12849" fg:w="4"/><text x="55.0012%" y="3839.50"></text></g><g><title>oorandom::Rand64::rand_range (50 samples, 0.21%)</title><rect x="54.7682%" y="3829" width="0.2131%" height="15" fill="rgb(213,81,24)" fg:x="12853" fg:w="50"/><text x="55.0182%" y="3839.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="54.9855%" y="3541" width="0.0170%" height="15" fill="rgb(229,31,0)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="54.9855%" y="3525" width="0.0170%" height="15" fill="rgb(242,91,22)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3535.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="54.9855%" y="3509" width="0.0170%" height="15" fill="rgb(237,84,32)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3519.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="54.9855%" y="3493" width="0.0170%" height="15" fill="rgb(222,134,6)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3503.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="54.9855%" y="3477" width="0.0170%" height="15" fill="rgb(235,88,33)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3487.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="54.9855%" y="3461" width="0.0170%" height="15" fill="rgb(226,27,28)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3471.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="54.9855%" y="3445" width="0.0170%" height="15" fill="rgb(251,0,48)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3455.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="54.9855%" y="3429" width="0.0170%" height="15" fill="rgb(246,5,23)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3439.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="54.9855%" y="3413" width="0.0170%" height="15" fill="rgb(208,138,3)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3423.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="54.9855%" y="3397" width="0.0170%" height="15" fill="rgb(209,201,31)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3407.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="54.9855%" y="3381" width="0.0170%" height="15" fill="rgb(224,209,31)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3391.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="54.9855%" y="3365" width="0.0170%" height="15" fill="rgb(235,75,16)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3375.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="54.9855%" y="3349" width="0.0170%" height="15" fill="rgb(250,163,54)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="54.9855%" y="3333" width="0.0170%" height="15" fill="rgb(248,123,5)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.9855%" y="3317" width="0.0170%" height="15" fill="rgb(207,29,45)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3327.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="54.9855%" y="3301" width="0.0170%" height="15" fill="rgb(237,74,48)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3311.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.9855%" y="3285" width="0.0170%" height="15" fill="rgb(236,33,43)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="54.9855%" y="3269" width="0.0170%" height="15" fill="rgb(214,37,49)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3279.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="54.9855%" y="3253" width="0.0170%" height="15" fill="rgb(217,150,27)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="54.9855%" y="3237" width="0.0170%" height="15" fill="rgb(221,171,32)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="54.9855%" y="3221" width="0.0170%" height="15" fill="rgb(241,218,15)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.9855%" y="3205" width="0.0170%" height="15" fill="rgb(222,31,49)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3215.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="54.9855%" y="3189" width="0.0170%" height="15" fill="rgb(236,107,24)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3199.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.9855%" y="3173" width="0.0170%" height="15" fill="rgb(227,108,18)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="54.9855%" y="3157" width="0.0170%" height="15" fill="rgb(240,217,36)" fg:x="12904" fg:w="4"/><text x="55.2355%" y="3167.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="54.9855%" y="3653" width="0.0213%" height="15" fill="rgb(238,218,6)" fg:x="12904" fg:w="5"/><text x="55.2355%" y="3663.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="54.9855%" y="3637" width="0.0213%" height="15" fill="rgb(221,136,0)" fg:x="12904" fg:w="5"/><text x="55.2355%" y="3647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="54.9855%" y="3621" width="0.0213%" height="15" fill="rgb(250,184,54)" fg:x="12904" fg:w="5"/><text x="55.2355%" y="3631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="54.9855%" y="3605" width="0.0213%" height="15" fill="rgb(219,207,9)" fg:x="12904" fg:w="5"/><text x="55.2355%" y="3615.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="54.9855%" y="3589" width="0.0213%" height="15" fill="rgb(209,136,15)" fg:x="12904" fg:w="5"/><text x="55.2355%" y="3599.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="54.9855%" y="3573" width="0.0213%" height="15" fill="rgb(217,105,42)" fg:x="12904" fg:w="5"/><text x="55.2355%" y="3583.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="54.9855%" y="3557" width="0.0213%" height="15" fill="rgb(222,94,31)" fg:x="12904" fg:w="5"/><text x="55.2355%" y="3567.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="54.9855%" y="3765" width="0.0298%" height="15" fill="rgb(217,138,31)" fg:x="12904" fg:w="7"/><text x="55.2355%" y="3775.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="54.9855%" y="3749" width="0.0298%" height="15" fill="rgb(208,127,28)" fg:x="12904" fg:w="7"/><text x="55.2355%" y="3759.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="54.9855%" y="3733" width="0.0298%" height="15" fill="rgb(217,174,10)" fg:x="12904" fg:w="7"/><text x="55.2355%" y="3743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="54.9855%" y="3717" width="0.0298%" height="15" fill="rgb(234,4,4)" fg:x="12904" fg:w="7"/><text x="55.2355%" y="3727.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="54.9855%" y="3701" width="0.0298%" height="15" fill="rgb(231,203,0)" fg:x="12904" fg:w="7"/><text x="55.2355%" y="3711.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="54.9855%" y="3685" width="0.0298%" height="15" fill="rgb(229,3,16)" fg:x="12904" fg:w="7"/><text x="55.2355%" y="3695.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="54.9855%" y="3669" width="0.0298%" height="15" fill="rgb(254,49,49)" fg:x="12904" fg:w="7"/><text x="55.2355%" y="3679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="55.0153%" y="3029" width="0.0170%" height="15" fill="rgb(231,33,8)" fg:x="12911" fg:w="4"/><text x="55.2653%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0153%" y="3013" width="0.0170%" height="15" fill="rgb(239,24,52)" fg:x="12911" fg:w="4"/><text x="55.2653%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0153%" y="2997" width="0.0170%" height="15" fill="rgb(242,91,35)" fg:x="12911" fg:w="4"/><text x="55.2653%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.0153%" y="2981" width="0.0170%" height="15" fill="rgb(254,181,15)" fg:x="12911" fg:w="4"/><text x="55.2653%" y="2991.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="55.0153%" y="2965" width="0.0170%" height="15" fill="rgb(229,41,9)" fg:x="12911" fg:w="4"/><text x="55.2653%" y="2975.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="55.0153%" y="2949" width="0.0170%" height="15" fill="rgb(230,192,7)" fg:x="12911" fg:w="4"/><text x="55.2653%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0153%" y="2933" width="0.0170%" height="15" fill="rgb(248,22,30)" fg:x="12911" fg:w="4"/><text x="55.2653%" y="2943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.0196%" y="2917" width="0.0128%" height="15" fill="rgb(253,108,23)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2927.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.0196%" y="2901" width="0.0128%" height="15" fill="rgb(226,128,16)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2911.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.0196%" y="2885" width="0.0128%" height="15" fill="rgb(241,161,27)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2895.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.0196%" y="2869" width="0.0128%" height="15" fill="rgb(246,219,34)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.0196%" y="2853" width="0.0128%" height="15" fill="rgb(237,128,1)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0196%" y="2837" width="0.0128%" height="15" fill="rgb(221,222,44)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0196%" y="2821" width="0.0128%" height="15" fill="rgb(234,34,6)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.0196%" y="2805" width="0.0128%" height="15" fill="rgb(222,172,8)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.0196%" y="2789" width="0.0128%" height="15" fill="rgb(228,146,48)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2799.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.0196%" y="2773" width="0.0128%" height="15" fill="rgb(224,156,29)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2783.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.0196%" y="2757" width="0.0128%" height="15" fill="rgb(228,76,46)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2767.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.0196%" y="2741" width="0.0128%" height="15" fill="rgb(211,23,20)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2751.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.0196%" y="2725" width="0.0128%" height="15" fill="rgb(254,16,10)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2735.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.0196%" y="2709" width="0.0128%" height="15" fill="rgb(226,42,2)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2719.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.0196%" y="2693" width="0.0128%" height="15" fill="rgb(250,106,45)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2703.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0196%" y="2677" width="0.0128%" height="15" fill="rgb(216,63,54)" fg:x="12912" fg:w="3"/><text x="55.2696%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="55.0153%" y="3141" width="0.0298%" height="15" fill="rgb(235,100,28)" fg:x="12911" fg:w="7"/><text x="55.2653%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="55.0153%" y="3125" width="0.0298%" height="15" fill="rgb(246,166,32)" fg:x="12911" fg:w="7"/><text x="55.2653%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="55.0153%" y="3109" width="0.0298%" height="15" fill="rgb(222,0,7)" fg:x="12911" fg:w="7"/><text x="55.2653%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="55.0153%" y="3093" width="0.0298%" height="15" fill="rgb(217,212,29)" fg:x="12911" fg:w="7"/><text x="55.2653%" y="3103.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="55.0153%" y="3077" width="0.0298%" height="15" fill="rgb(246,12,40)" fg:x="12911" fg:w="7"/><text x="55.2653%" y="3087.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="55.0153%" y="3061" width="0.0298%" height="15" fill="rgb(251,109,48)" fg:x="12911" fg:w="7"/><text x="55.2653%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="55.0153%" y="3045" width="0.0298%" height="15" fill="rgb(251,106,43)" fg:x="12911" fg:w="7"/><text x="55.2653%" y="3055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.0324%" y="3029" width="0.0128%" height="15" fill="rgb(244,58,19)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="3039.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.0324%" y="3013" width="0.0128%" height="15" fill="rgb(208,169,22)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="3023.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.0324%" y="2997" width="0.0128%" height="15" fill="rgb(242,108,2)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="3007.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.0324%" y="2981" width="0.0128%" height="15" fill="rgb(216,121,0)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.0324%" y="2965" width="0.0128%" height="15" fill="rgb(221,145,52)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0324%" y="2949" width="0.0128%" height="15" fill="rgb(249,224,1)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0324%" y="2933" width="0.0128%" height="15" fill="rgb(219,182,49)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.0324%" y="2917" width="0.0128%" height="15" fill="rgb(212,219,9)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2927.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="55.0324%" y="2901" width="0.0128%" height="15" fill="rgb(226,201,32)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2911.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="55.0324%" y="2885" width="0.0128%" height="15" fill="rgb(254,218,4)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0324%" y="2869" width="0.0128%" height="15" fill="rgb(242,182,45)" fg:x="12915" fg:w="3"/><text x="55.2824%" y="2879.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="55.0153%" y="3253" width="0.0469%" height="15" fill="rgb(206,132,54)" fg:x="12911" fg:w="11"/><text x="55.2653%" y="3263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="55.0153%" y="3237" width="0.0469%" height="15" fill="rgb(220,201,22)" fg:x="12911" fg:w="11"/><text x="55.2653%" y="3247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="55.0153%" y="3221" width="0.0469%" height="15" fill="rgb(238,0,34)" fg:x="12911" fg:w="11"/><text x="55.2653%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="55.0153%" y="3205" width="0.0469%" height="15" fill="rgb(236,148,10)" fg:x="12911" fg:w="11"/><text x="55.2653%" y="3215.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="55.0153%" y="3189" width="0.0469%" height="15" fill="rgb(205,134,28)" fg:x="12911" fg:w="11"/><text x="55.2653%" y="3199.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="55.0153%" y="3173" width="0.0469%" height="15" fill="rgb(220,74,43)" fg:x="12911" fg:w="11"/><text x="55.2653%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="55.0153%" y="3157" width="0.0469%" height="15" fill="rgb(237,205,52)" fg:x="12911" fg:w="11"/><text x="55.2653%" y="3167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.0494%" y="3141" width="0.0128%" height="15" fill="rgb(250,191,38)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3151.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.0494%" y="3125" width="0.0128%" height="15" fill="rgb(210,56,39)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3135.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.0494%" y="3109" width="0.0128%" height="15" fill="rgb(247,40,30)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3119.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.0494%" y="3093" width="0.0128%" height="15" fill="rgb(221,206,44)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.0494%" y="3077" width="0.0128%" height="15" fill="rgb(247,32,43)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0494%" y="3061" width="0.0128%" height="15" fill="rgb(219,63,4)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0494%" y="3045" width="0.0128%" height="15" fill="rgb(223,141,39)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.0494%" y="3029" width="0.0128%" height="15" fill="rgb(229,6,54)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3039.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="55.0494%" y="3013" width="0.0128%" height="15" fill="rgb(233,154,30)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3023.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="55.0494%" y="2997" width="0.0128%" height="15" fill="rgb(227,5,20)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0494%" y="2981" width="0.0128%" height="15" fill="rgb(210,116,17)" fg:x="12919" fg:w="3"/><text x="55.2994%" y="2991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="55.0622%" y="3253" width="0.0213%" height="15" fill="rgb(229,141,48)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="55.0622%" y="3237" width="0.0213%" height="15" fill="rgb(212,94,47)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3247.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="3221" width="0.0213%" height="15" fill="rgb(249,227,24)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3231.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="3205" width="0.0213%" height="15" fill="rgb(250,208,46)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3215.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="3189" width="0.0213%" height="15" fill="rgb(230,79,40)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3199.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="55.0622%" y="3173" width="0.0213%" height="15" fill="rgb(220,90,44)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3183.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="3157" width="0.0213%" height="15" fill="rgb(232,109,24)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3167.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="3141" width="0.0213%" height="15" fill="rgb(225,38,1)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3151.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="3125" width="0.0213%" height="15" fill="rgb(231,134,16)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3135.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="3109" width="0.0213%" height="15" fill="rgb(237,127,2)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3119.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="3093" width="0.0213%" height="15" fill="rgb(251,172,48)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3103.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="3077" width="0.0213%" height="15" fill="rgb(247,163,37)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="3061" width="0.0213%" height="15" fill="rgb(228,42,15)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="3045" width="0.0213%" height="15" fill="rgb(252,22,23)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="3029" width="0.0213%" height="15" fill="rgb(219,144,18)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3039.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="3013" width="0.0213%" height="15" fill="rgb(209,143,17)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3023.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="2997" width="0.0213%" height="15" fill="rgb(245,136,48)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2981" width="0.0213%" height="15" fill="rgb(230,80,13)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="55.0622%" y="2965" width="0.0213%" height="15" fill="rgb(230,3,49)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="55.0622%" y="2949" width="0.0213%" height="15" fill="rgb(225,227,43)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2959.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="2933" width="0.0213%" height="15" fill="rgb(223,109,6)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2943.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="2917" width="0.0213%" height="15" fill="rgb(215,228,4)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2927.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="2901" width="0.0213%" height="15" fill="rgb(216,224,40)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2911.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="55.0622%" y="2885" width="0.0213%" height="15" fill="rgb(222,86,34)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2895.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="2869" width="0.0213%" height="15" fill="rgb(228,186,14)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2879.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="2853" width="0.0213%" height="15" fill="rgb(238,165,36)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2863.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="2837" width="0.0213%" height="15" fill="rgb(222,77,11)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2847.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="2821" width="0.0213%" height="15" fill="rgb(226,31,14)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2831.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="2805" width="0.0213%" height="15" fill="rgb(236,171,54)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2815.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2789" width="0.0213%" height="15" fill="rgb(252,149,22)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2773" width="0.0213%" height="15" fill="rgb(239,172,51)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2757" width="0.0213%" height="15" fill="rgb(221,229,26)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="2741" width="0.0213%" height="15" fill="rgb(249,71,15)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2751.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="2725" width="0.0213%" height="15" fill="rgb(245,228,18)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="2709" width="0.0213%" height="15" fill="rgb(212,6,10)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2693" width="0.0213%" height="15" fill="rgb(226,102,27)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="2677" width="0.0213%" height="15" fill="rgb(210,146,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="2661" width="0.0213%" height="15" fill="rgb(232,133,39)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2671.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="2645" width="0.0213%" height="15" fill="rgb(205,182,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="2629" width="0.0213%" height="15" fill="rgb(252,94,37)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="2613" width="0.0213%" height="15" fill="rgb(235,98,49)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2623.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2597" width="0.0213%" height="15" fill="rgb(226,128,4)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2581" width="0.0213%" height="15" fill="rgb(236,109,15)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="2565" width="0.0213%" height="15" fill="rgb(234,34,1)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2575.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="2549" width="0.0213%" height="15" fill="rgb(208,223,19)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="2533" width="0.0213%" height="15" fill="rgb(238,116,26)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2517" width="0.0213%" height="15" fill="rgb(235,19,54)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="55.0622%" y="2501" width="0.0213%" height="15" fill="rgb(223,179,25)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="55.0622%" y="2485" width="0.0213%" height="15" fill="rgb(217,88,23)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="2469" width="0.0213%" height="15" fill="rgb(219,73,26)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2479.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="2453" width="0.0213%" height="15" fill="rgb(213,200,43)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2463.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="2437" width="0.0213%" height="15" fill="rgb(213,43,18)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="55.0622%" y="2421" width="0.0213%" height="15" fill="rgb(220,91,50)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2431.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="2405" width="0.0213%" height="15" fill="rgb(205,63,14)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2415.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="2389" width="0.0213%" height="15" fill="rgb(223,81,27)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2399.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="2373" width="0.0213%" height="15" fill="rgb(212,99,23)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2383.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="2357" width="0.0213%" height="15" fill="rgb(213,21,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2367.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="2341" width="0.0213%" height="15" fill="rgb(250,107,27)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2351.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2325" width="0.0213%" height="15" fill="rgb(219,105,37)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2309" width="0.0213%" height="15" fill="rgb(234,126,46)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2293" width="0.0213%" height="15" fill="rgb(252,153,41)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="2277" width="0.0213%" height="15" fill="rgb(244,62,40)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2287.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="2261" width="0.0213%" height="15" fill="rgb(207,163,51)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2271.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="2245" width="0.0213%" height="15" fill="rgb(217,197,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2229" width="0.0213%" height="15" fill="rgb(239,222,1)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="2213" width="0.0213%" height="15" fill="rgb(217,109,40)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="2197" width="0.0213%" height="15" fill="rgb(242,127,46)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2207.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="2181" width="0.0213%" height="15" fill="rgb(249,154,13)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="2165" width="0.0213%" height="15" fill="rgb(222,185,6)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="2149" width="0.0213%" height="15" fill="rgb(244,73,45)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2159.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2133" width="0.0213%" height="15" fill="rgb(230,46,50)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2117" width="0.0213%" height="15" fill="rgb(252,9,50)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="2101" width="0.0213%" height="15" fill="rgb(208,65,46)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2111.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="2085" width="0.0213%" height="15" fill="rgb(221,105,6)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2095.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="2069" width="0.0213%" height="15" fill="rgb(214,215,38)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="2053" width="0.0213%" height="15" fill="rgb(254,77,51)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2063.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="2037" width="0.0213%" height="15" fill="rgb(216,165,43)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2047.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="2021" width="0.0213%" height="15" fill="rgb(220,180,14)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2031.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="2005" width="0.0213%" height="15" fill="rgb(225,56,40)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="2015.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="1989" width="0.0213%" height="15" fill="rgb(206,3,23)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1999.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="1973" width="0.0213%" height="15" fill="rgb(235,77,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1983.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1957" width="0.0213%" height="15" fill="rgb(234,25,2)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1941" width="0.0213%" height="15" fill="rgb(240,106,4)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="1925" width="0.0213%" height="15" fill="rgb(237,21,38)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1935.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="1909" width="0.0213%" height="15" fill="rgb(219,227,25)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1919.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="1893" width="0.0213%" height="15" fill="rgb(226,104,51)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1877" width="0.0213%" height="15" fill="rgb(254,190,51)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="1861" width="0.0213%" height="15" fill="rgb(209,157,20)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="1845" width="0.0213%" height="15" fill="rgb(243,165,34)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1855.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="1829" width="0.0213%" height="15" fill="rgb(220,199,2)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="1813" width="0.0213%" height="15" fill="rgb(208,207,17)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="1797" width="0.0213%" height="15" fill="rgb(226,175,12)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1781" width="0.0213%" height="15" fill="rgb(224,90,3)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1765" width="0.0213%" height="15" fill="rgb(242,154,4)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="1749" width="0.0213%" height="15" fill="rgb(226,46,12)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1759.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="1733" width="0.0213%" height="15" fill="rgb(234,149,24)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1743.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="1717" width="0.0213%" height="15" fill="rgb(218,205,14)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1701" width="0.0213%" height="15" fill="rgb(232,40,48)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1711.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="55.0622%" y="1685" width="0.0213%" height="15" fill="rgb(220,181,20)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1669" width="0.0213%" height="15" fill="rgb(240,60,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1653" width="0.0213%" height="15" fill="rgb(235,87,36)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="1637" width="0.0213%" height="15" fill="rgb(241,83,0)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1647.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="1621" width="0.0213%" height="15" fill="rgb(205,102,2)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1631.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="1605" width="0.0213%" height="15" fill="rgb(210,98,12)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1589" width="0.0213%" height="15" fill="rgb(235,59,3)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1599.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="55.0622%" y="1573" width="0.0213%" height="15" fill="rgb(240,169,20)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1557" width="0.0213%" height="15" fill="rgb(218,226,32)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1541" width="0.0213%" height="15" fill="rgb(220,110,54)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="1525" width="0.0213%" height="15" fill="rgb(226,32,27)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1535.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="1509" width="0.0213%" height="15" fill="rgb(228,138,45)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1519.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="1493" width="0.0213%" height="15" fill="rgb(209,29,43)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1477" width="0.0213%" height="15" fill="rgb(218,207,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="55.0622%" y="1461" width="0.0213%" height="15" fill="rgb(251,189,20)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1471.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="55.0622%" y="1445" width="0.0213%" height="15" fill="rgb(245,188,25)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1455.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="1429" width="0.0213%" height="15" fill="rgb(240,196,45)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1439.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="1413" width="0.0213%" height="15" fill="rgb(217,35,1)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1423.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="1397" width="0.0213%" height="15" fill="rgb(253,55,32)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1407.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="55.0622%" y="1381" width="0.0213%" height="15" fill="rgb(247,168,49)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1391.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="1365" width="0.0213%" height="15" fill="rgb(205,79,19)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1375.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="1349" width="0.0213%" height="15" fill="rgb(211,178,51)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1359.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="1333" width="0.0213%" height="15" fill="rgb(239,140,4)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1343.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="1317" width="0.0213%" height="15" fill="rgb(206,41,54)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1327.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="1301" width="0.0213%" height="15" fill="rgb(209,172,18)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1311.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1285" width="0.0213%" height="15" fill="rgb(244,143,6)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1269" width="0.0213%" height="15" fill="rgb(216,93,13)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1253" width="0.0213%" height="15" fill="rgb(210,164,11)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="1237" width="0.0213%" height="15" fill="rgb(233,75,39)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1247.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="1221" width="0.0213%" height="15" fill="rgb(254,47,9)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1231.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="1205" width="0.0213%" height="15" fill="rgb(244,59,27)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="1189" width="0.0213%" height="15" fill="rgb(248,216,25)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="55.0622%" y="1173" width="0.0213%" height="15" fill="rgb(238,102,14)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="55.0622%" y="1157" width="0.0213%" height="15" fill="rgb(215,72,19)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="1141" width="0.0213%" height="15" fill="rgb(229,33,1)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1151.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="1125" width="0.0213%" height="15" fill="rgb(212,143,37)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1135.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="55.0622%" y="1109" width="0.0213%" height="15" fill="rgb(248,86,47)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1119.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="55.0622%" y="1093" width="0.0213%" height="15" fill="rgb(215,201,25)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="1077" width="0.0213%" height="15" fill="rgb(212,201,12)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1087.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="1061" width="0.0213%" height="15" fill="rgb(250,168,31)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1071.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="1045" width="0.0213%" height="15" fill="rgb(239,192,41)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="1029" width="0.0213%" height="15" fill="rgb(250,138,53)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="1013" width="0.0213%" height="15" fill="rgb(234,87,28)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1023.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="997" width="0.0213%" height="15" fill="rgb(224,145,15)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="981" width="0.0213%" height="15" fill="rgb(221,99,2)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="965" width="0.0213%" height="15" fill="rgb(241,24,40)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="949" width="0.0213%" height="15" fill="rgb(252,97,36)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="959.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="933" width="0.0213%" height="15" fill="rgb(241,200,48)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="917" width="0.0213%" height="15" fill="rgb(254,136,16)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="901" width="0.0213%" height="15" fill="rgb(212,102,25)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.0622%" y="885" width="0.0213%" height="15" fill="rgb(237,146,23)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="895.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.0622%" y="869" width="0.0213%" height="15" fill="rgb(209,13,36)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="879.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.0622%" y="853" width="0.0213%" height="15" fill="rgb(245,86,35)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="863.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.0622%" y="837" width="0.0213%" height="15" fill="rgb(214,28,11)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.0622%" y="821" width="0.0213%" height="15" fill="rgb(223,28,37)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="805" width="0.0213%" height="15" fill="rgb(206,162,45)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="789" width="0.0213%" height="15" fill="rgb(210,58,4)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.0622%" y="773" width="0.0213%" height="15" fill="rgb(221,215,38)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="783.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.0622%" y="757" width="0.0213%" height="15" fill="rgb(224,146,32)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.0622%" y="741" width="0.0213%" height="15" fill="rgb(252,5,23)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.0622%" y="725" width="0.0213%" height="15" fill="rgb(240,200,38)" fg:x="12922" fg:w="5"/><text x="55.3122%" y="735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.0707%" y="709" width="0.0128%" height="15" fill="rgb(239,115,30)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="719.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.0707%" y="693" width="0.0128%" height="15" fill="rgb(229,64,45)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="703.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.0707%" y="677" width="0.0128%" height="15" fill="rgb(217,182,47)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="687.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.0707%" y="661" width="0.0128%" height="15" fill="rgb(231,93,42)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.0707%" y="645" width="0.0128%" height="15" fill="rgb(219,188,11)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0707%" y="629" width="0.0128%" height="15" fill="rgb(230,74,27)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0707%" y="613" width="0.0128%" height="15" fill="rgb(234,8,27)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.0707%" y="597" width="0.0128%" height="15" fill="rgb(228,192,48)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.0707%" y="581" width="0.0128%" height="15" fill="rgb(223,193,12)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="591.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.0707%" y="565" width="0.0128%" height="15" fill="rgb(227,203,32)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="575.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="55.0707%" y="549" width="0.0128%" height="15" fill="rgb(251,146,11)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="55.0707%" y="533" width="0.0128%" height="15" fill="rgb(230,176,33)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="543.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="55.0707%" y="517" width="0.0128%" height="15" fill="rgb(207,64,46)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="55.0707%" y="501" width="0.0128%" height="15" fill="rgb(247,88,5)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="511.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="55.0707%" y="485" width="0.0128%" height="15" fill="rgb(208,99,11)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="495.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0707%" y="469" width="0.0128%" height="15" fill="rgb(247,27,19)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="479.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="55.0707%" y="453" width="0.0128%" height="15" fill="rgb(236,126,52)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="463.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.0707%" y="437" width="0.0128%" height="15" fill="rgb(233,71,43)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="447.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="55.0707%" y="421" width="0.0128%" height="15" fill="rgb(248,108,34)" fg:x="12924" fg:w="3"/><text x="55.3207%" y="431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="55.0963%" y="2725" width="0.0170%" height="15" fill="rgb(225,116,23)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0963%" y="2709" width="0.0170%" height="15" fill="rgb(245,185,42)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0963%" y="2693" width="0.0170%" height="15" fill="rgb(209,202,27)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.0963%" y="2677" width="0.0170%" height="15" fill="rgb(223,215,21)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="55.0963%" y="2661" width="0.0170%" height="15" fill="rgb(226,106,53)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="55.0963%" y="2645" width="0.0170%" height="15" fill="rgb(215,226,9)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="55.0963%" y="2629" width="0.0170%" height="15" fill="rgb(213,81,0)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="55.0963%" y="2613" width="0.0170%" height="15" fill="rgb(232,9,13)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="55.0963%" y="2597" width="0.0170%" height="15" fill="rgb(250,166,14)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="55.0963%" y="2581" width="0.0170%" height="15" fill="rgb(248,7,47)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="55.0963%" y="2565" width="0.0170%" height="15" fill="rgb(209,15,11)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0963%" y="2549" width="0.0170%" height="15" fill="rgb(219,221,21)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0963%" y="2533" width="0.0170%" height="15" fill="rgb(215,176,27)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="55.0963%" y="2517" width="0.0170%" height="15" fill="rgb(208,180,4)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="55.0963%" y="2501" width="0.0170%" height="15" fill="rgb(253,38,51)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2511.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="55.0963%" y="2485" width="0.0170%" height="15" fill="rgb(217,102,27)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2495.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="55.0963%" y="2469" width="0.0170%" height="15" fill="rgb(248,201,33)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="55.0963%" y="2453" width="0.0170%" height="15" fill="rgb(219,179,41)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="55.0963%" y="2437" width="0.0170%" height="15" fill="rgb(253,133,53)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="55.0963%" y="2421" width="0.0170%" height="15" fill="rgb(236,96,36)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="55.0963%" y="2405" width="0.0170%" height="15" fill="rgb(206,102,44)" fg:x="12930" fg:w="4"/><text x="55.3463%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="55.1006%" y="2389" width="0.0128%" height="15" fill="rgb(250,222,12)" fg:x="12931" fg:w="3"/><text x="55.3506%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (26 samples, 0.11%)</title><rect x="55.0153%" y="3365" width="0.1108%" height="15" fill="rgb(213,77,34)" fg:x="12911" fg:w="26"/><text x="55.2653%" y="3375.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="55.0153%" y="3349" width="0.1108%" height="15" fill="rgb(229,30,53)" fg:x="12911" fg:w="26"/><text x="55.2653%" y="3359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="55.0153%" y="3333" width="0.1108%" height="15" fill="rgb(254,101,51)" fg:x="12911" fg:w="26"/><text x="55.2653%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="55.0153%" y="3317" width="0.1108%" height="15" fill="rgb(243,93,30)" fg:x="12911" fg:w="26"/><text x="55.2653%" y="3327.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="55.0153%" y="3301" width="0.1108%" height="15" fill="rgb(218,8,42)" fg:x="12911" fg:w="26"/><text x="55.2653%" y="3311.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="55.0153%" y="3285" width="0.1108%" height="15" fill="rgb(218,73,47)" fg:x="12911" fg:w="26"/><text x="55.2653%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="55.0153%" y="3269" width="0.1108%" height="15" fill="rgb(233,110,9)" fg:x="12911" fg:w="26"/><text x="55.2653%" y="3279.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="55.0835%" y="3253" width="0.0426%" height="15" fill="rgb(212,74,48)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3263.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="55.0835%" y="3237" width="0.0426%" height="15" fill="rgb(225,35,14)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3247.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="55.0835%" y="3221" width="0.0426%" height="15" fill="rgb(229,82,42)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3231.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="55.0835%" y="3205" width="0.0426%" height="15" fill="rgb(253,159,6)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3215.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="55.0835%" y="3189" width="0.0426%" height="15" fill="rgb(249,93,36)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3199.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="55.0835%" y="3173" width="0.0426%" height="15" fill="rgb(229,134,27)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="55.0835%" y="3157" width="0.0426%" height="15" fill="rgb(228,223,27)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="55.0835%" y="3141" width="0.0426%" height="15" fill="rgb(213,134,44)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3151.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="55.0835%" y="3125" width="0.0426%" height="15" fill="rgb(222,142,36)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3135.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="55.0835%" y="3109" width="0.0426%" height="15" fill="rgb(207,19,20)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="55.0835%" y="3093" width="0.0426%" height="15" fill="rgb(229,64,32)" fg:x="12927" fg:w="10"/><text x="55.3335%" y="3103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="55.0920%" y="3077" width="0.0341%" height="15" fill="rgb(223,174,14)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="3087.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="55.0920%" y="3061" width="0.0341%" height="15" fill="rgb(253,86,45)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="3071.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="55.0920%" y="3045" width="0.0341%" height="15" fill="rgb(247,165,1)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="3055.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="55.0920%" y="3029" width="0.0341%" height="15" fill="rgb(253,114,15)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="3039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="55.0920%" y="3013" width="0.0341%" height="15" fill="rgb(253,210,54)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="55.0920%" y="2997" width="0.0341%" height="15" fill="rgb(205,153,21)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="55.0920%" y="2981" width="0.0341%" height="15" fill="rgb(231,198,41)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="55.0920%" y="2965" width="0.0341%" height="15" fill="rgb(244,160,2)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="55.0920%" y="2949" width="0.0341%" height="15" fill="rgb(215,166,30)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="55.0920%" y="2933" width="0.0341%" height="15" fill="rgb(228,220,43)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="55.0920%" y="2917" width="0.0341%" height="15" fill="rgb(221,80,6)" fg:x="12929" fg:w="8"/><text x="55.3420%" y="2927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="55.0963%" y="2901" width="0.0298%" height="15" fill="rgb(236,108,54)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2911.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="55.0963%" y="2885" width="0.0298%" height="15" fill="rgb(221,85,51)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2895.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="55.0963%" y="2869" width="0.0298%" height="15" fill="rgb(248,142,6)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2879.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="55.0963%" y="2853" width="0.0298%" height="15" fill="rgb(211,46,4)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="55.0963%" y="2837" width="0.0298%" height="15" fill="rgb(243,72,52)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="55.0963%" y="2821" width="0.0298%" height="15" fill="rgb(220,159,9)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="55.0963%" y="2805" width="0.0298%" height="15" fill="rgb(223,135,20)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="55.0963%" y="2789" width="0.0298%" height="15" fill="rgb(226,211,37)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="55.0963%" y="2773" width="0.0298%" height="15" fill="rgb(253,151,0)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="55.0963%" y="2757" width="0.0298%" height="15" fill="rgb(254,170,11)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="55.0963%" y="2741" width="0.0298%" height="15" fill="rgb(253,146,12)" fg:x="12930" fg:w="7"/><text x="55.3463%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.1133%" y="2725" width="0.0128%" height="15" fill="rgb(238,113,51)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.1133%" y="2709" width="0.0128%" height="15" fill="rgb(254,161,44)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2719.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.1133%" y="2693" width="0.0128%" height="15" fill="rgb(222,214,18)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.1133%" y="2677" width="0.0128%" height="15" fill="rgb(219,125,19)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.1133%" y="2661" width="0.0128%" height="15" fill="rgb(207,69,47)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1133%" y="2645" width="0.0128%" height="15" fill="rgb(254,130,42)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1133%" y="2629" width="0.0128%" height="15" fill="rgb(226,229,51)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.1133%" y="2613" width="0.0128%" height="15" fill="rgb(218,129,34)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.1133%" y="2597" width="0.0128%" height="15" fill="rgb(254,182,25)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.1133%" y="2581" width="0.0128%" height="15" fill="rgb(239,144,35)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.1133%" y="2565" width="0.0128%" height="15" fill="rgb(219,38,27)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.1133%" y="2549" width="0.0128%" height="15" fill="rgb(220,106,11)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.1133%" y="2533" width="0.0128%" height="15" fill="rgb(232,211,39)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.1133%" y="2517" width="0.0128%" height="15" fill="rgb(207,45,48)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.1133%" y="2501" width="0.0128%" height="15" fill="rgb(223,62,23)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1133%" y="2485" width="0.0128%" height="15" fill="rgb(245,101,4)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1133%" y="2469" width="0.0128%" height="15" fill="rgb(217,66,3)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.1133%" y="2453" width="0.0128%" height="15" fill="rgb(230,148,12)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1133%" y="2437" width="0.0128%" height="15" fill="rgb(215,162,24)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2447.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="55.1133%" y="2421" width="0.0128%" height="15" fill="rgb(252,156,33)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="55.1133%" y="2405" width="0.0128%" height="15" fill="rgb(237,86,40)" fg:x="12934" fg:w="3"/><text x="55.3633%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="55.1347%" y="2901" width="0.0170%" height="15" fill="rgb(212,59,46)" fg:x="12939" fg:w="4"/><text x="55.3847%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="55.1347%" y="2885" width="0.0170%" height="15" fill="rgb(228,134,52)" fg:x="12939" fg:w="4"/><text x="55.3847%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.1347%" y="2869" width="0.0170%" height="15" fill="rgb(247,194,23)" fg:x="12939" fg:w="4"/><text x="55.3847%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.1347%" y="2853" width="0.0170%" height="15" fill="rgb(235,45,51)" fg:x="12939" fg:w="4"/><text x="55.3847%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="55.1347%" y="2837" width="0.0170%" height="15" fill="rgb(214,96,54)" fg:x="12939" fg:w="4"/><text x="55.3847%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="55.1347%" y="2821" width="0.0170%" height="15" fill="rgb(227,135,44)" fg:x="12939" fg:w="4"/><text x="55.3847%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="55.1347%" y="2805" width="0.0170%" height="15" fill="rgb(239,95,32)" fg:x="12939" fg:w="4"/><text x="55.3847%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.1389%" y="2789" width="0.0128%" height="15" fill="rgb(205,118,4)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.1389%" y="2773" width="0.0128%" height="15" fill="rgb(248,13,11)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2783.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.1389%" y="2757" width="0.0128%" height="15" fill="rgb(248,220,29)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.1389%" y="2741" width="0.0128%" height="15" fill="rgb(238,187,28)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.1389%" y="2725" width="0.0128%" height="15" fill="rgb(233,111,5)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1389%" y="2709" width="0.0128%" height="15" fill="rgb(219,2,51)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1389%" y="2693" width="0.0128%" height="15" fill="rgb(218,15,47)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.1389%" y="2677" width="0.0128%" height="15" fill="rgb(227,75,38)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.1389%" y="2661" width="0.0128%" height="15" fill="rgb(208,80,6)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.1389%" y="2645" width="0.0128%" height="15" fill="rgb(224,121,12)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.1389%" y="2629" width="0.0128%" height="15" fill="rgb(210,229,31)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.1389%" y="2613" width="0.0128%" height="15" fill="rgb(210,225,8)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.1389%" y="2597" width="0.0128%" height="15" fill="rgb(252,79,18)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.1389%" y="2581" width="0.0128%" height="15" fill="rgb(222,47,47)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.1389%" y="2565" width="0.0128%" height="15" fill="rgb(252,34,3)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1389%" y="2549" width="0.0128%" height="15" fill="rgb(227,15,25)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1389%" y="2533" width="0.0128%" height="15" fill="rgb(236,225,28)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.1389%" y="2517" width="0.0128%" height="15" fill="rgb(250,167,47)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1389%" y="2501" width="0.0128%" height="15" fill="rgb(254,164,22)" fg:x="12940" fg:w="3"/><text x="55.3889%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="55.1261%" y="3189" width="0.0341%" height="15" fill="rgb(253,54,27)" fg:x="12937" fg:w="8"/><text x="55.3761%" y="3199.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="55.1261%" y="3173" width="0.0341%" height="15" fill="rgb(218,193,15)" fg:x="12937" fg:w="8"/><text x="55.3761%" y="3183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="55.1261%" y="3157" width="0.0341%" height="15" fill="rgb(219,215,39)" fg:x="12937" fg:w="8"/><text x="55.3761%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="55.1261%" y="3141" width="0.0341%" height="15" fill="rgb(221,112,38)" fg:x="12937" fg:w="8"/><text x="55.3761%" y="3151.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="55.1261%" y="3125" width="0.0341%" height="15" fill="rgb(208,156,13)" fg:x="12937" fg:w="8"/><text x="55.3761%" y="3135.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="55.1261%" y="3109" width="0.0341%" height="15" fill="rgb(215,208,35)" fg:x="12937" fg:w="8"/><text x="55.3761%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="55.1261%" y="3093" width="0.0341%" height="15" fill="rgb(206,182,7)" fg:x="12937" fg:w="8"/><text x="55.3761%" y="3103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="55.1347%" y="3077" width="0.0256%" height="15" fill="rgb(245,64,49)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="3087.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="55.1347%" y="3061" width="0.0256%" height="15" fill="rgb(253,89,49)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="3071.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="55.1347%" y="3045" width="0.0256%" height="15" fill="rgb(235,34,11)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="3055.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="55.1347%" y="3029" width="0.0256%" height="15" fill="rgb(212,213,28)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="3039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="55.1347%" y="3013" width="0.0256%" height="15" fill="rgb(219,123,26)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="55.1347%" y="2997" width="0.0256%" height="15" fill="rgb(251,38,10)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="55.1347%" y="2981" width="0.0256%" height="15" fill="rgb(209,134,31)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="55.1347%" y="2965" width="0.0256%" height="15" fill="rgb(235,8,21)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="55.1347%" y="2949" width="0.0256%" height="15" fill="rgb(213,155,19)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="55.1347%" y="2933" width="0.0256%" height="15" fill="rgb(222,11,24)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="55.1347%" y="2917" width="0.0256%" height="15" fill="rgb(205,11,48)" fg:x="12939" fg:w="6"/><text x="55.3847%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="55.1602%" y="3013" width="0.0170%" height="15" fill="rgb(213,148,9)" fg:x="12945" fg:w="4"/><text x="55.4102%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="55.1602%" y="2997" width="0.0170%" height="15" fill="rgb(226,35,30)" fg:x="12945" fg:w="4"/><text x="55.4102%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.1602%" y="2981" width="0.0170%" height="15" fill="rgb(233,190,19)" fg:x="12945" fg:w="4"/><text x="55.4102%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.1602%" y="2965" width="0.0170%" height="15" fill="rgb(208,50,12)" fg:x="12945" fg:w="4"/><text x="55.4102%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="55.1602%" y="2949" width="0.0170%" height="15" fill="rgb(213,41,36)" fg:x="12945" fg:w="4"/><text x="55.4102%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="55.1602%" y="2933" width="0.0170%" height="15" fill="rgb(212,102,51)" fg:x="12945" fg:w="4"/><text x="55.4102%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="55.1602%" y="2917" width="0.0170%" height="15" fill="rgb(227,44,22)" fg:x="12945" fg:w="4"/><text x="55.4102%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="55.1773%" y="2725" width="0.0128%" height="15" fill="rgb(221,177,52)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1773%" y="2709" width="0.0128%" height="15" fill="rgb(233,27,11)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1773%" y="2693" width="0.0128%" height="15" fill="rgb(207,66,32)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.1773%" y="2677" width="0.0128%" height="15" fill="rgb(250,10,25)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.1773%" y="2661" width="0.0128%" height="15" fill="rgb(237,38,47)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.1773%" y="2645" width="0.0128%" height="15" fill="rgb(226,207,16)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.1773%" y="2629" width="0.0128%" height="15" fill="rgb(230,130,25)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.1773%" y="2613" width="0.0128%" height="15" fill="rgb(253,79,53)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.1773%" y="2597" width="0.0128%" height="15" fill="rgb(233,148,11)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.1773%" y="2581" width="0.0128%" height="15" fill="rgb(228,84,19)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.1773%" y="2565" width="0.0128%" height="15" fill="rgb(234,25,42)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1773%" y="2549" width="0.0128%" height="15" fill="rgb(208,52,3)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1773%" y="2533" width="0.0128%" height="15" fill="rgb(240,215,12)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.1773%" y="2517" width="0.0128%" height="15" fill="rgb(223,118,8)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.1773%" y="2501" width="0.0128%" height="15" fill="rgb(209,185,27)" fg:x="12949" fg:w="3"/><text x="55.4273%" y="2511.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="55.1900%" y="2421" width="0.0128%" height="15" fill="rgb(232,116,45)" fg:x="12952" fg:w="3"/><text x="55.4400%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="55.1900%" y="2405" width="0.0128%" height="15" fill="rgb(224,13,21)" fg:x="12952" fg:w="3"/><text x="55.4400%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="55.1773%" y="2837" width="0.0341%" height="15" fill="rgb(227,41,29)" fg:x="12949" fg:w="8"/><text x="55.4273%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="55.1773%" y="2821" width="0.0341%" height="15" fill="rgb(237,83,15)" fg:x="12949" fg:w="8"/><text x="55.4273%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="55.1773%" y="2805" width="0.0341%" height="15" fill="rgb(241,31,43)" fg:x="12949" fg:w="8"/><text x="55.4273%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="55.1773%" y="2789" width="0.0341%" height="15" fill="rgb(232,113,53)" fg:x="12949" fg:w="8"/><text x="55.4273%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="55.1773%" y="2773" width="0.0341%" height="15" fill="rgb(232,227,54)" fg:x="12949" fg:w="8"/><text x="55.4273%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="55.1773%" y="2757" width="0.0341%" height="15" fill="rgb(205,32,29)" fg:x="12949" fg:w="8"/><text x="55.4273%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="55.1773%" y="2741" width="0.0341%" height="15" fill="rgb(246,220,54)" fg:x="12949" fg:w="8"/><text x="55.4273%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.1900%" y="2725" width="0.0213%" height="15" fill="rgb(228,93,38)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.1900%" y="2709" width="0.0213%" height="15" fill="rgb(251,125,52)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2719.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.1900%" y="2693" width="0.0213%" height="15" fill="rgb(215,17,34)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.1900%" y="2677" width="0.0213%" height="15" fill="rgb(218,1,12)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.1900%" y="2661" width="0.0213%" height="15" fill="rgb(246,64,17)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.1900%" y="2645" width="0.0213%" height="15" fill="rgb(224,203,49)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.1900%" y="2629" width="0.0213%" height="15" fill="rgb(245,113,31)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.1900%" y="2613" width="0.0213%" height="15" fill="rgb(211,155,17)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="55.1900%" y="2597" width="0.0213%" height="15" fill="rgb(238,46,27)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.1900%" y="2581" width="0.0213%" height="15" fill="rgb(228,96,2)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.1900%" y="2565" width="0.0213%" height="15" fill="rgb(250,29,4)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="55.1900%" y="2549" width="0.0213%" height="15" fill="rgb(225,84,9)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.1900%" y="2533" width="0.0213%" height="15" fill="rgb(221,29,39)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.1900%" y="2517" width="0.0213%" height="15" fill="rgb(235,227,31)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="55.1900%" y="2501" width="0.0213%" height="15" fill="rgb(243,52,42)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="55.1900%" y="2485" width="0.0213%" height="15" fill="rgb(240,116,15)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="55.1900%" y="2469" width="0.0213%" height="15" fill="rgb(212,167,3)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="55.1900%" y="2453" width="0.0213%" height="15" fill="rgb(213,221,28)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="55.1900%" y="2437" width="0.0213%" height="15" fill="rgb(245,96,54)" fg:x="12952" fg:w="5"/><text x="55.4400%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (49 samples, 0.21%)</title><rect x="55.0153%" y="3477" width="0.2088%" height="15" fill="rgb(235,145,49)" fg:x="12911" fg:w="49"/><text x="55.2653%" y="3487.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (49 samples, 0.21%)</title><rect x="55.0153%" y="3461" width="0.2088%" height="15" fill="rgb(219,98,25)" fg:x="12911" fg:w="49"/><text x="55.2653%" y="3471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (49 samples, 0.21%)</title><rect x="55.0153%" y="3445" width="0.2088%" height="15" fill="rgb(246,90,24)" fg:x="12911" fg:w="49"/><text x="55.2653%" y="3455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.21%)</title><rect x="55.0153%" y="3429" width="0.2088%" height="15" fill="rgb(217,174,9)" fg:x="12911" fg:w="49"/><text x="55.2653%" y="3439.50"></text></g><g><title>rayon_core::join::join_context (49 samples, 0.21%)</title><rect x="55.0153%" y="3413" width="0.2088%" height="15" fill="rgb(242,140,34)" fg:x="12911" fg:w="49"/><text x="55.2653%" y="3423.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.21%)</title><rect x="55.0153%" y="3397" width="0.2088%" height="15" fill="rgb(245,159,18)" fg:x="12911" fg:w="49"/><text x="55.2653%" y="3407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (49 samples, 0.21%)</title><rect x="55.0153%" y="3381" width="0.2088%" height="15" fill="rgb(210,140,45)" fg:x="12911" fg:w="49"/><text x="55.2653%" y="3391.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (23 samples, 0.10%)</title><rect x="55.1261%" y="3365" width="0.0980%" height="15" fill="rgb(228,102,39)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3375.50"></text></g><g><title>std::panic::catch_unwind (23 samples, 0.10%)</title><rect x="55.1261%" y="3349" width="0.0980%" height="15" fill="rgb(231,195,31)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3359.50"></text></g><g><title>std::panicking::try (23 samples, 0.10%)</title><rect x="55.1261%" y="3333" width="0.0980%" height="15" fill="rgb(217,193,21)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3343.50"></text></g><g><title>std::panicking::try::do_call (23 samples, 0.10%)</title><rect x="55.1261%" y="3317" width="0.0980%" height="15" fill="rgb(243,0,19)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3327.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (23 samples, 0.10%)</title><rect x="55.1261%" y="3301" width="0.0980%" height="15" fill="rgb(251,35,11)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3311.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (23 samples, 0.10%)</title><rect x="55.1261%" y="3285" width="0.0980%" height="15" fill="rgb(251,229,19)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="55.1261%" y="3269" width="0.0980%" height="15" fill="rgb(250,62,10)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="55.1261%" y="3253" width="0.0980%" height="15" fill="rgb(247,188,14)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3263.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="55.1261%" y="3237" width="0.0980%" height="15" fill="rgb(253,117,11)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3247.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="55.1261%" y="3221" width="0.0980%" height="15" fill="rgb(224,96,33)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="55.1261%" y="3205" width="0.0980%" height="15" fill="rgb(249,127,34)" fg:x="12937" fg:w="23"/><text x="55.3761%" y="3215.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="55.1602%" y="3189" width="0.0639%" height="15" fill="rgb(222,105,25)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3199.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="55.1602%" y="3173" width="0.0639%" height="15" fill="rgb(205,199,51)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3183.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="55.1602%" y="3157" width="0.0639%" height="15" fill="rgb(208,150,27)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3167.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="55.1602%" y="3141" width="0.0639%" height="15" fill="rgb(228,93,38)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3151.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="55.1602%" y="3125" width="0.0639%" height="15" fill="rgb(231,229,2)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="55.1602%" y="3109" width="0.0639%" height="15" fill="rgb(228,140,25)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="55.1602%" y="3093" width="0.0639%" height="15" fill="rgb(244,99,26)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="55.1602%" y="3077" width="0.0639%" height="15" fill="rgb(253,63,29)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="55.1602%" y="3061" width="0.0639%" height="15" fill="rgb(252,135,31)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="55.1602%" y="3045" width="0.0639%" height="15" fill="rgb(209,22,6)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="55.1602%" y="3029" width="0.0639%" height="15" fill="rgb(240,83,3)" fg:x="12945" fg:w="15"/><text x="55.4102%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="55.1773%" y="3013" width="0.0469%" height="15" fill="rgb(224,14,36)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="55.1773%" y="2997" width="0.0469%" height="15" fill="rgb(226,78,23)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="3007.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="55.1773%" y="2981" width="0.0469%" height="15" fill="rgb(240,180,6)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="55.1773%" y="2965" width="0.0469%" height="15" fill="rgb(210,175,4)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="55.1773%" y="2949" width="0.0469%" height="15" fill="rgb(222,197,9)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="55.1773%" y="2933" width="0.0469%" height="15" fill="rgb(206,221,36)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="55.1773%" y="2917" width="0.0469%" height="15" fill="rgb(207,128,5)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="55.1773%" y="2901" width="0.0469%" height="15" fill="rgb(250,159,22)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="55.1773%" y="2885" width="0.0469%" height="15" fill="rgb(223,150,39)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="55.1773%" y="2869" width="0.0469%" height="15" fill="rgb(232,63,40)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="55.1773%" y="2853" width="0.0469%" height="15" fill="rgb(242,130,28)" fg:x="12949" fg:w="11"/><text x="55.4273%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.2114%" y="2837" width="0.0128%" height="15" fill="rgb(241,136,24)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.2114%" y="2821" width="0.0128%" height="15" fill="rgb(235,169,18)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2831.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.2114%" y="2805" width="0.0128%" height="15" fill="rgb(242,187,43)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.2114%" y="2789" width="0.0128%" height="15" fill="rgb(228,203,17)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.2114%" y="2773" width="0.0128%" height="15" fill="rgb(242,76,25)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2114%" y="2757" width="0.0128%" height="15" fill="rgb(211,107,49)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2114%" y="2741" width="0.0128%" height="15" fill="rgb(226,124,3)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.2114%" y="2725" width="0.0128%" height="15" fill="rgb(226,14,14)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="55.2114%" y="2709" width="0.0128%" height="15" fill="rgb(205,81,20)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="55.2114%" y="2693" width="0.0128%" height="15" fill="rgb(211,186,38)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2114%" y="2677" width="0.0128%" height="15" fill="rgb(252,69,39)" fg:x="12957" fg:w="3"/><text x="55.4614%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="55.2327%" y="2965" width="0.0213%" height="15" fill="rgb(216,202,54)" fg:x="12962" fg:w="5"/><text x="55.4827%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.2327%" y="2949" width="0.0213%" height="15" fill="rgb(253,125,12)" fg:x="12962" fg:w="5"/><text x="55.4827%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.2327%" y="2933" width="0.0213%" height="15" fill="rgb(230,47,24)" fg:x="12962" fg:w="5"/><text x="55.4827%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.2327%" y="2917" width="0.0213%" height="15" fill="rgb(243,80,37)" fg:x="12962" fg:w="5"/><text x="55.4827%" y="2927.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="55.2327%" y="2901" width="0.0213%" height="15" fill="rgb(245,61,11)" fg:x="12962" fg:w="5"/><text x="55.4827%" y="2911.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="55.2327%" y="2885" width="0.0213%" height="15" fill="rgb(227,139,30)" fg:x="12962" fg:w="5"/><text x="55.4827%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="55.2327%" y="2869" width="0.0213%" height="15" fill="rgb(253,69,25)" fg:x="12962" fg:w="5"/><text x="55.4827%" y="2879.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.2412%" y="2853" width="0.0128%" height="15" fill="rgb(239,79,52)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2863.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.2412%" y="2837" width="0.0128%" height="15" fill="rgb(210,122,54)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2847.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.2412%" y="2821" width="0.0128%" height="15" fill="rgb(214,91,32)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2831.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.2412%" y="2805" width="0.0128%" height="15" fill="rgb(242,6,25)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2815.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.2412%" y="2789" width="0.0128%" height="15" fill="rgb(236,61,23)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2412%" y="2773" width="0.0128%" height="15" fill="rgb(217,214,36)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2412%" y="2757" width="0.0128%" height="15" fill="rgb(218,154,5)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.2412%" y="2741" width="0.0128%" height="15" fill="rgb(227,187,36)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.2412%" y="2725" width="0.0128%" height="15" fill="rgb(247,61,41)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2735.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.2412%" y="2709" width="0.0128%" height="15" fill="rgb(224,145,51)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2719.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.2412%" y="2693" width="0.0128%" height="15" fill="rgb(221,16,7)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2703.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.2412%" y="2677" width="0.0128%" height="15" fill="rgb(246,215,15)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.2412%" y="2661" width="0.0128%" height="15" fill="rgb(231,217,22)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2671.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.2412%" y="2645" width="0.0128%" height="15" fill="rgb(231,206,37)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.2412%" y="2629" width="0.0128%" height="15" fill="rgb(218,213,52)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2639.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2412%" y="2613" width="0.0128%" height="15" fill="rgb(240,100,7)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2412%" y="2597" width="0.0128%" height="15" fill="rgb(217,20,19)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2607.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.2412%" y="2581" width="0.0128%" height="15" fill="rgb(216,179,1)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2591.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2412%" y="2565" width="0.0128%" height="15" fill="rgb(230,179,17)" fg:x="12964" fg:w="3"/><text x="55.4912%" y="2575.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="55.2327%" y="3077" width="0.0341%" height="15" fill="rgb(234,151,37)" fg:x="12962" fg:w="8"/><text x="55.4827%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="55.2327%" y="3061" width="0.0341%" height="15" fill="rgb(217,103,45)" fg:x="12962" fg:w="8"/><text x="55.4827%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="55.2327%" y="3045" width="0.0341%" height="15" fill="rgb(218,150,35)" fg:x="12962" fg:w="8"/><text x="55.4827%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="55.2327%" y="3029" width="0.0341%" height="15" fill="rgb(218,196,33)" fg:x="12962" fg:w="8"/><text x="55.4827%" y="3039.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="55.2327%" y="3013" width="0.0341%" height="15" fill="rgb(244,108,32)" fg:x="12962" fg:w="8"/><text x="55.4827%" y="3023.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="55.2327%" y="2997" width="0.0341%" height="15" fill="rgb(244,99,45)" fg:x="12962" fg:w="8"/><text x="55.4827%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="55.2327%" y="2981" width="0.0341%" height="15" fill="rgb(246,110,54)" fg:x="12962" fg:w="8"/><text x="55.4827%" y="2991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.2540%" y="2965" width="0.0128%" height="15" fill="rgb(210,199,6)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2975.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.2540%" y="2949" width="0.0128%" height="15" fill="rgb(253,89,45)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2959.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.2540%" y="2933" width="0.0128%" height="15" fill="rgb(251,98,39)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2943.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.2540%" y="2917" width="0.0128%" height="15" fill="rgb(206,173,37)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.2540%" y="2901" width="0.0128%" height="15" fill="rgb(224,96,21)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2540%" y="2885" width="0.0128%" height="15" fill="rgb(254,76,30)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2540%" y="2869" width="0.0128%" height="15" fill="rgb(214,131,20)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.2540%" y="2853" width="0.0128%" height="15" fill="rgb(216,116,8)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="55.2540%" y="2837" width="0.0128%" height="15" fill="rgb(234,160,53)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="55.2540%" y="2821" width="0.0128%" height="15" fill="rgb(219,63,23)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2540%" y="2805" width="0.0128%" height="15" fill="rgb(215,101,19)" fg:x="12967" fg:w="3"/><text x="55.5040%" y="2815.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="55.2667%" y="2901" width="0.0298%" height="15" fill="rgb(254,152,18)" fg:x="12970" fg:w="7"/><text x="55.5167%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="55.2667%" y="2885" width="0.0298%" height="15" fill="rgb(226,117,41)" fg:x="12970" fg:w="7"/><text x="55.5167%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="55.2667%" y="2869" width="0.0298%" height="15" fill="rgb(210,222,51)" fg:x="12970" fg:w="7"/><text x="55.5167%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="55.2667%" y="2853" width="0.0298%" height="15" fill="rgb(223,75,54)" fg:x="12970" fg:w="7"/><text x="55.5167%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="55.2667%" y="2837" width="0.0298%" height="15" fill="rgb(221,212,25)" fg:x="12970" fg:w="7"/><text x="55.5167%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="55.2667%" y="2821" width="0.0298%" height="15" fill="rgb(246,79,24)" fg:x="12970" fg:w="7"/><text x="55.5167%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="55.2667%" y="2805" width="0.0298%" height="15" fill="rgb(217,25,25)" fg:x="12970" fg:w="7"/><text x="55.5167%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.2753%" y="2789" width="0.0213%" height="15" fill="rgb(223,125,49)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.2753%" y="2773" width="0.0213%" height="15" fill="rgb(251,130,21)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2783.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.2753%" y="2757" width="0.0213%" height="15" fill="rgb(243,59,31)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.2753%" y="2741" width="0.0213%" height="15" fill="rgb(249,70,33)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.2753%" y="2725" width="0.0213%" height="15" fill="rgb(242,96,47)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.2753%" y="2709" width="0.0213%" height="15" fill="rgb(243,78,20)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.2753%" y="2693" width="0.0213%" height="15" fill="rgb(242,204,12)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.2753%" y="2677" width="0.0213%" height="15" fill="rgb(228,106,20)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="55.2753%" y="2661" width="0.0213%" height="15" fill="rgb(238,4,18)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.2753%" y="2645" width="0.0213%" height="15" fill="rgb(246,204,25)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.2753%" y="2629" width="0.0213%" height="15" fill="rgb(209,53,12)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="55.2753%" y="2613" width="0.0213%" height="15" fill="rgb(216,130,5)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.2753%" y="2597" width="0.0213%" height="15" fill="rgb(229,66,15)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.2753%" y="2581" width="0.0213%" height="15" fill="rgb(246,226,33)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="55.2753%" y="2565" width="0.0213%" height="15" fill="rgb(253,109,30)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="55.2753%" y="2549" width="0.0213%" height="15" fill="rgb(250,13,5)" fg:x="12972" fg:w="5"/><text x="55.5253%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="55.2795%" y="2533" width="0.0170%" height="15" fill="rgb(206,130,13)" fg:x="12973" fg:w="4"/><text x="55.5295%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="55.2795%" y="2517" width="0.0170%" height="15" fill="rgb(245,24,42)" fg:x="12973" fg:w="4"/><text x="55.5295%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="55.2795%" y="2501" width="0.0170%" height="15" fill="rgb(220,44,28)" fg:x="12973" fg:w="4"/><text x="55.5295%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="55.2966%" y="2725" width="0.0128%" height="15" fill="rgb(220,112,28)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2966%" y="2709" width="0.0128%" height="15" fill="rgb(217,195,32)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2966%" y="2693" width="0.0128%" height="15" fill="rgb(230,67,13)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.2966%" y="2677" width="0.0128%" height="15" fill="rgb(220,96,19)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.2966%" y="2661" width="0.0128%" height="15" fill="rgb(249,193,36)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.2966%" y="2645" width="0.0128%" height="15" fill="rgb(231,215,38)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.2966%" y="2629" width="0.0128%" height="15" fill="rgb(217,172,5)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.2966%" y="2613" width="0.0128%" height="15" fill="rgb(211,19,2)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.2966%" y="2597" width="0.0128%" height="15" fill="rgb(237,134,53)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.2966%" y="2581" width="0.0128%" height="15" fill="rgb(242,24,43)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.2966%" y="2565" width="0.0128%" height="15" fill="rgb(212,52,49)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2966%" y="2549" width="0.0128%" height="15" fill="rgb(217,42,4)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2966%" y="2533" width="0.0128%" height="15" fill="rgb(215,0,19)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.2966%" y="2517" width="0.0128%" height="15" fill="rgb(244,175,16)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.2966%" y="2501" width="0.0128%" height="15" fill="rgb(219,153,21)" fg:x="12977" fg:w="3"/><text x="55.5466%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="55.2327%" y="3189" width="0.0937%" height="15" fill="rgb(216,73,21)" fg:x="12962" fg:w="22"/><text x="55.4827%" y="3199.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="55.2327%" y="3173" width="0.0937%" height="15" fill="rgb(241,29,15)" fg:x="12962" fg:w="22"/><text x="55.4827%" y="3183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="55.2327%" y="3157" width="0.0937%" height="15" fill="rgb(230,188,49)" fg:x="12962" fg:w="22"/><text x="55.4827%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="55.2327%" y="3141" width="0.0937%" height="15" fill="rgb(210,139,29)" fg:x="12962" fg:w="22"/><text x="55.4827%" y="3151.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="55.2327%" y="3125" width="0.0937%" height="15" fill="rgb(232,98,19)" fg:x="12962" fg:w="22"/><text x="55.4827%" y="3135.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="55.2327%" y="3109" width="0.0937%" height="15" fill="rgb(233,78,32)" fg:x="12962" fg:w="22"/><text x="55.4827%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="55.2327%" y="3093" width="0.0937%" height="15" fill="rgb(233,169,20)" fg:x="12962" fg:w="22"/><text x="55.4827%" y="3103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="55.2667%" y="3077" width="0.0597%" height="15" fill="rgb(206,113,32)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="3087.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="55.2667%" y="3061" width="0.0597%" height="15" fill="rgb(241,209,35)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="3071.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="55.2667%" y="3045" width="0.0597%" height="15" fill="rgb(222,25,42)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="3055.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="55.2667%" y="3029" width="0.0597%" height="15" fill="rgb(238,167,53)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="3039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="55.2667%" y="3013" width="0.0597%" height="15" fill="rgb(223,131,41)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="55.2667%" y="2997" width="0.0597%" height="15" fill="rgb(241,75,13)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="55.2667%" y="2981" width="0.0597%" height="15" fill="rgb(245,100,51)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="55.2667%" y="2965" width="0.0597%" height="15" fill="rgb(230,7,21)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="55.2667%" y="2949" width="0.0597%" height="15" fill="rgb(229,210,46)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="55.2667%" y="2933" width="0.0597%" height="15" fill="rgb(217,34,43)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="55.2667%" y="2917" width="0.0597%" height="15" fill="rgb(242,161,31)" fg:x="12970" fg:w="14"/><text x="55.5167%" y="2927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="55.2966%" y="2901" width="0.0298%" height="15" fill="rgb(228,203,40)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2911.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="55.2966%" y="2885" width="0.0298%" height="15" fill="rgb(243,57,36)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2895.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="55.2966%" y="2869" width="0.0298%" height="15" fill="rgb(238,175,29)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2879.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="55.2966%" y="2853" width="0.0298%" height="15" fill="rgb(252,183,47)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="55.2966%" y="2837" width="0.0298%" height="15" fill="rgb(217,169,52)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="55.2966%" y="2821" width="0.0298%" height="15" fill="rgb(207,174,18)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="55.2966%" y="2805" width="0.0298%" height="15" fill="rgb(205,100,24)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="55.2966%" y="2789" width="0.0298%" height="15" fill="rgb(223,31,48)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="55.2966%" y="2773" width="0.0298%" height="15" fill="rgb(239,140,18)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="55.2966%" y="2757" width="0.0298%" height="15" fill="rgb(234,61,7)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="55.2966%" y="2741" width="0.0298%" height="15" fill="rgb(235,172,6)" fg:x="12977" fg:w="7"/><text x="55.5466%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="55.3094%" y="2725" width="0.0170%" height="15" fill="rgb(254,203,20)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="55.3094%" y="2709" width="0.0170%" height="15" fill="rgb(219,47,26)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2719.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="55.3094%" y="2693" width="0.0170%" height="15" fill="rgb(237,15,40)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="55.3094%" y="2677" width="0.0170%" height="15" fill="rgb(245,14,35)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="55.3094%" y="2661" width="0.0170%" height="15" fill="rgb(218,227,27)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="55.3094%" y="2645" width="0.0170%" height="15" fill="rgb(249,67,20)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.3094%" y="2629" width="0.0170%" height="15" fill="rgb(227,60,45)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.3094%" y="2613" width="0.0170%" height="15" fill="rgb(221,144,41)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="55.3094%" y="2597" width="0.0170%" height="15" fill="rgb(230,8,44)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="55.3094%" y="2581" width="0.0170%" height="15" fill="rgb(216,178,24)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="55.3094%" y="2565" width="0.0170%" height="15" fill="rgb(205,214,3)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="55.3094%" y="2549" width="0.0170%" height="15" fill="rgb(221,160,49)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="55.3094%" y="2533" width="0.0170%" height="15" fill="rgb(226,127,39)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="55.3094%" y="2517" width="0.0170%" height="15" fill="rgb(254,163,32)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="55.3094%" y="2501" width="0.0170%" height="15" fill="rgb(245,209,49)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="55.3094%" y="2485" width="0.0170%" height="15" fill="rgb(228,39,0)" fg:x="12980" fg:w="4"/><text x="55.5594%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3136%" y="2469" width="0.0128%" height="15" fill="rgb(208,91,2)" fg:x="12981" fg:w="3"/><text x="55.5636%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.3136%" y="2453" width="0.0128%" height="15" fill="rgb(212,226,26)" fg:x="12981" fg:w="3"/><text x="55.5636%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3136%" y="2437" width="0.0128%" height="15" fill="rgb(224,112,3)" fg:x="12981" fg:w="3"/><text x="55.5636%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="55.3264%" y="2901" width="0.0170%" height="15" fill="rgb(230,19,35)" fg:x="12984" fg:w="4"/><text x="55.5764%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="55.3264%" y="2885" width="0.0170%" height="15" fill="rgb(222,213,23)" fg:x="12984" fg:w="4"/><text x="55.5764%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.3264%" y="2869" width="0.0170%" height="15" fill="rgb(225,22,20)" fg:x="12984" fg:w="4"/><text x="55.5764%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.3264%" y="2853" width="0.0170%" height="15" fill="rgb(238,122,27)" fg:x="12984" fg:w="4"/><text x="55.5764%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="55.3264%" y="2837" width="0.0170%" height="15" fill="rgb(250,134,15)" fg:x="12984" fg:w="4"/><text x="55.5764%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="55.3264%" y="2821" width="0.0170%" height="15" fill="rgb(241,126,3)" fg:x="12984" fg:w="4"/><text x="55.5764%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="55.3264%" y="2805" width="0.0170%" height="15" fill="rgb(211,37,51)" fg:x="12984" fg:w="4"/><text x="55.5764%" y="2815.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="55.3520%" y="2421" width="0.0298%" height="15" fill="rgb(224,160,10)" fg:x="12990" fg:w="7"/><text x="55.6020%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="55.3520%" y="2405" width="0.0298%" height="15" fill="rgb(214,106,33)" fg:x="12990" fg:w="7"/><text x="55.6020%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="55.3648%" y="2389" width="0.0170%" height="15" fill="rgb(232,137,51)" fg:x="12993" fg:w="4"/><text x="55.6148%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="55.3648%" y="2373" width="0.0170%" height="15" fill="rgb(221,56,48)" fg:x="12993" fg:w="4"/><text x="55.6148%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="55.3648%" y="2357" width="0.0170%" height="15" fill="rgb(212,10,48)" fg:x="12993" fg:w="4"/><text x="55.6148%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="55.3648%" y="2341" width="0.0170%" height="15" fill="rgb(210,32,31)" fg:x="12993" fg:w="4"/><text x="55.6148%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="55.3264%" y="3013" width="0.0597%" height="15" fill="rgb(215,223,42)" fg:x="12984" fg:w="14"/><text x="55.5764%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="55.3264%" y="2997" width="0.0597%" height="15" fill="rgb(231,192,8)" fg:x="12984" fg:w="14"/><text x="55.5764%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="55.3264%" y="2981" width="0.0597%" height="15" fill="rgb(222,197,21)" fg:x="12984" fg:w="14"/><text x="55.5764%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="55.3264%" y="2965" width="0.0597%" height="15" fill="rgb(218,128,28)" fg:x="12984" fg:w="14"/><text x="55.5764%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="55.3264%" y="2949" width="0.0597%" height="15" fill="rgb(234,190,42)" fg:x="12984" fg:w="14"/><text x="55.5764%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="55.3264%" y="2933" width="0.0597%" height="15" fill="rgb(236,191,12)" fg:x="12984" fg:w="14"/><text x="55.5764%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="55.3264%" y="2917" width="0.0597%" height="15" fill="rgb(230,218,49)" fg:x="12984" fg:w="14"/><text x="55.5764%" y="2927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="55.3434%" y="2901" width="0.0426%" height="15" fill="rgb(226,126,13)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2911.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="55.3434%" y="2885" width="0.0426%" height="15" fill="rgb(230,2,48)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2895.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="55.3434%" y="2869" width="0.0426%" height="15" fill="rgb(225,83,17)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2879.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="55.3434%" y="2853" width="0.0426%" height="15" fill="rgb(227,214,53)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="55.3434%" y="2837" width="0.0426%" height="15" fill="rgb(210,223,47)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="55.3434%" y="2821" width="0.0426%" height="15" fill="rgb(254,90,54)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="55.3434%" y="2805" width="0.0426%" height="15" fill="rgb(253,20,50)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="55.3434%" y="2789" width="0.0426%" height="15" fill="rgb(214,34,0)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="55.3434%" y="2773" width="0.0426%" height="15" fill="rgb(217,169,16)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="55.3434%" y="2757" width="0.0426%" height="15" fill="rgb(210,100,31)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="55.3434%" y="2741" width="0.0426%" height="15" fill="rgb(222,203,24)" fg:x="12988" fg:w="10"/><text x="55.5934%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="55.3520%" y="2725" width="0.0341%" height="15" fill="rgb(230,5,22)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="55.3520%" y="2709" width="0.0341%" height="15" fill="rgb(239,170,36)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2719.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="55.3520%" y="2693" width="0.0341%" height="15" fill="rgb(205,74,50)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="55.3520%" y="2677" width="0.0341%" height="15" fill="rgb(211,102,49)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="55.3520%" y="2661" width="0.0341%" height="15" fill="rgb(205,76,37)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="55.3520%" y="2645" width="0.0341%" height="15" fill="rgb(225,150,41)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="55.3520%" y="2629" width="0.0341%" height="15" fill="rgb(243,189,32)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="55.3520%" y="2613" width="0.0341%" height="15" fill="rgb(232,49,24)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="55.3520%" y="2597" width="0.0341%" height="15" fill="rgb(224,150,38)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="55.3520%" y="2581" width="0.0341%" height="15" fill="rgb(217,81,11)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="55.3520%" y="2565" width="0.0341%" height="15" fill="rgb(248,194,29)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="55.3520%" y="2549" width="0.0341%" height="15" fill="rgb(253,158,43)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="55.3520%" y="2533" width="0.0341%" height="15" fill="rgb(253,96,8)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="55.3520%" y="2517" width="0.0341%" height="15" fill="rgb(250,24,19)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="55.3520%" y="2501" width="0.0341%" height="15" fill="rgb(253,216,44)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="55.3520%" y="2485" width="0.0341%" height="15" fill="rgb(209,85,15)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="55.3520%" y="2469" width="0.0341%" height="15" fill="rgb(243,221,18)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="55.3520%" y="2453" width="0.0341%" height="15" fill="rgb(225,158,10)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="55.3520%" y="2437" width="0.0341%" height="15" fill="rgb(230,51,12)" fg:x="12990" fg:w="8"/><text x="55.6020%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="55.3861%" y="2725" width="0.0128%" height="15" fill="rgb(214,118,46)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3861%" y="2709" width="0.0128%" height="15" fill="rgb(211,198,35)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3861%" y="2693" width="0.0128%" height="15" fill="rgb(229,81,16)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.3861%" y="2677" width="0.0128%" height="15" fill="rgb(205,185,0)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.3861%" y="2661" width="0.0128%" height="15" fill="rgb(222,77,22)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.3861%" y="2645" width="0.0128%" height="15" fill="rgb(232,155,54)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.3861%" y="2629" width="0.0128%" height="15" fill="rgb(254,127,12)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.3861%" y="2613" width="0.0128%" height="15" fill="rgb(227,4,54)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.3861%" y="2597" width="0.0128%" height="15" fill="rgb(215,35,0)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.3861%" y="2581" width="0.0128%" height="15" fill="rgb(225,14,45)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.3861%" y="2565" width="0.0128%" height="15" fill="rgb(253,183,5)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3861%" y="2549" width="0.0128%" height="15" fill="rgb(250,26,30)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3861%" y="2533" width="0.0128%" height="15" fill="rgb(224,203,38)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.3861%" y="2517" width="0.0128%" height="15" fill="rgb(239,16,11)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3861%" y="2501" width="0.0128%" height="15" fill="rgb(214,72,43)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2511.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="55.3861%" y="2485" width="0.0128%" height="15" fill="rgb(241,123,17)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2495.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="55.3861%" y="2469" width="0.0128%" height="15" fill="rgb(232,46,52)" fg:x="12998" fg:w="3"/><text x="55.6361%" y="2479.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="55.3861%" y="2837" width="0.0256%" height="15" fill="rgb(222,135,48)" fg:x="12998" fg:w="6"/><text x="55.6361%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="55.3861%" y="2821" width="0.0256%" height="15" fill="rgb(221,40,19)" fg:x="12998" fg:w="6"/><text x="55.6361%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="55.3861%" y="2805" width="0.0256%" height="15" fill="rgb(208,151,17)" fg:x="12998" fg:w="6"/><text x="55.6361%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="55.3861%" y="2789" width="0.0256%" height="15" fill="rgb(220,184,53)" fg:x="12998" fg:w="6"/><text x="55.6361%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="55.3861%" y="2773" width="0.0256%" height="15" fill="rgb(243,41,43)" fg:x="12998" fg:w="6"/><text x="55.6361%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="55.3861%" y="2757" width="0.0256%" height="15" fill="rgb(223,131,41)" fg:x="12998" fg:w="6"/><text x="55.6361%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="55.3861%" y="2741" width="0.0256%" height="15" fill="rgb(206,24,2)" fg:x="12998" fg:w="6"/><text x="55.6361%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="55.3988%" y="2725" width="0.0128%" height="15" fill="rgb(231,41,44)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="55.3988%" y="2709" width="0.0128%" height="15" fill="rgb(208,17,52)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2719.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="55.3988%" y="2693" width="0.0128%" height="15" fill="rgb(217,74,33)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="55.3988%" y="2677" width="0.0128%" height="15" fill="rgb(217,63,32)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="55.3988%" y="2661" width="0.0128%" height="15" fill="rgb(205,166,47)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3988%" y="2645" width="0.0128%" height="15" fill="rgb(218,182,54)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3988%" y="2629" width="0.0128%" height="15" fill="rgb(239,186,4)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="55.3988%" y="2613" width="0.0128%" height="15" fill="rgb(254,41,15)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="55.3988%" y="2597" width="0.0128%" height="15" fill="rgb(242,48,9)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.3988%" y="2581" width="0.0128%" height="15" fill="rgb(243,84,13)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="55.3988%" y="2565" width="0.0128%" height="15" fill="rgb(250,93,5)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="55.3988%" y="2549" width="0.0128%" height="15" fill="rgb(248,80,49)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.3988%" y="2533" width="0.0128%" height="15" fill="rgb(236,207,7)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="55.3988%" y="2517" width="0.0128%" height="15" fill="rgb(208,195,27)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="55.3988%" y="2501" width="0.0128%" height="15" fill="rgb(229,33,16)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3988%" y="2485" width="0.0128%" height="15" fill="rgb(233,53,21)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3988%" y="2469" width="0.0128%" height="15" fill="rgb(233,190,40)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="55.3988%" y="2453" width="0.0128%" height="15" fill="rgb(250,164,46)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="55.3988%" y="2437" width="0.0128%" height="15" fill="rgb(209,73,13)" fg:x="13001" fg:w="3"/><text x="55.6488%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="55.4116%" y="2661" width="0.0213%" height="15" fill="rgb(220,46,38)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4116%" y="2645" width="0.0213%" height="15" fill="rgb(252,42,19)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4116%" y="2629" width="0.0213%" height="15" fill="rgb(252,105,52)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.4116%" y="2613" width="0.0213%" height="15" fill="rgb(244,63,31)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="55.4116%" y="2597" width="0.0213%" height="15" fill="rgb(224,220,8)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.4116%" y="2581" width="0.0213%" height="15" fill="rgb(247,42,28)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.4116%" y="2565" width="0.0213%" height="15" fill="rgb(230,30,4)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="55.4116%" y="2549" width="0.0213%" height="15" fill="rgb(215,101,41)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.4116%" y="2533" width="0.0213%" height="15" fill="rgb(235,145,50)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.4116%" y="2517" width="0.0213%" height="15" fill="rgb(231,167,8)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="55.4116%" y="2501" width="0.0213%" height="15" fill="rgb(236,182,49)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4116%" y="2485" width="0.0213%" height="15" fill="rgb(253,211,26)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4116%" y="2469" width="0.0213%" height="15" fill="rgb(247,112,17)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="55.4116%" y="2453" width="0.0213%" height="15" fill="rgb(230,74,13)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4116%" y="2437" width="0.0213%" height="15" fill="rgb(247,68,29)" fg:x="13004" fg:w="5"/><text x="55.6616%" y="2447.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="55.4201%" y="2421" width="0.0128%" height="15" fill="rgb(213,30,29)" fg:x="13006" fg:w="3"/><text x="55.6701%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="55.4329%" y="2357" width="0.0170%" height="15" fill="rgb(221,86,37)" fg:x="13009" fg:w="4"/><text x="55.6829%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="55.4329%" y="2341" width="0.0170%" height="15" fill="rgb(205,85,29)" fg:x="13009" fg:w="4"/><text x="55.6829%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="55.4372%" y="2325" width="0.0128%" height="15" fill="rgb(236,168,31)" fg:x="13010" fg:w="3"/><text x="55.6872%" y="2335.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="55.4372%" y="2309" width="0.0128%" height="15" fill="rgb(241,199,48)" fg:x="13010" fg:w="3"/><text x="55.6872%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="55.4372%" y="2293" width="0.0128%" height="15" fill="rgb(248,213,29)" fg:x="13010" fg:w="3"/><text x="55.6872%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="55.4372%" y="2277" width="0.0128%" height="15" fill="rgb(212,19,12)" fg:x="13010" fg:w="3"/><text x="55.6872%" y="2287.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (52 samples, 0.22%)</title><rect x="55.2327%" y="3301" width="0.2216%" height="15" fill="rgb(253,218,43)" fg:x="12962" fg:w="52"/><text x="55.4827%" y="3311.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (52 samples, 0.22%)</title><rect x="55.2327%" y="3285" width="0.2216%" height="15" fill="rgb(238,24,36)" fg:x="12962" fg:w="52"/><text x="55.4827%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (52 samples, 0.22%)</title><rect x="55.2327%" y="3269" width="0.2216%" height="15" fill="rgb(250,8,49)" fg:x="12962" fg:w="52"/><text x="55.4827%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.22%)</title><rect x="55.2327%" y="3253" width="0.2216%" height="15" fill="rgb(235,89,2)" fg:x="12962" fg:w="52"/><text x="55.4827%" y="3263.50"></text></g><g><title>rayon_core::join::join_context (52 samples, 0.22%)</title><rect x="55.2327%" y="3237" width="0.2216%" height="15" fill="rgb(253,184,0)" fg:x="12962" fg:w="52"/><text x="55.4827%" y="3247.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.22%)</title><rect x="55.2327%" y="3221" width="0.2216%" height="15" fill="rgb(244,65,53)" fg:x="12962" fg:w="52"/><text x="55.4827%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (52 samples, 0.22%)</title><rect x="55.2327%" y="3205" width="0.2216%" height="15" fill="rgb(220,36,34)" fg:x="12962" fg:w="52"/><text x="55.4827%" y="3215.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (30 samples, 0.13%)</title><rect x="55.3264%" y="3189" width="0.1278%" height="15" fill="rgb(252,101,19)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3199.50"></text></g><g><title>std::panic::catch_unwind (30 samples, 0.13%)</title><rect x="55.3264%" y="3173" width="0.1278%" height="15" fill="rgb(250,117,31)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3183.50"></text></g><g><title>std::panicking::try (30 samples, 0.13%)</title><rect x="55.3264%" y="3157" width="0.1278%" height="15" fill="rgb(234,52,50)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3167.50"></text></g><g><title>std::panicking::try::do_call (30 samples, 0.13%)</title><rect x="55.3264%" y="3141" width="0.1278%" height="15" fill="rgb(245,53,7)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3151.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (30 samples, 0.13%)</title><rect x="55.3264%" y="3125" width="0.1278%" height="15" fill="rgb(205,12,16)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (30 samples, 0.13%)</title><rect x="55.3264%" y="3109" width="0.1278%" height="15" fill="rgb(213,91,47)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (30 samples, 0.13%)</title><rect x="55.3264%" y="3093" width="0.1278%" height="15" fill="rgb(251,11,21)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.13%)</title><rect x="55.3264%" y="3077" width="0.1278%" height="15" fill="rgb(247,209,38)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (30 samples, 0.13%)</title><rect x="55.3264%" y="3061" width="0.1278%" height="15" fill="rgb(254,189,43)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.13%)</title><rect x="55.3264%" y="3045" width="0.1278%" height="15" fill="rgb(213,14,42)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (30 samples, 0.13%)</title><rect x="55.3264%" y="3029" width="0.1278%" height="15" fill="rgb(244,131,18)" fg:x="12984" fg:w="30"/><text x="55.5764%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="55.3861%" y="3013" width="0.0682%" height="15" fill="rgb(244,205,25)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="55.3861%" y="2997" width="0.0682%" height="15" fill="rgb(246,193,6)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="3007.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="55.3861%" y="2981" width="0.0682%" height="15" fill="rgb(223,190,46)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="55.3861%" y="2965" width="0.0682%" height="15" fill="rgb(245,221,41)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="55.3861%" y="2949" width="0.0682%" height="15" fill="rgb(242,160,43)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="55.3861%" y="2933" width="0.0682%" height="15" fill="rgb(219,18,52)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="55.3861%" y="2917" width="0.0682%" height="15" fill="rgb(228,136,23)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="55.3861%" y="2901" width="0.0682%" height="15" fill="rgb(214,160,1)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="55.3861%" y="2885" width="0.0682%" height="15" fill="rgb(252,104,40)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="55.3861%" y="2869" width="0.0682%" height="15" fill="rgb(230,5,42)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="55.3861%" y="2853" width="0.0682%" height="15" fill="rgb(237,85,25)" fg:x="12998" fg:w="16"/><text x="55.6361%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="55.4116%" y="2837" width="0.0426%" height="15" fill="rgb(211,8,41)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="55.4116%" y="2821" width="0.0426%" height="15" fill="rgb(241,91,35)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2831.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="55.4116%" y="2805" width="0.0426%" height="15" fill="rgb(245,193,19)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="55.4116%" y="2789" width="0.0426%" height="15" fill="rgb(212,17,50)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="55.4116%" y="2773" width="0.0426%" height="15" fill="rgb(251,208,53)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="55.4116%" y="2757" width="0.0426%" height="15" fill="rgb(253,170,53)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="55.4116%" y="2741" width="0.0426%" height="15" fill="rgb(236,4,4)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="55.4116%" y="2725" width="0.0426%" height="15" fill="rgb(213,34,11)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="55.4116%" y="2709" width="0.0426%" height="15" fill="rgb(250,127,19)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="55.4116%" y="2693" width="0.0426%" height="15" fill="rgb(238,15,48)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="55.4116%" y="2677" width="0.0426%" height="15" fill="rgb(233,81,9)" fg:x="13004" fg:w="10"/><text x="55.6616%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.4329%" y="2661" width="0.0213%" height="15" fill="rgb(213,12,23)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.4329%" y="2645" width="0.0213%" height="15" fill="rgb(226,154,52)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2655.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.4329%" y="2629" width="0.0213%" height="15" fill="rgb(249,90,0)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.4329%" y="2613" width="0.0213%" height="15" fill="rgb(218,106,4)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.4329%" y="2597" width="0.0213%" height="15" fill="rgb(220,116,28)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4329%" y="2581" width="0.0213%" height="15" fill="rgb(217,196,25)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4329%" y="2565" width="0.0213%" height="15" fill="rgb(224,76,11)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.4329%" y="2549" width="0.0213%" height="15" fill="rgb(228,39,8)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="55.4329%" y="2533" width="0.0213%" height="15" fill="rgb(241,141,13)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.4329%" y="2517" width="0.0213%" height="15" fill="rgb(246,9,46)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.4329%" y="2501" width="0.0213%" height="15" fill="rgb(234,46,2)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="55.4329%" y="2485" width="0.0213%" height="15" fill="rgb(236,162,32)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.4329%" y="2469" width="0.0213%" height="15" fill="rgb(213,27,0)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.4329%" y="2453" width="0.0213%" height="15" fill="rgb(217,135,31)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="55.4329%" y="2437" width="0.0213%" height="15" fill="rgb(222,25,3)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4329%" y="2421" width="0.0213%" height="15" fill="rgb(240,151,44)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4329%" y="2405" width="0.0213%" height="15" fill="rgb(220,173,28)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="55.4329%" y="2389" width="0.0213%" height="15" fill="rgb(207,44,6)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="55.4329%" y="2373" width="0.0213%" height="15" fill="rgb(213,192,28)" fg:x="13009" fg:w="5"/><text x="55.6829%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="55.4585%" y="2901" width="0.0170%" height="15" fill="rgb(220,44,3)" fg:x="13015" fg:w="4"/><text x="55.7085%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="55.4585%" y="2885" width="0.0170%" height="15" fill="rgb(246,207,44)" fg:x="13015" fg:w="4"/><text x="55.7085%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.4585%" y="2869" width="0.0170%" height="15" fill="rgb(250,46,35)" fg:x="13015" fg:w="4"/><text x="55.7085%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.4585%" y="2853" width="0.0170%" height="15" fill="rgb(217,220,7)" fg:x="13015" fg:w="4"/><text x="55.7085%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="55.4585%" y="2837" width="0.0170%" height="15" fill="rgb(215,121,11)" fg:x="13015" fg:w="4"/><text x="55.7085%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="55.4585%" y="2821" width="0.0170%" height="15" fill="rgb(225,107,7)" fg:x="13015" fg:w="4"/><text x="55.7085%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="55.4585%" y="2805" width="0.0170%" height="15" fill="rgb(206,143,15)" fg:x="13015" fg:w="4"/><text x="55.7085%" y="2815.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="55.4755%" y="2485" width="0.0213%" height="15" fill="rgb(252,228,29)" fg:x="13019" fg:w="5"/><text x="55.7255%" y="2495.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="55.4755%" y="2469" width="0.0213%" height="15" fill="rgb(226,49,5)" fg:x="13019" fg:w="5"/><text x="55.7255%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="55.4798%" y="2453" width="0.0170%" height="15" fill="rgb(226,102,52)" fg:x="13020" fg:w="4"/><text x="55.7298%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="55.4798%" y="2437" width="0.0170%" height="15" fill="rgb(232,224,30)" fg:x="13020" fg:w="4"/><text x="55.7298%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="55.4798%" y="2421" width="0.0170%" height="15" fill="rgb(232,20,11)" fg:x="13020" fg:w="4"/><text x="55.7298%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="55.4798%" y="2405" width="0.0170%" height="15" fill="rgb(236,227,37)" fg:x="13020" fg:w="4"/><text x="55.7298%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="55.4841%" y="2389" width="0.0128%" height="15" fill="rgb(217,225,42)" fg:x="13021" fg:w="3"/><text x="55.7341%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="55.4841%" y="2373" width="0.0128%" height="15" fill="rgb(253,84,5)" fg:x="13021" fg:w="3"/><text x="55.7341%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="55.4755%" y="2725" width="0.0256%" height="15" fill="rgb(237,40,7)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="55.4755%" y="2709" width="0.0256%" height="15" fill="rgb(220,209,30)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="55.4755%" y="2693" width="0.0256%" height="15" fill="rgb(220,33,23)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="55.4755%" y="2677" width="0.0256%" height="15" fill="rgb(227,10,37)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="55.4755%" y="2661" width="0.0256%" height="15" fill="rgb(242,35,25)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="55.4755%" y="2645" width="0.0256%" height="15" fill="rgb(214,32,37)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="55.4755%" y="2629" width="0.0256%" height="15" fill="rgb(251,76,27)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="55.4755%" y="2613" width="0.0256%" height="15" fill="rgb(231,67,2)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="55.4755%" y="2597" width="0.0256%" height="15" fill="rgb(214,179,25)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="55.4755%" y="2581" width="0.0256%" height="15" fill="rgb(217,163,40)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="55.4755%" y="2565" width="0.0256%" height="15" fill="rgb(228,121,20)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="55.4755%" y="2549" width="0.0256%" height="15" fill="rgb(207,84,53)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="55.4755%" y="2533" width="0.0256%" height="15" fill="rgb(242,58,10)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="55.4755%" y="2517" width="0.0256%" height="15" fill="rgb(209,53,20)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="55.4755%" y="2501" width="0.0256%" height="15" fill="rgb(216,23,47)" fg:x="13019" fg:w="6"/><text x="55.7255%" y="2511.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="55.5011%" y="2421" width="0.0384%" height="15" fill="rgb(252,135,45)" fg:x="13025" fg:w="9"/><text x="55.7511%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (9 samples, 0.04%)</title><rect x="55.5011%" y="2405" width="0.0384%" height="15" fill="rgb(251,59,14)" fg:x="13025" fg:w="9"/><text x="55.7511%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="55.5096%" y="2389" width="0.0298%" height="15" fill="rgb(210,175,29)" fg:x="13027" fg:w="7"/><text x="55.7596%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="55.5096%" y="2373" width="0.0298%" height="15" fill="rgb(245,152,5)" fg:x="13027" fg:w="7"/><text x="55.7596%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="55.5096%" y="2357" width="0.0298%" height="15" fill="rgb(209,169,2)" fg:x="13027" fg:w="7"/><text x="55.7596%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="55.5096%" y="2341" width="0.0298%" height="15" fill="rgb(253,215,5)" fg:x="13027" fg:w="7"/><text x="55.7596%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::partition (7 samples, 0.03%)</title><rect x="55.5096%" y="2325" width="0.0298%" height="15" fill="rgb(216,92,8)" fg:x="13027" fg:w="7"/><text x="55.7596%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (5 samples, 0.02%)</title><rect x="55.5182%" y="2309" width="0.0213%" height="15" fill="rgb(207,109,42)" fg:x="13029" fg:w="5"/><text x="55.7682%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="55.4585%" y="3013" width="0.0852%" height="15" fill="rgb(233,182,12)" fg:x="13015" fg:w="20"/><text x="55.7085%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="55.4585%" y="2997" width="0.0852%" height="15" fill="rgb(237,133,40)" fg:x="13015" fg:w="20"/><text x="55.7085%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="55.4585%" y="2981" width="0.0852%" height="15" fill="rgb(238,54,35)" fg:x="13015" fg:w="20"/><text x="55.7085%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="55.4585%" y="2965" width="0.0852%" height="15" fill="rgb(236,129,38)" fg:x="13015" fg:w="20"/><text x="55.7085%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="55.4585%" y="2949" width="0.0852%" height="15" fill="rgb(213,200,54)" fg:x="13015" fg:w="20"/><text x="55.7085%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="55.4585%" y="2933" width="0.0852%" height="15" fill="rgb(213,154,49)" fg:x="13015" fg:w="20"/><text x="55.7085%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="55.4585%" y="2917" width="0.0852%" height="15" fill="rgb(252,179,41)" fg:x="13015" fg:w="20"/><text x="55.7085%" y="2927.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="55.4755%" y="2901" width="0.0682%" height="15" fill="rgb(247,225,3)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2911.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="55.4755%" y="2885" width="0.0682%" height="15" fill="rgb(227,146,30)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2895.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="55.4755%" y="2869" width="0.0682%" height="15" fill="rgb(236,204,10)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2879.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="55.4755%" y="2853" width="0.0682%" height="15" fill="rgb(223,81,54)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2863.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="55.4755%" y="2837" width="0.0682%" height="15" fill="rgb(216,53,46)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="55.4755%" y="2821" width="0.0682%" height="15" fill="rgb(218,66,34)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="55.4755%" y="2805" width="0.0682%" height="15" fill="rgb(247,113,47)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="55.4755%" y="2789" width="0.0682%" height="15" fill="rgb(235,1,15)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="55.4755%" y="2773" width="0.0682%" height="15" fill="rgb(224,204,29)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="55.4755%" y="2757" width="0.0682%" height="15" fill="rgb(227,219,52)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="55.4755%" y="2741" width="0.0682%" height="15" fill="rgb(222,5,39)" fg:x="13019" fg:w="16"/><text x="55.7255%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="55.5011%" y="2725" width="0.0426%" height="15" fill="rgb(212,52,37)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="55.5011%" y="2709" width="0.0426%" height="15" fill="rgb(207,15,26)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2719.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="55.5011%" y="2693" width="0.0426%" height="15" fill="rgb(213,141,22)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="55.5011%" y="2677" width="0.0426%" height="15" fill="rgb(230,137,29)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="55.5011%" y="2661" width="0.0426%" height="15" fill="rgb(227,34,5)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="55.5011%" y="2645" width="0.0426%" height="15" fill="rgb(208,162,53)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="55.5011%" y="2629" width="0.0426%" height="15" fill="rgb(240,14,2)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="55.5011%" y="2613" width="0.0426%" height="15" fill="rgb(209,14,40)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="55.5011%" y="2597" width="0.0426%" height="15" fill="rgb(216,102,52)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="55.5011%" y="2581" width="0.0426%" height="15" fill="rgb(231,25,34)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="55.5011%" y="2565" width="0.0426%" height="15" fill="rgb(245,151,13)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="55.5011%" y="2549" width="0.0426%" height="15" fill="rgb(207,88,36)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="55.5011%" y="2533" width="0.0426%" height="15" fill="rgb(208,40,22)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="55.5011%" y="2517" width="0.0426%" height="15" fill="rgb(232,10,1)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (10 samples, 0.04%)</title><rect x="55.5011%" y="2501" width="0.0426%" height="15" fill="rgb(237,128,16)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="55.5011%" y="2485" width="0.0426%" height="15" fill="rgb(252,171,29)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="55.5011%" y="2469" width="0.0426%" height="15" fill="rgb(249,183,54)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="55.5011%" y="2453" width="0.0426%" height="15" fill="rgb(248,98,45)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="55.5011%" y="2437" width="0.0426%" height="15" fill="rgb(243,139,14)" fg:x="13025" fg:w="10"/><text x="55.7511%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="55.5437%" y="2725" width="0.0170%" height="15" fill="rgb(246,93,7)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="55.5437%" y="2709" width="0.0170%" height="15" fill="rgb(228,218,2)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="55.5437%" y="2693" width="0.0170%" height="15" fill="rgb(221,96,52)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="55.5437%" y="2677" width="0.0170%" height="15" fill="rgb(205,97,31)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="55.5437%" y="2661" width="0.0170%" height="15" fill="rgb(227,51,22)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="55.5437%" y="2645" width="0.0170%" height="15" fill="rgb(246,223,27)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="55.5437%" y="2629" width="0.0170%" height="15" fill="rgb(231,196,46)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="55.5437%" y="2613" width="0.0170%" height="15" fill="rgb(236,13,39)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="55.5437%" y="2597" width="0.0170%" height="15" fill="rgb(222,190,35)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="55.5437%" y="2581" width="0.0170%" height="15" fill="rgb(224,93,25)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="55.5437%" y="2565" width="0.0170%" height="15" fill="rgb(253,212,50)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="55.5437%" y="2549" width="0.0170%" height="15" fill="rgb(225,22,23)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="55.5437%" y="2533" width="0.0170%" height="15" fill="rgb(205,128,51)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="55.5437%" y="2517" width="0.0170%" height="15" fill="rgb(228,192,11)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="55.5437%" y="2501" width="0.0170%" height="15" fill="rgb(231,45,8)" fg:x="13035" fg:w="4"/><text x="55.7937%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="55.5693%" y="2389" width="0.0298%" height="15" fill="rgb(251,186,33)" fg:x="13041" fg:w="7"/><text x="55.8193%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="55.5735%" y="2373" width="0.0256%" height="15" fill="rgb(248,112,50)" fg:x="13042" fg:w="6"/><text x="55.8235%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="55.5778%" y="2357" width="0.0213%" height="15" fill="rgb(228,125,7)" fg:x="13043" fg:w="5"/><text x="55.8278%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="55.5778%" y="2341" width="0.0213%" height="15" fill="rgb(218,203,29)" fg:x="13043" fg:w="5"/><text x="55.8278%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="55.5778%" y="2325" width="0.0213%" height="15" fill="rgb(243,57,34)" fg:x="13043" fg:w="5"/><text x="55.8278%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="55.5821%" y="2309" width="0.0170%" height="15" fill="rgb(209,132,1)" fg:x="13044" fg:w="4"/><text x="55.8321%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (11 samples, 0.05%)</title><rect x="55.5693%" y="2421" width="0.0469%" height="15" fill="rgb(241,136,34)" fg:x="13041" fg:w="11"/><text x="55.8193%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (11 samples, 0.05%)</title><rect x="55.5693%" y="2405" width="0.0469%" height="15" fill="rgb(209,214,43)" fg:x="13041" fg:w="11"/><text x="55.8193%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="55.5991%" y="2389" width="0.0170%" height="15" fill="rgb(245,51,33)" fg:x="13048" fg:w="4"/><text x="55.8491%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="55.5991%" y="2373" width="0.0170%" height="15" fill="rgb(239,2,23)" fg:x="13048" fg:w="4"/><text x="55.8491%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="55.5991%" y="2357" width="0.0170%" height="15" fill="rgb(240,130,9)" fg:x="13048" fg:w="4"/><text x="55.8491%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="55.5991%" y="2341" width="0.0170%" height="15" fill="rgb(254,157,8)" fg:x="13048" fg:w="4"/><text x="55.8491%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="55.6034%" y="2325" width="0.0128%" height="15" fill="rgb(249,215,52)" fg:x="13049" fg:w="3"/><text x="55.8534%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="55.6034%" y="2309" width="0.0128%" height="15" fill="rgb(221,191,46)" fg:x="13049" fg:w="3"/><text x="55.8534%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (19 samples, 0.08%)</title><rect x="55.5437%" y="2837" width="0.0810%" height="15" fill="rgb(254,48,41)" fg:x="13035" fg:w="19"/><text x="55.7937%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (19 samples, 0.08%)</title><rect x="55.5437%" y="2821" width="0.0810%" height="15" fill="rgb(222,140,25)" fg:x="13035" fg:w="19"/><text x="55.7937%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="55.5437%" y="2805" width="0.0810%" height="15" fill="rgb(210,186,3)" fg:x="13035" fg:w="19"/><text x="55.7937%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="55.5437%" y="2789" width="0.0810%" height="15" fill="rgb(235,132,8)" fg:x="13035" fg:w="19"/><text x="55.7937%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="55.5437%" y="2773" width="0.0810%" height="15" fill="rgb(232,216,48)" fg:x="13035" fg:w="19"/><text x="55.7937%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="55.5437%" y="2757" width="0.0810%" height="15" fill="rgb(213,17,0)" fg:x="13035" fg:w="19"/><text x="55.7937%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="55.5437%" y="2741" width="0.0810%" height="15" fill="rgb(234,64,26)" fg:x="13035" fg:w="19"/><text x="55.7937%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="55.5608%" y="2725" width="0.0639%" height="15" fill="rgb(245,106,35)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="55.5608%" y="2709" width="0.0639%" height="15" fill="rgb(241,128,31)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2719.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="55.5608%" y="2693" width="0.0639%" height="15" fill="rgb(229,170,10)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="55.5608%" y="2677" width="0.0639%" height="15" fill="rgb(223,108,51)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="55.5608%" y="2661" width="0.0639%" height="15" fill="rgb(218,188,30)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="55.5608%" y="2645" width="0.0639%" height="15" fill="rgb(216,113,40)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="55.5608%" y="2629" width="0.0639%" height="15" fill="rgb(249,102,47)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="55.5608%" y="2613" width="0.0639%" height="15" fill="rgb(213,38,32)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="55.5608%" y="2597" width="0.0639%" height="15" fill="rgb(239,137,45)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="55.5608%" y="2581" width="0.0639%" height="15" fill="rgb(233,55,31)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="55.5608%" y="2565" width="0.0639%" height="15" fill="rgb(217,228,41)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (15 samples, 0.06%)</title><rect x="55.5608%" y="2549" width="0.0639%" height="15" fill="rgb(230,224,9)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (15 samples, 0.06%)</title><rect x="55.5608%" y="2533" width="0.0639%" height="15" fill="rgb(253,194,54)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (15 samples, 0.06%)</title><rect x="55.5608%" y="2517" width="0.0639%" height="15" fill="rgb(225,64,49)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (15 samples, 0.06%)</title><rect x="55.5608%" y="2501" width="0.0639%" height="15" fill="rgb(227,102,35)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (15 samples, 0.06%)</title><rect x="55.5608%" y="2485" width="0.0639%" height="15" fill="rgb(252,206,33)" fg:x="13039" fg:w="15"/><text x="55.8108%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (13 samples, 0.06%)</title><rect x="55.5693%" y="2469" width="0.0554%" height="15" fill="rgb(205,164,38)" fg:x="13041" fg:w="13"/><text x="55.8193%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (13 samples, 0.06%)</title><rect x="55.5693%" y="2453" width="0.0554%" height="15" fill="rgb(214,189,52)" fg:x="13041" fg:w="13"/><text x="55.8193%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (13 samples, 0.06%)</title><rect x="55.5693%" y="2437" width="0.0554%" height="15" fill="rgb(247,123,16)" fg:x="13041" fg:w="13"/><text x="55.8193%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="55.6247%" y="2389" width="0.0128%" height="15" fill="rgb(224,224,53)" fg:x="13054" fg:w="3"/><text x="55.8747%" y="2399.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3 samples, 0.01%)</title><rect x="55.6460%" y="2293" width="0.0128%" height="15" fill="rgb(251,225,21)" fg:x="13059" fg:w="3"/><text x="55.8960%" y="2303.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="55.6375%" y="2389" width="0.0256%" height="15" fill="rgb(228,84,3)" fg:x="13057" fg:w="6"/><text x="55.8875%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="55.6375%" y="2373" width="0.0256%" height="15" fill="rgb(211,128,46)" fg:x="13057" fg:w="6"/><text x="55.8875%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="55.6375%" y="2357" width="0.0256%" height="15" fill="rgb(230,121,18)" fg:x="13057" fg:w="6"/><text x="55.8875%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="55.6375%" y="2341" width="0.0256%" height="15" fill="rgb(242,166,25)" fg:x="13057" fg:w="6"/><text x="55.8875%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::partition (6 samples, 0.03%)</title><rect x="55.6375%" y="2325" width="0.0256%" height="15" fill="rgb(230,213,54)" fg:x="13057" fg:w="6"/><text x="55.8875%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (5 samples, 0.02%)</title><rect x="55.6417%" y="2309" width="0.0213%" height="15" fill="rgb(229,144,22)" fg:x="13058" fg:w="5"/><text x="55.8917%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="55.6247%" y="2661" width="0.0426%" height="15" fill="rgb(215,20,23)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="55.6247%" y="2645" width="0.0426%" height="15" fill="rgb(253,215,2)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="55.6247%" y="2629" width="0.0426%" height="15" fill="rgb(211,83,41)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="55.6247%" y="2613" width="0.0426%" height="15" fill="rgb(238,135,24)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="55.6247%" y="2597" width="0.0426%" height="15" fill="rgb(240,130,25)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="55.6247%" y="2581" width="0.0426%" height="15" fill="rgb(226,32,21)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="55.6247%" y="2565" width="0.0426%" height="15" fill="rgb(215,125,28)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="55.6247%" y="2549" width="0.0426%" height="15" fill="rgb(233,5,3)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="55.6247%" y="2533" width="0.0426%" height="15" fill="rgb(225,26,18)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="55.6247%" y="2517" width="0.0426%" height="15" fill="rgb(211,200,37)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (10 samples, 0.04%)</title><rect x="55.6247%" y="2501" width="0.0426%" height="15" fill="rgb(235,61,34)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="55.6247%" y="2485" width="0.0426%" height="15" fill="rgb(233,205,38)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="55.6247%" y="2469" width="0.0426%" height="15" fill="rgb(251,3,1)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="55.6247%" y="2453" width="0.0426%" height="15" fill="rgb(223,170,28)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="55.6247%" y="2437" width="0.0426%" height="15" fill="rgb(213,199,20)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2447.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="55.6247%" y="2421" width="0.0426%" height="15" fill="rgb(215,113,48)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (10 samples, 0.04%)</title><rect x="55.6247%" y="2405" width="0.0426%" height="15" fill="rgb(211,64,17)" fg:x="13054" fg:w="10"/><text x="55.8747%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="55.6673%" y="2325" width="0.0128%" height="15" fill="rgb(217,160,53)" fg:x="13064" fg:w="3"/><text x="55.9173%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="55.6673%" y="2309" width="0.0128%" height="15" fill="rgb(206,185,19)" fg:x="13064" fg:w="3"/><text x="55.9173%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="55.6673%" y="2293" width="0.0128%" height="15" fill="rgb(236,77,26)" fg:x="13064" fg:w="3"/><text x="55.9173%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="55.6673%" y="2277" width="0.0128%" height="15" fill="rgb(236,57,0)" fg:x="13064" fg:w="3"/><text x="55.9173%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="55.6673%" y="2261" width="0.0128%" height="15" fill="rgb(208,17,27)" fg:x="13064" fg:w="3"/><text x="55.9173%" y="2271.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="55.6673%" y="2357" width="0.0256%" height="15" fill="rgb(252,126,13)" fg:x="13064" fg:w="6"/><text x="55.9173%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="55.6673%" y="2341" width="0.0256%" height="15" fill="rgb(205,48,49)" fg:x="13064" fg:w="6"/><text x="55.9173%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (56 samples, 0.24%)</title><rect x="55.4585%" y="3125" width="0.2386%" height="15" fill="rgb(253,6,43)" fg:x="13015" fg:w="56"/><text x="55.7085%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (56 samples, 0.24%)</title><rect x="55.4585%" y="3109" width="0.2386%" height="15" fill="rgb(233,54,5)" fg:x="13015" fg:w="56"/><text x="55.7085%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (56 samples, 0.24%)</title><rect x="55.4585%" y="3093" width="0.2386%" height="15" fill="rgb(236,120,9)" fg:x="13015" fg:w="56"/><text x="55.7085%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.24%)</title><rect x="55.4585%" y="3077" width="0.2386%" height="15" fill="rgb(243,14,31)" fg:x="13015" fg:w="56"/><text x="55.7085%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (56 samples, 0.24%)</title><rect x="55.4585%" y="3061" width="0.2386%" height="15" fill="rgb(246,225,30)" fg:x="13015" fg:w="56"/><text x="55.7085%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.24%)</title><rect x="55.4585%" y="3045" width="0.2386%" height="15" fill="rgb(240,62,3)" fg:x="13015" fg:w="56"/><text x="55.7085%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (56 samples, 0.24%)</title><rect x="55.4585%" y="3029" width="0.2386%" height="15" fill="rgb(236,167,15)" fg:x="13015" fg:w="56"/><text x="55.7085%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (36 samples, 0.15%)</title><rect x="55.5437%" y="3013" width="0.1534%" height="15" fill="rgb(210,107,10)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (36 samples, 0.15%)</title><rect x="55.5437%" y="2997" width="0.1534%" height="15" fill="rgb(253,99,54)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="3007.50"></text></g><g><title>std::panicking::try (36 samples, 0.15%)</title><rect x="55.5437%" y="2981" width="0.1534%" height="15" fill="rgb(216,35,30)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (36 samples, 0.15%)</title><rect x="55.5437%" y="2965" width="0.1534%" height="15" fill="rgb(208,147,53)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (36 samples, 0.15%)</title><rect x="55.5437%" y="2949" width="0.1534%" height="15" fill="rgb(235,136,46)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (36 samples, 0.15%)</title><rect x="55.5437%" y="2933" width="0.1534%" height="15" fill="rgb(215,135,28)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (36 samples, 0.15%)</title><rect x="55.5437%" y="2917" width="0.1534%" height="15" fill="rgb(219,103,42)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.15%)</title><rect x="55.5437%" y="2901" width="0.1534%" height="15" fill="rgb(213,123,22)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (36 samples, 0.15%)</title><rect x="55.5437%" y="2885" width="0.1534%" height="15" fill="rgb(219,11,26)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.15%)</title><rect x="55.5437%" y="2869" width="0.1534%" height="15" fill="rgb(210,202,18)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (36 samples, 0.15%)</title><rect x="55.5437%" y="2853" width="0.1534%" height="15" fill="rgb(221,219,43)" fg:x="13035" fg:w="36"/><text x="55.7937%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="55.6247%" y="2837" width="0.0724%" height="15" fill="rgb(248,180,23)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="55.6247%" y="2821" width="0.0724%" height="15" fill="rgb(228,72,9)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2831.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="55.6247%" y="2805" width="0.0724%" height="15" fill="rgb(252,2,21)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="55.6247%" y="2789" width="0.0724%" height="15" fill="rgb(227,159,43)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="55.6247%" y="2773" width="0.0724%" height="15" fill="rgb(247,49,8)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="55.6247%" y="2757" width="0.0724%" height="15" fill="rgb(215,5,0)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="55.6247%" y="2741" width="0.0724%" height="15" fill="rgb(218,220,36)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="55.6247%" y="2725" width="0.0724%" height="15" fill="rgb(222,37,36)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="55.6247%" y="2709" width="0.0724%" height="15" fill="rgb(217,20,22)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="55.6247%" y="2693" width="0.0724%" height="15" fill="rgb(220,55,51)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="55.6247%" y="2677" width="0.0724%" height="15" fill="rgb(213,179,41)" fg:x="13054" fg:w="17"/><text x="55.8747%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="55.6673%" y="2661" width="0.0298%" height="15" fill="rgb(247,48,12)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="55.6673%" y="2645" width="0.0298%" height="15" fill="rgb(225,137,22)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2655.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="55.6673%" y="2629" width="0.0298%" height="15" fill="rgb(205,131,39)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="55.6673%" y="2613" width="0.0298%" height="15" fill="rgb(238,6,36)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="55.6673%" y="2597" width="0.0298%" height="15" fill="rgb(249,112,28)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="55.6673%" y="2581" width="0.0298%" height="15" fill="rgb(209,119,41)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="55.6673%" y="2565" width="0.0298%" height="15" fill="rgb(237,127,12)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="55.6673%" y="2549" width="0.0298%" height="15" fill="rgb(235,226,45)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="55.6673%" y="2533" width="0.0298%" height="15" fill="rgb(228,73,45)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="55.6673%" y="2517" width="0.0298%" height="15" fill="rgb(240,143,40)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="55.6673%" y="2501" width="0.0298%" height="15" fill="rgb(254,198,4)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="55.6673%" y="2485" width="0.0298%" height="15" fill="rgb(234,17,24)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="55.6673%" y="2469" width="0.0298%" height="15" fill="rgb(233,167,12)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="55.6673%" y="2453" width="0.0298%" height="15" fill="rgb(219,86,1)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="55.6673%" y="2437" width="0.0298%" height="15" fill="rgb(239,2,36)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="55.6673%" y="2421" width="0.0298%" height="15" fill="rgb(234,216,23)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="55.6673%" y="2405" width="0.0298%" height="15" fill="rgb(250,135,28)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="55.6673%" y="2389" width="0.0298%" height="15" fill="rgb(244,112,13)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="55.6673%" y="2373" width="0.0298%" height="15" fill="rgb(254,8,9)" fg:x="13064" fg:w="7"/><text x="55.9173%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="55.7099%" y="2389" width="0.0128%" height="15" fill="rgb(247,202,46)" fg:x="13074" fg:w="3"/><text x="55.9599%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="55.7099%" y="2373" width="0.0128%" height="15" fill="rgb(243,124,39)" fg:x="13074" fg:w="3"/><text x="55.9599%" y="2383.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="55.6971%" y="2485" width="0.0298%" height="15" fill="rgb(229,210,4)" fg:x="13071" fg:w="7"/><text x="55.9471%" y="2495.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="55.6971%" y="2469" width="0.0298%" height="15" fill="rgb(239,70,26)" fg:x="13071" fg:w="7"/><text x="55.9471%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="55.7014%" y="2453" width="0.0256%" height="15" fill="rgb(214,204,28)" fg:x="13072" fg:w="6"/><text x="55.9514%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="55.7014%" y="2437" width="0.0256%" height="15" fill="rgb(248,21,38)" fg:x="13072" fg:w="6"/><text x="55.9514%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="55.7014%" y="2421" width="0.0256%" height="15" fill="rgb(216,109,30)" fg:x="13072" fg:w="6"/><text x="55.9514%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="55.7014%" y="2405" width="0.0256%" height="15" fill="rgb(252,129,0)" fg:x="13072" fg:w="6"/><text x="55.9514%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="55.6971%" y="2725" width="0.0384%" height="15" fill="rgb(218,146,19)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="55.6971%" y="2709" width="0.0384%" height="15" fill="rgb(249,64,44)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="55.6971%" y="2693" width="0.0384%" height="15" fill="rgb(234,227,48)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="55.6971%" y="2677" width="0.0384%" height="15" fill="rgb(211,228,17)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="55.6971%" y="2661" width="0.0384%" height="15" fill="rgb(205,80,38)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="55.6971%" y="2645" width="0.0384%" height="15" fill="rgb(231,75,6)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2655.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="55.6971%" y="2629" width="0.0384%" height="15" fill="rgb(246,15,32)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="55.6971%" y="2613" width="0.0384%" height="15" fill="rgb(212,39,25)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="55.6971%" y="2597" width="0.0384%" height="15" fill="rgb(238,160,29)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2607.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="55.6971%" y="2581" width="0.0384%" height="15" fill="rgb(220,149,22)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="55.6971%" y="2565" width="0.0384%" height="15" fill="rgb(251,215,15)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2575.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="55.6971%" y="2549" width="0.0384%" height="15" fill="rgb(208,28,54)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2559.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="55.6971%" y="2533" width="0.0384%" height="15" fill="rgb(227,172,2)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2543.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="55.6971%" y="2517" width="0.0384%" height="15" fill="rgb(228,195,28)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="55.6971%" y="2501" width="0.0384%" height="15" fill="rgb(216,5,11)" fg:x="13071" fg:w="9"/><text x="55.9471%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="55.7397%" y="2389" width="0.0170%" height="15" fill="rgb(232,165,40)" fg:x="13081" fg:w="4"/><text x="55.9897%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="55.7397%" y="2373" width="0.0170%" height="15" fill="rgb(240,187,21)" fg:x="13081" fg:w="4"/><text x="55.9897%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="55.7397%" y="2357" width="0.0170%" height="15" fill="rgb(223,213,54)" fg:x="13081" fg:w="4"/><text x="55.9897%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="55.7397%" y="2341" width="0.0170%" height="15" fill="rgb(238,38,19)" fg:x="13081" fg:w="4"/><text x="55.9897%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="55.7397%" y="2325" width="0.0170%" height="15" fill="rgb(223,8,14)" fg:x="13081" fg:w="4"/><text x="55.9897%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="55.7397%" y="2309" width="0.0170%" height="15" fill="rgb(205,103,30)" fg:x="13081" fg:w="4"/><text x="55.9897%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (4 samples, 0.02%)</title><rect x="55.7397%" y="2293" width="0.0170%" height="15" fill="rgb(246,142,22)" fg:x="13081" fg:w="4"/><text x="55.9897%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="55.7568%" y="2325" width="0.0128%" height="15" fill="rgb(220,139,12)" fg:x="13085" fg:w="3"/><text x="56.0068%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="55.7568%" y="2309" width="0.0128%" height="15" fill="rgb(225,212,48)" fg:x="13085" fg:w="3"/><text x="56.0068%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="55.7397%" y="2421" width="0.0384%" height="15" fill="rgb(211,204,40)" fg:x="13081" fg:w="9"/><text x="55.9897%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (9 samples, 0.04%)</title><rect x="55.7397%" y="2405" width="0.0384%" height="15" fill="rgb(235,172,43)" fg:x="13081" fg:w="9"/><text x="55.9897%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="55.7568%" y="2389" width="0.0213%" height="15" fill="rgb(238,152,42)" fg:x="13085" fg:w="5"/><text x="56.0068%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="55.7568%" y="2373" width="0.0213%" height="15" fill="rgb(212,47,41)" fg:x="13085" fg:w="5"/><text x="56.0068%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="55.7568%" y="2357" width="0.0213%" height="15" fill="rgb(248,83,9)" fg:x="13085" fg:w="5"/><text x="56.0068%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="55.7568%" y="2341" width="0.0213%" height="15" fill="rgb(254,115,11)" fg:x="13085" fg:w="5"/><text x="56.0068%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="55.6971%" y="2837" width="0.0937%" height="15" fill="rgb(233,213,13)" fg:x="13071" fg:w="22"/><text x="55.9471%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="55.6971%" y="2821" width="0.0937%" height="15" fill="rgb(243,73,52)" fg:x="13071" fg:w="22"/><text x="55.9471%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="55.6971%" y="2805" width="0.0937%" height="15" fill="rgb(249,108,21)" fg:x="13071" fg:w="22"/><text x="55.9471%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="55.6971%" y="2789" width="0.0937%" height="15" fill="rgb(231,157,31)" fg:x="13071" fg:w="22"/><text x="55.9471%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="55.6971%" y="2773" width="0.0937%" height="15" fill="rgb(234,180,18)" fg:x="13071" fg:w="22"/><text x="55.9471%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="55.6971%" y="2757" width="0.0937%" height="15" fill="rgb(248,89,31)" fg:x="13071" fg:w="22"/><text x="55.9471%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="55.6971%" y="2741" width="0.0937%" height="15" fill="rgb(253,140,24)" fg:x="13071" fg:w="22"/><text x="55.9471%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="55.7355%" y="2725" width="0.0554%" height="15" fill="rgb(238,24,26)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="55.7355%" y="2709" width="0.0554%" height="15" fill="rgb(209,108,1)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2719.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="55.7355%" y="2693" width="0.0554%" height="15" fill="rgb(230,155,12)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="55.7355%" y="2677" width="0.0554%" height="15" fill="rgb(230,125,17)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="55.7355%" y="2661" width="0.0554%" height="15" fill="rgb(242,164,33)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="55.7355%" y="2645" width="0.0554%" height="15" fill="rgb(211,108,7)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="55.7355%" y="2629" width="0.0554%" height="15" fill="rgb(215,87,11)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="55.7355%" y="2613" width="0.0554%" height="15" fill="rgb(210,41,30)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.06%)</title><rect x="55.7355%" y="2597" width="0.0554%" height="15" fill="rgb(241,124,18)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="55.7355%" y="2581" width="0.0554%" height="15" fill="rgb(215,71,17)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="55.7355%" y="2565" width="0.0554%" height="15" fill="rgb(227,78,9)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="55.7355%" y="2549" width="0.0554%" height="15" fill="rgb(227,162,45)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="55.7355%" y="2533" width="0.0554%" height="15" fill="rgb(220,171,8)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="55.7355%" y="2517" width="0.0554%" height="15" fill="rgb(242,154,52)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (13 samples, 0.06%)</title><rect x="55.7355%" y="2501" width="0.0554%" height="15" fill="rgb(230,83,39)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (13 samples, 0.06%)</title><rect x="55.7355%" y="2485" width="0.0554%" height="15" fill="rgb(226,136,12)" fg:x="13080" fg:w="13"/><text x="55.9855%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="55.7397%" y="2469" width="0.0511%" height="15" fill="rgb(205,39,46)" fg:x="13081" fg:w="12"/><text x="55.9897%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="55.7397%" y="2453" width="0.0511%" height="15" fill="rgb(224,15,48)" fg:x="13081" fg:w="12"/><text x="55.9897%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (12 samples, 0.05%)</title><rect x="55.7397%" y="2437" width="0.0511%" height="15" fill="rgb(246,92,45)" fg:x="13081" fg:w="12"/><text x="55.9897%" y="2447.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="55.7781%" y="2421" width="0.0128%" height="15" fill="rgb(246,87,3)" fg:x="13090" fg:w="3"/><text x="56.0281%" y="2431.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="55.7781%" y="2405" width="0.0128%" height="15" fill="rgb(248,96,9)" fg:x="13090" fg:w="3"/><text x="56.0281%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="55.7951%" y="2389" width="0.0213%" height="15" fill="rgb(238,135,34)" fg:x="13094" fg:w="5"/><text x="56.0451%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="55.7994%" y="2373" width="0.0170%" height="15" fill="rgb(220,209,38)" fg:x="13095" fg:w="4"/><text x="56.0494%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="55.7994%" y="2357" width="0.0170%" height="15" fill="rgb(211,202,18)" fg:x="13095" fg:w="4"/><text x="56.0494%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="55.7994%" y="2341" width="0.0170%" height="15" fill="rgb(225,63,0)" fg:x="13095" fg:w="4"/><text x="56.0494%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="55.7994%" y="2325" width="0.0170%" height="15" fill="rgb(215,26,29)" fg:x="13095" fg:w="4"/><text x="56.0494%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="55.8036%" y="2309" width="0.0128%" height="15" fill="rgb(205,176,13)" fg:x="13096" fg:w="3"/><text x="56.0536%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (12 samples, 0.05%)</title><rect x="55.7909%" y="2421" width="0.0511%" height="15" fill="rgb(224,189,51)" fg:x="13093" fg:w="12"/><text x="56.0409%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (12 samples, 0.05%)</title><rect x="55.7909%" y="2405" width="0.0511%" height="15" fill="rgb(242,51,7)" fg:x="13093" fg:w="12"/><text x="56.0409%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="55.8164%" y="2389" width="0.0256%" height="15" fill="rgb(217,97,11)" fg:x="13099" fg:w="6"/><text x="56.0664%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="55.8164%" y="2373" width="0.0256%" height="15" fill="rgb(235,65,46)" fg:x="13099" fg:w="6"/><text x="56.0664%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="55.8164%" y="2357" width="0.0256%" height="15" fill="rgb(243,81,21)" fg:x="13099" fg:w="6"/><text x="56.0664%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="55.8164%" y="2341" width="0.0256%" height="15" fill="rgb(208,3,35)" fg:x="13099" fg:w="6"/><text x="56.0664%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="55.7909%" y="2661" width="0.0639%" height="15" fill="rgb(215,42,25)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="55.7909%" y="2645" width="0.0639%" height="15" fill="rgb(207,52,45)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="55.7909%" y="2629" width="0.0639%" height="15" fill="rgb(252,215,41)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="55.7909%" y="2613" width="0.0639%" height="15" fill="rgb(226,96,23)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="55.7909%" y="2597" width="0.0639%" height="15" fill="rgb(233,89,37)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="55.7909%" y="2581" width="0.0639%" height="15" fill="rgb(234,94,43)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (15 samples, 0.06%)</title><rect x="55.7909%" y="2565" width="0.0639%" height="15" fill="rgb(216,130,35)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (15 samples, 0.06%)</title><rect x="55.7909%" y="2549" width="0.0639%" height="15" fill="rgb(242,161,5)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (15 samples, 0.06%)</title><rect x="55.7909%" y="2533" width="0.0639%" height="15" fill="rgb(218,46,38)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (15 samples, 0.06%)</title><rect x="55.7909%" y="2517" width="0.0639%" height="15" fill="rgb(207,47,36)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (15 samples, 0.06%)</title><rect x="55.7909%" y="2501" width="0.0639%" height="15" fill="rgb(217,44,32)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (15 samples, 0.06%)</title><rect x="55.7909%" y="2485" width="0.0639%" height="15" fill="rgb(226,141,37)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (15 samples, 0.06%)</title><rect x="55.7909%" y="2469" width="0.0639%" height="15" fill="rgb(248,36,27)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (15 samples, 0.06%)</title><rect x="55.7909%" y="2453" width="0.0639%" height="15" fill="rgb(244,162,21)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (15 samples, 0.06%)</title><rect x="55.7909%" y="2437" width="0.0639%" height="15" fill="rgb(218,168,47)" fg:x="13093" fg:w="15"/><text x="56.0409%" y="2447.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples<A>::next (3 samples, 0.01%)</title><rect x="55.8420%" y="2421" width="0.0128%" height="15" fill="rgb(211,2,15)" fg:x="13105" fg:w="3"/><text x="56.0920%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="55.8548%" y="2357" width="0.0213%" height="15" fill="rgb(218,213,45)" fg:x="13108" fg:w="5"/><text x="56.1048%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="55.8548%" y="2341" width="0.0213%" height="15" fill="rgb(222,2,25)" fg:x="13108" fg:w="5"/><text x="56.1048%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (43 samples, 0.18%)</title><rect x="55.6971%" y="2949" width="0.1832%" height="15" fill="rgb(254,54,47)" fg:x="13071" fg:w="43"/><text x="55.9471%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (43 samples, 0.18%)</title><rect x="55.6971%" y="2933" width="0.1832%" height="15" fill="rgb(227,209,11)" fg:x="13071" fg:w="43"/><text x="55.9471%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (43 samples, 0.18%)</title><rect x="55.6971%" y="2917" width="0.1832%" height="15" fill="rgb(242,50,17)" fg:x="13071" fg:w="43"/><text x="55.9471%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.18%)</title><rect x="55.6971%" y="2901" width="0.1832%" height="15" fill="rgb(212,134,46)" fg:x="13071" fg:w="43"/><text x="55.9471%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (43 samples, 0.18%)</title><rect x="55.6971%" y="2885" width="0.1832%" height="15" fill="rgb(214,209,53)" fg:x="13071" fg:w="43"/><text x="55.9471%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.18%)</title><rect x="55.6971%" y="2869" width="0.1832%" height="15" fill="rgb(205,165,33)" fg:x="13071" fg:w="43"/><text x="55.9471%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43 samples, 0.18%)</title><rect x="55.6971%" y="2853" width="0.1832%" height="15" fill="rgb(213,45,18)" fg:x="13071" fg:w="43"/><text x="55.9471%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="55.7909%" y="2837" width="0.0895%" height="15" fill="rgb(228,4,1)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="55.7909%" y="2821" width="0.0895%" height="15" fill="rgb(247,229,43)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2831.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="55.7909%" y="2805" width="0.0895%" height="15" fill="rgb(253,105,40)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="55.7909%" y="2789" width="0.0895%" height="15" fill="rgb(210,100,47)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="55.7909%" y="2773" width="0.0895%" height="15" fill="rgb(207,72,49)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="55.7909%" y="2757" width="0.0895%" height="15" fill="rgb(224,42,36)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="55.7909%" y="2741" width="0.0895%" height="15" fill="rgb(230,132,5)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="55.7909%" y="2725" width="0.0895%" height="15" fill="rgb(251,75,6)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="55.7909%" y="2709" width="0.0895%" height="15" fill="rgb(207,91,53)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="55.7909%" y="2693" width="0.0895%" height="15" fill="rgb(253,1,50)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="55.7909%" y="2677" width="0.0895%" height="15" fill="rgb(245,144,37)" fg:x="13093" fg:w="21"/><text x="56.0409%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="55.8548%" y="2661" width="0.0256%" height="15" fill="rgb(221,46,13)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="55.8548%" y="2645" width="0.0256%" height="15" fill="rgb(226,172,0)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2655.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="55.8548%" y="2629" width="0.0256%" height="15" fill="rgb(212,207,26)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="55.8548%" y="2613" width="0.0256%" height="15" fill="rgb(237,71,20)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="55.8548%" y="2597" width="0.0256%" height="15" fill="rgb(241,228,25)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="55.8548%" y="2581" width="0.0256%" height="15" fill="rgb(233,85,43)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="55.8548%" y="2565" width="0.0256%" height="15" fill="rgb(226,161,47)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="55.8548%" y="2549" width="0.0256%" height="15" fill="rgb(214,6,2)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="55.8548%" y="2533" width="0.0256%" height="15" fill="rgb(217,110,21)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="55.8548%" y="2517" width="0.0256%" height="15" fill="rgb(245,6,0)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="55.8548%" y="2501" width="0.0256%" height="15" fill="rgb(223,59,5)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="55.8548%" y="2485" width="0.0256%" height="15" fill="rgb(231,54,54)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="55.8548%" y="2469" width="0.0256%" height="15" fill="rgb(242,112,18)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="55.8548%" y="2453" width="0.0256%" height="15" fill="rgb(236,221,7)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="55.8548%" y="2437" width="0.0256%" height="15" fill="rgb(215,49,16)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="55.8548%" y="2421" width="0.0256%" height="15" fill="rgb(253,106,50)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="55.8548%" y="2405" width="0.0256%" height="15" fill="rgb(248,169,51)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="55.8548%" y="2389" width="0.0256%" height="15" fill="rgb(247,146,47)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="55.8548%" y="2373" width="0.0256%" height="15" fill="rgb(253,188,45)" fg:x="13108" fg:w="6"/><text x="56.1048%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="55.8846%" y="2389" width="0.0213%" height="15" fill="rgb(222,87,40)" fg:x="13115" fg:w="5"/><text x="56.1346%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="55.8889%" y="2373" width="0.0170%" height="15" fill="rgb(250,5,35)" fg:x="13116" fg:w="4"/><text x="56.1389%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="55.8889%" y="2357" width="0.0170%" height="15" fill="rgb(217,56,28)" fg:x="13116" fg:w="4"/><text x="56.1389%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="55.8889%" y="2341" width="0.0170%" height="15" fill="rgb(208,140,51)" fg:x="13116" fg:w="4"/><text x="56.1389%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="55.8889%" y="2325" width="0.0170%" height="15" fill="rgb(220,13,43)" fg:x="13116" fg:w="4"/><text x="56.1389%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="55.8931%" y="2309" width="0.0128%" height="15" fill="rgb(221,18,50)" fg:x="13117" fg:w="3"/><text x="56.1431%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="55.8931%" y="2293" width="0.0128%" height="15" fill="rgb(237,15,43)" fg:x="13117" fg:w="3"/><text x="56.1431%" y="2303.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="55.9059%" y="2389" width="0.0341%" height="15" fill="rgb(218,13,43)" fg:x="13120" fg:w="8"/><text x="56.1559%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="55.9059%" y="2373" width="0.0341%" height="15" fill="rgb(242,145,42)" fg:x="13120" fg:w="8"/><text x="56.1559%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="55.9059%" y="2357" width="0.0341%" height="15" fill="rgb(205,175,18)" fg:x="13120" fg:w="8"/><text x="56.1559%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="55.9059%" y="2341" width="0.0341%" height="15" fill="rgb(208,0,35)" fg:x="13120" fg:w="8"/><text x="56.1559%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::partition (6 samples, 0.03%)</title><rect x="55.9144%" y="2325" width="0.0256%" height="15" fill="rgb(249,127,16)" fg:x="13122" fg:w="6"/><text x="56.1644%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (6 samples, 0.03%)</title><rect x="55.9144%" y="2309" width="0.0256%" height="15" fill="rgb(249,32,35)" fg:x="13122" fg:w="6"/><text x="56.1644%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by::_{{closure}} (3 samples, 0.01%)</title><rect x="55.9272%" y="2293" width="0.0128%" height="15" fill="rgb(218,177,26)" fg:x="13125" fg:w="3"/><text x="56.1772%" y="2303.50"></text></g><g><title><core::cmp::Ordering as core::cmp::PartialEq>::eq (3 samples, 0.01%)</title><rect x="55.9272%" y="2277" width="0.0128%" height="15" fill="rgb(212,10,45)" fg:x="13125" fg:w="3"/><text x="56.1772%" y="2287.50"></text></g><g><title>core::ops::function::Fn::call (15 samples, 0.06%)</title><rect x="55.8803%" y="2421" width="0.0639%" height="15" fill="rgb(224,182,33)" fg:x="13114" fg:w="15"/><text x="56.1303%" y="2431.50"></text></g><g><title>criterion::analysis::estimates::stats (15 samples, 0.06%)</title><rect x="55.8803%" y="2405" width="0.0639%" height="15" fill="rgb(253,55,51)" fg:x="13114" fg:w="15"/><text x="56.1303%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (17 samples, 0.07%)</title><rect x="55.8803%" y="2661" width="0.0724%" height="15" fill="rgb(243,16,33)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="55.8803%" y="2645" width="0.0724%" height="15" fill="rgb(222,134,14)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="55.8803%" y="2629" width="0.0724%" height="15" fill="rgb(220,181,0)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="55.8803%" y="2613" width="0.0724%" height="15" fill="rgb(225,217,1)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (17 samples, 0.07%)</title><rect x="55.8803%" y="2597" width="0.0724%" height="15" fill="rgb(216,216,31)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (17 samples, 0.07%)</title><rect x="55.8803%" y="2581" width="0.0724%" height="15" fill="rgb(244,188,22)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2591.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (17 samples, 0.07%)</title><rect x="55.8803%" y="2565" width="0.0724%" height="15" fill="rgb(251,55,11)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (17 samples, 0.07%)</title><rect x="55.8803%" y="2549" width="0.0724%" height="15" fill="rgb(235,106,3)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (17 samples, 0.07%)</title><rect x="55.8803%" y="2533" width="0.0724%" height="15" fill="rgb(249,216,1)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2543.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (17 samples, 0.07%)</title><rect x="55.8803%" y="2517" width="0.0724%" height="15" fill="rgb(242,150,5)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2527.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (17 samples, 0.07%)</title><rect x="55.8803%" y="2501" width="0.0724%" height="15" fill="rgb(225,171,26)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2511.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (17 samples, 0.07%)</title><rect x="55.8803%" y="2485" width="0.0724%" height="15" fill="rgb(211,1,45)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2495.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (17 samples, 0.07%)</title><rect x="55.8803%" y="2469" width="0.0724%" height="15" fill="rgb(207,222,27)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2479.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (17 samples, 0.07%)</title><rect x="55.8803%" y="2453" width="0.0724%" height="15" fill="rgb(228,194,17)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (17 samples, 0.07%)</title><rect x="55.8803%" y="2437" width="0.0724%" height="15" fill="rgb(212,180,8)" fg:x="13114" fg:w="17"/><text x="56.1303%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="55.9528%" y="2325" width="0.0128%" height="15" fill="rgb(214,191,3)" fg:x="13131" fg:w="3"/><text x="56.2028%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="55.9528%" y="2309" width="0.0128%" height="15" fill="rgb(248,9,16)" fg:x="13131" fg:w="3"/><text x="56.2028%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="55.9528%" y="2293" width="0.0128%" height="15" fill="rgb(253,74,4)" fg:x="13131" fg:w="3"/><text x="56.2028%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="55.9528%" y="2277" width="0.0128%" height="15" fill="rgb(213,90,29)" fg:x="13131" fg:w="3"/><text x="56.2028%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="55.9528%" y="2261" width="0.0128%" height="15" fill="rgb(206,224,11)" fg:x="13131" fg:w="3"/><text x="56.2028%" y="2271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="55.8803%" y="2773" width="0.0937%" height="15" fill="rgb(222,114,17)" fg:x="13114" fg:w="22"/><text x="56.1303%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="55.8803%" y="2757" width="0.0937%" height="15" fill="rgb(226,98,33)" fg:x="13114" fg:w="22"/><text x="56.1303%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="55.8803%" y="2741" width="0.0937%" height="15" fill="rgb(250,17,23)" fg:x="13114" fg:w="22"/><text x="56.1303%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="55.8803%" y="2725" width="0.0937%" height="15" fill="rgb(223,86,7)" fg:x="13114" fg:w="22"/><text x="56.1303%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="55.8803%" y="2709" width="0.0937%" height="15" fill="rgb(250,208,46)" fg:x="13114" fg:w="22"/><text x="56.1303%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="55.8803%" y="2693" width="0.0937%" height="15" fill="rgb(250,184,37)" fg:x="13114" fg:w="22"/><text x="56.1303%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="55.8803%" y="2677" width="0.0937%" height="15" fill="rgb(248,8,14)" fg:x="13114" fg:w="22"/><text x="56.1303%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="55.9528%" y="2661" width="0.0213%" height="15" fill="rgb(231,190,23)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="55.9528%" y="2645" width="0.0213%" height="15" fill="rgb(245,20,8)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2655.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="55.9528%" y="2629" width="0.0213%" height="15" fill="rgb(225,166,2)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="55.9528%" y="2613" width="0.0213%" height="15" fill="rgb(243,99,38)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="55.9528%" y="2597" width="0.0213%" height="15" fill="rgb(247,48,0)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="55.9528%" y="2581" width="0.0213%" height="15" fill="rgb(253,127,37)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="55.9528%" y="2565" width="0.0213%" height="15" fill="rgb(220,198,51)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="55.9528%" y="2549" width="0.0213%" height="15" fill="rgb(215,218,17)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="55.9528%" y="2533" width="0.0213%" height="15" fill="rgb(229,152,36)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.9528%" y="2517" width="0.0213%" height="15" fill="rgb(221,224,10)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="55.9528%" y="2501" width="0.0213%" height="15" fill="rgb(250,126,24)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="55.9528%" y="2485" width="0.0213%" height="15" fill="rgb(217,125,28)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.9528%" y="2469" width="0.0213%" height="15" fill="rgb(222,206,29)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="55.9528%" y="2453" width="0.0213%" height="15" fill="rgb(211,99,4)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="55.9528%" y="2437" width="0.0213%" height="15" fill="rgb(245,78,40)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="55.9528%" y="2421" width="0.0213%" height="15" fill="rgb(230,32,20)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="55.9528%" y="2405" width="0.0213%" height="15" fill="rgb(221,154,45)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="55.9528%" y="2389" width="0.0213%" height="15" fill="rgb(228,164,38)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="55.9528%" y="2373" width="0.0213%" height="15" fill="rgb(234,108,21)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2383.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="55.9528%" y="2357" width="0.0213%" height="15" fill="rgb(231,226,48)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="55.9528%" y="2341" width="0.0213%" height="15" fill="rgb(245,155,1)" fg:x="13131" fg:w="5"/><text x="56.2028%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="55.9741%" y="2325" width="0.0170%" height="15" fill="rgb(254,23,28)" fg:x="13136" fg:w="4"/><text x="56.2241%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="55.9784%" y="2309" width="0.0128%" height="15" fill="rgb(209,195,45)" fg:x="13137" fg:w="3"/><text x="56.2284%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="55.9784%" y="2293" width="0.0128%" height="15" fill="rgb(210,210,36)" fg:x="13137" fg:w="3"/><text x="56.2284%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="55.9784%" y="2277" width="0.0128%" height="15" fill="rgb(239,203,26)" fg:x="13137" fg:w="3"/><text x="56.2284%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="55.9784%" y="2261" width="0.0128%" height="15" fill="rgb(239,166,47)" fg:x="13137" fg:w="3"/><text x="56.2284%" y="2271.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="55.9741%" y="2357" width="0.0298%" height="15" fill="rgb(209,98,24)" fg:x="13136" fg:w="7"/><text x="56.2241%" y="2367.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="55.9741%" y="2341" width="0.0298%" height="15" fill="rgb(219,111,28)" fg:x="13136" fg:w="7"/><text x="56.2241%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="55.9911%" y="2325" width="0.0128%" height="15" fill="rgb(213,166,31)" fg:x="13140" fg:w="3"/><text x="56.2411%" y="2335.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="55.9911%" y="2309" width="0.0128%" height="15" fill="rgb(208,138,22)" fg:x="13140" fg:w="3"/><text x="56.2411%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="55.9911%" y="2293" width="0.0128%" height="15" fill="rgb(250,134,28)" fg:x="13140" fg:w="3"/><text x="56.2411%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="55.9911%" y="2277" width="0.0128%" height="15" fill="rgb(232,171,45)" fg:x="13140" fg:w="3"/><text x="56.2411%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="55.9911%" y="2261" width="0.0128%" height="15" fill="rgb(240,167,41)" fg:x="13140" fg:w="3"/><text x="56.2411%" y="2271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="55.9741%" y="2597" width="0.0384%" height="15" fill="rgb(245,92,22)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="55.9741%" y="2581" width="0.0384%" height="15" fill="rgb(227,158,44)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="55.9741%" y="2565" width="0.0384%" height="15" fill="rgb(246,38,20)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="55.9741%" y="2549" width="0.0384%" height="15" fill="rgb(229,143,43)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="55.9741%" y="2533" width="0.0384%" height="15" fill="rgb(221,209,49)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="55.9741%" y="2517" width="0.0384%" height="15" fill="rgb(207,45,38)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2527.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="55.9741%" y="2501" width="0.0384%" height="15" fill="rgb(209,175,47)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2511.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="55.9741%" y="2485" width="0.0384%" height="15" fill="rgb(206,224,5)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="55.9741%" y="2469" width="0.0384%" height="15" fill="rgb(212,20,21)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2479.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="55.9741%" y="2453" width="0.0384%" height="15" fill="rgb(244,82,35)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="55.9741%" y="2437" width="0.0384%" height="15" fill="rgb(215,205,42)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2447.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="55.9741%" y="2421" width="0.0384%" height="15" fill="rgb(244,174,34)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="55.9741%" y="2405" width="0.0384%" height="15" fill="rgb(241,157,2)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2415.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="55.9741%" y="2389" width="0.0384%" height="15" fill="rgb(223,158,2)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="55.9741%" y="2373" width="0.0384%" height="15" fill="rgb(227,180,19)" fg:x="13136" fg:w="9"/><text x="56.2241%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (6 samples, 0.03%)</title><rect x="56.0124%" y="2261" width="0.0256%" height="15" fill="rgb(215,223,34)" fg:x="13145" fg:w="6"/><text x="56.2624%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="56.0167%" y="2245" width="0.0213%" height="15" fill="rgb(216,69,0)" fg:x="13146" fg:w="5"/><text x="56.2667%" y="2255.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="56.0210%" y="2229" width="0.0170%" height="15" fill="rgb(211,83,15)" fg:x="13147" fg:w="4"/><text x="56.2710%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="56.0210%" y="2213" width="0.0170%" height="15" fill="rgb(252,106,26)" fg:x="13147" fg:w="4"/><text x="56.2710%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="56.0210%" y="2197" width="0.0170%" height="15" fill="rgb(212,17,20)" fg:x="13147" fg:w="4"/><text x="56.2710%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (242 samples, 1.03%)</title><rect x="55.0153%" y="3765" width="1.0312%" height="15" fill="rgb(224,35,0)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3775.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (242 samples, 1.03%)</title><rect x="55.0153%" y="3749" width="1.0312%" height="15" fill="rgb(206,19,50)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3759.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (242 samples, 1.03%)</title><rect x="55.0153%" y="3733" width="1.0312%" height="15" fill="rgb(226,42,3)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3743.50"></text></g><g><title>rayon_core::job::JobRef::execute (242 samples, 1.03%)</title><rect x="55.0153%" y="3717" width="1.0312%" height="15" fill="rgb(208,101,10)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3727.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (242 samples, 1.03%)</title><rect x="55.0153%" y="3701" width="1.0312%" height="15" fill="rgb(235,193,40)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3711.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (242 samples, 1.03%)</title><rect x="55.0153%" y="3685" width="1.0312%" height="15" fill="rgb(234,184,32)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3695.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (242 samples, 1.03%)</title><rect x="55.0153%" y="3669" width="1.0312%" height="15" fill="rgb(245,29,35)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3679.50"></text></g><g><title>std::panic::catch_unwind (242 samples, 1.03%)</title><rect x="55.0153%" y="3653" width="1.0312%" height="15" fill="rgb(209,164,48)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3663.50"></text></g><g><title>std::panicking::try (242 samples, 1.03%)</title><rect x="55.0153%" y="3637" width="1.0312%" height="15" fill="rgb(238,226,23)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3647.50"></text></g><g><title>std::panicking::try::do_call (242 samples, 1.03%)</title><rect x="55.0153%" y="3621" width="1.0312%" height="15" fill="rgb(207,223,51)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3631.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (242 samples, 1.03%)</title><rect x="55.0153%" y="3605" width="1.0312%" height="15" fill="rgb(223,208,42)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3615.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (242 samples, 1.03%)</title><rect x="55.0153%" y="3589" width="1.0312%" height="15" fill="rgb(226,40,51)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3599.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (242 samples, 1.03%)</title><rect x="55.0153%" y="3573" width="1.0312%" height="15" fill="rgb(244,172,39)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (242 samples, 1.03%)</title><rect x="55.0153%" y="3557" width="1.0312%" height="15" fill="rgb(233,99,39)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (242 samples, 1.03%)</title><rect x="55.0153%" y="3541" width="1.0312%" height="15" fill="rgb(223,125,26)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3551.50"></text></g><g><title>rayon_core::join::join_context (242 samples, 1.03%)</title><rect x="55.0153%" y="3525" width="1.0312%" height="15" fill="rgb(220,65,13)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3535.50"></text></g><g><title>rayon_core::registry::in_worker (242 samples, 1.03%)</title><rect x="55.0153%" y="3509" width="1.0312%" height="15" fill="rgb(230,160,26)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3519.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (242 samples, 1.03%)</title><rect x="55.0153%" y="3493" width="1.0312%" height="15" fill="rgb(216,7,7)" fg:x="12911" fg:w="242"/><text x="55.2653%" y="3503.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (191 samples, 0.81%)</title><rect x="55.2327%" y="3477" width="0.8139%" height="15" fill="rgb(221,208,13)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3487.50"></text></g><g><title>std::panic::catch_unwind (191 samples, 0.81%)</title><rect x="55.2327%" y="3461" width="0.8139%" height="15" fill="rgb(213,158,43)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3471.50"></text></g><g><title>std::panicking::try (191 samples, 0.81%)</title><rect x="55.2327%" y="3445" width="0.8139%" height="15" fill="rgb(229,149,51)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3455.50"></text></g><g><title>std::panicking::try::do_call (191 samples, 0.81%)</title><rect x="55.2327%" y="3429" width="0.8139%" height="15" fill="rgb(221,18,9)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3439.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (191 samples, 0.81%)</title><rect x="55.2327%" y="3413" width="0.8139%" height="15" fill="rgb(244,208,18)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (191 samples, 0.81%)</title><rect x="55.2327%" y="3397" width="0.8139%" height="15" fill="rgb(224,156,42)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (191 samples, 0.81%)</title><rect x="55.2327%" y="3381" width="0.8139%" height="15" fill="rgb(247,72,24)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (191 samples, 0.81%)</title><rect x="55.2327%" y="3365" width="0.8139%" height="15" fill="rgb(238,223,25)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3375.50"></text></g><g><title>rayon_core::join::join_context (191 samples, 0.81%)</title><rect x="55.2327%" y="3349" width="0.8139%" height="15" fill="rgb(254,143,35)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3359.50"></text></g><g><title>rayon_core::registry::in_worker (191 samples, 0.81%)</title><rect x="55.2327%" y="3333" width="0.8139%" height="15" fill="rgb(245,96,26)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (191 samples, 0.81%)</title><rect x="55.2327%" y="3317" width="0.8139%" height="15" fill="rgb(206,226,37)" fg:x="12962" fg:w="191"/><text x="55.4827%" y="3327.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (138 samples, 0.59%)</title><rect x="55.4585%" y="3301" width="0.5880%" height="15" fill="rgb(228,104,11)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3311.50"></text></g><g><title>std::panic::catch_unwind (138 samples, 0.59%)</title><rect x="55.4585%" y="3285" width="0.5880%" height="15" fill="rgb(207,215,52)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3295.50"></text></g><g><title>std::panicking::try (138 samples, 0.59%)</title><rect x="55.4585%" y="3269" width="0.5880%" height="15" fill="rgb(253,105,22)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3279.50"></text></g><g><title>std::panicking::try::do_call (138 samples, 0.59%)</title><rect x="55.4585%" y="3253" width="0.5880%" height="15" fill="rgb(228,33,11)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3263.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (138 samples, 0.59%)</title><rect x="55.4585%" y="3237" width="0.5880%" height="15" fill="rgb(253,214,20)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (138 samples, 0.59%)</title><rect x="55.4585%" y="3221" width="0.5880%" height="15" fill="rgb(234,194,46)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (138 samples, 0.59%)</title><rect x="55.4585%" y="3205" width="0.5880%" height="15" fill="rgb(217,71,38)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (138 samples, 0.59%)</title><rect x="55.4585%" y="3189" width="0.5880%" height="15" fill="rgb(227,74,5)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (138 samples, 0.59%)</title><rect x="55.4585%" y="3173" width="0.5880%" height="15" fill="rgb(213,155,15)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (138 samples, 0.59%)</title><rect x="55.4585%" y="3157" width="0.5880%" height="15" fill="rgb(231,77,20)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (138 samples, 0.59%)</title><rect x="55.4585%" y="3141" width="0.5880%" height="15" fill="rgb(240,61,28)" fg:x="13015" fg:w="138"/><text x="55.7085%" y="3151.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (82 samples, 0.35%)</title><rect x="55.6971%" y="3125" width="0.3494%" height="15" fill="rgb(240,129,16)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3135.50"></text></g><g><title>std::panic::catch_unwind (82 samples, 0.35%)</title><rect x="55.6971%" y="3109" width="0.3494%" height="15" fill="rgb(211,27,50)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3119.50"></text></g><g><title>std::panicking::try (82 samples, 0.35%)</title><rect x="55.6971%" y="3093" width="0.3494%" height="15" fill="rgb(209,100,35)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3103.50"></text></g><g><title>std::panicking::try::do_call (82 samples, 0.35%)</title><rect x="55.6971%" y="3077" width="0.3494%" height="15" fill="rgb(242,61,23)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3087.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (82 samples, 0.35%)</title><rect x="55.6971%" y="3061" width="0.3494%" height="15" fill="rgb(223,153,50)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (82 samples, 0.35%)</title><rect x="55.6971%" y="3045" width="0.3494%" height="15" fill="rgb(226,178,19)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (82 samples, 0.35%)</title><rect x="55.6971%" y="3029" width="0.3494%" height="15" fill="rgb(207,136,52)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (82 samples, 0.35%)</title><rect x="55.6971%" y="3013" width="0.3494%" height="15" fill="rgb(226,15,48)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (82 samples, 0.35%)</title><rect x="55.6971%" y="2997" width="0.3494%" height="15" fill="rgb(214,163,24)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (82 samples, 0.35%)</title><rect x="55.6971%" y="2981" width="0.3494%" height="15" fill="rgb(215,59,48)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (82 samples, 0.35%)</title><rect x="55.6971%" y="2965" width="0.3494%" height="15" fill="rgb(216,146,37)" fg:x="13071" fg:w="82"/><text x="55.9471%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (39 samples, 0.17%)</title><rect x="55.8803%" y="2949" width="0.1662%" height="15" fill="rgb(211,182,23)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (39 samples, 0.17%)</title><rect x="55.8803%" y="2933" width="0.1662%" height="15" fill="rgb(209,52,40)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2943.50"></text></g><g><title>std::panicking::try (39 samples, 0.17%)</title><rect x="55.8803%" y="2917" width="0.1662%" height="15" fill="rgb(241,101,26)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (39 samples, 0.17%)</title><rect x="55.8803%" y="2901" width="0.1662%" height="15" fill="rgb(246,117,39)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (39 samples, 0.17%)</title><rect x="55.8803%" y="2885" width="0.1662%" height="15" fill="rgb(238,111,45)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (39 samples, 0.17%)</title><rect x="55.8803%" y="2869" width="0.1662%" height="15" fill="rgb(208,35,4)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (39 samples, 0.17%)</title><rect x="55.8803%" y="2853" width="0.1662%" height="15" fill="rgb(227,120,38)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.17%)</title><rect x="55.8803%" y="2837" width="0.1662%" height="15" fill="rgb(243,46,31)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (39 samples, 0.17%)</title><rect x="55.8803%" y="2821" width="0.1662%" height="15" fill="rgb(222,93,1)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.17%)</title><rect x="55.8803%" y="2805" width="0.1662%" height="15" fill="rgb(222,196,15)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39 samples, 0.17%)</title><rect x="55.8803%" y="2789" width="0.1662%" height="15" fill="rgb(234,141,12)" fg:x="13114" fg:w="39"/><text x="56.1303%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="55.9741%" y="2773" width="0.0724%" height="15" fill="rgb(228,87,32)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="55.9741%" y="2757" width="0.0724%" height="15" fill="rgb(208,204,53)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2767.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="55.9741%" y="2741" width="0.0724%" height="15" fill="rgb(227,27,54)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="55.9741%" y="2725" width="0.0724%" height="15" fill="rgb(220,15,42)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="55.9741%" y="2709" width="0.0724%" height="15" fill="rgb(209,27,4)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="55.9741%" y="2693" width="0.0724%" height="15" fill="rgb(235,229,17)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="55.9741%" y="2677" width="0.0724%" height="15" fill="rgb(234,214,12)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="55.9741%" y="2661" width="0.0724%" height="15" fill="rgb(229,30,27)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="55.9741%" y="2645" width="0.0724%" height="15" fill="rgb(251,62,4)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="55.9741%" y="2629" width="0.0724%" height="15" fill="rgb(247,133,1)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="55.9741%" y="2613" width="0.0724%" height="15" fill="rgb(222,135,49)" fg:x="13136" fg:w="17"/><text x="56.2241%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="56.0124%" y="2597" width="0.0341%" height="15" fill="rgb(243,79,18)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="56.0124%" y="2581" width="0.0341%" height="15" fill="rgb(223,132,33)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2591.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="56.0124%" y="2565" width="0.0341%" height="15" fill="rgb(211,174,24)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="56.0124%" y="2549" width="0.0341%" height="15" fill="rgb(221,45,3)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="56.0124%" y="2533" width="0.0341%" height="15" fill="rgb(239,6,51)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0124%" y="2517" width="0.0341%" height="15" fill="rgb(214,11,36)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0124%" y="2501" width="0.0341%" height="15" fill="rgb(208,162,37)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.0124%" y="2485" width="0.0341%" height="15" fill="rgb(222,223,13)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="56.0124%" y="2469" width="0.0341%" height="15" fill="rgb(205,64,53)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="56.0124%" y="2453" width="0.0341%" height="15" fill="rgb(215,135,27)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2463.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="56.0124%" y="2437" width="0.0341%" height="15" fill="rgb(235,150,25)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2447.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="56.0124%" y="2421" width="0.0341%" height="15" fill="rgb(231,15,45)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="56.0124%" y="2405" width="0.0341%" height="15" fill="rgb(220,93,4)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="56.0124%" y="2389" width="0.0341%" height="15" fill="rgb(225,100,26)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="56.0124%" y="2373" width="0.0341%" height="15" fill="rgb(219,84,49)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2383.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0124%" y="2357" width="0.0341%" height="15" fill="rgb(230,50,23)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0124%" y="2341" width="0.0341%" height="15" fill="rgb(215,165,23)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2351.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="56.0124%" y="2325" width="0.0341%" height="15" fill="rgb(212,123,44)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0124%" y="2309" width="0.0341%" height="15" fill="rgb(221,140,6)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2319.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="56.0124%" y="2293" width="0.0341%" height="15" fill="rgb(252,222,9)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2303.50"></text></g><g><title>criterion::analysis::estimates::stats (8 samples, 0.03%)</title><rect x="56.0124%" y="2277" width="0.0341%" height="15" fill="rgb(247,21,6)" fg:x="13145" fg:w="8"/><text x="56.2624%" y="2287.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.0465%" y="3589" width="0.0213%" height="15" fill="rgb(231,168,15)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3599.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3573" width="0.0213%" height="15" fill="rgb(230,37,51)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3557" width="0.0213%" height="15" fill="rgb(253,200,18)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0465%" y="3541" width="0.0213%" height="15" fill="rgb(224,117,38)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3551.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0465%" y="3525" width="0.0213%" height="15" fill="rgb(225,16,50)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3535.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0465%" y="3509" width="0.0213%" height="15" fill="rgb(226,136,24)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3519.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3493" width="0.0213%" height="15" fill="rgb(226,229,41)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3503.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="56.0465%" y="3477" width="0.0213%" height="15" fill="rgb(250,61,38)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.0465%" y="3461" width="0.0213%" height="15" fill="rgb(253,205,18)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3471.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="3445" width="0.0213%" height="15" fill="rgb(242,153,47)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3455.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="3429" width="0.0213%" height="15" fill="rgb(213,88,17)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3439.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="3413" width="0.0213%" height="15" fill="rgb(225,144,45)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3423.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="56.0465%" y="3397" width="0.0213%" height="15" fill="rgb(205,112,14)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.0465%" y="3381" width="0.0213%" height="15" fill="rgb(211,30,15)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3391.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.0465%" y="3365" width="0.0213%" height="15" fill="rgb(218,181,38)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3375.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.0465%" y="3349" width="0.0213%" height="15" fill="rgb(239,129,24)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3359.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.0465%" y="3333" width="0.0213%" height="15" fill="rgb(235,214,22)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.0465%" y="3317" width="0.0213%" height="15" fill="rgb(254,62,18)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3327.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3301" width="0.0213%" height="15" fill="rgb(238,170,7)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3311.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3285" width="0.0213%" height="15" fill="rgb(252,75,18)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3269" width="0.0213%" height="15" fill="rgb(208,39,52)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0465%" y="3253" width="0.0213%" height="15" fill="rgb(211,72,9)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3263.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0465%" y="3237" width="0.0213%" height="15" fill="rgb(250,121,40)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3247.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0465%" y="3221" width="0.0213%" height="15" fill="rgb(222,132,17)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3205" width="0.0213%" height="15" fill="rgb(219,202,0)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3215.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.0465%" y="3189" width="0.0213%" height="15" fill="rgb(243,60,42)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3199.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.0465%" y="3173" width="0.0213%" height="15" fill="rgb(214,192,34)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3183.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.0465%" y="3157" width="0.0213%" height="15" fill="rgb(227,88,39)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3167.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.0465%" y="3141" width="0.0213%" height="15" fill="rgb(232,186,50)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3151.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.0465%" y="3125" width="0.0213%" height="15" fill="rgb(217,101,24)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3109" width="0.0213%" height="15" fill="rgb(214,117,9)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3093" width="0.0213%" height="15" fill="rgb(223,133,23)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0465%" y="3077" width="0.0213%" height="15" fill="rgb(207,104,22)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0465%" y="3061" width="0.0213%" height="15" fill="rgb(224,206,49)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0465%" y="3045" width="0.0213%" height="15" fill="rgb(207,223,49)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="3029" width="0.0213%" height="15" fill="rgb(227,80,13)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.0465%" y="3013" width="0.0213%" height="15" fill="rgb(231,23,44)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.0465%" y="2997" width="0.0213%" height="15" fill="rgb(220,95,48)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="3007.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.0465%" y="2981" width="0.0213%" height="15" fill="rgb(216,65,35)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.0465%" y="2965" width="0.0213%" height="15" fill="rgb(235,97,42)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.0465%" y="2949" width="0.0213%" height="15" fill="rgb(244,19,9)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2933" width="0.0213%" height="15" fill="rgb(218,174,23)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2917" width="0.0213%" height="15" fill="rgb(226,210,54)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0465%" y="2901" width="0.0213%" height="15" fill="rgb(226,119,8)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0465%" y="2885" width="0.0213%" height="15" fill="rgb(214,124,26)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0465%" y="2869" width="0.0213%" height="15" fill="rgb(225,207,48)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2853" width="0.0213%" height="15" fill="rgb(243,166,14)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.0465%" y="2837" width="0.0213%" height="15" fill="rgb(249,71,42)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2821" width="0.0213%" height="15" fill="rgb(224,18,33)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2805" width="0.0213%" height="15" fill="rgb(249,30,30)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0465%" y="2789" width="0.0213%" height="15" fill="rgb(220,47,25)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2799.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0465%" y="2773" width="0.0213%" height="15" fill="rgb(216,65,48)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2783.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0465%" y="2757" width="0.0213%" height="15" fill="rgb(216,141,26)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2741" width="0.0213%" height="15" fill="rgb(216,194,10)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="56.0465%" y="2725" width="0.0213%" height="15" fill="rgb(237,59,40)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.0465%" y="2709" width="0.0213%" height="15" fill="rgb(249,100,14)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2719.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="2693" width="0.0213%" height="15" fill="rgb(234,132,25)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2703.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="2677" width="0.0213%" height="15" fill="rgb(220,47,12)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2687.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="2661" width="0.0213%" height="15" fill="rgb(237,110,1)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2671.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="56.0465%" y="2645" width="0.0213%" height="15" fill="rgb(248,107,49)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2655.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.0465%" y="2629" width="0.0213%" height="15" fill="rgb(239,184,32)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2639.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.0465%" y="2613" width="0.0213%" height="15" fill="rgb(241,127,47)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2623.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.0465%" y="2597" width="0.0213%" height="15" fill="rgb(230,228,15)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2607.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.0465%" y="2581" width="0.0213%" height="15" fill="rgb(211,29,29)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2591.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.0465%" y="2565" width="0.0213%" height="15" fill="rgb(231,90,34)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2575.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2549" width="0.0213%" height="15" fill="rgb(240,18,11)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2559.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2533" width="0.0213%" height="15" fill="rgb(214,214,18)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2517" width="0.0213%" height="15" fill="rgb(247,214,35)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0465%" y="2501" width="0.0213%" height="15" fill="rgb(242,119,26)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2511.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0465%" y="2485" width="0.0213%" height="15" fill="rgb(223,86,1)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2495.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0465%" y="2469" width="0.0213%" height="15" fill="rgb(212,21,25)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2453" width="0.0213%" height="15" fill="rgb(241,227,37)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2463.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="56.0465%" y="2437" width="0.0213%" height="15" fill="rgb(229,129,16)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.0465%" y="2421" width="0.0213%" height="15" fill="rgb(238,111,37)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="2405" width="0.0213%" height="15" fill="rgb(207,47,23)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2415.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="2389" width="0.0213%" height="15" fill="rgb(222,90,27)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2399.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="56.0465%" y="2373" width="0.0213%" height="15" fill="rgb(235,106,41)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="56.0465%" y="2357" width="0.0213%" height="15" fill="rgb(233,57,34)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2367.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.0465%" y="2341" width="0.0213%" height="15" fill="rgb(246,84,2)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2351.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.0465%" y="2325" width="0.0213%" height="15" fill="rgb(218,158,47)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2335.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.0465%" y="2309" width="0.0213%" height="15" fill="rgb(211,101,3)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2319.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.0465%" y="2293" width="0.0213%" height="15" fill="rgb(206,93,8)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2303.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.0465%" y="2277" width="0.0213%" height="15" fill="rgb(221,11,23)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2287.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2261" width="0.0213%" height="15" fill="rgb(224,84,50)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2271.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2245" width="0.0213%" height="15" fill="rgb(219,61,48)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2229" width="0.0213%" height="15" fill="rgb(247,75,29)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0465%" y="2213" width="0.0213%" height="15" fill="rgb(245,44,4)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2223.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0465%" y="2197" width="0.0213%" height="15" fill="rgb(237,206,53)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2207.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0465%" y="2181" width="0.0213%" height="15" fill="rgb(249,56,16)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0465%" y="2165" width="0.0213%" height="15" fill="rgb(231,56,3)" fg:x="13153" fg:w="5"/><text x="56.2965%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0551%" y="2149" width="0.0128%" height="15" fill="rgb(222,79,52)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0551%" y="2133" width="0.0128%" height="15" fill="rgb(248,52,7)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2143.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0551%" y="2117" width="0.0128%" height="15" fill="rgb(227,22,1)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0551%" y="2101" width="0.0128%" height="15" fill="rgb(236,168,17)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0551%" y="2085" width="0.0128%" height="15" fill="rgb(217,36,4)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2095.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0551%" y="2069" width="0.0128%" height="15" fill="rgb(205,97,43)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0551%" y="2053" width="0.0128%" height="15" fill="rgb(236,94,49)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0551%" y="2037" width="0.0128%" height="15" fill="rgb(247,100,27)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2047.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0551%" y="2021" width="0.0128%" height="15" fill="rgb(251,163,14)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2031.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0551%" y="2005" width="0.0128%" height="15" fill="rgb(234,141,43)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0551%" y="1989" width="0.0128%" height="15" fill="rgb(245,171,13)" fg:x="13155" fg:w="3"/><text x="56.3051%" y="1999.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.0678%" y="3589" width="0.0128%" height="15" fill="rgb(237,127,48)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3599.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.0678%" y="3573" width="0.0128%" height="15" fill="rgb(252,115,26)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3583.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.0678%" y="3557" width="0.0128%" height="15" fill="rgb(231,178,24)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3567.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.0678%" y="3541" width="0.0128%" height="15" fill="rgb(218,50,44)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3551.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.0678%" y="3525" width="0.0128%" height="15" fill="rgb(245,148,52)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3535.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.0678%" y="3509" width="0.0128%" height="15" fill="rgb(222,4,12)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0678%" y="3493" width="0.0128%" height="15" fill="rgb(245,20,14)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3503.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0678%" y="3477" width="0.0128%" height="15" fill="rgb(231,19,32)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3487.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0678%" y="3461" width="0.0128%" height="15" fill="rgb(207,29,19)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3471.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0678%" y="3445" width="0.0128%" height="15" fill="rgb(234,124,6)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0678%" y="3429" width="0.0128%" height="15" fill="rgb(251,151,18)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3439.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0678%" y="3413" width="0.0128%" height="15" fill="rgb(209,71,28)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0678%" y="3397" width="0.0128%" height="15" fill="rgb(225,192,32)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0678%" y="3381" width="0.0128%" height="15" fill="rgb(245,117,8)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0678%" y="3365" width="0.0128%" height="15" fill="rgb(250,4,3)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3375.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0678%" y="3349" width="0.0128%" height="15" fill="rgb(245,175,31)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3359.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0678%" y="3333" width="0.0128%" height="15" fill="rgb(238,192,31)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0678%" y="3317" width="0.0128%" height="15" fill="rgb(211,218,30)" fg:x="13158" fg:w="3"/><text x="56.3178%" y="3327.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.0806%" y="3013" width="0.0128%" height="15" fill="rgb(214,142,5)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2997" width="0.0128%" height="15" fill="rgb(212,179,15)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2981" width="0.0128%" height="15" fill="rgb(226,98,15)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="2965" width="0.0128%" height="15" fill="rgb(223,96,50)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="2949" width="0.0128%" height="15" fill="rgb(207,59,32)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="2933" width="0.0128%" height="15" fill="rgb(252,187,30)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2917" width="0.0128%" height="15" fill="rgb(221,202,17)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2927.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.0806%" y="2901" width="0.0128%" height="15" fill="rgb(206,31,49)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.0806%" y="2885" width="0.0128%" height="15" fill="rgb(244,17,3)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2895.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="2869" width="0.0128%" height="15" fill="rgb(250,178,27)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2879.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="2853" width="0.0128%" height="15" fill="rgb(254,63,41)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2863.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="2837" width="0.0128%" height="15" fill="rgb(217,82,12)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2847.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.0806%" y="2821" width="0.0128%" height="15" fill="rgb(224,71,47)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2831.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="2805" width="0.0128%" height="15" fill="rgb(211,103,19)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2815.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="2789" width="0.0128%" height="15" fill="rgb(251,85,1)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2799.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="2773" width="0.0128%" height="15" fill="rgb(253,155,23)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2783.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="2757" width="0.0128%" height="15" fill="rgb(227,9,1)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2767.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="2741" width="0.0128%" height="15" fill="rgb(213,196,40)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2751.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2725" width="0.0128%" height="15" fill="rgb(241,221,8)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2709" width="0.0128%" height="15" fill="rgb(206,9,37)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2693" width="0.0128%" height="15" fill="rgb(206,65,22)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="2677" width="0.0128%" height="15" fill="rgb(244,43,19)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2687.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="2661" width="0.0128%" height="15" fill="rgb(224,58,14)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="2645" width="0.0128%" height="15" fill="rgb(213,66,27)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2629" width="0.0128%" height="15" fill="rgb(226,18,39)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2639.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="2613" width="0.0128%" height="15" fill="rgb(242,19,50)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2623.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="2597" width="0.0128%" height="15" fill="rgb(231,111,31)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2607.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="2581" width="0.0128%" height="15" fill="rgb(216,197,47)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2591.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="2565" width="0.0128%" height="15" fill="rgb(207,214,40)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2575.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="2549" width="0.0128%" height="15" fill="rgb(240,85,1)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2559.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2533" width="0.0128%" height="15" fill="rgb(243,189,23)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2517" width="0.0128%" height="15" fill="rgb(253,138,52)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="2501" width="0.0128%" height="15" fill="rgb(238,119,32)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2511.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="2485" width="0.0128%" height="15" fill="rgb(205,138,44)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2495.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="2469" width="0.0128%" height="15" fill="rgb(250,48,40)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2453" width="0.0128%" height="15" fill="rgb(211,221,5)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2463.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.0806%" y="2437" width="0.0128%" height="15" fill="rgb(247,66,51)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.0806%" y="2421" width="0.0128%" height="15" fill="rgb(221,83,32)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="2405" width="0.0128%" height="15" fill="rgb(252,209,5)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2415.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="2389" width="0.0128%" height="15" fill="rgb(211,51,1)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2399.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="2373" width="0.0128%" height="15" fill="rgb(253,44,36)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2383.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.0806%" y="2357" width="0.0128%" height="15" fill="rgb(239,128,29)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2367.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="2341" width="0.0128%" height="15" fill="rgb(232,77,42)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2351.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="2325" width="0.0128%" height="15" fill="rgb(228,168,3)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2335.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="2309" width="0.0128%" height="15" fill="rgb(214,3,5)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2319.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="2293" width="0.0128%" height="15" fill="rgb(211,137,11)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2303.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="2277" width="0.0128%" height="15" fill="rgb(244,24,53)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2287.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2261" width="0.0128%" height="15" fill="rgb(232,60,29)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2271.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2245" width="0.0128%" height="15" fill="rgb(211,214,24)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2229" width="0.0128%" height="15" fill="rgb(242,216,25)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="2213" width="0.0128%" height="15" fill="rgb(238,53,34)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2223.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="2197" width="0.0128%" height="15" fill="rgb(223,118,10)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2207.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="2181" width="0.0128%" height="15" fill="rgb(206,82,21)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2165" width="0.0128%" height="15" fill="rgb(245,37,27)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2175.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="2149" width="0.0128%" height="15" fill="rgb(253,116,36)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2159.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="2133" width="0.0128%" height="15" fill="rgb(230,114,39)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2143.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="2117" width="0.0128%" height="15" fill="rgb(233,201,27)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2127.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="2101" width="0.0128%" height="15" fill="rgb(240,150,44)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2111.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="2085" width="0.0128%" height="15" fill="rgb(250,196,11)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2095.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2069" width="0.0128%" height="15" fill="rgb(234,222,27)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="2053" width="0.0128%" height="15" fill="rgb(216,106,18)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="2037" width="0.0128%" height="15" fill="rgb(228,6,20)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2047.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="2021" width="0.0128%" height="15" fill="rgb(229,29,34)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2031.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="2005" width="0.0128%" height="15" fill="rgb(219,52,53)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1989" width="0.0128%" height="15" fill="rgb(251,167,24)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1999.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.0806%" y="1973" width="0.0128%" height="15" fill="rgb(207,117,44)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1983.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1957" width="0.0128%" height="15" fill="rgb(222,99,40)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1967.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1941" width="0.0128%" height="15" fill="rgb(242,206,31)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="1925" width="0.0128%" height="15" fill="rgb(246,91,9)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1935.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="1909" width="0.0128%" height="15" fill="rgb(242,180,42)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1919.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="1893" width="0.0128%" height="15" fill="rgb(222,166,36)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1877" width="0.0128%" height="15" fill="rgb(252,199,48)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1887.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="1861" width="0.0128%" height="15" fill="rgb(239,118,12)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1871.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="1845" width="0.0128%" height="15" fill="rgb(225,33,24)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1855.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="1829" width="0.0128%" height="15" fill="rgb(205,130,52)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1839.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="1813" width="0.0128%" height="15" fill="rgb(233,182,54)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1823.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="1797" width="0.0128%" height="15" fill="rgb(235,34,17)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1807.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1781" width="0.0128%" height="15" fill="rgb(237,95,20)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1765" width="0.0128%" height="15" fill="rgb(244,33,8)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="1749" width="0.0128%" height="15" fill="rgb(247,153,47)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1759.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="1733" width="0.0128%" height="15" fill="rgb(254,14,14)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1743.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="1717" width="0.0128%" height="15" fill="rgb(233,124,34)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1701" width="0.0128%" height="15" fill="rgb(245,0,27)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1711.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.0806%" y="1685" width="0.0128%" height="15" fill="rgb(253,130,21)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1695.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.0806%" y="1669" width="0.0128%" height="15" fill="rgb(208,205,15)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1679.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1653" width="0.0128%" height="15" fill="rgb(217,160,15)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1663.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1637" width="0.0128%" height="15" fill="rgb(225,200,54)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1647.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1621" width="0.0128%" height="15" fill="rgb(207,149,38)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.0806%" y="1605" width="0.0128%" height="15" fill="rgb(217,52,40)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1615.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="1589" width="0.0128%" height="15" fill="rgb(213,53,33)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1599.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="1573" width="0.0128%" height="15" fill="rgb(234,204,21)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1583.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="1557" width="0.0128%" height="15" fill="rgb(207,60,30)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1567.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="1541" width="0.0128%" height="15" fill="rgb(239,125,41)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1551.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="1525" width="0.0128%" height="15" fill="rgb(240,168,15)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1535.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1509" width="0.0128%" height="15" fill="rgb(213,131,45)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1493" width="0.0128%" height="15" fill="rgb(243,85,34)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1477" width="0.0128%" height="15" fill="rgb(218,104,40)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="1461" width="0.0128%" height="15" fill="rgb(206,40,51)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1471.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="1445" width="0.0128%" height="15" fill="rgb(231,126,17)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1455.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="1429" width="0.0128%" height="15" fill="rgb(209,57,31)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1413" width="0.0128%" height="15" fill="rgb(219,35,23)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.0806%" y="1397" width="0.0128%" height="15" fill="rgb(215,160,41)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.0806%" y="1381" width="0.0128%" height="15" fill="rgb(220,84,2)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1391.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1365" width="0.0128%" height="15" fill="rgb(240,199,26)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1375.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1349" width="0.0128%" height="15" fill="rgb(249,128,9)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1359.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1333" width="0.0128%" height="15" fill="rgb(205,119,29)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1343.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.0806%" y="1317" width="0.0128%" height="15" fill="rgb(215,124,24)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1327.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="1301" width="0.0128%" height="15" fill="rgb(226,173,23)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1311.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="1285" width="0.0128%" height="15" fill="rgb(207,76,18)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1295.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="1269" width="0.0128%" height="15" fill="rgb(205,138,53)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1279.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="1253" width="0.0128%" height="15" fill="rgb(214,142,44)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1263.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="1237" width="0.0128%" height="15" fill="rgb(228,213,21)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1247.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1221" width="0.0128%" height="15" fill="rgb(221,161,31)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1231.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1205" width="0.0128%" height="15" fill="rgb(205,215,36)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1189" width="0.0128%" height="15" fill="rgb(229,27,36)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="1173" width="0.0128%" height="15" fill="rgb(226,116,32)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1183.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="1157" width="0.0128%" height="15" fill="rgb(221,59,30)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1167.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="1141" width="0.0128%" height="15" fill="rgb(241,8,45)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="1125" width="0.0128%" height="15" fill="rgb(244,121,24)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.0806%" y="1109" width="0.0128%" height="15" fill="rgb(223,189,0)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1119.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.0806%" y="1093" width="0.0128%" height="15" fill="rgb(248,33,29)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1103.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1077" width="0.0128%" height="15" fill="rgb(224,217,8)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1087.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1061" width="0.0128%" height="15" fill="rgb(210,181,41)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1071.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.0806%" y="1045" width="0.0128%" height="15" fill="rgb(238,101,20)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1055.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.0806%" y="1029" width="0.0128%" height="15" fill="rgb(205,96,47)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="1013" width="0.0128%" height="15" fill="rgb(247,116,10)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1023.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="997" width="0.0128%" height="15" fill="rgb(225,224,12)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="1007.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="981" width="0.0128%" height="15" fill="rgb(206,129,1)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="991.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="965" width="0.0128%" height="15" fill="rgb(240,21,1)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="949" width="0.0128%" height="15" fill="rgb(228,113,47)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="959.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="933" width="0.0128%" height="15" fill="rgb(215,117,3)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="917" width="0.0128%" height="15" fill="rgb(243,156,13)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="901" width="0.0128%" height="15" fill="rgb(223,148,12)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="885" width="0.0128%" height="15" fill="rgb(245,183,19)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="895.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="869" width="0.0128%" height="15" fill="rgb(239,66,0)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="853" width="0.0128%" height="15" fill="rgb(251,46,7)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="837" width="0.0128%" height="15" fill="rgb(240,184,53)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0806%" y="821" width="0.0128%" height="15" fill="rgb(211,116,37)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="831.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0806%" y="805" width="0.0128%" height="15" fill="rgb(206,162,2)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="815.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0806%" y="789" width="0.0128%" height="15" fill="rgb(231,196,34)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="799.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0806%" y="773" width="0.0128%" height="15" fill="rgb(238,214,41)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0806%" y="757" width="0.0128%" height="15" fill="rgb(232,34,30)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="741" width="0.0128%" height="15" fill="rgb(212,121,42)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="725" width="0.0128%" height="15" fill="rgb(220,115,24)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0806%" y="709" width="0.0128%" height="15" fill="rgb(241,21,32)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="719.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0806%" y="693" width="0.0128%" height="15" fill="rgb(242,196,21)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0806%" y="677" width="0.0128%" height="15" fill="rgb(253,229,33)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0806%" y="661" width="0.0128%" height="15" fill="rgb(253,80,7)" fg:x="13161" fg:w="3"/><text x="56.3306%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.0977%" y="2261" width="0.0128%" height="15" fill="rgb(223,12,20)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2271.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.0977%" y="2245" width="0.0128%" height="15" fill="rgb(241,70,39)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2255.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.0977%" y="2229" width="0.0128%" height="15" fill="rgb(220,226,13)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2239.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.0977%" y="2213" width="0.0128%" height="15" fill="rgb(229,216,9)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2223.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.0977%" y="2197" width="0.0128%" height="15" fill="rgb(223,183,17)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.0977%" y="2181" width="0.0128%" height="15" fill="rgb(230,192,31)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2191.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.0977%" y="2165" width="0.0128%" height="15" fill="rgb(235,11,9)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2175.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.0977%" y="2149" width="0.0128%" height="15" fill="rgb(251,209,3)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2159.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.0977%" y="2133" width="0.0128%" height="15" fill="rgb(240,127,10)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2143.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.0977%" y="2117" width="0.0128%" height="15" fill="rgb(252,111,50)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2127.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.0977%" y="2101" width="0.0128%" height="15" fill="rgb(212,67,40)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2111.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0977%" y="2085" width="0.0128%" height="15" fill="rgb(225,10,50)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2095.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0977%" y="2069" width="0.0128%" height="15" fill="rgb(221,62,9)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2079.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0977%" y="2053" width="0.0128%" height="15" fill="rgb(225,194,4)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2063.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.0977%" y="2037" width="0.0128%" height="15" fill="rgb(223,62,54)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2047.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.0977%" y="2021" width="0.0128%" height="15" fill="rgb(231,183,44)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2031.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.0977%" y="2005" width="0.0128%" height="15" fill="rgb(220,91,12)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.0977%" y="1989" width="0.0128%" height="15" fill="rgb(218,69,28)" fg:x="13165" fg:w="3"/><text x="56.3477%" y="1999.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="56.0806%" y="3413" width="0.0341%" height="15" fill="rgb(217,176,16)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0806%" y="3397" width="0.0341%" height="15" fill="rgb(215,166,52)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0806%" y="3381" width="0.0341%" height="15" fill="rgb(230,117,49)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.0806%" y="3365" width="0.0341%" height="15" fill="rgb(253,73,3)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3375.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="56.0806%" y="3349" width="0.0341%" height="15" fill="rgb(228,26,13)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3359.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.0806%" y="3333" width="0.0341%" height="15" fill="rgb(214,20,9)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0806%" y="3317" width="0.0341%" height="15" fill="rgb(215,96,25)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3327.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="56.0806%" y="3301" width="0.0341%" height="15" fill="rgb(219,97,41)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3311.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="56.0806%" y="3285" width="0.0341%" height="15" fill="rgb(215,154,33)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3295.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="56.0806%" y="3269" width="0.0341%" height="15" fill="rgb(250,188,11)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3279.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="56.0806%" y="3253" width="0.0341%" height="15" fill="rgb(254,14,15)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3263.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="56.0806%" y="3237" width="0.0341%" height="15" fill="rgb(230,152,51)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3247.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="56.0806%" y="3221" width="0.0341%" height="15" fill="rgb(209,140,17)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="56.0806%" y="3205" width="0.0341%" height="15" fill="rgb(220,23,8)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3215.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="56.0806%" y="3189" width="0.0341%" height="15" fill="rgb(252,218,53)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3199.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="56.0806%" y="3173" width="0.0341%" height="15" fill="rgb(233,229,19)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3183.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="56.0806%" y="3157" width="0.0341%" height="15" fill="rgb(207,188,29)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="56.0806%" y="3141" width="0.0341%" height="15" fill="rgb(211,121,1)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3151.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0806%" y="3125" width="0.0341%" height="15" fill="rgb(213,87,52)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0806%" y="3109" width="0.0341%" height="15" fill="rgb(241,64,11)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0806%" y="3093" width="0.0341%" height="15" fill="rgb(205,138,19)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.0806%" y="3077" width="0.0341%" height="15" fill="rgb(239,138,37)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="56.0806%" y="3061" width="0.0341%" height="15" fill="rgb(233,82,24)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.0806%" y="3045" width="0.0341%" height="15" fill="rgb(209,75,36)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="56.0806%" y="3029" width="0.0341%" height="15" fill="rgb(239,1,26)" fg:x="13161" fg:w="8"/><text x="56.3306%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.0934%" y="3013" width="0.0213%" height="15" fill="rgb(246,224,15)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.0934%" y="2997" width="0.0213%" height="15" fill="rgb(236,138,15)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="3007.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.0934%" y="2981" width="0.0213%" height="15" fill="rgb(249,124,8)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.0934%" y="2965" width="0.0213%" height="15" fill="rgb(234,0,28)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.0934%" y="2949" width="0.0213%" height="15" fill="rgb(240,202,35)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0934%" y="2933" width="0.0213%" height="15" fill="rgb(230,124,31)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0934%" y="2917" width="0.0213%" height="15" fill="rgb(209,229,7)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.0934%" y="2901" width="0.0213%" height="15" fill="rgb(212,151,47)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.0934%" y="2885" width="0.0213%" height="15" fill="rgb(217,224,0)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.0934%" y="2869" width="0.0213%" height="15" fill="rgb(214,41,18)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.0934%" y="2853" width="0.0213%" height="15" fill="rgb(249,38,27)" fg:x="13164" fg:w="5"/><text x="56.3434%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.0977%" y="2837" width="0.0170%" height="15" fill="rgb(246,56,21)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.0977%" y="2821" width="0.0170%" height="15" fill="rgb(226,49,13)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2831.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.0977%" y="2805" width="0.0170%" height="15" fill="rgb(228,176,49)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.0977%" y="2789" width="0.0170%" height="15" fill="rgb(244,42,5)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.0977%" y="2773" width="0.0170%" height="15" fill="rgb(233,84,49)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2757" width="0.0170%" height="15" fill="rgb(249,165,2)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2741" width="0.0170%" height="15" fill="rgb(245,92,46)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.0977%" y="2725" width="0.0170%" height="15" fill="rgb(234,112,51)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.0977%" y="2709" width="0.0170%" height="15" fill="rgb(223,148,45)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.0977%" y="2693" width="0.0170%" height="15" fill="rgb(254,136,9)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2677" width="0.0170%" height="15" fill="rgb(251,94,54)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.0977%" y="2661" width="0.0170%" height="15" fill="rgb(230,3,24)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2645" width="0.0170%" height="15" fill="rgb(241,73,22)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2629" width="0.0170%" height="15" fill="rgb(232,20,21)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.0977%" y="2613" width="0.0170%" height="15" fill="rgb(212,184,23)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2623.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.0977%" y="2597" width="0.0170%" height="15" fill="rgb(243,34,19)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.0977%" y="2581" width="0.0170%" height="15" fill="rgb(213,9,39)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2565" width="0.0170%" height="15" fill="rgb(223,226,2)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="56.0977%" y="2549" width="0.0170%" height="15" fill="rgb(232,214,12)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="56.0977%" y="2533" width="0.0170%" height="15" fill="rgb(216,102,30)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2543.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="56.0977%" y="2517" width="0.0170%" height="15" fill="rgb(252,186,44)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2527.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="56.0977%" y="2501" width="0.0170%" height="15" fill="rgb(211,128,26)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2511.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="56.0977%" y="2485" width="0.0170%" height="15" fill="rgb(217,66,23)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="56.0977%" y="2469" width="0.0170%" height="15" fill="rgb(252,60,39)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2479.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.0977%" y="2453" width="0.0170%" height="15" fill="rgb(253,105,18)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2463.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.0977%" y="2437" width="0.0170%" height="15" fill="rgb(225,135,33)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2447.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.0977%" y="2421" width="0.0170%" height="15" fill="rgb(211,154,24)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2431.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.0977%" y="2405" width="0.0170%" height="15" fill="rgb(250,189,25)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2415.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.0977%" y="2389" width="0.0170%" height="15" fill="rgb(212,92,23)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2399.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2373" width="0.0170%" height="15" fill="rgb(230,137,4)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2383.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2357" width="0.0170%" height="15" fill="rgb(231,91,35)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2341" width="0.0170%" height="15" fill="rgb(251,217,46)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.0977%" y="2325" width="0.0170%" height="15" fill="rgb(205,75,22)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2335.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.0977%" y="2309" width="0.0170%" height="15" fill="rgb(229,86,47)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2319.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.0977%" y="2293" width="0.0170%" height="15" fill="rgb(211,192,27)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.0977%" y="2277" width="0.0170%" height="15" fill="rgb(205,13,42)" fg:x="13165" fg:w="4"/><text x="56.3477%" y="2287.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.1232%" y="2085" width="0.0128%" height="15" fill="rgb(211,48,40)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.1232%" y="2069" width="0.0128%" height="15" fill="rgb(252,228,13)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.1232%" y="2053" width="0.0128%" height="15" fill="rgb(251,140,53)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="2063.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.1232%" y="2037" width="0.0128%" height="15" fill="rgb(206,173,54)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="2047.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.1232%" y="2021" width="0.0128%" height="15" fill="rgb(247,134,0)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="2031.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.1232%" y="2005" width="0.0128%" height="15" fill="rgb(220,216,20)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="2015.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.1232%" y="1989" width="0.0128%" height="15" fill="rgb(215,29,22)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1999.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.1232%" y="1973" width="0.0128%" height="15" fill="rgb(212,14,4)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1983.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.1232%" y="1957" width="0.0128%" height="15" fill="rgb(247,192,43)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1967.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.1232%" y="1941" width="0.0128%" height="15" fill="rgb(218,139,21)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1951.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.1232%" y="1925" width="0.0128%" height="15" fill="rgb(234,43,51)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1935.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1232%" y="1909" width="0.0128%" height="15" fill="rgb(210,16,32)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1232%" y="1893" width="0.0128%" height="15" fill="rgb(239,0,30)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1232%" y="1877" width="0.0128%" height="15" fill="rgb(231,97,39)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.1232%" y="1861" width="0.0128%" height="15" fill="rgb(252,11,51)" fg:x="13171" fg:w="3"/><text x="56.3732%" y="1871.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.1232%" y="3237" width="0.0213%" height="15" fill="rgb(240,98,46)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="3221" width="0.0213%" height="15" fill="rgb(225,199,3)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="3205" width="0.0213%" height="15" fill="rgb(210,21,6)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.1232%" y="3189" width="0.0213%" height="15" fill="rgb(245,207,29)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.1232%" y="3173" width="0.0213%" height="15" fill="rgb(220,175,35)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.1232%" y="3157" width="0.0213%" height="15" fill="rgb(245,74,31)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="3141" width="0.0213%" height="15" fill="rgb(252,174,30)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3151.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="56.1232%" y="3125" width="0.0213%" height="15" fill="rgb(220,69,17)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.1232%" y="3109" width="0.0213%" height="15" fill="rgb(213,63,26)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3119.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="56.1232%" y="3093" width="0.0213%" height="15" fill="rgb(239,204,43)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3103.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="56.1232%" y="3077" width="0.0213%" height="15" fill="rgb(228,50,18)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3087.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="56.1232%" y="3061" width="0.0213%" height="15" fill="rgb(208,227,15)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3071.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="56.1232%" y="3045" width="0.0213%" height="15" fill="rgb(227,139,42)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.1232%" y="3029" width="0.0213%" height="15" fill="rgb(248,11,1)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3039.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.1232%" y="3013" width="0.0213%" height="15" fill="rgb(251,88,9)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3023.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.1232%" y="2997" width="0.0213%" height="15" fill="rgb(215,84,51)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="3007.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.1232%" y="2981" width="0.0213%" height="15" fill="rgb(215,95,49)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.1232%" y="2965" width="0.0213%" height="15" fill="rgb(242,66,47)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2975.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2949" width="0.0213%" height="15" fill="rgb(239,4,43)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2933" width="0.0213%" height="15" fill="rgb(237,103,41)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2917" width="0.0213%" height="15" fill="rgb(221,125,42)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.1232%" y="2901" width="0.0213%" height="15" fill="rgb(241,91,49)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.1232%" y="2885" width="0.0213%" height="15" fill="rgb(247,35,13)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.1232%" y="2869" width="0.0213%" height="15" fill="rgb(243,31,33)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2853" width="0.0213%" height="15" fill="rgb(214,97,43)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.1232%" y="2837" width="0.0213%" height="15" fill="rgb(215,211,43)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.1232%" y="2821" width="0.0213%" height="15" fill="rgb(231,218,30)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2831.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.1232%" y="2805" width="0.0213%" height="15" fill="rgb(244,205,27)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.1232%" y="2789" width="0.0213%" height="15" fill="rgb(243,92,39)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.1232%" y="2773" width="0.0213%" height="15" fill="rgb(217,106,1)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2757" width="0.0213%" height="15" fill="rgb(206,218,44)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2741" width="0.0213%" height="15" fill="rgb(221,20,36)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.1232%" y="2725" width="0.0213%" height="15" fill="rgb(230,73,19)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.1232%" y="2709" width="0.0213%" height="15" fill="rgb(223,164,53)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.1232%" y="2693" width="0.0213%" height="15" fill="rgb(242,215,24)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2677" width="0.0213%" height="15" fill="rgb(246,3,28)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.1232%" y="2661" width="0.0213%" height="15" fill="rgb(222,4,32)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.1232%" y="2645" width="0.0213%" height="15" fill="rgb(212,175,46)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2655.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.1232%" y="2629" width="0.0213%" height="15" fill="rgb(225,49,53)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.1232%" y="2613" width="0.0213%" height="15" fill="rgb(216,7,19)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.1232%" y="2597" width="0.0213%" height="15" fill="rgb(249,54,51)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2581" width="0.0213%" height="15" fill="rgb(245,45,6)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2565" width="0.0213%" height="15" fill="rgb(240,30,53)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.1232%" y="2549" width="0.0213%" height="15" fill="rgb(221,203,47)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.1232%" y="2533" width="0.0213%" height="15" fill="rgb(211,42,18)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.1232%" y="2517" width="0.0213%" height="15" fill="rgb(237,3,18)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2501" width="0.0213%" height="15" fill="rgb(205,124,30)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.1232%" y="2485" width="0.0213%" height="15" fill="rgb(227,224,0)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2469" width="0.0213%" height="15" fill="rgb(208,77,40)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2453" width="0.0213%" height="15" fill="rgb(243,174,36)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.1232%" y="2437" width="0.0213%" height="15" fill="rgb(217,74,3)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2447.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.1232%" y="2421" width="0.0213%" height="15" fill="rgb(209,138,17)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.1232%" y="2405" width="0.0213%" height="15" fill="rgb(209,171,10)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2389" width="0.0213%" height="15" fill="rgb(229,15,30)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2399.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="56.1232%" y="2373" width="0.0213%" height="15" fill="rgb(211,95,10)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.1232%" y="2357" width="0.0213%" height="15" fill="rgb(215,8,7)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="56.1232%" y="2341" width="0.0213%" height="15" fill="rgb(218,100,26)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2351.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="56.1232%" y="2325" width="0.0213%" height="15" fill="rgb(219,224,38)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2335.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="56.1232%" y="2309" width="0.0213%" height="15" fill="rgb(217,52,18)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2319.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="56.1232%" y="2293" width="0.0213%" height="15" fill="rgb(212,14,19)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2303.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.1232%" y="2277" width="0.0213%" height="15" fill="rgb(219,144,41)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2287.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.1232%" y="2261" width="0.0213%" height="15" fill="rgb(221,173,6)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2271.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.1232%" y="2245" width="0.0213%" height="15" fill="rgb(239,52,42)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2255.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.1232%" y="2229" width="0.0213%" height="15" fill="rgb(233,99,20)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2239.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.1232%" y="2213" width="0.0213%" height="15" fill="rgb(226,226,39)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2223.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2197" width="0.0213%" height="15" fill="rgb(221,192,18)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2181" width="0.0213%" height="15" fill="rgb(246,70,27)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2165" width="0.0213%" height="15" fill="rgb(207,154,32)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.1232%" y="2149" width="0.0213%" height="15" fill="rgb(252,145,11)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2159.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.1232%" y="2133" width="0.0213%" height="15" fill="rgb(253,96,21)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2143.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.1232%" y="2117" width="0.0213%" height="15" fill="rgb(217,179,16)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1232%" y="2101" width="0.0213%" height="15" fill="rgb(236,175,54)" fg:x="13171" fg:w="5"/><text x="56.3732%" y="2111.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="56.1531%" y="3061" width="0.0170%" height="15" fill="rgb(252,155,4)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="3071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="56.1531%" y="3045" width="0.0170%" height="15" fill="rgb(246,99,8)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="3055.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="56.1531%" y="3029" width="0.0170%" height="15" fill="rgb(209,229,0)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="3039.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="56.1531%" y="3013" width="0.0170%" height="15" fill="rgb(253,34,10)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="3023.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="56.1531%" y="2997" width="0.0170%" height="15" fill="rgb(219,223,44)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="3007.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="56.1531%" y="2981" width="0.0170%" height="15" fill="rgb(227,183,0)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.1531%" y="2965" width="0.0170%" height="15" fill="rgb(225,191,39)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2975.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.1531%" y="2949" width="0.0170%" height="15" fill="rgb(242,88,53)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2959.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.1531%" y="2933" width="0.0170%" height="15" fill="rgb(215,166,47)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2943.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.1531%" y="2917" width="0.0170%" height="15" fill="rgb(219,170,13)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.1531%" y="2901" width="0.0170%" height="15" fill="rgb(240,77,39)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2911.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2885" width="0.0170%" height="15" fill="rgb(246,52,49)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2869" width="0.0170%" height="15" fill="rgb(211,212,32)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2853" width="0.0170%" height="15" fill="rgb(249,214,34)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.1531%" y="2837" width="0.0170%" height="15" fill="rgb(247,149,46)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.1531%" y="2821" width="0.0170%" height="15" fill="rgb(214,16,8)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.1531%" y="2805" width="0.0170%" height="15" fill="rgb(220,225,46)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2789" width="0.0170%" height="15" fill="rgb(244,20,17)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (4 samples, 0.02%)</title><rect x="56.1531%" y="2773" width="0.0170%" height="15" fill="rgb(220,19,31)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="56.1531%" y="2757" width="0.0170%" height="15" fill="rgb(238,58,29)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2767.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (4 samples, 0.02%)</title><rect x="56.1531%" y="2741" width="0.0170%" height="15" fill="rgb(212,206,28)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2751.50"></text></g><g><title>rayon_core::job::JobRef::execute (4 samples, 0.02%)</title><rect x="56.1531%" y="2725" width="0.0170%" height="15" fill="rgb(214,148,4)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2735.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.02%)</title><rect x="56.1531%" y="2709" width="0.0170%" height="15" fill="rgb(229,154,35)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (4 samples, 0.02%)</title><rect x="56.1531%" y="2693" width="0.0170%" height="15" fill="rgb(233,41,26)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.1531%" y="2677" width="0.0170%" height="15" fill="rgb(250,116,0)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.1531%" y="2661" width="0.0170%" height="15" fill="rgb(217,98,27)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2671.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.1531%" y="2645" width="0.0170%" height="15" fill="rgb(223,47,49)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.1531%" y="2629" width="0.0170%" height="15" fill="rgb(242,196,45)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.1531%" y="2613" width="0.0170%" height="15" fill="rgb(249,197,20)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2623.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2597" width="0.0170%" height="15" fill="rgb(235,134,1)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2581" width="0.0170%" height="15" fill="rgb(248,146,45)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2565" width="0.0170%" height="15" fill="rgb(230,17,53)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.1531%" y="2549" width="0.0170%" height="15" fill="rgb(216,35,13)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.1531%" y="2533" width="0.0170%" height="15" fill="rgb(208,77,12)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.1531%" y="2517" width="0.0170%" height="15" fill="rgb(205,195,16)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2501" width="0.0170%" height="15" fill="rgb(237,135,9)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.1531%" y="2485" width="0.0170%" height="15" fill="rgb(236,60,38)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.1531%" y="2469" width="0.0170%" height="15" fill="rgb(213,200,16)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2479.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.1531%" y="2453" width="0.0170%" height="15" fill="rgb(214,111,35)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.1531%" y="2437" width="0.0170%" height="15" fill="rgb(219,223,41)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.1531%" y="2421" width="0.0170%" height="15" fill="rgb(251,132,34)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2405" width="0.0170%" height="15" fill="rgb(221,214,50)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2389" width="0.0170%" height="15" fill="rgb(223,35,20)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.1531%" y="2373" width="0.0170%" height="15" fill="rgb(233,46,19)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.1531%" y="2357" width="0.0170%" height="15" fill="rgb(248,145,51)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.1531%" y="2341" width="0.0170%" height="15" fill="rgb(246,219,17)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.1531%" y="2325" width="0.0170%" height="15" fill="rgb(239,34,25)" fg:x="13178" fg:w="4"/><text x="56.4031%" y="2335.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.1573%" y="2309" width="0.0128%" height="15" fill="rgb(227,183,7)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2319.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.1573%" y="2293" width="0.0128%" height="15" fill="rgb(207,62,41)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2303.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.1573%" y="2277" width="0.0128%" height="15" fill="rgb(249,108,3)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2287.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.1573%" y="2261" width="0.0128%" height="15" fill="rgb(250,67,11)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2271.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.1573%" y="2245" width="0.0128%" height="15" fill="rgb(228,147,37)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="2229" width="0.0128%" height="15" fill="rgb(223,18,16)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="2213" width="0.0128%" height="15" fill="rgb(248,95,20)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.1573%" y="2197" width="0.0128%" height="15" fill="rgb(247,94,51)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.1573%" y="2181" width="0.0128%" height="15" fill="rgb(253,22,28)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.1573%" y="2165" width="0.0128%" height="15" fill="rgb(212,13,9)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="2149" width="0.0128%" height="15" fill="rgb(252,215,31)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2159.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.1573%" y="2133" width="0.0128%" height="15" fill="rgb(246,23,24)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="2117" width="0.0128%" height="15" fill="rgb(224,148,22)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="2101" width="0.0128%" height="15" fill="rgb(210,224,41)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.1573%" y="2085" width="0.0128%" height="15" fill="rgb(226,21,37)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.1573%" y="2069" width="0.0128%" height="15" fill="rgb(223,72,12)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.1573%" y="2053" width="0.0128%" height="15" fill="rgb(243,200,50)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="2037" width="0.0128%" height="15" fill="rgb(221,16,42)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.1573%" y="2021" width="0.0128%" height="15" fill="rgb(208,196,34)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="2005" width="0.0128%" height="15" fill="rgb(254,144,9)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="1989" width="0.0128%" height="15" fill="rgb(248,211,19)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.1573%" y="1973" width="0.0128%" height="15" fill="rgb(244,122,42)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.1573%" y="1957" width="0.0128%" height="15" fill="rgb(242,40,10)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.1573%" y="1941" width="0.0128%" height="15" fill="rgb(213,44,17)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.1573%" y="1925" width="0.0128%" height="15" fill="rgb(206,42,36)" fg:x="13179" fg:w="3"/><text x="56.4073%" y="1935.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="56.1701%" y="405" width="0.0213%" height="15" fill="rgb(252,36,0)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="415.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.1701%" y="389" width="0.0213%" height="15" fill="rgb(239,168,8)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="399.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="56.1701%" y="373" width="0.0213%" height="15" fill="rgb(235,221,30)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="383.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="56.1701%" y="357" width="0.0213%" height="15" fill="rgb(232,130,17)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="367.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="56.1701%" y="341" width="0.0213%" height="15" fill="rgb(222,51,23)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="351.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="56.1701%" y="325" width="0.0213%" height="15" fill="rgb(209,185,25)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="335.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="56.1701%" y="309" width="0.0213%" height="15" fill="rgb(208,188,5)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="319.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="56.1701%" y="293" width="0.0213%" height="15" fill="rgb(207,99,13)" fg:x="13182" fg:w="5"/><text x="56.4201%" y="303.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="56.1744%" y="277" width="0.0170%" height="15" fill="rgb(227,72,16)" fg:x="13183" fg:w="4"/><text x="56.4244%" y="287.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="56.1701%" y="869" width="0.0298%" height="15" fill="rgb(241,206,46)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="56.1701%" y="853" width="0.0298%" height="15" fill="rgb(220,157,21)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="56.1701%" y="837" width="0.0298%" height="15" fill="rgb(251,116,52)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="847.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="56.1701%" y="821" width="0.0298%" height="15" fill="rgb(212,117,5)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="831.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="56.1701%" y="805" width="0.0298%" height="15" fill="rgb(213,80,26)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="815.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="56.1701%" y="789" width="0.0298%" height="15" fill="rgb(236,151,19)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="56.1701%" y="773" width="0.0298%" height="15" fill="rgb(236,163,46)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="783.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="56.1701%" y="757" width="0.0298%" height="15" fill="rgb(254,51,36)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="767.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="56.1701%" y="741" width="0.0298%" height="15" fill="rgb(242,107,15)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="751.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="56.1701%" y="725" width="0.0298%" height="15" fill="rgb(253,202,27)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="56.1701%" y="709" width="0.0298%" height="15" fill="rgb(245,60,31)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="56.1701%" y="693" width="0.0298%" height="15" fill="rgb(225,77,53)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="703.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="56.1701%" y="677" width="0.0298%" height="15" fill="rgb(243,167,49)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="56.1701%" y="661" width="0.0298%" height="15" fill="rgb(254,174,15)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="56.1701%" y="645" width="0.0298%" height="15" fill="rgb(222,94,20)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="655.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="56.1701%" y="629" width="0.0298%" height="15" fill="rgb(254,138,52)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="56.1701%" y="613" width="0.0298%" height="15" fill="rgb(205,199,48)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="623.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="56.1701%" y="597" width="0.0298%" height="15" fill="rgb(216,152,21)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="607.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="56.1701%" y="581" width="0.0298%" height="15" fill="rgb(251,122,8)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="591.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="56.1701%" y="565" width="0.0298%" height="15" fill="rgb(215,39,12)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="575.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="56.1701%" y="549" width="0.0298%" height="15" fill="rgb(206,202,3)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="559.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="56.1701%" y="533" width="0.0298%" height="15" fill="rgb(217,145,0)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="543.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="56.1701%" y="517" width="0.0298%" height="15" fill="rgb(234,87,19)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="527.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="56.1701%" y="501" width="0.0298%" height="15" fill="rgb(241,186,2)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="56.1701%" y="485" width="0.0298%" height="15" fill="rgb(218,82,25)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="56.1701%" y="469" width="0.0298%" height="15" fill="rgb(216,154,25)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="479.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="56.1701%" y="453" width="0.0298%" height="15" fill="rgb(227,15,42)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="56.1701%" y="437" width="0.0298%" height="15" fill="rgb(247,74,25)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="447.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="56.1701%" y="421" width="0.0298%" height="15" fill="rgb(243,26,44)" fg:x="13182" fg:w="7"/><text x="56.4201%" y="431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.1999%" y="693" width="0.0213%" height="15" fill="rgb(246,222,17)" fg:x="13189" fg:w="5"/><text x="56.4499%" y="703.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1999%" y="677" width="0.0213%" height="15" fill="rgb(249,121,13)" fg:x="13189" fg:w="5"/><text x="56.4499%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1999%" y="661" width="0.0213%" height="15" fill="rgb(242,219,22)" fg:x="13189" fg:w="5"/><text x="56.4499%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.1999%" y="645" width="0.0213%" height="15" fill="rgb(205,106,25)" fg:x="13189" fg:w="5"/><text x="56.4499%" y="655.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.1999%" y="629" width="0.0213%" height="15" fill="rgb(205,143,41)" fg:x="13189" fg:w="5"/><text x="56.4499%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.1999%" y="613" width="0.0213%" height="15" fill="rgb(205,165,15)" fg:x="13189" fg:w="5"/><text x="56.4499%" y="623.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.1999%" y="597" width="0.0213%" height="15" fill="rgb(226,196,8)" fg:x="13189" fg:w="5"/><text x="56.4499%" y="607.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.2085%" y="581" width="0.0128%" height="15" fill="rgb(232,186,19)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="591.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.2085%" y="565" width="0.0128%" height="15" fill="rgb(212,171,13)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="575.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.2085%" y="549" width="0.0128%" height="15" fill="rgb(233,24,42)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="559.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.2085%" y="533" width="0.0128%" height="15" fill="rgb(213,152,11)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="543.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.2085%" y="517" width="0.0128%" height="15" fill="rgb(253,187,14)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="527.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.2085%" y="501" width="0.0128%" height="15" fill="rgb(229,211,10)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.2085%" y="485" width="0.0128%" height="15" fill="rgb(235,177,24)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.2085%" y="469" width="0.0128%" height="15" fill="rgb(229,192,49)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="56.2085%" y="453" width="0.0128%" height="15" fill="rgb(240,58,8)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="463.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.2085%" y="437" width="0.0128%" height="15" fill="rgb(213,143,20)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="447.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="56.2085%" y="421" width="0.0128%" height="15" fill="rgb(211,125,2)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="431.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="56.2085%" y="405" width="0.0128%" height="15" fill="rgb(250,205,12)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="415.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="56.2085%" y="389" width="0.0128%" height="15" fill="rgb(235,130,41)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="56.2085%" y="373" width="0.0128%" height="15" fill="rgb(245,81,28)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="56.2085%" y="357" width="0.0128%" height="15" fill="rgb(221,78,16)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="367.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="56.2085%" y="341" width="0.0128%" height="15" fill="rgb(206,34,37)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="351.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="56.2085%" y="325" width="0.0128%" height="15" fill="rgb(205,105,14)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="335.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="56.2085%" y="309" width="0.0128%" height="15" fill="rgb(219,138,6)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="319.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="56.2085%" y="293" width="0.0128%" height="15" fill="rgb(237,219,8)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="303.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="56.2085%" y="277" width="0.0128%" height="15" fill="rgb(217,25,7)" fg:x="13191" fg:w="3"/><text x="56.4585%" y="287.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (16 samples, 0.07%)</title><rect x="56.1701%" y="2309" width="0.0682%" height="15" fill="rgb(232,178,26)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.07%)</title><rect x="56.1701%" y="2293" width="0.0682%" height="15" fill="rgb(239,223,33)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="2277" width="0.0682%" height="15" fill="rgb(215,135,42)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="2261" width="0.0682%" height="15" fill="rgb(253,70,30)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="2245" width="0.0682%" height="15" fill="rgb(242,157,31)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (16 samples, 0.07%)</title><rect x="56.1701%" y="2229" width="0.0682%" height="15" fill="rgb(248,146,54)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="56.1701%" y="2213" width="0.0682%" height="15" fill="rgb(243,103,33)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="56.1701%" y="2197" width="0.0682%" height="15" fill="rgb(236,184,37)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2207.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="56.1701%" y="2181" width="0.0682%" height="15" fill="rgb(243,208,46)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="56.1701%" y="2165" width="0.0682%" height="15" fill="rgb(239,3,36)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="56.1701%" y="2149" width="0.0682%" height="15" fill="rgb(231,81,36)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="2133" width="0.0682%" height="15" fill="rgb(218,63,12)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="2117" width="0.0682%" height="15" fill="rgb(249,189,38)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="2101" width="0.0682%" height="15" fill="rgb(226,193,53)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="56.1701%" y="2085" width="0.0682%" height="15" fill="rgb(245,50,45)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="56.1701%" y="2069" width="0.0682%" height="15" fill="rgb(238,130,31)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="56.1701%" y="2053" width="0.0682%" height="15" fill="rgb(234,187,26)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="2037" width="0.0682%" height="15" fill="rgb(209,71,1)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2047.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="56.1701%" y="2021" width="0.0682%" height="15" fill="rgb(228,131,5)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2031.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="56.1701%" y="2005" width="0.0682%" height="15" fill="rgb(226,54,49)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="2015.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="56.1701%" y="1989" width="0.0682%" height="15" fill="rgb(235,179,15)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1999.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="56.1701%" y="1973" width="0.0682%" height="15" fill="rgb(247,20,23)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1983.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="56.1701%" y="1957" width="0.0682%" height="15" fill="rgb(220,114,14)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1941" width="0.0682%" height="15" fill="rgb(235,143,43)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1951.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1925" width="0.0682%" height="15" fill="rgb(233,125,26)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="56.1701%" y="1909" width="0.0682%" height="15" fill="rgb(238,19,5)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1919.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="56.1701%" y="1893" width="0.0682%" height="15" fill="rgb(242,182,39)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1903.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="56.1701%" y="1877" width="0.0682%" height="15" fill="rgb(249,48,32)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1887.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1861" width="0.0682%" height="15" fill="rgb(241,44,52)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1871.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (16 samples, 0.07%)</title><rect x="56.1701%" y="1845" width="0.0682%" height="15" fill="rgb(235,219,2)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1855.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.07%)</title><rect x="56.1701%" y="1829" width="0.0682%" height="15" fill="rgb(251,221,20)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1813" width="0.0682%" height="15" fill="rgb(217,78,18)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1823.50"></text></g><g><title>rayon_core::job::JobRef::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1797" width="0.0682%" height="15" fill="rgb(220,169,11)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1781" width="0.0682%" height="15" fill="rgb(208,99,36)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (16 samples, 0.07%)</title><rect x="56.1701%" y="1765" width="0.0682%" height="15" fill="rgb(246,181,30)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="56.1701%" y="1749" width="0.0682%" height="15" fill="rgb(246,15,21)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="56.1701%" y="1733" width="0.0682%" height="15" fill="rgb(244,128,18)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1743.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="56.1701%" y="1717" width="0.0682%" height="15" fill="rgb(224,7,28)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="56.1701%" y="1701" width="0.0682%" height="15" fill="rgb(229,170,13)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="56.1701%" y="1685" width="0.0682%" height="15" fill="rgb(235,153,48)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1669" width="0.0682%" height="15" fill="rgb(237,163,4)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1653" width="0.0682%" height="15" fill="rgb(210,181,34)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1637" width="0.0682%" height="15" fill="rgb(231,85,38)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="56.1701%" y="1621" width="0.0682%" height="15" fill="rgb(243,156,12)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1631.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="56.1701%" y="1605" width="0.0682%" height="15" fill="rgb(250,118,45)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1615.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="56.1701%" y="1589" width="0.0682%" height="15" fill="rgb(228,187,52)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1573" width="0.0682%" height="15" fill="rgb(236,196,23)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1583.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (16 samples, 0.07%)</title><rect x="56.1701%" y="1557" width="0.0682%" height="15" fill="rgb(227,9,9)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1567.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.07%)</title><rect x="56.1701%" y="1541" width="0.0682%" height="15" fill="rgb(241,88,39)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1551.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1525" width="0.0682%" height="15" fill="rgb(242,50,34)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1535.50"></text></g><g><title>rayon_core::job::JobRef::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1509" width="0.0682%" height="15" fill="rgb(243,113,20)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1519.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1493" width="0.0682%" height="15" fill="rgb(227,89,22)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1503.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (16 samples, 0.07%)</title><rect x="56.1701%" y="1477" width="0.0682%" height="15" fill="rgb(232,204,32)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1487.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="56.1701%" y="1461" width="0.0682%" height="15" fill="rgb(232,201,38)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1471.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="56.1701%" y="1445" width="0.0682%" height="15" fill="rgb(215,218,42)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1455.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="56.1701%" y="1429" width="0.0682%" height="15" fill="rgb(220,140,30)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1439.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="56.1701%" y="1413" width="0.0682%" height="15" fill="rgb(211,35,1)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1423.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="56.1701%" y="1397" width="0.0682%" height="15" fill="rgb(218,99,47)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1407.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1381" width="0.0682%" height="15" fill="rgb(239,142,24)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1391.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1365" width="0.0682%" height="15" fill="rgb(235,181,8)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1349" width="0.0682%" height="15" fill="rgb(235,35,30)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="56.1701%" y="1333" width="0.0682%" height="15" fill="rgb(232,188,1)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1343.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="56.1701%" y="1317" width="0.0682%" height="15" fill="rgb(250,116,43)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1327.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="56.1701%" y="1301" width="0.0682%" height="15" fill="rgb(221,131,1)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1285" width="0.0682%" height="15" fill="rgb(238,213,21)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1295.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="56.1701%" y="1269" width="0.0682%" height="15" fill="rgb(219,170,12)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1279.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1253" width="0.0682%" height="15" fill="rgb(239,14,8)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1237" width="0.0682%" height="15" fill="rgb(246,86,7)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="56.1701%" y="1221" width="0.0682%" height="15" fill="rgb(235,108,29)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1231.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="56.1701%" y="1205" width="0.0682%" height="15" fill="rgb(230,144,13)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1215.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="56.1701%" y="1189" width="0.0682%" height="15" fill="rgb(220,176,5)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1199.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="1173" width="0.0682%" height="15" fill="rgb(242,10,9)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (16 samples, 0.07%)</title><rect x="56.1701%" y="1157" width="0.0682%" height="15" fill="rgb(229,204,34)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.07%)</title><rect x="56.1701%" y="1141" width="0.0682%" height="15" fill="rgb(220,104,16)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1151.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1125" width="0.0682%" height="15" fill="rgb(216,57,7)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1135.50"></text></g><g><title>rayon_core::job::JobRef::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1109" width="0.0682%" height="15" fill="rgb(226,167,52)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1119.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (16 samples, 0.07%)</title><rect x="56.1701%" y="1093" width="0.0682%" height="15" fill="rgb(206,139,48)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1103.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (16 samples, 0.07%)</title><rect x="56.1701%" y="1077" width="0.0682%" height="15" fill="rgb(239,175,14)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="56.1701%" y="1061" width="0.0682%" height="15" fill="rgb(219,206,38)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1071.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="56.1701%" y="1045" width="0.0682%" height="15" fill="rgb(231,7,15)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1055.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="56.1701%" y="1029" width="0.0682%" height="15" fill="rgb(229,148,54)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1039.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="56.1701%" y="1013" width="0.0682%" height="15" fill="rgb(206,98,52)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="56.1701%" y="997" width="0.0682%" height="15" fill="rgb(241,43,26)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="1007.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="981" width="0.0682%" height="15" fill="rgb(224,16,15)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="991.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="965" width="0.0682%" height="15" fill="rgb(248,195,29)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="949" width="0.0682%" height="15" fill="rgb(222,136,45)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="56.1701%" y="933" width="0.0682%" height="15" fill="rgb(232,52,4)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="943.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="56.1701%" y="917" width="0.0682%" height="15" fill="rgb(212,29,44)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="56.1701%" y="901" width="0.0682%" height="15" fill="rgb(249,5,10)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="56.1701%" y="885" width="0.0682%" height="15" fill="rgb(242,157,41)" fg:x="13182" fg:w="16"/><text x="56.4201%" y="895.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="56.1999%" y="869" width="0.0384%" height="15" fill="rgb(223,225,36)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="879.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="56.1999%" y="853" width="0.0384%" height="15" fill="rgb(246,227,7)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="863.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="56.1999%" y="837" width="0.0384%" height="15" fill="rgb(221,55,15)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="847.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="56.1999%" y="821" width="0.0384%" height="15" fill="rgb(228,79,39)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="831.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="56.1999%" y="805" width="0.0384%" height="15" fill="rgb(237,37,17)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="815.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="56.1999%" y="789" width="0.0384%" height="15" fill="rgb(205,194,8)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="56.1999%" y="773" width="0.0384%" height="15" fill="rgb(229,157,24)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.1999%" y="757" width="0.0384%" height="15" fill="rgb(215,107,42)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="767.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="56.1999%" y="741" width="0.0384%" height="15" fill="rgb(210,153,1)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.1999%" y="725" width="0.0384%" height="15" fill="rgb(222,105,11)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="735.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="56.1999%" y="709" width="0.0384%" height="15" fill="rgb(231,26,31)" fg:x="13189" fg:w="9"/><text x="56.4499%" y="719.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.2212%" y="693" width="0.0170%" height="15" fill="rgb(229,87,29)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="703.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.2212%" y="677" width="0.0170%" height="15" fill="rgb(214,9,12)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="687.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.2212%" y="661" width="0.0170%" height="15" fill="rgb(228,54,44)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="671.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.2212%" y="645" width="0.0170%" height="15" fill="rgb(243,116,38)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="655.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.2212%" y="629" width="0.0170%" height="15" fill="rgb(214,16,15)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="639.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.2212%" y="613" width="0.0170%" height="15" fill="rgb(231,113,0)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.2212%" y="597" width="0.0170%" height="15" fill="rgb(251,80,41)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.2212%" y="581" width="0.0170%" height="15" fill="rgb(254,119,49)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="591.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.2212%" y="565" width="0.0170%" height="15" fill="rgb(246,20,0)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.2212%" y="549" width="0.0170%" height="15" fill="rgb(222,152,4)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="559.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.2212%" y="533" width="0.0170%" height="15" fill="rgb(223,191,10)" fg:x="13194" fg:w="4"/><text x="56.4712%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (295 samples, 1.26%)</title><rect x="54.9855%" y="3829" width="1.2570%" height="15" fill="rgb(240,153,22)" fg:x="12904" fg:w="295"/><text x="55.2355%" y="3839.50"></text></g><g><title>rayon_core::join::join_context (295 samples, 1.26%)</title><rect x="54.9855%" y="3813" width="1.2570%" height="15" fill="rgb(252,105,34)" fg:x="12904" fg:w="295"/><text x="55.2355%" y="3823.50"></text></g><g><title>rayon_core::registry::in_worker (295 samples, 1.26%)</title><rect x="54.9855%" y="3797" width="1.2570%" height="15" fill="rgb(229,206,33)" fg:x="12904" fg:w="295"/><text x="55.2355%" y="3807.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (295 samples, 1.26%)</title><rect x="54.9855%" y="3781" width="1.2570%" height="15" fill="rgb(210,105,7)" fg:x="12904" fg:w="295"/><text x="55.2355%" y="3791.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (46 samples, 0.20%)</title><rect x="56.0465%" y="3765" width="0.1960%" height="15" fill="rgb(214,52,37)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3775.50"></text></g><g><title>std::panic::catch_unwind (46 samples, 0.20%)</title><rect x="56.0465%" y="3749" width="0.1960%" height="15" fill="rgb(239,172,28)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3759.50"></text></g><g><title>std::panicking::try (46 samples, 0.20%)</title><rect x="56.0465%" y="3733" width="0.1960%" height="15" fill="rgb(206,59,54)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3743.50"></text></g><g><title>std::panicking::try::do_call (46 samples, 0.20%)</title><rect x="56.0465%" y="3717" width="0.1960%" height="15" fill="rgb(249,176,12)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3727.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (46 samples, 0.20%)</title><rect x="56.0465%" y="3701" width="0.1960%" height="15" fill="rgb(237,84,15)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3711.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (46 samples, 0.20%)</title><rect x="56.0465%" y="3685" width="0.1960%" height="15" fill="rgb(224,28,41)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46 samples, 0.20%)</title><rect x="56.0465%" y="3669" width="0.1960%" height="15" fill="rgb(250,0,52)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.20%)</title><rect x="56.0465%" y="3653" width="0.1960%" height="15" fill="rgb(249,38,29)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3663.50"></text></g><g><title>rayon_core::join::join_context (46 samples, 0.20%)</title><rect x="56.0465%" y="3637" width="0.1960%" height="15" fill="rgb(233,209,27)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3647.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.20%)</title><rect x="56.0465%" y="3621" width="0.1960%" height="15" fill="rgb(218,59,43)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3631.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (46 samples, 0.20%)</title><rect x="56.0465%" y="3605" width="0.1960%" height="15" fill="rgb(231,222,0)" fg:x="13153" fg:w="46"/><text x="56.2965%" y="3615.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (38 samples, 0.16%)</title><rect x="56.0806%" y="3589" width="0.1619%" height="15" fill="rgb(222,54,30)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3599.50"></text></g><g><title>std::panic::catch_unwind (38 samples, 0.16%)</title><rect x="56.0806%" y="3573" width="0.1619%" height="15" fill="rgb(212,33,30)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3583.50"></text></g><g><title>std::panicking::try (38 samples, 0.16%)</title><rect x="56.0806%" y="3557" width="0.1619%" height="15" fill="rgb(239,133,3)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3567.50"></text></g><g><title>std::panicking::try::do_call (38 samples, 0.16%)</title><rect x="56.0806%" y="3541" width="0.1619%" height="15" fill="rgb(226,208,39)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3551.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (38 samples, 0.16%)</title><rect x="56.0806%" y="3525" width="0.1619%" height="15" fill="rgb(220,155,21)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3535.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (38 samples, 0.16%)</title><rect x="56.0806%" y="3509" width="0.1619%" height="15" fill="rgb(236,99,0)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (38 samples, 0.16%)</title><rect x="56.0806%" y="3493" width="0.1619%" height="15" fill="rgb(218,225,40)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.16%)</title><rect x="56.0806%" y="3477" width="0.1619%" height="15" fill="rgb(231,32,18)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3487.50"></text></g><g><title>rayon_core::join::join_context (38 samples, 0.16%)</title><rect x="56.0806%" y="3461" width="0.1619%" height="15" fill="rgb(223,124,30)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3471.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.16%)</title><rect x="56.0806%" y="3445" width="0.1619%" height="15" fill="rgb(210,40,24)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3455.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (38 samples, 0.16%)</title><rect x="56.0806%" y="3429" width="0.1619%" height="15" fill="rgb(251,189,25)" fg:x="13161" fg:w="38"/><text x="56.3306%" y="3439.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (28 samples, 0.12%)</title><rect x="56.1232%" y="3413" width="0.1193%" height="15" fill="rgb(248,53,31)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3423.50"></text></g><g><title>std::panic::catch_unwind (28 samples, 0.12%)</title><rect x="56.1232%" y="3397" width="0.1193%" height="15" fill="rgb(210,81,22)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3407.50"></text></g><g><title>std::panicking::try (28 samples, 0.12%)</title><rect x="56.1232%" y="3381" width="0.1193%" height="15" fill="rgb(214,131,16)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3391.50"></text></g><g><title>std::panicking::try::do_call (28 samples, 0.12%)</title><rect x="56.1232%" y="3365" width="0.1193%" height="15" fill="rgb(244,147,44)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3375.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (28 samples, 0.12%)</title><rect x="56.1232%" y="3349" width="0.1193%" height="15" fill="rgb(206,7,2)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (28 samples, 0.12%)</title><rect x="56.1232%" y="3333" width="0.1193%" height="15" fill="rgb(219,214,24)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (28 samples, 0.12%)</title><rect x="56.1232%" y="3317" width="0.1193%" height="15" fill="rgb(251,192,19)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.12%)</title><rect x="56.1232%" y="3301" width="0.1193%" height="15" fill="rgb(213,113,46)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (28 samples, 0.12%)</title><rect x="56.1232%" y="3285" width="0.1193%" height="15" fill="rgb(250,60,5)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.12%)</title><rect x="56.1232%" y="3269" width="0.1193%" height="15" fill="rgb(236,15,3)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (28 samples, 0.12%)</title><rect x="56.1232%" y="3253" width="0.1193%" height="15" fill="rgb(246,148,27)" fg:x="13171" fg:w="28"/><text x="56.3732%" y="3263.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="56.1531%" y="3237" width="0.0895%" height="15" fill="rgb(214,99,29)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3247.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="56.1531%" y="3221" width="0.0895%" height="15" fill="rgb(239,181,54)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3231.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="56.1531%" y="3205" width="0.0895%" height="15" fill="rgb(234,97,33)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3215.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="56.1531%" y="3189" width="0.0895%" height="15" fill="rgb(220,100,52)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3199.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="56.1531%" y="3173" width="0.0895%" height="15" fill="rgb(242,176,20)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="56.1531%" y="3157" width="0.0895%" height="15" fill="rgb(248,191,28)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="56.1531%" y="3141" width="0.0895%" height="15" fill="rgb(225,74,38)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="56.1531%" y="3125" width="0.0895%" height="15" fill="rgb(232,88,8)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="56.1531%" y="3109" width="0.0895%" height="15" fill="rgb(252,46,18)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="56.1531%" y="3093" width="0.0895%" height="15" fill="rgb(226,229,33)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="56.1531%" y="3077" width="0.0895%" height="15" fill="rgb(208,94,27)" fg:x="13178" fg:w="21"/><text x="56.4031%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="56.1701%" y="3061" width="0.0724%" height="15" fill="rgb(246,143,15)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="56.1701%" y="3045" width="0.0724%" height="15" fill="rgb(243,117,10)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="3055.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="56.1701%" y="3029" width="0.0724%" height="15" fill="rgb(213,30,30)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="56.1701%" y="3013" width="0.0724%" height="15" fill="rgb(228,48,22)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="56.1701%" y="2997" width="0.0724%" height="15" fill="rgb(229,109,17)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2981" width="0.0724%" height="15" fill="rgb(210,26,27)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2965" width="0.0724%" height="15" fill="rgb(224,218,20)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="56.1701%" y="2949" width="0.0724%" height="15" fill="rgb(233,64,28)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="56.1701%" y="2933" width="0.0724%" height="15" fill="rgb(215,228,51)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="56.1701%" y="2917" width="0.0724%" height="15" fill="rgb(224,122,54)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2901" width="0.0724%" height="15" fill="rgb(220,228,4)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (17 samples, 0.07%)</title><rect x="56.1701%" y="2885" width="0.0724%" height="15" fill="rgb(219,92,45)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="56.1701%" y="2869" width="0.0724%" height="15" fill="rgb(231,154,10)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2879.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (17 samples, 0.07%)</title><rect x="56.1701%" y="2853" width="0.0724%" height="15" fill="rgb(210,91,32)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2863.50"></text></g><g><title>rayon_core::job::JobRef::execute (17 samples, 0.07%)</title><rect x="56.1701%" y="2837" width="0.0724%" height="15" fill="rgb(251,80,51)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2847.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (17 samples, 0.07%)</title><rect x="56.1701%" y="2821" width="0.0724%" height="15" fill="rgb(243,152,46)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2831.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (17 samples, 0.07%)</title><rect x="56.1701%" y="2805" width="0.0724%" height="15" fill="rgb(219,2,29)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="56.1701%" y="2789" width="0.0724%" height="15" fill="rgb(229,162,50)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="56.1701%" y="2773" width="0.0724%" height="15" fill="rgb(210,47,32)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2783.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="56.1701%" y="2757" width="0.0724%" height="15" fill="rgb(227,50,23)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="56.1701%" y="2741" width="0.0724%" height="15" fill="rgb(235,106,29)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="56.1701%" y="2725" width="0.0724%" height="15" fill="rgb(228,196,36)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2735.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2709" width="0.0724%" height="15" fill="rgb(221,30,9)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2693" width="0.0724%" height="15" fill="rgb(241,10,0)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2677" width="0.0724%" height="15" fill="rgb(219,226,52)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="56.1701%" y="2661" width="0.0724%" height="15" fill="rgb(211,9,23)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="56.1701%" y="2645" width="0.0724%" height="15" fill="rgb(240,144,13)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="56.1701%" y="2629" width="0.0724%" height="15" fill="rgb(215,56,15)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2613" width="0.0724%" height="15" fill="rgb(232,64,31)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (17 samples, 0.07%)</title><rect x="56.1701%" y="2597" width="0.0724%" height="15" fill="rgb(234,196,4)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="56.1701%" y="2581" width="0.0724%" height="15" fill="rgb(237,125,46)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (17 samples, 0.07%)</title><rect x="56.1701%" y="2565" width="0.0724%" height="15" fill="rgb(219,167,4)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2575.50"></text></g><g><title>rayon_core::job::JobRef::execute (17 samples, 0.07%)</title><rect x="56.1701%" y="2549" width="0.0724%" height="15" fill="rgb(252,169,1)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2559.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (17 samples, 0.07%)</title><rect x="56.1701%" y="2533" width="0.0724%" height="15" fill="rgb(222,177,26)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2543.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (17 samples, 0.07%)</title><rect x="56.1701%" y="2517" width="0.0724%" height="15" fill="rgb(223,227,51)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2527.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="56.1701%" y="2501" width="0.0724%" height="15" fill="rgb(238,101,19)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2511.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="56.1701%" y="2485" width="0.0724%" height="15" fill="rgb(241,198,35)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2495.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="56.1701%" y="2469" width="0.0724%" height="15" fill="rgb(247,178,39)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2479.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="56.1701%" y="2453" width="0.0724%" height="15" fill="rgb(223,51,48)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2463.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="56.1701%" y="2437" width="0.0724%" height="15" fill="rgb(225,131,18)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2421" width="0.0724%" height="15" fill="rgb(206,179,13)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2405" width="0.0724%" height="15" fill="rgb(227,40,29)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2389" width="0.0724%" height="15" fill="rgb(236,55,8)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="56.1701%" y="2373" width="0.0724%" height="15" fill="rgb(250,4,24)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="56.1701%" y="2357" width="0.0724%" height="15" fill="rgb(235,165,3)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="56.1701%" y="2341" width="0.0724%" height="15" fill="rgb(250,75,42)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="56.1701%" y="2325" width="0.0724%" height="15" fill="rgb(244,189,6)" fg:x="13182" fg:w="17"/><text x="56.4201%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (27 samples, 0.12%)</title><rect x="56.2468%" y="3829" width="0.1151%" height="15" fill="rgb(241,166,46)" fg:x="13200" fg:w="27"/><text x="56.4968%" y="3839.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.3661%" y="3701" width="0.0170%" height="15" fill="rgb(244,44,19)" fg:x="13228" fg:w="4"/><text x="56.6161%" y="3711.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.3661%" y="3685" width="0.0170%" height="15" fill="rgb(239,113,15)" fg:x="13228" fg:w="4"/><text x="56.6161%" y="3695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.3661%" y="3669" width="0.0170%" height="15" fill="rgb(224,26,30)" fg:x="13228" fg:w="4"/><text x="56.6161%" y="3679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.3661%" y="3653" width="0.0170%" height="15" fill="rgb(205,196,36)" fg:x="13228" fg:w="4"/><text x="56.6161%" y="3663.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.3661%" y="3637" width="0.0170%" height="15" fill="rgb(217,125,12)" fg:x="13228" fg:w="4"/><text x="56.6161%" y="3647.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.3661%" y="3621" width="0.0170%" height="15" fill="rgb(233,108,22)" fg:x="13228" fg:w="4"/><text x="56.6161%" y="3631.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.3661%" y="3605" width="0.0170%" height="15" fill="rgb(246,97,10)" fg:x="13228" fg:w="4"/><text x="56.6161%" y="3615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.3917%" y="3413" width="0.0128%" height="15" fill="rgb(247,141,35)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3423.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.3917%" y="3397" width="0.0128%" height="15" fill="rgb(244,81,34)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3407.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.3917%" y="3381" width="0.0128%" height="15" fill="rgb(212,140,34)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3391.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.3917%" y="3365" width="0.0128%" height="15" fill="rgb(242,210,19)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3375.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.3917%" y="3349" width="0.0128%" height="15" fill="rgb(207,67,20)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3359.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.3917%" y="3333" width="0.0128%" height="15" fill="rgb(238,66,0)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.3917%" y="3317" width="0.0128%" height="15" fill="rgb(250,181,8)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3327.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.3917%" y="3301" width="0.0128%" height="15" fill="rgb(250,172,7)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3311.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.3917%" y="3285" width="0.0128%" height="15" fill="rgb(244,86,6)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3295.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.3917%" y="3269" width="0.0128%" height="15" fill="rgb(211,56,53)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.3917%" y="3253" width="0.0128%" height="15" fill="rgb(211,112,2)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3263.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="3237" width="0.0128%" height="15" fill="rgb(232,187,8)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="3221" width="0.0128%" height="15" fill="rgb(206,169,1)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="3205" width="0.0128%" height="15" fill="rgb(232,177,51)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.3917%" y="3189" width="0.0128%" height="15" fill="rgb(205,174,23)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.3917%" y="3173" width="0.0128%" height="15" fill="rgb(254,4,42)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.3917%" y="3157" width="0.0128%" height="15" fill="rgb(240,180,37)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="3141" width="0.0128%" height="15" fill="rgb(213,122,6)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3151.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.3917%" y="3125" width="0.0128%" height="15" fill="rgb(248,212,54)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3135.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.3917%" y="3109" width="0.0128%" height="15" fill="rgb(237,38,11)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3119.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.3917%" y="3093" width="0.0128%" height="15" fill="rgb(230,48,11)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3103.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.3917%" y="3077" width="0.0128%" height="15" fill="rgb(231,143,23)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3087.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.3917%" y="3061" width="0.0128%" height="15" fill="rgb(226,110,18)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="3045" width="0.0128%" height="15" fill="rgb(233,91,14)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="3029" width="0.0128%" height="15" fill="rgb(208,126,29)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.3917%" y="3013" width="0.0128%" height="15" fill="rgb(212,107,3)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.3917%" y="2997" width="0.0128%" height="15" fill="rgb(237,97,3)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.3917%" y="2981" width="0.0128%" height="15" fill="rgb(254,67,3)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="2965" width="0.0128%" height="15" fill="rgb(218,71,19)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.3917%" y="2949" width="0.0128%" height="15" fill="rgb(209,117,32)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.3917%" y="2933" width="0.0128%" height="15" fill="rgb(222,147,15)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2943.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.3917%" y="2917" width="0.0128%" height="15" fill="rgb(210,139,36)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.3917%" y="2901" width="0.0128%" height="15" fill="rgb(251,175,26)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.3917%" y="2885" width="0.0128%" height="15" fill="rgb(250,169,37)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="2869" width="0.0128%" height="15" fill="rgb(213,198,54)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="2853" width="0.0128%" height="15" fill="rgb(252,7,39)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.3917%" y="2837" width="0.0128%" height="15" fill="rgb(239,75,44)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.3917%" y="2821" width="0.0128%" height="15" fill="rgb(211,6,15)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.3917%" y="2805" width="0.0128%" height="15" fill="rgb(217,15,33)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.3917%" y="2789" width="0.0128%" height="15" fill="rgb(241,57,23)" fg:x="13234" fg:w="3"/><text x="56.6417%" y="2799.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="56.3661%" y="3813" width="0.0597%" height="15" fill="rgb(207,194,54)" fg:x="13228" fg:w="14"/><text x="56.6161%" y="3823.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="56.3661%" y="3797" width="0.0597%" height="15" fill="rgb(242,18,8)" fg:x="13228" fg:w="14"/><text x="56.6161%" y="3807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="56.3661%" y="3781" width="0.0597%" height="15" fill="rgb(248,188,54)" fg:x="13228" fg:w="14"/><text x="56.6161%" y="3791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="56.3661%" y="3765" width="0.0597%" height="15" fill="rgb(248,212,42)" fg:x="13228" fg:w="14"/><text x="56.6161%" y="3775.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="56.3661%" y="3749" width="0.0597%" height="15" fill="rgb(230,60,15)" fg:x="13228" fg:w="14"/><text x="56.6161%" y="3759.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="56.3661%" y="3733" width="0.0597%" height="15" fill="rgb(212,19,14)" fg:x="13228" fg:w="14"/><text x="56.6161%" y="3743.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="56.3661%" y="3717" width="0.0597%" height="15" fill="rgb(244,34,54)" fg:x="13228" fg:w="14"/><text x="56.6161%" y="3727.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (10 samples, 0.04%)</title><rect x="56.3832%" y="3701" width="0.0426%" height="15" fill="rgb(232,182,10)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3711.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="56.3832%" y="3685" width="0.0426%" height="15" fill="rgb(235,207,16)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3695.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (10 samples, 0.04%)</title><rect x="56.3832%" y="3669" width="0.0426%" height="15" fill="rgb(231,32,39)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3679.50"></text></g><g><title>rayon_core::job::JobRef::execute (10 samples, 0.04%)</title><rect x="56.3832%" y="3653" width="0.0426%" height="15" fill="rgb(227,95,28)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3663.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (10 samples, 0.04%)</title><rect x="56.3832%" y="3637" width="0.0426%" height="15" fill="rgb(244,22,31)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3647.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (10 samples, 0.04%)</title><rect x="56.3832%" y="3621" width="0.0426%" height="15" fill="rgb(214,133,52)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="56.3832%" y="3605" width="0.0426%" height="15" fill="rgb(213,25,44)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3615.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="56.3832%" y="3589" width="0.0426%" height="15" fill="rgb(207,126,24)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3599.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="56.3832%" y="3573" width="0.0426%" height="15" fill="rgb(233,121,30)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3583.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="56.3832%" y="3557" width="0.0426%" height="15" fill="rgb(249,84,6)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="56.3832%" y="3541" width="0.0426%" height="15" fill="rgb(207,1,26)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3551.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (10 samples, 0.04%)</title><rect x="56.3832%" y="3525" width="0.0426%" height="15" fill="rgb(209,139,14)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3535.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="56.3832%" y="3509" width="0.0426%" height="15" fill="rgb(228,197,10)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="56.3832%" y="3493" width="0.0426%" height="15" fill="rgb(214,224,38)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="56.3832%" y="3477" width="0.0426%" height="15" fill="rgb(247,165,24)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3487.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="56.3832%" y="3461" width="0.0426%" height="15" fill="rgb(230,160,6)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3471.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="56.3832%" y="3445" width="0.0426%" height="15" fill="rgb(244,163,42)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3455.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="56.3832%" y="3429" width="0.0426%" height="15" fill="rgb(205,100,12)" fg:x="13232" fg:w="10"/><text x="56.6332%" y="3439.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.4045%" y="3413" width="0.0213%" height="15" fill="rgb(234,171,0)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3423.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.4045%" y="3397" width="0.0213%" height="15" fill="rgb(225,15,9)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3407.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.4045%" y="3381" width="0.0213%" height="15" fill="rgb(207,69,3)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3391.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.4045%" y="3365" width="0.0213%" height="15" fill="rgb(239,223,48)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3375.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.4045%" y="3349" width="0.0213%" height="15" fill="rgb(206,60,34)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.4045%" y="3333" width="0.0213%" height="15" fill="rgb(226,229,37)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.4045%" y="3317" width="0.0213%" height="15" fill="rgb(246,110,31)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.4045%" y="3301" width="0.0213%" height="15" fill="rgb(248,15,19)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.4045%" y="3285" width="0.0213%" height="15" fill="rgb(209,186,1)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.4045%" y="3269" width="0.0213%" height="15" fill="rgb(216,173,45)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.4045%" y="3253" width="0.0213%" height="15" fill="rgb(205,92,34)" fg:x="13237" fg:w="5"/><text x="56.6545%" y="3263.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.4087%" y="3237" width="0.0170%" height="15" fill="rgb(220,14,44)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3247.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.4087%" y="3221" width="0.0170%" height="15" fill="rgb(243,126,24)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3231.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.4087%" y="3205" width="0.0170%" height="15" fill="rgb(208,8,10)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3215.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.4087%" y="3189" width="0.0170%" height="15" fill="rgb(215,96,43)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3199.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.4087%" y="3173" width="0.0170%" height="15" fill="rgb(243,100,4)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4087%" y="3157" width="0.0170%" height="15" fill="rgb(251,68,8)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4087%" y="3141" width="0.0170%" height="15" fill="rgb(224,22,33)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.4087%" y="3125" width="0.0170%" height="15" fill="rgb(240,76,17)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.4087%" y="3109" width="0.0170%" height="15" fill="rgb(222,86,22)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.4087%" y="3093" width="0.0170%" height="15" fill="rgb(207,123,50)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4087%" y="3077" width="0.0170%" height="15" fill="rgb(242,18,0)" fg:x="13238" fg:w="4"/><text x="56.6587%" y="3087.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.4258%" y="3189" width="0.0170%" height="15" fill="rgb(227,201,18)" fg:x="13242" fg:w="4"/><text x="56.6758%" y="3199.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4258%" y="3173" width="0.0170%" height="15" fill="rgb(207,37,52)" fg:x="13242" fg:w="4"/><text x="56.6758%" y="3183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4258%" y="3157" width="0.0170%" height="15" fill="rgb(236,217,19)" fg:x="13242" fg:w="4"/><text x="56.6758%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.4258%" y="3141" width="0.0170%" height="15" fill="rgb(211,96,45)" fg:x="13242" fg:w="4"/><text x="56.6758%" y="3151.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.4258%" y="3125" width="0.0170%" height="15" fill="rgb(211,108,3)" fg:x="13242" fg:w="4"/><text x="56.6758%" y="3135.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.4258%" y="3109" width="0.0170%" height="15" fill="rgb(244,50,53)" fg:x="13242" fg:w="4"/><text x="56.6758%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4258%" y="3093" width="0.0170%" height="15" fill="rgb(253,30,9)" fg:x="13242" fg:w="4"/><text x="56.6758%" y="3103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.4300%" y="3077" width="0.0128%" height="15" fill="rgb(214,122,3)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="3087.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.4300%" y="3061" width="0.0128%" height="15" fill="rgb(226,204,18)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="3071.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.4300%" y="3045" width="0.0128%" height="15" fill="rgb(225,205,54)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="3055.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.4300%" y="3029" width="0.0128%" height="15" fill="rgb(254,159,14)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="3039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.4300%" y="3013" width="0.0128%" height="15" fill="rgb(245,202,3)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.4300%" y="2997" width="0.0128%" height="15" fill="rgb(232,136,36)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.4300%" y="2981" width="0.0128%" height="15" fill="rgb(254,104,6)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.4300%" y="2965" width="0.0128%" height="15" fill="rgb(223,227,28)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.4300%" y="2949" width="0.0128%" height="15" fill="rgb(221,5,17)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.4300%" y="2933" width="0.0128%" height="15" fill="rgb(212,103,40)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.4300%" y="2917" width="0.0128%" height="15" fill="rgb(223,129,51)" fg:x="13243" fg:w="3"/><text x="56.6800%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="56.4258%" y="3301" width="0.0341%" height="15" fill="rgb(235,159,34)" fg:x="13242" fg:w="8"/><text x="56.6758%" y="3311.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="56.4258%" y="3285" width="0.0341%" height="15" fill="rgb(208,148,21)" fg:x="13242" fg:w="8"/><text x="56.6758%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.4258%" y="3269" width="0.0341%" height="15" fill="rgb(221,126,38)" fg:x="13242" fg:w="8"/><text x="56.6758%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.4258%" y="3253" width="0.0341%" height="15" fill="rgb(214,16,0)" fg:x="13242" fg:w="8"/><text x="56.6758%" y="3263.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="56.4258%" y="3237" width="0.0341%" height="15" fill="rgb(239,174,40)" fg:x="13242" fg:w="8"/><text x="56.6758%" y="3247.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.4258%" y="3221" width="0.0341%" height="15" fill="rgb(214,207,33)" fg:x="13242" fg:w="8"/><text x="56.6758%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="56.4258%" y="3205" width="0.0341%" height="15" fill="rgb(235,17,35)" fg:x="13242" fg:w="8"/><text x="56.6758%" y="3215.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.4428%" y="3189" width="0.0170%" height="15" fill="rgb(215,187,14)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3199.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.4428%" y="3173" width="0.0170%" height="15" fill="rgb(216,34,18)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3183.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.4428%" y="3157" width="0.0170%" height="15" fill="rgb(229,47,43)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3167.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.4428%" y="3141" width="0.0170%" height="15" fill="rgb(229,41,12)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3151.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.4428%" y="3125" width="0.0170%" height="15" fill="rgb(217,54,0)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4428%" y="3109" width="0.0170%" height="15" fill="rgb(229,187,31)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4428%" y="3093" width="0.0170%" height="15" fill="rgb(242,117,32)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.4428%" y="3077" width="0.0170%" height="15" fill="rgb(216,66,11)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.4428%" y="3061" width="0.0170%" height="15" fill="rgb(210,101,18)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.4428%" y="3045" width="0.0170%" height="15" fill="rgb(205,49,38)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4428%" y="3029" width="0.0170%" height="15" fill="rgb(242,56,23)" fg:x="13246" fg:w="4"/><text x="56.6928%" y="3039.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.4599%" y="3013" width="0.0128%" height="15" fill="rgb(226,109,11)" fg:x="13250" fg:w="3"/><text x="56.7099%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.4599%" y="2997" width="0.0128%" height="15" fill="rgb(243,62,4)" fg:x="13250" fg:w="3"/><text x="56.7099%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.4599%" y="2981" width="0.0128%" height="15" fill="rgb(219,81,50)" fg:x="13250" fg:w="3"/><text x="56.7099%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.4599%" y="2965" width="0.0128%" height="15" fill="rgb(240,88,23)" fg:x="13250" fg:w="3"/><text x="56.7099%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.4599%" y="2949" width="0.0128%" height="15" fill="rgb(248,225,14)" fg:x="13250" fg:w="3"/><text x="56.7099%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.4599%" y="2933" width="0.0128%" height="15" fill="rgb(226,64,50)" fg:x="13250" fg:w="3"/><text x="56.7099%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.4599%" y="2917" width="0.0128%" height="15" fill="rgb(244,56,35)" fg:x="13250" fg:w="3"/><text x="56.7099%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="56.4599%" y="3125" width="0.0298%" height="15" fill="rgb(232,198,25)" fg:x="13250" fg:w="7"/><text x="56.7099%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="56.4599%" y="3109" width="0.0298%" height="15" fill="rgb(245,90,27)" fg:x="13250" fg:w="7"/><text x="56.7099%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="56.4599%" y="3093" width="0.0298%" height="15" fill="rgb(215,187,30)" fg:x="13250" fg:w="7"/><text x="56.7099%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="56.4599%" y="3077" width="0.0298%" height="15" fill="rgb(217,15,29)" fg:x="13250" fg:w="7"/><text x="56.7099%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="56.4599%" y="3061" width="0.0298%" height="15" fill="rgb(238,156,15)" fg:x="13250" fg:w="7"/><text x="56.7099%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="56.4599%" y="3045" width="0.0298%" height="15" fill="rgb(233,15,24)" fg:x="13250" fg:w="7"/><text x="56.7099%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="56.4599%" y="3029" width="0.0298%" height="15" fill="rgb(227,191,1)" fg:x="13250" fg:w="7"/><text x="56.7099%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.4726%" y="3013" width="0.0170%" height="15" fill="rgb(246,81,47)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.4726%" y="2997" width="0.0170%" height="15" fill="rgb(233,155,30)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="3007.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.4726%" y="2981" width="0.0170%" height="15" fill="rgb(235,94,46)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.4726%" y="2965" width="0.0170%" height="15" fill="rgb(242,84,18)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.4726%" y="2949" width="0.0170%" height="15" fill="rgb(252,208,39)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4726%" y="2933" width="0.0170%" height="15" fill="rgb(217,111,11)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4726%" y="2917" width="0.0170%" height="15" fill="rgb(242,115,32)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.4726%" y="2901" width="0.0170%" height="15" fill="rgb(208,38,31)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.4726%" y="2885" width="0.0170%" height="15" fill="rgb(214,140,7)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.4726%" y="2869" width="0.0170%" height="15" fill="rgb(243,219,8)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4726%" y="2853" width="0.0170%" height="15" fill="rgb(229,32,22)" fg:x="13253" fg:w="4"/><text x="56.7226%" y="2863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="56.4258%" y="3413" width="0.0852%" height="15" fill="rgb(240,52,3)" fg:x="13242" fg:w="20"/><text x="56.6758%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="56.4258%" y="3397" width="0.0852%" height="15" fill="rgb(225,225,4)" fg:x="13242" fg:w="20"/><text x="56.6758%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="56.4258%" y="3381" width="0.0852%" height="15" fill="rgb(237,150,10)" fg:x="13242" fg:w="20"/><text x="56.6758%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="56.4258%" y="3365" width="0.0852%" height="15" fill="rgb(206,186,48)" fg:x="13242" fg:w="20"/><text x="56.6758%" y="3375.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="56.4258%" y="3349" width="0.0852%" height="15" fill="rgb(212,94,29)" fg:x="13242" fg:w="20"/><text x="56.6758%" y="3359.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="56.4258%" y="3333" width="0.0852%" height="15" fill="rgb(212,165,27)" fg:x="13242" fg:w="20"/><text x="56.6758%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="56.4258%" y="3317" width="0.0852%" height="15" fill="rgb(209,179,46)" fg:x="13242" fg:w="20"/><text x="56.6758%" y="3327.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="56.4599%" y="3301" width="0.0511%" height="15" fill="rgb(208,30,45)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3311.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="56.4599%" y="3285" width="0.0511%" height="15" fill="rgb(252,169,24)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3295.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="56.4599%" y="3269" width="0.0511%" height="15" fill="rgb(234,35,40)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3279.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="56.4599%" y="3253" width="0.0511%" height="15" fill="rgb(222,99,21)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3263.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="56.4599%" y="3237" width="0.0511%" height="15" fill="rgb(244,153,19)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="56.4599%" y="3221" width="0.0511%" height="15" fill="rgb(245,209,50)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="56.4599%" y="3205" width="0.0511%" height="15" fill="rgb(250,194,8)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="56.4599%" y="3189" width="0.0511%" height="15" fill="rgb(218,101,49)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="56.4599%" y="3173" width="0.0511%" height="15" fill="rgb(230,161,11)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="56.4599%" y="3157" width="0.0511%" height="15" fill="rgb(236,21,2)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="56.4599%" y="3141" width="0.0511%" height="15" fill="rgb(239,158,47)" fg:x="13250" fg:w="12"/><text x="56.7099%" y="3151.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.4897%" y="3125" width="0.0213%" height="15" fill="rgb(212,201,44)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3135.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.4897%" y="3109" width="0.0213%" height="15" fill="rgb(239,119,53)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3119.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.4897%" y="3093" width="0.0213%" height="15" fill="rgb(234,74,37)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3103.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.4897%" y="3077" width="0.0213%" height="15" fill="rgb(217,179,23)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3087.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.4897%" y="3061" width="0.0213%" height="15" fill="rgb(234,52,6)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.4897%" y="3045" width="0.0213%" height="15" fill="rgb(223,68,33)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.4897%" y="3029" width="0.0213%" height="15" fill="rgb(219,190,34)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.4897%" y="3013" width="0.0213%" height="15" fill="rgb(229,135,40)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.4897%" y="2997" width="0.0213%" height="15" fill="rgb(243,29,35)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.4897%" y="2981" width="0.0213%" height="15" fill="rgb(225,55,51)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.4897%" y="2965" width="0.0213%" height="15" fill="rgb(213,171,10)" fg:x="13257" fg:w="5"/><text x="56.7397%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.4939%" y="2949" width="0.0170%" height="15" fill="rgb(238,184,39)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.4939%" y="2933" width="0.0170%" height="15" fill="rgb(252,142,51)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2943.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.4939%" y="2917" width="0.0170%" height="15" fill="rgb(210,77,30)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.4939%" y="2901" width="0.0170%" height="15" fill="rgb(238,211,46)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.4939%" y="2885" width="0.0170%" height="15" fill="rgb(224,150,13)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2869" width="0.0170%" height="15" fill="rgb(228,163,50)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2853" width="0.0170%" height="15" fill="rgb(221,95,24)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.4939%" y="2837" width="0.0170%" height="15" fill="rgb(242,0,38)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.4939%" y="2821" width="0.0170%" height="15" fill="rgb(250,51,44)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.4939%" y="2805" width="0.0170%" height="15" fill="rgb(236,154,6)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2789" width="0.0170%" height="15" fill="rgb(248,56,30)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.4939%" y="2773" width="0.0170%" height="15" fill="rgb(222,31,33)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.4939%" y="2757" width="0.0170%" height="15" fill="rgb(208,97,17)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2767.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.4939%" y="2741" width="0.0170%" height="15" fill="rgb(242,221,4)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.4939%" y="2725" width="0.0170%" height="15" fill="rgb(219,207,36)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.4939%" y="2709" width="0.0170%" height="15" fill="rgb(243,229,3)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2693" width="0.0170%" height="15" fill="rgb(218,68,42)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2677" width="0.0170%" height="15" fill="rgb(212,120,2)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.4939%" y="2661" width="0.0170%" height="15" fill="rgb(206,199,10)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.4939%" y="2645" width="0.0170%" height="15" fill="rgb(235,112,52)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.4939%" y="2629" width="0.0170%" height="15" fill="rgb(219,65,13)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.4939%" y="2613" width="0.0170%" height="15" fill="rgb(220,77,14)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.4939%" y="2597" width="0.0170%" height="15" fill="rgb(226,47,32)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.4939%" y="2581" width="0.0170%" height="15" fill="rgb(234,198,3)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.4939%" y="2565" width="0.0170%" height="15" fill="rgb(218,200,28)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.4939%" y="2549" width="0.0170%" height="15" fill="rgb(243,78,44)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2533" width="0.0170%" height="15" fill="rgb(238,92,44)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2517" width="0.0170%" height="15" fill="rgb(238,83,54)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.4939%" y="2501" width="0.0170%" height="15" fill="rgb(219,138,36)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.4939%" y="2485" width="0.0170%" height="15" fill="rgb(242,214,2)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.4939%" y="2469" width="0.0170%" height="15" fill="rgb(237,176,3)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.4939%" y="2453" width="0.0170%" height="15" fill="rgb(223,190,45)" fg:x="13258" fg:w="4"/><text x="56.7439%" y="2463.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.5110%" y="3013" width="0.0128%" height="15" fill="rgb(211,13,15)" fg:x="13262" fg:w="3"/><text x="56.7610%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5110%" y="2997" width="0.0128%" height="15" fill="rgb(246,189,13)" fg:x="13262" fg:w="3"/><text x="56.7610%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5110%" y="2981" width="0.0128%" height="15" fill="rgb(250,62,30)" fg:x="13262" fg:w="3"/><text x="56.7610%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.5110%" y="2965" width="0.0128%" height="15" fill="rgb(251,123,2)" fg:x="13262" fg:w="3"/><text x="56.7610%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.5110%" y="2949" width="0.0128%" height="15" fill="rgb(224,225,54)" fg:x="13262" fg:w="3"/><text x="56.7610%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.5110%" y="2933" width="0.0128%" height="15" fill="rgb(219,89,45)" fg:x="13262" fg:w="3"/><text x="56.7610%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5110%" y="2917" width="0.0128%" height="15" fill="rgb(210,176,22)" fg:x="13262" fg:w="3"/><text x="56.7610%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="56.5110%" y="3125" width="0.0298%" height="15" fill="rgb(222,187,19)" fg:x="13262" fg:w="7"/><text x="56.7610%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="56.5110%" y="3109" width="0.0298%" height="15" fill="rgb(237,78,45)" fg:x="13262" fg:w="7"/><text x="56.7610%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="56.5110%" y="3093" width="0.0298%" height="15" fill="rgb(239,69,52)" fg:x="13262" fg:w="7"/><text x="56.7610%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="56.5110%" y="3077" width="0.0298%" height="15" fill="rgb(250,0,35)" fg:x="13262" fg:w="7"/><text x="56.7610%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="56.5110%" y="3061" width="0.0298%" height="15" fill="rgb(233,197,14)" fg:x="13262" fg:w="7"/><text x="56.7610%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="56.5110%" y="3045" width="0.0298%" height="15" fill="rgb(236,146,52)" fg:x="13262" fg:w="7"/><text x="56.7610%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="56.5110%" y="3029" width="0.0298%" height="15" fill="rgb(207,92,24)" fg:x="13262" fg:w="7"/><text x="56.7610%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.5238%" y="3013" width="0.0170%" height="15" fill="rgb(251,130,18)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.5238%" y="2997" width="0.0170%" height="15" fill="rgb(223,227,49)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="3007.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.5238%" y="2981" width="0.0170%" height="15" fill="rgb(235,8,33)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.5238%" y="2965" width="0.0170%" height="15" fill="rgb(209,193,32)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.5238%" y="2949" width="0.0170%" height="15" fill="rgb(231,188,40)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5238%" y="2933" width="0.0170%" height="15" fill="rgb(230,19,31)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5238%" y="2917" width="0.0170%" height="15" fill="rgb(207,134,25)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.5238%" y="2901" width="0.0170%" height="15" fill="rgb(226,108,10)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.5238%" y="2885" width="0.0170%" height="15" fill="rgb(230,72,44)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.5238%" y="2869" width="0.0170%" height="15" fill="rgb(253,219,36)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5238%" y="2853" width="0.0170%" height="15" fill="rgb(233,151,27)" fg:x="13265" fg:w="4"/><text x="56.7738%" y="2863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.5408%" y="2949" width="0.0170%" height="15" fill="rgb(211,211,21)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2933" width="0.0170%" height="15" fill="rgb(218,145,19)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2917" width="0.0170%" height="15" fill="rgb(239,152,33)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.5408%" y="2901" width="0.0170%" height="15" fill="rgb(207,64,28)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.5408%" y="2885" width="0.0170%" height="15" fill="rgb(242,199,33)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.5408%" y="2869" width="0.0170%" height="15" fill="rgb(235,64,47)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2853" width="0.0170%" height="15" fill="rgb(224,191,15)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.5408%" y="2837" width="0.0170%" height="15" fill="rgb(217,81,13)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.5408%" y="2821" width="0.0170%" height="15" fill="rgb(242,167,49)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2831.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.5408%" y="2805" width="0.0170%" height="15" fill="rgb(215,213,16)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.5408%" y="2789" width="0.0170%" height="15" fill="rgb(228,71,15)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.5408%" y="2773" width="0.0170%" height="15" fill="rgb(212,179,30)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2757" width="0.0170%" height="15" fill="rgb(252,95,23)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2741" width="0.0170%" height="15" fill="rgb(227,143,39)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.5408%" y="2725" width="0.0170%" height="15" fill="rgb(224,188,47)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.5408%" y="2709" width="0.0170%" height="15" fill="rgb(246,65,23)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.5408%" y="2693" width="0.0170%" height="15" fill="rgb(222,25,8)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.5408%" y="2677" width="0.0170%" height="15" fill="rgb(235,52,52)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.5408%" y="2661" width="0.0170%" height="15" fill="rgb(225,171,8)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.5408%" y="2645" width="0.0170%" height="15" fill="rgb(224,99,53)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.5408%" y="2629" width="0.0170%" height="15" fill="rgb(205,148,31)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.5408%" y="2613" width="0.0170%" height="15" fill="rgb(227,8,53)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2597" width="0.0170%" height="15" fill="rgb(209,199,37)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2581" width="0.0170%" height="15" fill="rgb(224,61,28)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.5408%" y="2565" width="0.0170%" height="15" fill="rgb(236,71,10)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5408%" y="2549" width="0.0170%" height="15" fill="rgb(224,20,16)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.5408%" y="2533" width="0.0170%" height="15" fill="rgb(246,102,5)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.5408%" y="2517" width="0.0170%" height="15" fill="rgb(218,134,28)" fg:x="13269" fg:w="4"/><text x="56.7908%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.5451%" y="2501" width="0.0128%" height="15" fill="rgb(247,15,50)" fg:x="13270" fg:w="3"/><text x="56.7951%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.5451%" y="2485" width="0.0128%" height="15" fill="rgb(227,205,48)" fg:x="13270" fg:w="3"/><text x="56.7951%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.5451%" y="2469" width="0.0128%" height="15" fill="rgb(248,214,36)" fg:x="13270" fg:w="3"/><text x="56.7951%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.5451%" y="2453" width="0.0128%" height="15" fill="rgb(213,143,6)" fg:x="13270" fg:w="3"/><text x="56.7951%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.5451%" y="2437" width="0.0128%" height="15" fill="rgb(211,112,33)" fg:x="13270" fg:w="3"/><text x="56.7951%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.5579%" y="2773" width="0.0128%" height="15" fill="rgb(209,141,23)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5579%" y="2757" width="0.0128%" height="15" fill="rgb(233,57,44)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5579%" y="2741" width="0.0128%" height="15" fill="rgb(214,53,51)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.5579%" y="2725" width="0.0128%" height="15" fill="rgb(220,25,19)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="56.5579%" y="2709" width="0.0128%" height="15" fill="rgb(230,9,14)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.5579%" y="2693" width="0.0128%" height="15" fill="rgb(218,36,34)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.5579%" y="2677" width="0.0128%" height="15" fill="rgb(253,121,27)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="56.5579%" y="2661" width="0.0128%" height="15" fill="rgb(206,145,31)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.5579%" y="2645" width="0.0128%" height="15" fill="rgb(218,110,8)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.5579%" y="2629" width="0.0128%" height="15" fill="rgb(226,40,39)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="56.5579%" y="2613" width="0.0128%" height="15" fill="rgb(216,147,19)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5579%" y="2597" width="0.0128%" height="15" fill="rgb(231,206,23)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5579%" y="2581" width="0.0128%" height="15" fill="rgb(235,23,13)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="56.5579%" y="2565" width="0.0128%" height="15" fill="rgb(236,163,26)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="56.5579%" y="2549" width="0.0128%" height="15" fill="rgb(210,204,6)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="56.5579%" y="2533" width="0.0128%" height="15" fill="rgb(244,25,44)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="56.5579%" y="2517" width="0.0128%" height="15" fill="rgb(226,116,7)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="56.5579%" y="2501" width="0.0128%" height="15" fill="rgb(251,82,7)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.5579%" y="2485" width="0.0128%" height="15" fill="rgb(227,127,38)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2495.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.5579%" y="2469" width="0.0128%" height="15" fill="rgb(232,102,19)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.5579%" y="2453" width="0.0128%" height="15" fill="rgb(210,76,5)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.5579%" y="2437" width="0.0128%" height="15" fill="rgb(246,28,35)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.5579%" y="2421" width="0.0128%" height="15" fill="rgb(239,76,0)" fg:x="13273" fg:w="3"/><text x="56.8079%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="56.5110%" y="3237" width="0.0639%" height="15" fill="rgb(205,21,36)" fg:x="13262" fg:w="15"/><text x="56.7610%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="56.5110%" y="3221" width="0.0639%" height="15" fill="rgb(220,134,26)" fg:x="13262" fg:w="15"/><text x="56.7610%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="56.5110%" y="3205" width="0.0639%" height="15" fill="rgb(220,29,20)" fg:x="13262" fg:w="15"/><text x="56.7610%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="56.5110%" y="3189" width="0.0639%" height="15" fill="rgb(222,8,48)" fg:x="13262" fg:w="15"/><text x="56.7610%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="56.5110%" y="3173" width="0.0639%" height="15" fill="rgb(215,2,47)" fg:x="13262" fg:w="15"/><text x="56.7610%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="56.5110%" y="3157" width="0.0639%" height="15" fill="rgb(222,198,35)" fg:x="13262" fg:w="15"/><text x="56.7610%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="56.5110%" y="3141" width="0.0639%" height="15" fill="rgb(245,180,51)" fg:x="13262" fg:w="15"/><text x="56.7610%" y="3151.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="56.5408%" y="3125" width="0.0341%" height="15" fill="rgb(248,28,31)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3135.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="56.5408%" y="3109" width="0.0341%" height="15" fill="rgb(250,15,1)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3119.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="56.5408%" y="3093" width="0.0341%" height="15" fill="rgb(236,164,17)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3103.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="56.5408%" y="3077" width="0.0341%" height="15" fill="rgb(205,31,13)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3087.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="56.5408%" y="3061" width="0.0341%" height="15" fill="rgb(225,188,33)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="56.5408%" y="3045" width="0.0341%" height="15" fill="rgb(212,42,9)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.5408%" y="3029" width="0.0341%" height="15" fill="rgb(236,222,34)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.5408%" y="3013" width="0.0341%" height="15" fill="rgb(214,69,27)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="56.5408%" y="2997" width="0.0341%" height="15" fill="rgb(243,203,7)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.5408%" y="2981" width="0.0341%" height="15" fill="rgb(218,53,8)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="56.5408%" y="2965" width="0.0341%" height="15" fill="rgb(224,161,2)" fg:x="13269" fg:w="8"/><text x="56.7908%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.5579%" y="2949" width="0.0170%" height="15" fill="rgb(213,181,25)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.5579%" y="2933" width="0.0170%" height="15" fill="rgb(206,48,20)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2943.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.5579%" y="2917" width="0.0170%" height="15" fill="rgb(206,57,29)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.5579%" y="2901" width="0.0170%" height="15" fill="rgb(243,74,29)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.5579%" y="2885" width="0.0170%" height="15" fill="rgb(212,178,52)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5579%" y="2869" width="0.0170%" height="15" fill="rgb(218,101,9)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5579%" y="2853" width="0.0170%" height="15" fill="rgb(242,41,1)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.5579%" y="2837" width="0.0170%" height="15" fill="rgb(235,141,22)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.5579%" y="2821" width="0.0170%" height="15" fill="rgb(209,104,6)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.5579%" y="2805" width="0.0170%" height="15" fill="rgb(211,199,15)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.5579%" y="2789" width="0.0170%" height="15" fill="rgb(239,101,42)" fg:x="13273" fg:w="4"/><text x="56.8079%" y="2799.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="56.5792%" y="2501" width="0.0128%" height="15" fill="rgb(241,131,17)" fg:x="13278" fg:w="3"/><text x="56.8292%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.5792%" y="2485" width="0.0128%" height="15" fill="rgb(222,7,35)" fg:x="13278" fg:w="3"/><text x="56.8292%" y="2495.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.5792%" y="2469" width="0.0128%" height="15" fill="rgb(223,61,17)" fg:x="13278" fg:w="3"/><text x="56.8292%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.5792%" y="2453" width="0.0128%" height="15" fill="rgb(241,206,23)" fg:x="13278" fg:w="3"/><text x="56.8292%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.5792%" y="2437" width="0.0128%" height="15" fill="rgb(218,168,21)" fg:x="13278" fg:w="3"/><text x="56.8292%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.5792%" y="2421" width="0.0128%" height="15" fill="rgb(221,23,50)" fg:x="13278" fg:w="3"/><text x="56.8292%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="56.5792%" y="2405" width="0.0128%" height="15" fill="rgb(246,25,16)" fg:x="13278" fg:w="3"/><text x="56.8292%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="56.5749%" y="2949" width="0.0256%" height="15" fill="rgb(221,80,47)" fg:x="13277" fg:w="6"/><text x="56.8249%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="56.5749%" y="2933" width="0.0256%" height="15" fill="rgb(237,59,26)" fg:x="13277" fg:w="6"/><text x="56.8249%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="56.5749%" y="2917" width="0.0256%" height="15" fill="rgb(236,202,0)" fg:x="13277" fg:w="6"/><text x="56.8249%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="56.5749%" y="2901" width="0.0256%" height="15" fill="rgb(238,97,28)" fg:x="13277" fg:w="6"/><text x="56.8249%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="56.5749%" y="2885" width="0.0256%" height="15" fill="rgb(248,170,36)" fg:x="13277" fg:w="6"/><text x="56.8249%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="56.5749%" y="2869" width="0.0256%" height="15" fill="rgb(235,158,8)" fg:x="13277" fg:w="6"/><text x="56.8249%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="56.5749%" y="2853" width="0.0256%" height="15" fill="rgb(215,215,14)" fg:x="13277" fg:w="6"/><text x="56.8249%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.5792%" y="2837" width="0.0213%" height="15" fill="rgb(240,45,30)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.5792%" y="2821" width="0.0213%" height="15" fill="rgb(234,157,54)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2831.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.5792%" y="2805" width="0.0213%" height="15" fill="rgb(254,185,8)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.5792%" y="2789" width="0.0213%" height="15" fill="rgb(223,228,39)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.5792%" y="2773" width="0.0213%" height="15" fill="rgb(211,190,35)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="56.5792%" y="2757" width="0.0213%" height="15" fill="rgb(244,53,20)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.5792%" y="2741" width="0.0213%" height="15" fill="rgb(219,72,31)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.5792%" y="2725" width="0.0213%" height="15" fill="rgb(243,125,32)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="56.5792%" y="2709" width="0.0213%" height="15" fill="rgb(252,158,7)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="56.5792%" y="2693" width="0.0213%" height="15" fill="rgb(220,199,33)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="56.5792%" y="2677" width="0.0213%" height="15" fill="rgb(213,55,41)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="56.5792%" y="2661" width="0.0213%" height="15" fill="rgb(246,188,20)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="56.5792%" y="2645" width="0.0213%" height="15" fill="rgb(235,145,1)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="56.5792%" y="2629" width="0.0213%" height="15" fill="rgb(224,137,36)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="56.5792%" y="2613" width="0.0213%" height="15" fill="rgb(252,7,7)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="56.5792%" y="2597" width="0.0213%" height="15" fill="rgb(215,101,23)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="56.5792%" y="2581" width="0.0213%" height="15" fill="rgb(205,17,0)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="56.5792%" y="2565" width="0.0213%" height="15" fill="rgb(233,31,53)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="56.5792%" y="2549" width="0.0213%" height="15" fill="rgb(225,169,37)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="56.5792%" y="2533" width="0.0213%" height="15" fill="rgb(222,197,15)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="56.5792%" y="2517" width="0.0213%" height="15" fill="rgb(254,139,14)" fg:x="13278" fg:w="5"/><text x="56.8292%" y="2527.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="56.5749%" y="3061" width="0.0384%" height="15" fill="rgb(252,117,54)" fg:x="13277" fg:w="9"/><text x="56.8249%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="56.5749%" y="3045" width="0.0384%" height="15" fill="rgb(206,132,12)" fg:x="13277" fg:w="9"/><text x="56.8249%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="56.5749%" y="3029" width="0.0384%" height="15" fill="rgb(212,21,44)" fg:x="13277" fg:w="9"/><text x="56.8249%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.5749%" y="3013" width="0.0384%" height="15" fill="rgb(246,13,23)" fg:x="13277" fg:w="9"/><text x="56.8249%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="56.5749%" y="2997" width="0.0384%" height="15" fill="rgb(234,11,41)" fg:x="13277" fg:w="9"/><text x="56.8249%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.5749%" y="2981" width="0.0384%" height="15" fill="rgb(244,211,39)" fg:x="13277" fg:w="9"/><text x="56.8249%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="56.5749%" y="2965" width="0.0384%" height="15" fill="rgb(217,47,34)" fg:x="13277" fg:w="9"/><text x="56.8249%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.6005%" y="2949" width="0.0128%" height="15" fill="rgb(233,218,42)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.6005%" y="2933" width="0.0128%" height="15" fill="rgb(248,133,52)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2943.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.6005%" y="2917" width="0.0128%" height="15" fill="rgb(244,109,16)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.6005%" y="2901" width="0.0128%" height="15" fill="rgb(232,159,52)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.6005%" y="2885" width="0.0128%" height="15" fill="rgb(225,147,44)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.6005%" y="2869" width="0.0128%" height="15" fill="rgb(251,115,5)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.6005%" y="2853" width="0.0128%" height="15" fill="rgb(225,14,53)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.6005%" y="2837" width="0.0128%" height="15" fill="rgb(241,91,33)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.6005%" y="2821" width="0.0128%" height="15" fill="rgb(233,190,53)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.6005%" y="2805" width="0.0128%" height="15" fill="rgb(237,5,12)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.6005%" y="2789" width="0.0128%" height="15" fill="rgb(237,54,25)" fg:x="13283" fg:w="3"/><text x="56.8505%" y="2799.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.6133%" y="2773" width="0.0170%" height="15" fill="rgb(248,194,52)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6133%" y="2757" width="0.0170%" height="15" fill="rgb(228,99,8)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6133%" y="2741" width="0.0170%" height="15" fill="rgb(216,223,51)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.6133%" y="2725" width="0.0170%" height="15" fill="rgb(218,11,43)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.6133%" y="2709" width="0.0170%" height="15" fill="rgb(210,205,5)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.6133%" y="2693" width="0.0170%" height="15" fill="rgb(252,191,28)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.6133%" y="2677" width="0.0170%" height="15" fill="rgb(233,198,21)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.6133%" y="2661" width="0.0170%" height="15" fill="rgb(237,78,50)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.6133%" y="2645" width="0.0170%" height="15" fill="rgb(211,153,22)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.6133%" y="2629" width="0.0170%" height="15" fill="rgb(215,208,3)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.6133%" y="2613" width="0.0170%" height="15" fill="rgb(220,47,51)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6133%" y="2597" width="0.0170%" height="15" fill="rgb(242,119,46)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6133%" y="2581" width="0.0170%" height="15" fill="rgb(214,126,4)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.6133%" y="2565" width="0.0170%" height="15" fill="rgb(244,165,9)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6133%" y="2549" width="0.0170%" height="15" fill="rgb(229,108,38)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.6133%" y="2533" width="0.0170%" height="15" fill="rgb(234,92,53)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.6133%" y="2517" width="0.0170%" height="15" fill="rgb(237,12,36)" fg:x="13286" fg:w="4"/><text x="56.8633%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.6175%" y="2501" width="0.0128%" height="15" fill="rgb(236,154,31)" fg:x="13287" fg:w="3"/><text x="56.8675%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.6175%" y="2485" width="0.0128%" height="15" fill="rgb(235,216,33)" fg:x="13287" fg:w="3"/><text x="56.8675%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.6175%" y="2469" width="0.0128%" height="15" fill="rgb(210,226,41)" fg:x="13287" fg:w="3"/><text x="56.8675%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.6175%" y="2453" width="0.0128%" height="15" fill="rgb(221,83,25)" fg:x="13287" fg:w="3"/><text x="56.8675%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.6175%" y="2437" width="0.0128%" height="15" fill="rgb(244,178,19)" fg:x="13287" fg:w="3"/><text x="56.8675%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="56.6133%" y="2885" width="0.0341%" height="15" fill="rgb(208,13,17)" fg:x="13286" fg:w="8"/><text x="56.8633%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="56.6133%" y="2869" width="0.0341%" height="15" fill="rgb(233,212,4)" fg:x="13286" fg:w="8"/><text x="56.8633%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.6133%" y="2853" width="0.0341%" height="15" fill="rgb(214,43,25)" fg:x="13286" fg:w="8"/><text x="56.8633%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.6133%" y="2837" width="0.0341%" height="15" fill="rgb(240,126,41)" fg:x="13286" fg:w="8"/><text x="56.8633%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="56.6133%" y="2821" width="0.0341%" height="15" fill="rgb(223,79,18)" fg:x="13286" fg:w="8"/><text x="56.8633%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.6133%" y="2805" width="0.0341%" height="15" fill="rgb(246,150,36)" fg:x="13286" fg:w="8"/><text x="56.8633%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="56.6133%" y="2789" width="0.0341%" height="15" fill="rgb(215,53,15)" fg:x="13286" fg:w="8"/><text x="56.8633%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.6303%" y="2773" width="0.0170%" height="15" fill="rgb(232,206,6)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.6303%" y="2757" width="0.0170%" height="15" fill="rgb(240,82,11)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2767.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.6303%" y="2741" width="0.0170%" height="15" fill="rgb(238,12,26)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.6303%" y="2725" width="0.0170%" height="15" fill="rgb(214,41,25)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.6303%" y="2709" width="0.0170%" height="15" fill="rgb(216,166,2)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6303%" y="2693" width="0.0170%" height="15" fill="rgb(226,107,7)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6303%" y="2677" width="0.0170%" height="15" fill="rgb(216,101,31)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.6303%" y="2661" width="0.0170%" height="15" fill="rgb(250,150,45)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.6303%" y="2645" width="0.0170%" height="15" fill="rgb(222,209,45)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.6303%" y="2629" width="0.0170%" height="15" fill="rgb(241,48,19)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.6303%" y="2613" width="0.0170%" height="15" fill="rgb(238,172,21)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.6303%" y="2597" width="0.0170%" height="15" fill="rgb(206,220,8)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.6303%" y="2581" width="0.0170%" height="15" fill="rgb(211,19,13)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.6303%" y="2565" width="0.0170%" height="15" fill="rgb(233,16,6)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.6303%" y="2549" width="0.0170%" height="15" fill="rgb(228,73,15)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6303%" y="2533" width="0.0170%" height="15" fill="rgb(217,69,11)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6303%" y="2517" width="0.0170%" height="15" fill="rgb(214,11,54)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.6303%" y="2501" width="0.0170%" height="15" fill="rgb(241,23,26)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6303%" y="2485" width="0.0170%" height="15" fill="rgb(230,151,11)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.6303%" y="2469" width="0.0170%" height="15" fill="rgb(241,83,11)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.6303%" y="2453" width="0.0170%" height="15" fill="rgb(233,71,42)" fg:x="13290" fg:w="4"/><text x="56.8803%" y="2463.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (53 samples, 0.23%)</title><rect x="56.4258%" y="3525" width="0.2258%" height="15" fill="rgb(217,52,33)" fg:x="13242" fg:w="53"/><text x="56.6758%" y="3535.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (53 samples, 0.23%)</title><rect x="56.4258%" y="3509" width="0.2258%" height="15" fill="rgb(212,66,12)" fg:x="13242" fg:w="53"/><text x="56.6758%" y="3519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (53 samples, 0.23%)</title><rect x="56.4258%" y="3493" width="0.2258%" height="15" fill="rgb(210,176,19)" fg:x="13242" fg:w="53"/><text x="56.6758%" y="3503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.23%)</title><rect x="56.4258%" y="3477" width="0.2258%" height="15" fill="rgb(244,79,31)" fg:x="13242" fg:w="53"/><text x="56.6758%" y="3487.50"></text></g><g><title>rayon_core::join::join_context (53 samples, 0.23%)</title><rect x="56.4258%" y="3461" width="0.2258%" height="15" fill="rgb(250,169,4)" fg:x="13242" fg:w="53"/><text x="56.6758%" y="3471.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.23%)</title><rect x="56.4258%" y="3445" width="0.2258%" height="15" fill="rgb(251,124,17)" fg:x="13242" fg:w="53"/><text x="56.6758%" y="3455.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (53 samples, 0.23%)</title><rect x="56.4258%" y="3429" width="0.2258%" height="15" fill="rgb(236,117,6)" fg:x="13242" fg:w="53"/><text x="56.6758%" y="3439.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (33 samples, 0.14%)</title><rect x="56.5110%" y="3413" width="0.1406%" height="15" fill="rgb(249,141,8)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3423.50"></text></g><g><title>std::panic::catch_unwind (33 samples, 0.14%)</title><rect x="56.5110%" y="3397" width="0.1406%" height="15" fill="rgb(233,146,19)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3407.50"></text></g><g><title>std::panicking::try (33 samples, 0.14%)</title><rect x="56.5110%" y="3381" width="0.1406%" height="15" fill="rgb(216,200,23)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3391.50"></text></g><g><title>std::panicking::try::do_call (33 samples, 0.14%)</title><rect x="56.5110%" y="3365" width="0.1406%" height="15" fill="rgb(252,89,26)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3375.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (33 samples, 0.14%)</title><rect x="56.5110%" y="3349" width="0.1406%" height="15" fill="rgb(250,118,15)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (33 samples, 0.14%)</title><rect x="56.5110%" y="3333" width="0.1406%" height="15" fill="rgb(225,156,27)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (33 samples, 0.14%)</title><rect x="56.5110%" y="3317" width="0.1406%" height="15" fill="rgb(246,184,20)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.14%)</title><rect x="56.5110%" y="3301" width="0.1406%" height="15" fill="rgb(252,189,44)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (33 samples, 0.14%)</title><rect x="56.5110%" y="3285" width="0.1406%" height="15" fill="rgb(250,13,23)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.14%)</title><rect x="56.5110%" y="3269" width="0.1406%" height="15" fill="rgb(227,218,50)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (33 samples, 0.14%)</title><rect x="56.5110%" y="3253" width="0.1406%" height="15" fill="rgb(227,54,31)" fg:x="13262" fg:w="33"/><text x="56.7610%" y="3263.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (18 samples, 0.08%)</title><rect x="56.5749%" y="3237" width="0.0767%" height="15" fill="rgb(216,74,45)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3247.50"></text></g><g><title>std::panic::catch_unwind (18 samples, 0.08%)</title><rect x="56.5749%" y="3221" width="0.0767%" height="15" fill="rgb(248,82,11)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3231.50"></text></g><g><title>std::panicking::try (18 samples, 0.08%)</title><rect x="56.5749%" y="3205" width="0.0767%" height="15" fill="rgb(228,208,13)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3215.50"></text></g><g><title>std::panicking::try::do_call (18 samples, 0.08%)</title><rect x="56.5749%" y="3189" width="0.0767%" height="15" fill="rgb(230,23,50)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3199.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (18 samples, 0.08%)</title><rect x="56.5749%" y="3173" width="0.0767%" height="15" fill="rgb(208,136,45)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (18 samples, 0.08%)</title><rect x="56.5749%" y="3157" width="0.0767%" height="15" fill="rgb(227,21,9)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="56.5749%" y="3141" width="0.0767%" height="15" fill="rgb(253,209,47)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="56.5749%" y="3125" width="0.0767%" height="15" fill="rgb(212,62,18)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="56.5749%" y="3109" width="0.0767%" height="15" fill="rgb(240,17,6)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="56.5749%" y="3093" width="0.0767%" height="15" fill="rgb(207,11,23)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="56.5749%" y="3077" width="0.0767%" height="15" fill="rgb(231,22,36)" fg:x="13277" fg:w="18"/><text x="56.8249%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="56.6133%" y="3061" width="0.0384%" height="15" fill="rgb(233,188,29)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="56.6133%" y="3045" width="0.0384%" height="15" fill="rgb(254,116,32)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="3055.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="56.6133%" y="3029" width="0.0384%" height="15" fill="rgb(206,155,45)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="56.6133%" y="3013" width="0.0384%" height="15" fill="rgb(237,203,27)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="56.6133%" y="2997" width="0.0384%" height="15" fill="rgb(254,70,45)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="56.6133%" y="2981" width="0.0384%" height="15" fill="rgb(226,181,29)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="56.6133%" y="2965" width="0.0384%" height="15" fill="rgb(248,15,50)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.6133%" y="2949" width="0.0384%" height="15" fill="rgb(222,226,22)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="56.6133%" y="2933" width="0.0384%" height="15" fill="rgb(213,45,39)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.6133%" y="2917" width="0.0384%" height="15" fill="rgb(248,164,13)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="56.6133%" y="2901" width="0.0384%" height="15" fill="rgb(210,178,5)" fg:x="13286" fg:w="9"/><text x="56.8633%" y="2911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="56.6516%" y="3525" width="0.0213%" height="15" fill="rgb(235,9,26)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3535.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.6516%" y="3509" width="0.0213%" height="15" fill="rgb(242,63,28)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3519.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="56.6516%" y="3493" width="0.0213%" height="15" fill="rgb(226,184,9)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3503.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="56.6516%" y="3477" width="0.0213%" height="15" fill="rgb(235,67,52)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3487.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="56.6516%" y="3461" width="0.0213%" height="15" fill="rgb(236,106,12)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3471.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="56.6516%" y="3445" width="0.0213%" height="15" fill="rgb(228,193,53)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="56.6516%" y="3429" width="0.0213%" height="15" fill="rgb(251,206,20)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3439.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="56.6516%" y="3413" width="0.0213%" height="15" fill="rgb(253,32,36)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3423.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="56.6516%" y="3397" width="0.0213%" height="15" fill="rgb(208,140,29)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3407.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="56.6516%" y="3381" width="0.0213%" height="15" fill="rgb(234,115,21)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="56.6516%" y="3365" width="0.0213%" height="15" fill="rgb(245,57,41)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3375.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6516%" y="3349" width="0.0213%" height="15" fill="rgb(214,114,51)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6516%" y="3333" width="0.0213%" height="15" fill="rgb(251,124,11)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6516%" y="3317" width="0.0213%" height="15" fill="rgb(228,38,32)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.6516%" y="3301" width="0.0213%" height="15" fill="rgb(239,45,24)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.6516%" y="3285" width="0.0213%" height="15" fill="rgb(213,41,35)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.6516%" y="3269" width="0.0213%" height="15" fill="rgb(250,199,5)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6516%" y="3253" width="0.0213%" height="15" fill="rgb(206,178,39)" fg:x="13295" fg:w="5"/><text x="56.9016%" y="3263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="56.6601%" y="3237" width="0.0128%" height="15" fill="rgb(237,23,48)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3247.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.6601%" y="3221" width="0.0128%" height="15" fill="rgb(205,184,0)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3231.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="56.6601%" y="3205" width="0.0128%" height="15" fill="rgb(248,124,24)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3215.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="56.6601%" y="3189" width="0.0128%" height="15" fill="rgb(251,223,41)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3199.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="56.6601%" y="3173" width="0.0128%" height="15" fill="rgb(247,27,9)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3183.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="56.6601%" y="3157" width="0.0128%" height="15" fill="rgb(238,49,45)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.6601%" y="3141" width="0.0128%" height="15" fill="rgb(230,108,3)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3151.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.6601%" y="3125" width="0.0128%" height="15" fill="rgb(246,133,25)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3135.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.6601%" y="3109" width="0.0128%" height="15" fill="rgb(220,133,48)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3119.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.6601%" y="3093" width="0.0128%" height="15" fill="rgb(220,193,28)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.6601%" y="3077" width="0.0128%" height="15" fill="rgb(233,179,15)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3087.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="56.6601%" y="3061" width="0.0128%" height="15" fill="rgb(253,129,28)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.6601%" y="3045" width="0.0128%" height="15" fill="rgb(214,96,42)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.6601%" y="3029" width="0.0128%" height="15" fill="rgb(232,185,4)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.6601%" y="3013" width="0.0128%" height="15" fill="rgb(229,157,53)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="56.6601%" y="2997" width="0.0128%" height="15" fill="rgb(215,52,16)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.6601%" y="2981" width="0.0128%" height="15" fill="rgb(243,120,35)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="56.6601%" y="2965" width="0.0128%" height="15" fill="rgb(234,38,22)" fg:x="13297" fg:w="3"/><text x="56.9101%" y="2975.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.6729%" y="2901" width="0.0170%" height="15" fill="rgb(213,57,20)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6729%" y="2885" width="0.0170%" height="15" fill="rgb(239,56,43)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6729%" y="2869" width="0.0170%" height="15" fill="rgb(227,201,4)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.6729%" y="2853" width="0.0170%" height="15" fill="rgb(238,182,52)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.6729%" y="2837" width="0.0170%" height="15" fill="rgb(228,99,28)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2847.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.6729%" y="2821" width="0.0170%" height="15" fill="rgb(235,48,2)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2831.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.6729%" y="2805" width="0.0170%" height="15" fill="rgb(238,195,20)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2815.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.6729%" y="2789" width="0.0170%" height="15" fill="rgb(219,158,10)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2799.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.6729%" y="2773" width="0.0170%" height="15" fill="rgb(232,186,10)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2783.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.6729%" y="2757" width="0.0170%" height="15" fill="rgb(210,13,26)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2767.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.6729%" y="2741" width="0.0170%" height="15" fill="rgb(227,23,51)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2751.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6729%" y="2725" width="0.0170%" height="15" fill="rgb(212,169,7)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2735.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6729%" y="2709" width="0.0170%" height="15" fill="rgb(240,87,46)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2719.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.6729%" y="2693" width="0.0170%" height="15" fill="rgb(239,201,47)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2703.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.6729%" y="2677" width="0.0170%" height="15" fill="rgb(207,180,43)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2687.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.6729%" y="2661" width="0.0170%" height="15" fill="rgb(231,175,50)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2671.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.6729%" y="2645" width="0.0170%" height="15" fill="rgb(252,109,45)" fg:x="13300" fg:w="4"/><text x="56.9229%" y="2655.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="56.6729%" y="3013" width="0.0256%" height="15" fill="rgb(221,115,45)" fg:x="13300" fg:w="6"/><text x="56.9229%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="56.6729%" y="2997" width="0.0256%" height="15" fill="rgb(237,64,38)" fg:x="13300" fg:w="6"/><text x="56.9229%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="56.6729%" y="2981" width="0.0256%" height="15" fill="rgb(216,119,46)" fg:x="13300" fg:w="6"/><text x="56.9229%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="56.6729%" y="2965" width="0.0256%" height="15" fill="rgb(217,120,12)" fg:x="13300" fg:w="6"/><text x="56.9229%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="56.6729%" y="2949" width="0.0256%" height="15" fill="rgb(210,93,12)" fg:x="13300" fg:w="6"/><text x="56.9229%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="56.6729%" y="2933" width="0.0256%" height="15" fill="rgb(216,85,17)" fg:x="13300" fg:w="6"/><text x="56.9229%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="56.6729%" y="2917" width="0.0256%" height="15" fill="rgb(250,13,4)" fg:x="13300" fg:w="6"/><text x="56.9229%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.6985%" y="2837" width="0.0213%" height="15" fill="rgb(209,70,47)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6985%" y="2821" width="0.0213%" height="15" fill="rgb(244,182,6)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6985%" y="2805" width="0.0213%" height="15" fill="rgb(239,14,4)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.6985%" y="2789" width="0.0213%" height="15" fill="rgb(218,128,5)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="56.6985%" y="2773" width="0.0213%" height="15" fill="rgb(232,66,31)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2783.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="56.6985%" y="2757" width="0.0213%" height="15" fill="rgb(227,33,2)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2767.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="56.6985%" y="2741" width="0.0213%" height="15" fill="rgb(211,137,15)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2751.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="56.6985%" y="2725" width="0.0213%" height="15" fill="rgb(248,29,4)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2735.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="56.6985%" y="2709" width="0.0213%" height="15" fill="rgb(211,60,24)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2719.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="56.6985%" y="2693" width="0.0213%" height="15" fill="rgb(247,48,52)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2703.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="56.6985%" y="2677" width="0.0213%" height="15" fill="rgb(249,129,19)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2687.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6985%" y="2661" width="0.0213%" height="15" fill="rgb(241,36,17)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6985%" y="2645" width="0.0213%" height="15" fill="rgb(213,78,11)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="56.6985%" y="2629" width="0.0213%" height="15" fill="rgb(249,73,8)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2639.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="56.6985%" y="2613" width="0.0213%" height="15" fill="rgb(252,220,53)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2623.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="56.6985%" y="2597" width="0.0213%" height="15" fill="rgb(215,41,53)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2607.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="56.6985%" y="2581" width="0.0213%" height="15" fill="rgb(223,72,8)" fg:x="13306" fg:w="5"/><text x="56.9485%" y="2591.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.7070%" y="2565" width="0.0128%" height="15" fill="rgb(244,140,54)" fg:x="13308" fg:w="3"/><text x="56.9570%" y="2575.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.7070%" y="2549" width="0.0128%" height="15" fill="rgb(215,200,38)" fg:x="13308" fg:w="3"/><text x="56.9570%" y="2559.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.7070%" y="2533" width="0.0128%" height="15" fill="rgb(229,184,19)" fg:x="13308" fg:w="3"/><text x="56.9570%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7070%" y="2517" width="0.0128%" height="15" fill="rgb(250,145,38)" fg:x="13308" fg:w="3"/><text x="56.9570%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7070%" y="2501" width="0.0128%" height="15" fill="rgb(242,34,6)" fg:x="13308" fg:w="3"/><text x="56.9570%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="56.6729%" y="3125" width="0.0597%" height="15" fill="rgb(231,11,32)" fg:x="13300" fg:w="14"/><text x="56.9229%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="56.6729%" y="3109" width="0.0597%" height="15" fill="rgb(221,112,5)" fg:x="13300" fg:w="14"/><text x="56.9229%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="56.6729%" y="3093" width="0.0597%" height="15" fill="rgb(219,32,14)" fg:x="13300" fg:w="14"/><text x="56.9229%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="56.6729%" y="3077" width="0.0597%" height="15" fill="rgb(238,174,34)" fg:x="13300" fg:w="14"/><text x="56.9229%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="56.6729%" y="3061" width="0.0597%" height="15" fill="rgb(233,167,0)" fg:x="13300" fg:w="14"/><text x="56.9229%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="56.6729%" y="3045" width="0.0597%" height="15" fill="rgb(232,158,26)" fg:x="13300" fg:w="14"/><text x="56.9229%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="56.6729%" y="3029" width="0.0597%" height="15" fill="rgb(241,139,37)" fg:x="13300" fg:w="14"/><text x="56.9229%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="56.6985%" y="3013" width="0.0341%" height="15" fill="rgb(225,71,32)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="56.6985%" y="2997" width="0.0341%" height="15" fill="rgb(243,132,22)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="3007.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="56.6985%" y="2981" width="0.0341%" height="15" fill="rgb(238,59,36)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="56.6985%" y="2965" width="0.0341%" height="15" fill="rgb(209,224,28)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="56.6985%" y="2949" width="0.0341%" height="15" fill="rgb(247,6,14)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="56.6985%" y="2933" width="0.0341%" height="15" fill="rgb(239,216,38)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.6985%" y="2917" width="0.0341%" height="15" fill="rgb(207,195,17)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.6985%" y="2901" width="0.0341%" height="15" fill="rgb(220,106,28)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="56.6985%" y="2885" width="0.0341%" height="15" fill="rgb(242,143,29)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.6985%" y="2869" width="0.0341%" height="15" fill="rgb(234,65,27)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="56.6985%" y="2853" width="0.0341%" height="15" fill="rgb(206,68,35)" fg:x="13306" fg:w="8"/><text x="56.9485%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.7198%" y="2837" width="0.0128%" height="15" fill="rgb(214,131,53)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.7198%" y="2821" width="0.0128%" height="15" fill="rgb(232,40,48)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2831.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.7198%" y="2805" width="0.0128%" height="15" fill="rgb(230,26,11)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.7198%" y="2789" width="0.0128%" height="15" fill="rgb(239,65,4)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.7198%" y="2773" width="0.0128%" height="15" fill="rgb(254,9,19)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7198%" y="2757" width="0.0128%" height="15" fill="rgb(254,166,54)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7198%" y="2741" width="0.0128%" height="15" fill="rgb(220,53,32)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7198%" y="2725" width="0.0128%" height="15" fill="rgb(206,119,52)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="56.7198%" y="2709" width="0.0128%" height="15" fill="rgb(252,201,4)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.7198%" y="2693" width="0.0128%" height="15" fill="rgb(216,197,21)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.7198%" y="2677" width="0.0128%" height="15" fill="rgb(234,19,20)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="56.7198%" y="2661" width="0.0128%" height="15" fill="rgb(247,43,35)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.7198%" y="2645" width="0.0128%" height="15" fill="rgb(215,95,26)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.7198%" y="2629" width="0.0128%" height="15" fill="rgb(237,212,15)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="56.7198%" y="2613" width="0.0128%" height="15" fill="rgb(240,2,49)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7198%" y="2597" width="0.0128%" height="15" fill="rgb(237,102,19)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7198%" y="2581" width="0.0128%" height="15" fill="rgb(212,214,23)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="56.7198%" y="2565" width="0.0128%" height="15" fill="rgb(246,212,54)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7198%" y="2549" width="0.0128%" height="15" fill="rgb(249,17,40)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="56.7198%" y="2533" width="0.0128%" height="15" fill="rgb(231,41,41)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="56.7198%" y="2517" width="0.0128%" height="15" fill="rgb(224,108,38)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="56.7198%" y="2501" width="0.0128%" height="15" fill="rgb(215,5,28)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.7198%" y="2485" width="0.0128%" height="15" fill="rgb(219,71,52)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2495.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.7198%" y="2469" width="0.0128%" height="15" fill="rgb(213,12,12)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.7198%" y="2453" width="0.0128%" height="15" fill="rgb(244,127,50)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7198%" y="2437" width="0.0128%" height="15" fill="rgb(213,127,8)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7198%" y="2421" width="0.0128%" height="15" fill="rgb(246,17,26)" fg:x="13311" fg:w="3"/><text x="56.9698%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.7326%" y="2837" width="0.0170%" height="15" fill="rgb(214,94,42)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7326%" y="2821" width="0.0170%" height="15" fill="rgb(213,229,21)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7326%" y="2805" width="0.0170%" height="15" fill="rgb(214,151,30)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.7326%" y="2789" width="0.0170%" height="15" fill="rgb(214,152,15)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.7326%" y="2773" width="0.0170%" height="15" fill="rgb(223,185,49)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2783.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.7326%" y="2757" width="0.0170%" height="15" fill="rgb(231,84,12)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2767.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.7326%" y="2741" width="0.0170%" height="15" fill="rgb(252,45,37)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2751.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.7326%" y="2725" width="0.0170%" height="15" fill="rgb(252,42,20)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2735.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.7326%" y="2709" width="0.0170%" height="15" fill="rgb(237,107,42)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2719.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.7326%" y="2693" width="0.0170%" height="15" fill="rgb(246,98,53)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2703.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.7326%" y="2677" width="0.0170%" height="15" fill="rgb(231,14,10)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2687.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7326%" y="2661" width="0.0170%" height="15" fill="rgb(223,155,39)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7326%" y="2645" width="0.0170%" height="15" fill="rgb(205,112,44)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.7326%" y="2629" width="0.0170%" height="15" fill="rgb(230,97,33)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2639.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7326%" y="2613" width="0.0170%" height="15" fill="rgb(237,140,47)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2623.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.7326%" y="2597" width="0.0170%" height="15" fill="rgb(210,144,50)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2607.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.7326%" y="2581" width="0.0170%" height="15" fill="rgb(242,120,13)" fg:x="13314" fg:w="4"/><text x="56.9826%" y="2591.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.7368%" y="2565" width="0.0128%" height="15" fill="rgb(216,123,30)" fg:x="13315" fg:w="3"/><text x="56.9868%" y="2575.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.7368%" y="2549" width="0.0128%" height="15" fill="rgb(227,53,28)" fg:x="13315" fg:w="3"/><text x="56.9868%" y="2559.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.7368%" y="2533" width="0.0128%" height="15" fill="rgb(214,80,21)" fg:x="13315" fg:w="3"/><text x="56.9868%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7368%" y="2517" width="0.0128%" height="15" fill="rgb(212,226,13)" fg:x="13315" fg:w="3"/><text x="56.9868%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7368%" y="2501" width="0.0128%" height="15" fill="rgb(227,134,34)" fg:x="13315" fg:w="3"/><text x="56.9868%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.7326%" y="2949" width="0.0213%" height="15" fill="rgb(216,137,2)" fg:x="13314" fg:w="5"/><text x="56.9826%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.7326%" y="2933" width="0.0213%" height="15" fill="rgb(211,181,22)" fg:x="13314" fg:w="5"/><text x="56.9826%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.7326%" y="2917" width="0.0213%" height="15" fill="rgb(221,167,17)" fg:x="13314" fg:w="5"/><text x="56.9826%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.7326%" y="2901" width="0.0213%" height="15" fill="rgb(217,63,36)" fg:x="13314" fg:w="5"/><text x="56.9826%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="56.7326%" y="2885" width="0.0213%" height="15" fill="rgb(213,133,10)" fg:x="13314" fg:w="5"/><text x="56.9826%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.7326%" y="2869" width="0.0213%" height="15" fill="rgb(249,192,29)" fg:x="13314" fg:w="5"/><text x="56.9826%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="56.7326%" y="2853" width="0.0213%" height="15" fill="rgb(254,14,24)" fg:x="13314" fg:w="5"/><text x="56.9826%" y="2863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="56.7539%" y="2773" width="0.0128%" height="15" fill="rgb(228,142,31)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7539%" y="2757" width="0.0128%" height="15" fill="rgb(225,78,48)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7539%" y="2741" width="0.0128%" height="15" fill="rgb(237,50,40)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7539%" y="2725" width="0.0128%" height="15" fill="rgb(226,65,29)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="56.7539%" y="2709" width="0.0128%" height="15" fill="rgb(215,65,45)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.7539%" y="2693" width="0.0128%" height="15" fill="rgb(236,95,34)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.7539%" y="2677" width="0.0128%" height="15" fill="rgb(218,197,37)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="56.7539%" y="2661" width="0.0128%" height="15" fill="rgb(225,21,46)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.7539%" y="2645" width="0.0128%" height="15" fill="rgb(233,111,13)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.7539%" y="2629" width="0.0128%" height="15" fill="rgb(239,36,52)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="56.7539%" y="2613" width="0.0128%" height="15" fill="rgb(226,46,0)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7539%" y="2597" width="0.0128%" height="15" fill="rgb(251,9,54)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7539%" y="2581" width="0.0128%" height="15" fill="rgb(224,52,36)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="56.7539%" y="2565" width="0.0128%" height="15" fill="rgb(236,169,41)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7539%" y="2549" width="0.0128%" height="15" fill="rgb(229,72,47)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="56.7539%" y="2533" width="0.0128%" height="15" fill="rgb(241,131,39)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="56.7539%" y="2517" width="0.0128%" height="15" fill="rgb(225,27,48)" fg:x="13319" fg:w="3"/><text x="57.0039%" y="2527.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (25 samples, 0.11%)</title><rect x="56.6729%" y="3237" width="0.1065%" height="15" fill="rgb(239,0,23)" fg:x="13300" fg:w="25"/><text x="56.9229%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="56.6729%" y="3221" width="0.1065%" height="15" fill="rgb(241,60,33)" fg:x="13300" fg:w="25"/><text x="56.9229%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="56.6729%" y="3205" width="0.1065%" height="15" fill="rgb(229,138,12)" fg:x="13300" fg:w="25"/><text x="56.9229%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="56.6729%" y="3189" width="0.1065%" height="15" fill="rgb(232,83,18)" fg:x="13300" fg:w="25"/><text x="56.9229%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="56.6729%" y="3173" width="0.1065%" height="15" fill="rgb(249,110,33)" fg:x="13300" fg:w="25"/><text x="56.9229%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="56.6729%" y="3157" width="0.1065%" height="15" fill="rgb(242,117,51)" fg:x="13300" fg:w="25"/><text x="56.9229%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="56.6729%" y="3141" width="0.1065%" height="15" fill="rgb(237,27,14)" fg:x="13300" fg:w="25"/><text x="56.9229%" y="3151.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="56.7326%" y="3125" width="0.0469%" height="15" fill="rgb(230,214,25)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3135.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="56.7326%" y="3109" width="0.0469%" height="15" fill="rgb(252,64,53)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3119.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="56.7326%" y="3093" width="0.0469%" height="15" fill="rgb(236,17,54)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3103.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="56.7326%" y="3077" width="0.0469%" height="15" fill="rgb(236,117,7)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3087.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="56.7326%" y="3061" width="0.0469%" height="15" fill="rgb(215,198,2)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="56.7326%" y="3045" width="0.0469%" height="15" fill="rgb(216,49,25)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="56.7326%" y="3029" width="0.0469%" height="15" fill="rgb(241,181,51)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="56.7326%" y="3013" width="0.0469%" height="15" fill="rgb(219,7,37)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="56.7326%" y="2997" width="0.0469%" height="15" fill="rgb(213,144,36)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="56.7326%" y="2981" width="0.0469%" height="15" fill="rgb(250,73,52)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="56.7326%" y="2965" width="0.0469%" height="15" fill="rgb(229,149,47)" fg:x="13314" fg:w="11"/><text x="56.9826%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="56.7539%" y="2949" width="0.0256%" height="15" fill="rgb(246,110,54)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="56.7539%" y="2933" width="0.0256%" height="15" fill="rgb(235,110,47)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2943.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="56.7539%" y="2917" width="0.0256%" height="15" fill="rgb(238,68,34)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="56.7539%" y="2901" width="0.0256%" height="15" fill="rgb(239,109,50)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="56.7539%" y="2885" width="0.0256%" height="15" fill="rgb(249,38,3)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="56.7539%" y="2869" width="0.0256%" height="15" fill="rgb(214,155,47)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="56.7539%" y="2853" width="0.0256%" height="15" fill="rgb(215,81,39)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="56.7539%" y="2837" width="0.0256%" height="15" fill="rgb(214,26,54)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="56.7539%" y="2821" width="0.0256%" height="15" fill="rgb(230,190,37)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="56.7539%" y="2805" width="0.0256%" height="15" fill="rgb(227,174,33)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="56.7539%" y="2789" width="0.0256%" height="15" fill="rgb(210,194,30)" fg:x="13319" fg:w="6"/><text x="57.0039%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="56.7667%" y="2773" width="0.0128%" height="15" fill="rgb(225,101,53)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="56.7667%" y="2757" width="0.0128%" height="15" fill="rgb(235,186,41)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2767.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="56.7667%" y="2741" width="0.0128%" height="15" fill="rgb(253,37,49)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="56.7667%" y="2725" width="0.0128%" height="15" fill="rgb(220,30,48)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="56.7667%" y="2709" width="0.0128%" height="15" fill="rgb(241,152,36)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7667%" y="2693" width="0.0128%" height="15" fill="rgb(244,128,10)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7667%" y="2677" width="0.0128%" height="15" fill="rgb(220,51,50)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7667%" y="2661" width="0.0128%" height="15" fill="rgb(211,167,33)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="56.7667%" y="2645" width="0.0128%" height="15" fill="rgb(250,155,48)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.7667%" y="2629" width="0.0128%" height="15" fill="rgb(234,48,3)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="56.7667%" y="2613" width="0.0128%" height="15" fill="rgb(240,101,52)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="56.7667%" y="2597" width="0.0128%" height="15" fill="rgb(218,214,51)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.7667%" y="2581" width="0.0128%" height="15" fill="rgb(242,4,46)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="56.7667%" y="2565" width="0.0128%" height="15" fill="rgb(224,23,2)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="56.7667%" y="2549" width="0.0128%" height="15" fill="rgb(229,2,42)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7667%" y="2533" width="0.0128%" height="15" fill="rgb(254,135,10)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7667%" y="2517" width="0.0128%" height="15" fill="rgb(249,147,18)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="56.7667%" y="2501" width="0.0128%" height="15" fill="rgb(215,39,40)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="56.7667%" y="2485" width="0.0128%" height="15" fill="rgb(221,109,52)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="56.7667%" y="2469" width="0.0128%" height="15" fill="rgb(230,39,43)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="56.7667%" y="2453" width="0.0128%" height="15" fill="rgb(231,77,25)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.7667%" y="2437" width="0.0128%" height="15" fill="rgb(210,50,3)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2447.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.7667%" y="2421" width="0.0128%" height="15" fill="rgb(219,167,53)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.7667%" y="2405" width="0.0128%" height="15" fill="rgb(227,182,48)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7667%" y="2389" width="0.0128%" height="15" fill="rgb(248,218,40)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7667%" y="2373" width="0.0128%" height="15" fill="rgb(252,214,48)" fg:x="13322" fg:w="3"/><text x="57.0167%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.7837%" y="2837" width="0.0170%" height="15" fill="rgb(228,182,50)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7837%" y="2821" width="0.0170%" height="15" fill="rgb(231,30,21)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7837%" y="2805" width="0.0170%" height="15" fill="rgb(222,205,20)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.7837%" y="2789" width="0.0170%" height="15" fill="rgb(222,7,25)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.7837%" y="2773" width="0.0170%" height="15" fill="rgb(233,68,6)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2783.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.7837%" y="2757" width="0.0170%" height="15" fill="rgb(228,64,24)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2767.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.7837%" y="2741" width="0.0170%" height="15" fill="rgb(229,4,0)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2751.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.7837%" y="2725" width="0.0170%" height="15" fill="rgb(206,153,38)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2735.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.7837%" y="2709" width="0.0170%" height="15" fill="rgb(251,119,43)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2719.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.7837%" y="2693" width="0.0170%" height="15" fill="rgb(248,196,42)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2703.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.7837%" y="2677" width="0.0170%" height="15" fill="rgb(254,172,32)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2687.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7837%" y="2661" width="0.0170%" height="15" fill="rgb(244,80,2)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7837%" y="2645" width="0.0170%" height="15" fill="rgb(235,169,53)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.7837%" y="2629" width="0.0170%" height="15" fill="rgb(237,174,27)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2639.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.7837%" y="2613" width="0.0170%" height="15" fill="rgb(224,5,36)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2623.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.7837%" y="2597" width="0.0170%" height="15" fill="rgb(213,9,32)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2607.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.7837%" y="2581" width="0.0170%" height="15" fill="rgb(229,8,25)" fg:x="13326" fg:w="4"/><text x="57.0337%" y="2591.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.7880%" y="2565" width="0.0128%" height="15" fill="rgb(239,76,53)" fg:x="13327" fg:w="3"/><text x="57.0380%" y="2575.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.7880%" y="2549" width="0.0128%" height="15" fill="rgb(252,165,44)" fg:x="13327" fg:w="3"/><text x="57.0380%" y="2559.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.7880%" y="2533" width="0.0128%" height="15" fill="rgb(219,133,32)" fg:x="13327" fg:w="3"/><text x="57.0380%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7880%" y="2517" width="0.0128%" height="15" fill="rgb(205,87,52)" fg:x="13327" fg:w="3"/><text x="57.0380%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.7880%" y="2501" width="0.0128%" height="15" fill="rgb(219,22,50)" fg:x="13327" fg:w="3"/><text x="57.0380%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="56.7837%" y="2949" width="0.0469%" height="15" fill="rgb(205,165,51)" fg:x="13326" fg:w="11"/><text x="57.0337%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="56.7837%" y="2933" width="0.0469%" height="15" fill="rgb(212,39,26)" fg:x="13326" fg:w="11"/><text x="57.0337%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="56.7837%" y="2917" width="0.0469%" height="15" fill="rgb(252,6,33)" fg:x="13326" fg:w="11"/><text x="57.0337%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="56.7837%" y="2901" width="0.0469%" height="15" fill="rgb(228,76,30)" fg:x="13326" fg:w="11"/><text x="57.0337%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="56.7837%" y="2885" width="0.0469%" height="15" fill="rgb(238,92,9)" fg:x="13326" fg:w="11"/><text x="57.0337%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="56.7837%" y="2869" width="0.0469%" height="15" fill="rgb(234,105,53)" fg:x="13326" fg:w="11"/><text x="57.0337%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="56.7837%" y="2853" width="0.0469%" height="15" fill="rgb(220,123,6)" fg:x="13326" fg:w="11"/><text x="57.0337%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="56.8007%" y="2837" width="0.0298%" height="15" fill="rgb(244,190,16)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="56.8007%" y="2821" width="0.0298%" height="15" fill="rgb(207,21,36)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2831.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="56.8007%" y="2805" width="0.0298%" height="15" fill="rgb(230,42,31)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="56.8007%" y="2789" width="0.0298%" height="15" fill="rgb(216,59,3)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="56.8007%" y="2773" width="0.0298%" height="15" fill="rgb(214,184,39)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="56.8007%" y="2757" width="0.0298%" height="15" fill="rgb(235,58,22)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="56.8007%" y="2741" width="0.0298%" height="15" fill="rgb(220,185,38)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="56.8007%" y="2725" width="0.0298%" height="15" fill="rgb(208,108,14)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="56.8007%" y="2709" width="0.0298%" height="15" fill="rgb(230,69,37)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="56.8007%" y="2693" width="0.0298%" height="15" fill="rgb(219,172,24)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="56.8007%" y="2677" width="0.0298%" height="15" fill="rgb(236,30,12)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="56.8007%" y="2661" width="0.0298%" height="15" fill="rgb(249,69,5)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="56.8007%" y="2645" width="0.0298%" height="15" fill="rgb(207,223,16)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="56.8007%" y="2629" width="0.0298%" height="15" fill="rgb(238,121,15)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="56.8007%" y="2613" width="0.0298%" height="15" fill="rgb(236,126,16)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="56.8007%" y="2597" width="0.0298%" height="15" fill="rgb(250,221,44)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="56.8007%" y="2581" width="0.0298%" height="15" fill="rgb(225,134,52)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="56.8007%" y="2565" width="0.0298%" height="15" fill="rgb(220,149,19)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="56.8007%" y="2549" width="0.0298%" height="15" fill="rgb(210,148,10)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="56.8007%" y="2533" width="0.0298%" height="15" fill="rgb(252,148,12)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="56.8007%" y="2517" width="0.0298%" height="15" fill="rgb(241,90,42)" fg:x="13330" fg:w="7"/><text x="57.0507%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="56.8093%" y="2501" width="0.0213%" height="15" fill="rgb(227,118,4)" fg:x="13332" fg:w="5"/><text x="57.0593%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="56.8093%" y="2485" width="0.0213%" height="15" fill="rgb(208,127,37)" fg:x="13332" fg:w="5"/><text x="57.0593%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="56.8093%" y="2469" width="0.0213%" height="15" fill="rgb(231,146,0)" fg:x="13332" fg:w="5"/><text x="57.0593%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="56.8093%" y="2453" width="0.0213%" height="15" fill="rgb(225,148,46)" fg:x="13332" fg:w="5"/><text x="57.0593%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="56.8093%" y="2437" width="0.0213%" height="15" fill="rgb(250,106,52)" fg:x="13332" fg:w="5"/><text x="57.0593%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="56.8178%" y="2421" width="0.0128%" height="15" fill="rgb(205,84,19)" fg:x="13334" fg:w="3"/><text x="57.0678%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="56.8178%" y="2405" width="0.0128%" height="15" fill="rgb(248,103,22)" fg:x="13334" fg:w="3"/><text x="57.0678%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="56.8348%" y="2421" width="0.0128%" height="15" fill="rgb(206,92,9)" fg:x="13338" fg:w="3"/><text x="57.0848%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="56.8306%" y="2773" width="0.0256%" height="15" fill="rgb(214,106,48)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="56.8306%" y="2757" width="0.0256%" height="15" fill="rgb(221,209,4)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="56.8306%" y="2741" width="0.0256%" height="15" fill="rgb(214,111,6)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="56.8306%" y="2725" width="0.0256%" height="15" fill="rgb(250,50,6)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="56.8306%" y="2709" width="0.0256%" height="15" fill="rgb(253,219,44)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="56.8306%" y="2693" width="0.0256%" height="15" fill="rgb(232,177,24)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="56.8306%" y="2677" width="0.0256%" height="15" fill="rgb(208,41,5)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="56.8306%" y="2661" width="0.0256%" height="15" fill="rgb(242,226,48)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="56.8306%" y="2645" width="0.0256%" height="15" fill="rgb(248,94,52)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="56.8306%" y="2629" width="0.0256%" height="15" fill="rgb(225,149,15)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="56.8306%" y="2613" width="0.0256%" height="15" fill="rgb(235,92,4)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="56.8306%" y="2597" width="0.0256%" height="15" fill="rgb(250,125,34)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="56.8306%" y="2581" width="0.0256%" height="15" fill="rgb(248,227,18)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="56.8306%" y="2565" width="0.0256%" height="15" fill="rgb(252,120,40)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="56.8306%" y="2549" width="0.0256%" height="15" fill="rgb(246,126,35)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="56.8306%" y="2533" width="0.0256%" height="15" fill="rgb(219,159,38)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="56.8306%" y="2517" width="0.0256%" height="15" fill="rgb(210,83,16)" fg:x="13337" fg:w="6"/><text x="57.0806%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="56.8348%" y="2501" width="0.0213%" height="15" fill="rgb(217,138,17)" fg:x="13338" fg:w="5"/><text x="57.0848%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="56.8348%" y="2485" width="0.0213%" height="15" fill="rgb(211,27,37)" fg:x="13338" fg:w="5"/><text x="57.0848%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="56.8348%" y="2469" width="0.0213%" height="15" fill="rgb(233,59,24)" fg:x="13338" fg:w="5"/><text x="57.0848%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="56.8348%" y="2453" width="0.0213%" height="15" fill="rgb(249,61,38)" fg:x="13338" fg:w="5"/><text x="57.0848%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="56.8348%" y="2437" width="0.0213%" height="15" fill="rgb(229,141,48)" fg:x="13338" fg:w="5"/><text x="57.0848%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="56.8561%" y="2437" width="0.0128%" height="15" fill="rgb(240,83,53)" fg:x="13343" fg:w="3"/><text x="57.1061%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.8561%" y="2421" width="0.0128%" height="15" fill="rgb(252,128,50)" fg:x="13343" fg:w="3"/><text x="57.1061%" y="2431.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.8561%" y="2405" width="0.0128%" height="15" fill="rgb(217,84,16)" fg:x="13343" fg:w="3"/><text x="57.1061%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.8561%" y="2389" width="0.0128%" height="15" fill="rgb(241,115,36)" fg:x="13343" fg:w="3"/><text x="57.1061%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.8561%" y="2373" width="0.0128%" height="15" fill="rgb(235,121,13)" fg:x="13343" fg:w="3"/><text x="57.1061%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.8561%" y="2357" width="0.0128%" height="15" fill="rgb(244,32,52)" fg:x="13343" fg:w="3"/><text x="57.1061%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="56.8689%" y="2357" width="0.0128%" height="15" fill="rgb(251,195,24)" fg:x="13346" fg:w="3"/><text x="57.1189%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (25 samples, 0.11%)</title><rect x="56.7837%" y="3061" width="0.1065%" height="15" fill="rgb(249,186,9)" fg:x="13326" fg:w="25"/><text x="57.0337%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="56.7837%" y="3045" width="0.1065%" height="15" fill="rgb(231,167,51)" fg:x="13326" fg:w="25"/><text x="57.0337%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="56.7837%" y="3029" width="0.1065%" height="15" fill="rgb(206,91,27)" fg:x="13326" fg:w="25"/><text x="57.0337%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="56.7837%" y="3013" width="0.1065%" height="15" fill="rgb(228,176,32)" fg:x="13326" fg:w="25"/><text x="57.0337%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="56.7837%" y="2997" width="0.1065%" height="15" fill="rgb(222,66,24)" fg:x="13326" fg:w="25"/><text x="57.0337%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="56.7837%" y="2981" width="0.1065%" height="15" fill="rgb(249,132,2)" fg:x="13326" fg:w="25"/><text x="57.0337%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="56.7837%" y="2965" width="0.1065%" height="15" fill="rgb(254,111,12)" fg:x="13326" fg:w="25"/><text x="57.0337%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="56.8306%" y="2949" width="0.0597%" height="15" fill="rgb(230,38,8)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="56.8306%" y="2933" width="0.0597%" height="15" fill="rgb(215,141,42)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2943.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="56.8306%" y="2917" width="0.0597%" height="15" fill="rgb(228,191,35)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="56.8306%" y="2901" width="0.0597%" height="15" fill="rgb(219,127,47)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="56.8306%" y="2885" width="0.0597%" height="15" fill="rgb(218,84,6)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="56.8306%" y="2869" width="0.0597%" height="15" fill="rgb(214,172,15)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="56.8306%" y="2853" width="0.0597%" height="15" fill="rgb(244,110,1)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="56.8306%" y="2837" width="0.0597%" height="15" fill="rgb(234,183,34)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="56.8306%" y="2821" width="0.0597%" height="15" fill="rgb(224,135,47)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="56.8306%" y="2805" width="0.0597%" height="15" fill="rgb(216,58,49)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="56.8306%" y="2789" width="0.0597%" height="15" fill="rgb(230,53,44)" fg:x="13337" fg:w="14"/><text x="57.0806%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="56.8561%" y="2773" width="0.0341%" height="15" fill="rgb(241,46,9)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="56.8561%" y="2757" width="0.0341%" height="15" fill="rgb(218,91,14)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2767.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="56.8561%" y="2741" width="0.0341%" height="15" fill="rgb(247,12,1)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="56.8561%" y="2725" width="0.0341%" height="15" fill="rgb(240,176,22)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="56.8561%" y="2709" width="0.0341%" height="15" fill="rgb(227,78,9)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="56.8561%" y="2693" width="0.0341%" height="15" fill="rgb(215,115,11)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.8561%" y="2677" width="0.0341%" height="15" fill="rgb(221,158,22)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.8561%" y="2661" width="0.0341%" height="15" fill="rgb(232,131,42)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="56.8561%" y="2645" width="0.0341%" height="15" fill="rgb(247,193,49)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="56.8561%" y="2629" width="0.0341%" height="15" fill="rgb(222,57,44)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="56.8561%" y="2613" width="0.0341%" height="15" fill="rgb(242,199,39)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="56.8561%" y="2597" width="0.0341%" height="15" fill="rgb(205,131,24)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="56.8561%" y="2581" width="0.0341%" height="15" fill="rgb(219,25,49)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="56.8561%" y="2565" width="0.0341%" height="15" fill="rgb(249,40,54)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="56.8561%" y="2549" width="0.0341%" height="15" fill="rgb(206,189,47)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="56.8561%" y="2533" width="0.0341%" height="15" fill="rgb(218,214,5)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="56.8561%" y="2517" width="0.0341%" height="15" fill="rgb(225,34,17)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="56.8561%" y="2501" width="0.0341%" height="15" fill="rgb(224,7,17)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="56.8561%" y="2485" width="0.0341%" height="15" fill="rgb(251,93,12)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="56.8561%" y="2469" width="0.0341%" height="15" fill="rgb(210,172,2)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (8 samples, 0.03%)</title><rect x="56.8561%" y="2453" width="0.0341%" height="15" fill="rgb(247,193,3)" fg:x="13343" fg:w="8"/><text x="57.1061%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="56.8689%" y="2437" width="0.0213%" height="15" fill="rgb(239,185,42)" fg:x="13346" fg:w="5"/><text x="57.1189%" y="2447.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="56.8689%" y="2421" width="0.0213%" height="15" fill="rgb(250,207,20)" fg:x="13346" fg:w="5"/><text x="57.1189%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="56.8689%" y="2405" width="0.0213%" height="15" fill="rgb(222,93,2)" fg:x="13346" fg:w="5"/><text x="57.1189%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="56.8689%" y="2389" width="0.0213%" height="15" fill="rgb(237,200,51)" fg:x="13346" fg:w="5"/><text x="57.1189%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="56.8689%" y="2373" width="0.0213%" height="15" fill="rgb(245,149,12)" fg:x="13346" fg:w="5"/><text x="57.1189%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="56.8902%" y="2501" width="0.0128%" height="15" fill="rgb(230,75,36)" fg:x="13351" fg:w="3"/><text x="57.1402%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.8902%" y="2485" width="0.0128%" height="15" fill="rgb(245,22,0)" fg:x="13351" fg:w="3"/><text x="57.1402%" y="2495.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.8902%" y="2469" width="0.0128%" height="15" fill="rgb(242,76,48)" fg:x="13351" fg:w="3"/><text x="57.1402%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.8902%" y="2453" width="0.0128%" height="15" fill="rgb(253,5,0)" fg:x="13351" fg:w="3"/><text x="57.1402%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.8902%" y="2437" width="0.0128%" height="15" fill="rgb(252,201,16)" fg:x="13351" fg:w="3"/><text x="57.1402%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.8902%" y="2421" width="0.0128%" height="15" fill="rgb(235,133,19)" fg:x="13351" fg:w="3"/><text x="57.1402%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="56.8902%" y="2773" width="0.0213%" height="15" fill="rgb(232,161,53)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="56.8902%" y="2757" width="0.0213%" height="15" fill="rgb(210,84,10)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="56.8902%" y="2741" width="0.0213%" height="15" fill="rgb(231,138,17)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8902%" y="2725" width="0.0213%" height="15" fill="rgb(222,168,52)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="56.8902%" y="2709" width="0.0213%" height="15" fill="rgb(249,62,2)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="56.8902%" y="2693" width="0.0213%" height="15" fill="rgb(212,47,28)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="56.8902%" y="2677" width="0.0213%" height="15" fill="rgb(209,228,38)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="56.8902%" y="2661" width="0.0213%" height="15" fill="rgb(233,6,13)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="56.8902%" y="2645" width="0.0213%" height="15" fill="rgb(242,125,8)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="56.8902%" y="2629" width="0.0213%" height="15" fill="rgb(225,95,10)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="56.8902%" y="2613" width="0.0213%" height="15" fill="rgb(228,163,45)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="56.8902%" y="2597" width="0.0213%" height="15" fill="rgb(251,75,24)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="56.8902%" y="2581" width="0.0213%" height="15" fill="rgb(208,180,29)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="56.8902%" y="2565" width="0.0213%" height="15" fill="rgb(235,189,22)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="56.8902%" y="2549" width="0.0213%" height="15" fill="rgb(218,177,5)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="56.8902%" y="2533" width="0.0213%" height="15" fill="rgb(220,80,26)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="56.8902%" y="2517" width="0.0213%" height="15" fill="rgb(239,14,29)" fg:x="13351" fg:w="5"/><text x="57.1402%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="56.9115%" y="2437" width="0.0170%" height="15" fill="rgb(230,207,43)" fg:x="13356" fg:w="4"/><text x="57.1615%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="56.9115%" y="2421" width="0.0170%" height="15" fill="rgb(232,63,54)" fg:x="13356" fg:w="4"/><text x="57.1615%" y="2431.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="56.9115%" y="2405" width="0.0170%" height="15" fill="rgb(214,228,11)" fg:x="13356" fg:w="4"/><text x="57.1615%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="56.9115%" y="2389" width="0.0170%" height="15" fill="rgb(223,102,18)" fg:x="13356" fg:w="4"/><text x="57.1615%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="56.9115%" y="2373" width="0.0170%" height="15" fill="rgb(212,30,24)" fg:x="13356" fg:w="4"/><text x="57.1615%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="56.9115%" y="2357" width="0.0170%" height="15" fill="rgb(226,20,53)" fg:x="13356" fg:w="4"/><text x="57.1615%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="56.8902%" y="2885" width="0.0554%" height="15" fill="rgb(216,155,25)" fg:x="13351" fg:w="13"/><text x="57.1402%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="56.8902%" y="2869" width="0.0554%" height="15" fill="rgb(254,105,29)" fg:x="13351" fg:w="13"/><text x="57.1402%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="56.8902%" y="2853" width="0.0554%" height="15" fill="rgb(210,94,40)" fg:x="13351" fg:w="13"/><text x="57.1402%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="56.8902%" y="2837" width="0.0554%" height="15" fill="rgb(213,187,33)" fg:x="13351" fg:w="13"/><text x="57.1402%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="56.8902%" y="2821" width="0.0554%" height="15" fill="rgb(211,147,35)" fg:x="13351" fg:w="13"/><text x="57.1402%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="56.8902%" y="2805" width="0.0554%" height="15" fill="rgb(249,182,51)" fg:x="13351" fg:w="13"/><text x="57.1402%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="56.8902%" y="2789" width="0.0554%" height="15" fill="rgb(212,128,10)" fg:x="13351" fg:w="13"/><text x="57.1402%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="56.9115%" y="2773" width="0.0341%" height="15" fill="rgb(242,46,30)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="56.9115%" y="2757" width="0.0341%" height="15" fill="rgb(225,188,2)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2767.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="56.9115%" y="2741" width="0.0341%" height="15" fill="rgb(250,1,38)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="56.9115%" y="2725" width="0.0341%" height="15" fill="rgb(241,173,13)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="56.9115%" y="2709" width="0.0341%" height="15" fill="rgb(226,195,35)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="56.9115%" y="2693" width="0.0341%" height="15" fill="rgb(254,44,44)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="56.9115%" y="2677" width="0.0341%" height="15" fill="rgb(212,122,31)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.9115%" y="2661" width="0.0341%" height="15" fill="rgb(251,77,54)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="56.9115%" y="2645" width="0.0341%" height="15" fill="rgb(205,101,27)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="56.9115%" y="2629" width="0.0341%" height="15" fill="rgb(216,72,21)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="56.9115%" y="2613" width="0.0341%" height="15" fill="rgb(210,201,25)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="56.9115%" y="2597" width="0.0341%" height="15" fill="rgb(210,162,0)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="56.9115%" y="2581" width="0.0341%" height="15" fill="rgb(231,24,21)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="56.9115%" y="2565" width="0.0341%" height="15" fill="rgb(245,89,50)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="56.9115%" y="2549" width="0.0341%" height="15" fill="rgb(249,52,2)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="56.9115%" y="2533" width="0.0341%" height="15" fill="rgb(243,172,37)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="56.9115%" y="2517" width="0.0341%" height="15" fill="rgb(227,57,32)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="56.9115%" y="2501" width="0.0341%" height="15" fill="rgb(208,82,5)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="56.9115%" y="2485" width="0.0341%" height="15" fill="rgb(214,6,9)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="56.9115%" y="2469" width="0.0341%" height="15" fill="rgb(221,198,45)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (8 samples, 0.03%)</title><rect x="56.9115%" y="2453" width="0.0341%" height="15" fill="rgb(239,107,8)" fg:x="13356" fg:w="8"/><text x="57.1615%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="56.9286%" y="2437" width="0.0170%" height="15" fill="rgb(251,23,53)" fg:x="13360" fg:w="4"/><text x="57.1786%" y="2447.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="56.9286%" y="2421" width="0.0170%" height="15" fill="rgb(217,59,50)" fg:x="13360" fg:w="4"/><text x="57.1786%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="56.9286%" y="2405" width="0.0170%" height="15" fill="rgb(244,131,36)" fg:x="13360" fg:w="4"/><text x="57.1786%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="56.9286%" y="2389" width="0.0170%" height="15" fill="rgb(238,13,26)" fg:x="13360" fg:w="4"/><text x="57.1786%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="56.9286%" y="2373" width="0.0170%" height="15" fill="rgb(216,14,35)" fg:x="13360" fg:w="4"/><text x="57.1786%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (68 samples, 0.29%)</title><rect x="56.6729%" y="3349" width="0.2898%" height="15" fill="rgb(244,221,35)" fg:x="13300" fg:w="68"/><text x="56.9229%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (68 samples, 0.29%)</title><rect x="56.6729%" y="3333" width="0.2898%" height="15" fill="rgb(243,81,29)" fg:x="13300" fg:w="68"/><text x="56.9229%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (68 samples, 0.29%)</title><rect x="56.6729%" y="3317" width="0.2898%" height="15" fill="rgb(238,229,51)" fg:x="13300" fg:w="68"/><text x="56.9229%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (68 samples, 0.29%)</title><rect x="56.6729%" y="3301" width="0.2898%" height="15" fill="rgb(236,34,22)" fg:x="13300" fg:w="68"/><text x="56.9229%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (68 samples, 0.29%)</title><rect x="56.6729%" y="3285" width="0.2898%" height="15" fill="rgb(220,28,20)" fg:x="13300" fg:w="68"/><text x="56.9229%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (68 samples, 0.29%)</title><rect x="56.6729%" y="3269" width="0.2898%" height="15" fill="rgb(235,227,1)" fg:x="13300" fg:w="68"/><text x="56.9229%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (68 samples, 0.29%)</title><rect x="56.6729%" y="3253" width="0.2898%" height="15" fill="rgb(214,92,9)" fg:x="13300" fg:w="68"/><text x="56.9229%" y="3263.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (42 samples, 0.18%)</title><rect x="56.7837%" y="3237" width="0.1790%" height="15" fill="rgb(207,23,36)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3247.50"></text></g><g><title>std::panic::catch_unwind (42 samples, 0.18%)</title><rect x="56.7837%" y="3221" width="0.1790%" height="15" fill="rgb(219,143,36)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3231.50"></text></g><g><title>std::panicking::try (42 samples, 0.18%)</title><rect x="56.7837%" y="3205" width="0.1790%" height="15" fill="rgb(250,143,14)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3215.50"></text></g><g><title>std::panicking::try::do_call (42 samples, 0.18%)</title><rect x="56.7837%" y="3189" width="0.1790%" height="15" fill="rgb(243,25,39)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3199.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (42 samples, 0.18%)</title><rect x="56.7837%" y="3173" width="0.1790%" height="15" fill="rgb(219,100,52)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (42 samples, 0.18%)</title><rect x="56.7837%" y="3157" width="0.1790%" height="15" fill="rgb(232,29,19)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (42 samples, 0.18%)</title><rect x="56.7837%" y="3141" width="0.1790%" height="15" fill="rgb(213,10,24)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.18%)</title><rect x="56.7837%" y="3125" width="0.1790%" height="15" fill="rgb(237,157,31)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (42 samples, 0.18%)</title><rect x="56.7837%" y="3109" width="0.1790%" height="15" fill="rgb(254,15,35)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.18%)</title><rect x="56.7837%" y="3093" width="0.1790%" height="15" fill="rgb(207,91,24)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (42 samples, 0.18%)</title><rect x="56.7837%" y="3077" width="0.1790%" height="15" fill="rgb(208,109,24)" fg:x="13326" fg:w="42"/><text x="57.0337%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (17 samples, 0.07%)</title><rect x="56.8902%" y="3061" width="0.0724%" height="15" fill="rgb(222,187,45)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (17 samples, 0.07%)</title><rect x="56.8902%" y="3045" width="0.0724%" height="15" fill="rgb(226,111,18)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="3055.50"></text></g><g><title>std::panicking::try (17 samples, 0.07%)</title><rect x="56.8902%" y="3029" width="0.0724%" height="15" fill="rgb(239,93,29)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (17 samples, 0.07%)</title><rect x="56.8902%" y="3013" width="0.0724%" height="15" fill="rgb(208,82,48)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (17 samples, 0.07%)</title><rect x="56.8902%" y="2997" width="0.0724%" height="15" fill="rgb(243,87,23)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (17 samples, 0.07%)</title><rect x="56.8902%" y="2981" width="0.0724%" height="15" fill="rgb(205,185,31)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="56.8902%" y="2965" width="0.0724%" height="15" fill="rgb(221,23,44)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="56.8902%" y="2949" width="0.0724%" height="15" fill="rgb(241,107,20)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="56.8902%" y="2933" width="0.0724%" height="15" fill="rgb(224,207,42)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="56.8902%" y="2917" width="0.0724%" height="15" fill="rgb(235,176,31)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="56.8902%" y="2901" width="0.0724%" height="15" fill="rgb(252,203,29)" fg:x="13351" fg:w="17"/><text x="57.1402%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="56.9456%" y="2885" width="0.0170%" height="15" fill="rgb(228,177,50)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="56.9456%" y="2869" width="0.0170%" height="15" fill="rgb(243,117,0)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2879.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="56.9456%" y="2853" width="0.0170%" height="15" fill="rgb(233,95,29)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="56.9456%" y="2837" width="0.0170%" height="15" fill="rgb(252,70,31)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="56.9456%" y="2821" width="0.0170%" height="15" fill="rgb(219,14,26)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9456%" y="2805" width="0.0170%" height="15" fill="rgb(246,30,19)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9456%" y="2789" width="0.0170%" height="15" fill="rgb(243,210,32)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.9456%" y="2773" width="0.0170%" height="15" fill="rgb(243,221,10)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="56.9456%" y="2757" width="0.0170%" height="15" fill="rgb(217,157,1)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.9456%" y="2741" width="0.0170%" height="15" fill="rgb(217,105,37)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9456%" y="2725" width="0.0170%" height="15" fill="rgb(214,41,23)" fg:x="13364" fg:w="4"/><text x="57.1956%" y="2735.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="56.9627%" y="2837" width="0.0170%" height="15" fill="rgb(242,133,27)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9627%" y="2821" width="0.0170%" height="15" fill="rgb(224,185,48)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9627%" y="2805" width="0.0170%" height="15" fill="rgb(213,157,47)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.9627%" y="2789" width="0.0170%" height="15" fill="rgb(224,205,51)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="56.9627%" y="2773" width="0.0170%" height="15" fill="rgb(245,119,31)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2783.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.9627%" y="2757" width="0.0170%" height="15" fill="rgb(216,54,8)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2767.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="56.9627%" y="2741" width="0.0170%" height="15" fill="rgb(227,24,23)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2751.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="56.9627%" y="2725" width="0.0170%" height="15" fill="rgb(215,162,5)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2735.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.9627%" y="2709" width="0.0170%" height="15" fill="rgb(244,90,18)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2719.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="56.9627%" y="2693" width="0.0170%" height="15" fill="rgb(211,185,7)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2703.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="56.9627%" y="2677" width="0.0170%" height="15" fill="rgb(228,113,18)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2687.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9627%" y="2661" width="0.0170%" height="15" fill="rgb(253,45,2)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2671.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9627%" y="2645" width="0.0170%" height="15" fill="rgb(217,202,0)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2655.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="56.9627%" y="2629" width="0.0170%" height="15" fill="rgb(210,5,31)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2639.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="56.9627%" y="2613" width="0.0170%" height="15" fill="rgb(253,225,31)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2623.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="56.9627%" y="2597" width="0.0170%" height="15" fill="rgb(205,10,8)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2607.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="56.9627%" y="2581" width="0.0170%" height="15" fill="rgb(216,211,21)" fg:x="13368" fg:w="4"/><text x="57.2127%" y="2591.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="56.9669%" y="2565" width="0.0128%" height="15" fill="rgb(233,35,24)" fg:x="13369" fg:w="3"/><text x="57.2169%" y="2575.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="56.9669%" y="2549" width="0.0128%" height="15" fill="rgb(234,128,16)" fg:x="13369" fg:w="3"/><text x="57.2169%" y="2559.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="56.9669%" y="2533" width="0.0128%" height="15" fill="rgb(249,173,14)" fg:x="13369" fg:w="3"/><text x="57.2169%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.9669%" y="2517" width="0.0128%" height="15" fill="rgb(238,87,25)" fg:x="13369" fg:w="3"/><text x="57.2169%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="56.9669%" y="2501" width="0.0128%" height="15" fill="rgb(217,90,51)" fg:x="13369" fg:w="3"/><text x="57.2169%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (4 samples, 0.02%)</title><rect x="56.9797%" y="2405" width="0.0170%" height="15" fill="rgb(219,157,37)" fg:x="13372" fg:w="4"/><text x="57.2297%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="56.9840%" y="2389" width="0.0128%" height="15" fill="rgb(228,83,13)" fg:x="13373" fg:w="3"/><text x="57.2340%" y="2399.50"></text></g><g><title>core::ptr::drop_in_place<rayon::slice::quicksort::CopyOnDrop<f64>> (3 samples, 0.01%)</title><rect x="56.9840%" y="2373" width="0.0128%" height="15" fill="rgb(236,87,47)" fg:x="13373" fg:w="3"/><text x="57.2340%" y="2383.50"></text></g><g><title><rayon::slice::quicksort::CopyOnDrop<T> as core::ops::drop::Drop>::drop (3 samples, 0.01%)</title><rect x="56.9840%" y="2357" width="0.0128%" height="15" fill="rgb(226,129,52)" fg:x="13373" fg:w="3"/><text x="57.2340%" y="2367.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3 samples, 0.01%)</title><rect x="56.9840%" y="2341" width="0.0128%" height="15" fill="rgb(220,32,19)" fg:x="13373" fg:w="3"/><text x="57.2340%" y="2351.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="56.9797%" y="2501" width="0.0298%" height="15" fill="rgb(253,56,35)" fg:x="13372" fg:w="7"/><text x="57.2297%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="56.9797%" y="2485" width="0.0298%" height="15" fill="rgb(235,142,24)" fg:x="13372" fg:w="7"/><text x="57.2297%" y="2495.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="56.9797%" y="2469" width="0.0298%" height="15" fill="rgb(240,195,40)" fg:x="13372" fg:w="7"/><text x="57.2297%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="56.9797%" y="2453" width="0.0298%" height="15" fill="rgb(228,147,45)" fg:x="13372" fg:w="7"/><text x="57.2297%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="56.9797%" y="2437" width="0.0298%" height="15" fill="rgb(214,96,48)" fg:x="13372" fg:w="7"/><text x="57.2297%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="56.9797%" y="2421" width="0.0298%" height="15" fill="rgb(206,132,8)" fg:x="13372" fg:w="7"/><text x="57.2297%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="56.9627%" y="2949" width="0.0682%" height="15" fill="rgb(251,105,23)" fg:x="13368" fg:w="16"/><text x="57.2127%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="56.9627%" y="2933" width="0.0682%" height="15" fill="rgb(234,196,10)" fg:x="13368" fg:w="16"/><text x="57.2127%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="56.9627%" y="2917" width="0.0682%" height="15" fill="rgb(252,76,52)" fg:x="13368" fg:w="16"/><text x="57.2127%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="56.9627%" y="2901" width="0.0682%" height="15" fill="rgb(245,194,5)" fg:x="13368" fg:w="16"/><text x="57.2127%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="56.9627%" y="2885" width="0.0682%" height="15" fill="rgb(250,171,11)" fg:x="13368" fg:w="16"/><text x="57.2127%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="56.9627%" y="2869" width="0.0682%" height="15" fill="rgb(218,183,50)" fg:x="13368" fg:w="16"/><text x="57.2127%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="56.9627%" y="2853" width="0.0682%" height="15" fill="rgb(232,170,39)" fg:x="13368" fg:w="16"/><text x="57.2127%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="56.9797%" y="2837" width="0.0511%" height="15" fill="rgb(238,221,6)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="56.9797%" y="2821" width="0.0511%" height="15" fill="rgb(211,9,49)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2831.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="56.9797%" y="2805" width="0.0511%" height="15" fill="rgb(210,86,3)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="56.9797%" y="2789" width="0.0511%" height="15" fill="rgb(250,104,30)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="56.9797%" y="2773" width="0.0511%" height="15" fill="rgb(252,93,8)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="56.9797%" y="2757" width="0.0511%" height="15" fill="rgb(226,51,12)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="56.9797%" y="2741" width="0.0511%" height="15" fill="rgb(216,144,10)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="56.9797%" y="2725" width="0.0511%" height="15" fill="rgb(242,90,34)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="56.9797%" y="2709" width="0.0511%" height="15" fill="rgb(221,92,41)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="56.9797%" y="2693" width="0.0511%" height="15" fill="rgb(211,156,24)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="56.9797%" y="2677" width="0.0511%" height="15" fill="rgb(245,7,9)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="56.9797%" y="2661" width="0.0511%" height="15" fill="rgb(233,52,8)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="56.9797%" y="2645" width="0.0511%" height="15" fill="rgb(236,52,17)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="56.9797%" y="2629" width="0.0511%" height="15" fill="rgb(226,218,2)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (12 samples, 0.05%)</title><rect x="56.9797%" y="2613" width="0.0511%" height="15" fill="rgb(219,104,39)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (12 samples, 0.05%)</title><rect x="56.9797%" y="2597" width="0.0511%" height="15" fill="rgb(229,138,51)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="56.9797%" y="2581" width="0.0511%" height="15" fill="rgb(242,131,29)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="56.9797%" y="2565" width="0.0511%" height="15" fill="rgb(244,101,20)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (12 samples, 0.05%)</title><rect x="56.9797%" y="2549" width="0.0511%" height="15" fill="rgb(214,58,12)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (12 samples, 0.05%)</title><rect x="56.9797%" y="2533" width="0.0511%" height="15" fill="rgb(230,123,10)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (12 samples, 0.05%)</title><rect x="56.9797%" y="2517" width="0.0511%" height="15" fill="rgb(242,27,35)" fg:x="13372" fg:w="12"/><text x="57.2297%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="57.0095%" y="2501" width="0.0213%" height="15" fill="rgb(252,73,47)" fg:x="13379" fg:w="5"/><text x="57.2595%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="57.0095%" y="2485" width="0.0213%" height="15" fill="rgb(244,156,31)" fg:x="13379" fg:w="5"/><text x="57.2595%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="57.0095%" y="2469" width="0.0213%" height="15" fill="rgb(236,219,19)" fg:x="13379" fg:w="5"/><text x="57.2595%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.0095%" y="2453" width="0.0213%" height="15" fill="rgb(239,53,25)" fg:x="13379" fg:w="5"/><text x="57.2595%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.0095%" y="2437" width="0.0213%" height="15" fill="rgb(249,13,8)" fg:x="13379" fg:w="5"/><text x="57.2595%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="57.0309%" y="2501" width="0.0128%" height="15" fill="rgb(205,4,8)" fg:x="13384" fg:w="3"/><text x="57.2809%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.0309%" y="2485" width="0.0128%" height="15" fill="rgb(248,79,9)" fg:x="13384" fg:w="3"/><text x="57.2809%" y="2495.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.0309%" y="2469" width="0.0128%" height="15" fill="rgb(211,159,44)" fg:x="13384" fg:w="3"/><text x="57.2809%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.0309%" y="2453" width="0.0128%" height="15" fill="rgb(240,226,38)" fg:x="13384" fg:w="3"/><text x="57.2809%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.0309%" y="2437" width="0.0128%" height="15" fill="rgb(251,54,46)" fg:x="13384" fg:w="3"/><text x="57.2809%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.0309%" y="2421" width="0.0128%" height="15" fill="rgb(249,151,22)" fg:x="13384" fg:w="3"/><text x="57.2809%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="57.0522%" y="2421" width="0.0128%" height="15" fill="rgb(225,113,14)" fg:x="13389" fg:w="3"/><text x="57.3022%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="57.0309%" y="2773" width="0.0384%" height="15" fill="rgb(228,126,12)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="57.0309%" y="2757" width="0.0384%" height="15" fill="rgb(244,17,43)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="57.0309%" y="2741" width="0.0384%" height="15" fill="rgb(236,58,42)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="57.0309%" y="2725" width="0.0384%" height="15" fill="rgb(245,79,6)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="57.0309%" y="2709" width="0.0384%" height="15" fill="rgb(252,34,7)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="57.0309%" y="2693" width="0.0384%" height="15" fill="rgb(239,89,19)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="57.0309%" y="2677" width="0.0384%" height="15" fill="rgb(250,193,44)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="57.0309%" y="2661" width="0.0384%" height="15" fill="rgb(223,48,45)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="57.0309%" y="2645" width="0.0384%" height="15" fill="rgb(241,108,40)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="57.0309%" y="2629" width="0.0384%" height="15" fill="rgb(209,89,46)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="57.0309%" y="2613" width="0.0384%" height="15" fill="rgb(221,15,49)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="57.0309%" y="2597" width="0.0384%" height="15" fill="rgb(208,166,14)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="57.0309%" y="2581" width="0.0384%" height="15" fill="rgb(215,131,35)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="57.0309%" y="2565" width="0.0384%" height="15" fill="rgb(241,47,54)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="57.0309%" y="2549" width="0.0384%" height="15" fill="rgb(206,89,44)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="57.0309%" y="2533" width="0.0384%" height="15" fill="rgb(227,50,13)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (9 samples, 0.04%)</title><rect x="57.0309%" y="2517" width="0.0384%" height="15" fill="rgb(252,6,42)" fg:x="13384" fg:w="9"/><text x="57.2809%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="57.0436%" y="2501" width="0.0256%" height="15" fill="rgb(225,40,41)" fg:x="13387" fg:w="6"/><text x="57.2936%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="57.0436%" y="2485" width="0.0256%" height="15" fill="rgb(207,102,52)" fg:x="13387" fg:w="6"/><text x="57.2936%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="57.0436%" y="2469" width="0.0256%" height="15" fill="rgb(205,214,48)" fg:x="13387" fg:w="6"/><text x="57.2936%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="57.0436%" y="2453" width="0.0256%" height="15" fill="rgb(224,184,9)" fg:x="13387" fg:w="6"/><text x="57.2936%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="57.0436%" y="2437" width="0.0256%" height="15" fill="rgb(207,143,0)" fg:x="13387" fg:w="6"/><text x="57.2936%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="57.0777%" y="2357" width="0.0128%" height="15" fill="rgb(226,61,18)" fg:x="13395" fg:w="3"/><text x="57.3277%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (32 samples, 0.14%)</title><rect x="56.9627%" y="3061" width="0.1364%" height="15" fill="rgb(205,158,19)" fg:x="13368" fg:w="32"/><text x="57.2127%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (32 samples, 0.14%)</title><rect x="56.9627%" y="3045" width="0.1364%" height="15" fill="rgb(219,27,33)" fg:x="13368" fg:w="32"/><text x="57.2127%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="56.9627%" y="3029" width="0.1364%" height="15" fill="rgb(245,144,10)" fg:x="13368" fg:w="32"/><text x="57.2127%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="56.9627%" y="3013" width="0.1364%" height="15" fill="rgb(217,158,31)" fg:x="13368" fg:w="32"/><text x="57.2127%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="56.9627%" y="2997" width="0.1364%" height="15" fill="rgb(250,76,24)" fg:x="13368" fg:w="32"/><text x="57.2127%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="56.9627%" y="2981" width="0.1364%" height="15" fill="rgb(225,51,41)" fg:x="13368" fg:w="32"/><text x="57.2127%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="56.9627%" y="2965" width="0.1364%" height="15" fill="rgb(235,181,26)" fg:x="13368" fg:w="32"/><text x="57.2127%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (16 samples, 0.07%)</title><rect x="57.0309%" y="2949" width="0.0682%" height="15" fill="rgb(254,193,28)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (16 samples, 0.07%)</title><rect x="57.0309%" y="2933" width="0.0682%" height="15" fill="rgb(230,149,4)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2943.50"></text></g><g><title>std::panicking::try (16 samples, 0.07%)</title><rect x="57.0309%" y="2917" width="0.0682%" height="15" fill="rgb(231,117,11)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (16 samples, 0.07%)</title><rect x="57.0309%" y="2901" width="0.0682%" height="15" fill="rgb(209,49,54)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (16 samples, 0.07%)</title><rect x="57.0309%" y="2885" width="0.0682%" height="15" fill="rgb(251,159,43)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (16 samples, 0.07%)</title><rect x="57.0309%" y="2869" width="0.0682%" height="15" fill="rgb(209,196,48)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="57.0309%" y="2853" width="0.0682%" height="15" fill="rgb(239,48,36)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="57.0309%" y="2837" width="0.0682%" height="15" fill="rgb(242,0,27)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="57.0309%" y="2821" width="0.0682%" height="15" fill="rgb(218,60,30)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="57.0309%" y="2805" width="0.0682%" height="15" fill="rgb(240,114,44)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="57.0309%" y="2789" width="0.0682%" height="15" fill="rgb(220,221,53)" fg:x="13384" fg:w="16"/><text x="57.2809%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.0692%" y="2773" width="0.0298%" height="15" fill="rgb(244,94,16)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.0692%" y="2757" width="0.0298%" height="15" fill="rgb(213,227,32)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2767.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.0692%" y="2741" width="0.0298%" height="15" fill="rgb(232,208,3)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.0692%" y="2725" width="0.0298%" height="15" fill="rgb(237,132,46)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.0692%" y="2709" width="0.0298%" height="15" fill="rgb(205,149,19)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0692%" y="2693" width="0.0298%" height="15" fill="rgb(250,177,7)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0692%" y="2677" width="0.0298%" height="15" fill="rgb(248,162,28)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.0692%" y="2661" width="0.0298%" height="15" fill="rgb(206,171,47)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="57.0692%" y="2645" width="0.0298%" height="15" fill="rgb(217,198,29)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.0692%" y="2629" width="0.0298%" height="15" fill="rgb(238,5,8)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.0692%" y="2613" width="0.0298%" height="15" fill="rgb(222,22,4)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="57.0692%" y="2597" width="0.0298%" height="15" fill="rgb(253,226,49)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.0692%" y="2581" width="0.0298%" height="15" fill="rgb(218,103,14)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.0692%" y="2565" width="0.0298%" height="15" fill="rgb(213,53,43)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="57.0692%" y="2549" width="0.0298%" height="15" fill="rgb(244,168,49)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0692%" y="2533" width="0.0298%" height="15" fill="rgb(225,96,35)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0692%" y="2517" width="0.0298%" height="15" fill="rgb(215,136,20)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="57.0692%" y="2501" width="0.0298%" height="15" fill="rgb(207,72,32)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0692%" y="2485" width="0.0298%" height="15" fill="rgb(219,217,31)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="57.0692%" y="2469" width="0.0298%" height="15" fill="rgb(230,58,18)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="57.0692%" y="2453" width="0.0298%" height="15" fill="rgb(229,216,24)" fg:x="13393" fg:w="7"/><text x="57.3192%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="57.0735%" y="2437" width="0.0256%" height="15" fill="rgb(228,30,24)" fg:x="13394" fg:w="6"/><text x="57.3235%" y="2447.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="57.0735%" y="2421" width="0.0256%" height="15" fill="rgb(233,175,21)" fg:x="13394" fg:w="6"/><text x="57.3235%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="57.0735%" y="2405" width="0.0256%" height="15" fill="rgb(223,176,44)" fg:x="13394" fg:w="6"/><text x="57.3235%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="57.0735%" y="2389" width="0.0256%" height="15" fill="rgb(216,93,15)" fg:x="13394" fg:w="6"/><text x="57.3235%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="57.0735%" y="2373" width="0.0256%" height="15" fill="rgb(232,180,42)" fg:x="13394" fg:w="6"/><text x="57.3235%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (4 samples, 0.02%)</title><rect x="57.1033%" y="2421" width="0.0170%" height="15" fill="rgb(244,134,35)" fg:x="13401" fg:w="4"/><text x="57.3533%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="57.1076%" y="2405" width="0.0128%" height="15" fill="rgb(222,209,54)" fg:x="13402" fg:w="3"/><text x="57.3576%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by::_{{closure}} (3 samples, 0.01%)</title><rect x="57.1076%" y="2389" width="0.0128%" height="15" fill="rgb(246,43,25)" fg:x="13402" fg:w="3"/><text x="57.3576%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="57.0990%" y="2773" width="0.0298%" height="15" fill="rgb(243,43,46)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0990%" y="2757" width="0.0298%" height="15" fill="rgb(224,184,50)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0990%" y="2741" width="0.0298%" height="15" fill="rgb(231,124,4)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.0990%" y="2725" width="0.0298%" height="15" fill="rgb(253,216,42)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="57.0990%" y="2709" width="0.0298%" height="15" fill="rgb(207,103,48)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.0990%" y="2693" width="0.0298%" height="15" fill="rgb(218,53,54)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.0990%" y="2677" width="0.0298%" height="15" fill="rgb(236,88,32)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="57.0990%" y="2661" width="0.0298%" height="15" fill="rgb(244,5,2)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.0990%" y="2645" width="0.0298%" height="15" fill="rgb(215,50,54)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.0990%" y="2629" width="0.0298%" height="15" fill="rgb(239,152,31)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="57.0990%" y="2613" width="0.0298%" height="15" fill="rgb(243,79,24)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0990%" y="2597" width="0.0298%" height="15" fill="rgb(243,170,6)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0990%" y="2581" width="0.0298%" height="15" fill="rgb(208,165,48)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="57.0990%" y="2565" width="0.0298%" height="15" fill="rgb(244,0,52)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="57.0990%" y="2549" width="0.0298%" height="15" fill="rgb(231,215,35)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="57.0990%" y="2533" width="0.0298%" height="15" fill="rgb(221,31,30)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="57.0990%" y="2517" width="0.0298%" height="15" fill="rgb(237,149,41)" fg:x="13400" fg:w="7"/><text x="57.3490%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="57.1033%" y="2501" width="0.0256%" height="15" fill="rgb(232,156,44)" fg:x="13401" fg:w="6"/><text x="57.3533%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="57.1033%" y="2485" width="0.0256%" height="15" fill="rgb(217,200,29)" fg:x="13401" fg:w="6"/><text x="57.3533%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="57.1033%" y="2469" width="0.0256%" height="15" fill="rgb(222,35,39)" fg:x="13401" fg:w="6"/><text x="57.3533%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="57.1033%" y="2453" width="0.0256%" height="15" fill="rgb(220,71,36)" fg:x="13401" fg:w="6"/><text x="57.3533%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="57.1033%" y="2437" width="0.0256%" height="15" fill="rgb(218,191,15)" fg:x="13401" fg:w="6"/><text x="57.3533%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="57.0990%" y="2885" width="0.0597%" height="15" fill="rgb(238,148,52)" fg:x="13400" fg:w="14"/><text x="57.3490%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="57.0990%" y="2869" width="0.0597%" height="15" fill="rgb(206,181,8)" fg:x="13400" fg:w="14"/><text x="57.3490%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="57.0990%" y="2853" width="0.0597%" height="15" fill="rgb(229,199,47)" fg:x="13400" fg:w="14"/><text x="57.3490%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="57.0990%" y="2837" width="0.0597%" height="15" fill="rgb(235,189,1)" fg:x="13400" fg:w="14"/><text x="57.3490%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="57.0990%" y="2821" width="0.0597%" height="15" fill="rgb(212,99,21)" fg:x="13400" fg:w="14"/><text x="57.3490%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="57.0990%" y="2805" width="0.0597%" height="15" fill="rgb(246,129,15)" fg:x="13400" fg:w="14"/><text x="57.3490%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="57.0990%" y="2789" width="0.0597%" height="15" fill="rgb(217,60,19)" fg:x="13400" fg:w="14"/><text x="57.3490%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.1289%" y="2773" width="0.0298%" height="15" fill="rgb(216,215,48)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.1289%" y="2757" width="0.0298%" height="15" fill="rgb(236,163,8)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2767.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.1289%" y="2741" width="0.0298%" height="15" fill="rgb(237,197,54)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.1289%" y="2725" width="0.0298%" height="15" fill="rgb(206,91,8)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.1289%" y="2709" width="0.0298%" height="15" fill="rgb(239,87,1)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1289%" y="2693" width="0.0298%" height="15" fill="rgb(215,158,16)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1289%" y="2677" width="0.0298%" height="15" fill="rgb(239,215,8)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.1289%" y="2661" width="0.0298%" height="15" fill="rgb(244,73,48)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="57.1289%" y="2645" width="0.0298%" height="15" fill="rgb(242,59,35)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.1289%" y="2629" width="0.0298%" height="15" fill="rgb(249,159,6)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.1289%" y="2613" width="0.0298%" height="15" fill="rgb(233,70,20)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="57.1289%" y="2597" width="0.0298%" height="15" fill="rgb(225,100,1)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.1289%" y="2581" width="0.0298%" height="15" fill="rgb(238,26,18)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.1289%" y="2565" width="0.0298%" height="15" fill="rgb(228,46,37)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="57.1289%" y="2549" width="0.0298%" height="15" fill="rgb(231,84,14)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1289%" y="2533" width="0.0298%" height="15" fill="rgb(229,112,30)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1289%" y="2517" width="0.0298%" height="15" fill="rgb(211,211,15)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="57.1289%" y="2501" width="0.0298%" height="15" fill="rgb(226,196,51)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1289%" y="2485" width="0.0298%" height="15" fill="rgb(234,21,41)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="57.1289%" y="2469" width="0.0298%" height="15" fill="rgb(242,43,14)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="57.1289%" y="2453" width="0.0298%" height="15" fill="rgb(240,158,4)" fg:x="13407" fg:w="7"/><text x="57.3789%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="57.1374%" y="2437" width="0.0213%" height="15" fill="rgb(226,210,6)" fg:x="13409" fg:w="5"/><text x="57.3874%" y="2447.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="57.1374%" y="2421" width="0.0213%" height="15" fill="rgb(236,203,39)" fg:x="13409" fg:w="5"/><text x="57.3874%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="57.1374%" y="2405" width="0.0213%" height="15" fill="rgb(219,160,27)" fg:x="13409" fg:w="5"/><text x="57.3874%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.1374%" y="2389" width="0.0213%" height="15" fill="rgb(212,43,34)" fg:x="13409" fg:w="5"/><text x="57.3874%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.1374%" y="2373" width="0.0213%" height="15" fill="rgb(223,127,21)" fg:x="13409" fg:w="5"/><text x="57.3874%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="57.1587%" y="2437" width="0.0170%" height="15" fill="rgb(223,146,7)" fg:x="13414" fg:w="4"/><text x="57.4087%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="57.1587%" y="2421" width="0.0170%" height="15" fill="rgb(242,181,30)" fg:x="13414" fg:w="4"/><text x="57.4087%" y="2431.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="57.1587%" y="2405" width="0.0170%" height="15" fill="rgb(237,162,36)" fg:x="13414" fg:w="4"/><text x="57.4087%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="57.1587%" y="2389" width="0.0170%" height="15" fill="rgb(233,169,28)" fg:x="13414" fg:w="4"/><text x="57.4087%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.1587%" y="2373" width="0.0170%" height="15" fill="rgb(232,99,1)" fg:x="13414" fg:w="4"/><text x="57.4087%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.1587%" y="2357" width="0.0170%" height="15" fill="rgb(254,89,7)" fg:x="13414" fg:w="4"/><text x="57.4087%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="57.1587%" y="2709" width="0.0298%" height="15" fill="rgb(207,78,32)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1587%" y="2693" width="0.0298%" height="15" fill="rgb(215,119,47)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1587%" y="2677" width="0.0298%" height="15" fill="rgb(232,92,2)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.1587%" y="2661" width="0.0298%" height="15" fill="rgb(207,25,39)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="57.1587%" y="2645" width="0.0298%" height="15" fill="rgb(252,137,40)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.1587%" y="2629" width="0.0298%" height="15" fill="rgb(245,200,3)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.1587%" y="2613" width="0.0298%" height="15" fill="rgb(222,105,51)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="57.1587%" y="2597" width="0.0298%" height="15" fill="rgb(234,35,32)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.1587%" y="2581" width="0.0298%" height="15" fill="rgb(238,121,44)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.1587%" y="2565" width="0.0298%" height="15" fill="rgb(240,104,49)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="57.1587%" y="2549" width="0.0298%" height="15" fill="rgb(210,190,44)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1587%" y="2533" width="0.0298%" height="15" fill="rgb(240,193,19)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1587%" y="2517" width="0.0298%" height="15" fill="rgb(226,195,11)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="57.1587%" y="2501" width="0.0298%" height="15" fill="rgb(228,212,34)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1587%" y="2485" width="0.0298%" height="15" fill="rgb(247,187,16)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="57.1587%" y="2469" width="0.0298%" height="15" fill="rgb(249,118,17)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="57.1587%" y="2453" width="0.0298%" height="15" fill="rgb(217,121,30)" fg:x="13414" fg:w="7"/><text x="57.4087%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.1757%" y="2437" width="0.0128%" height="15" fill="rgb(208,170,39)" fg:x="13418" fg:w="3"/><text x="57.4257%" y="2447.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.1757%" y="2421" width="0.0128%" height="15" fill="rgb(205,183,32)" fg:x="13418" fg:w="3"/><text x="57.4257%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.1757%" y="2405" width="0.0128%" height="15" fill="rgb(218,217,22)" fg:x="13418" fg:w="3"/><text x="57.4257%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.1757%" y="2389" width="0.0128%" height="15" fill="rgb(242,7,39)" fg:x="13418" fg:w="3"/><text x="57.4257%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.1757%" y="2373" width="0.0128%" height="15" fill="rgb(205,96,33)" fg:x="13418" fg:w="3"/><text x="57.4257%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="57.2013%" y="2277" width="0.0128%" height="15" fill="rgb(248,147,41)" fg:x="13424" fg:w="3"/><text x="57.4513%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="57.2013%" y="2261" width="0.0128%" height="15" fill="rgb(244,58,19)" fg:x="13424" fg:w="3"/><text x="57.4513%" y="2271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (60 samples, 0.26%)</title><rect x="56.9627%" y="3173" width="0.2557%" height="15" fill="rgb(232,89,36)" fg:x="13368" fg:w="60"/><text x="57.2127%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (60 samples, 0.26%)</title><rect x="56.9627%" y="3157" width="0.2557%" height="15" fill="rgb(240,59,54)" fg:x="13368" fg:w="60"/><text x="57.2127%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (60 samples, 0.26%)</title><rect x="56.9627%" y="3141" width="0.2557%" height="15" fill="rgb(238,105,48)" fg:x="13368" fg:w="60"/><text x="57.2127%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (60 samples, 0.26%)</title><rect x="56.9627%" y="3125" width="0.2557%" height="15" fill="rgb(218,224,32)" fg:x="13368" fg:w="60"/><text x="57.2127%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (60 samples, 0.26%)</title><rect x="56.9627%" y="3109" width="0.2557%" height="15" fill="rgb(221,221,54)" fg:x="13368" fg:w="60"/><text x="57.2127%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (60 samples, 0.26%)</title><rect x="56.9627%" y="3093" width="0.2557%" height="15" fill="rgb(224,99,35)" fg:x="13368" fg:w="60"/><text x="57.2127%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (60 samples, 0.26%)</title><rect x="56.9627%" y="3077" width="0.2557%" height="15" fill="rgb(210,67,16)" fg:x="13368" fg:w="60"/><text x="57.2127%" y="3087.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (28 samples, 0.12%)</title><rect x="57.0990%" y="3061" width="0.1193%" height="15" fill="rgb(239,5,28)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="3071.50"></text></g><g><title>std::panic::catch_unwind (28 samples, 0.12%)</title><rect x="57.0990%" y="3045" width="0.1193%" height="15" fill="rgb(247,98,20)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="3055.50"></text></g><g><title>std::panicking::try (28 samples, 0.12%)</title><rect x="57.0990%" y="3029" width="0.1193%" height="15" fill="rgb(225,219,33)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="3039.50"></text></g><g><title>std::panicking::try::do_call (28 samples, 0.12%)</title><rect x="57.0990%" y="3013" width="0.1193%" height="15" fill="rgb(228,92,6)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="3023.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (28 samples, 0.12%)</title><rect x="57.0990%" y="2997" width="0.1193%" height="15" fill="rgb(217,39,54)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (28 samples, 0.12%)</title><rect x="57.0990%" y="2981" width="0.1193%" height="15" fill="rgb(208,182,21)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (28 samples, 0.12%)</title><rect x="57.0990%" y="2965" width="0.1193%" height="15" fill="rgb(235,226,44)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.12%)</title><rect x="57.0990%" y="2949" width="0.1193%" height="15" fill="rgb(247,88,21)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (28 samples, 0.12%)</title><rect x="57.0990%" y="2933" width="0.1193%" height="15" fill="rgb(249,154,49)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.12%)</title><rect x="57.0990%" y="2917" width="0.1193%" height="15" fill="rgb(207,149,11)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (28 samples, 0.12%)</title><rect x="57.0990%" y="2901" width="0.1193%" height="15" fill="rgb(253,218,2)" fg:x="13400" fg:w="28"/><text x="57.3490%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="57.1587%" y="2885" width="0.0597%" height="15" fill="rgb(220,45,3)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="57.1587%" y="2869" width="0.0597%" height="15" fill="rgb(242,108,39)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2879.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="57.1587%" y="2853" width="0.0597%" height="15" fill="rgb(221,69,32)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="57.1587%" y="2837" width="0.0597%" height="15" fill="rgb(240,81,28)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="57.1587%" y="2821" width="0.0597%" height="15" fill="rgb(231,203,1)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="57.1587%" y="2805" width="0.0597%" height="15" fill="rgb(237,188,18)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="57.1587%" y="2789" width="0.0597%" height="15" fill="rgb(254,194,32)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="57.1587%" y="2773" width="0.0597%" height="15" fill="rgb(254,126,35)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="57.1587%" y="2757" width="0.0597%" height="15" fill="rgb(223,222,24)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="57.1587%" y="2741" width="0.0597%" height="15" fill="rgb(215,19,34)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="57.1587%" y="2725" width="0.0597%" height="15" fill="rgb(252,161,4)" fg:x="13414" fg:w="14"/><text x="57.4087%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.1885%" y="2709" width="0.0298%" height="15" fill="rgb(243,157,17)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.1885%" y="2693" width="0.0298%" height="15" fill="rgb(244,163,28)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2703.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.1885%" y="2677" width="0.0298%" height="15" fill="rgb(229,40,52)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.1885%" y="2661" width="0.0298%" height="15" fill="rgb(212,9,30)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.1885%" y="2645" width="0.0298%" height="15" fill="rgb(213,141,9)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1885%" y="2629" width="0.0298%" height="15" fill="rgb(209,202,53)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1885%" y="2613" width="0.0298%" height="15" fill="rgb(246,113,36)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.1885%" y="2597" width="0.0298%" height="15" fill="rgb(215,171,0)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="57.1885%" y="2581" width="0.0298%" height="15" fill="rgb(214,162,18)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.1885%" y="2565" width="0.0298%" height="15" fill="rgb(239,192,48)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2575.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.1885%" y="2549" width="0.0298%" height="15" fill="rgb(221,98,46)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="57.1885%" y="2533" width="0.0298%" height="15" fill="rgb(240,203,13)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.1885%" y="2517" width="0.0298%" height="15" fill="rgb(230,27,26)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.1885%" y="2501" width="0.0298%" height="15" fill="rgb(218,101,32)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="57.1885%" y="2485" width="0.0298%" height="15" fill="rgb(222,207,27)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2495.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1885%" y="2469" width="0.0298%" height="15" fill="rgb(233,159,53)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1885%" y="2453" width="0.0298%" height="15" fill="rgb(231,157,44)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="57.1885%" y="2437" width="0.0298%" height="15" fill="rgb(240,171,9)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="57.1885%" y="2421" width="0.0298%" height="15" fill="rgb(248,199,47)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="57.1885%" y="2405" width="0.0298%" height="15" fill="rgb(210,183,7)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2415.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="57.1885%" y="2389" width="0.0298%" height="15" fill="rgb(246,211,5)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="57.1885%" y="2373" width="0.0298%" height="15" fill="rgb(242,213,27)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="57.1885%" y="2357" width="0.0298%" height="15" fill="rgb(217,229,9)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2367.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="57.1885%" y="2341" width="0.0298%" height="15" fill="rgb(229,37,53)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="57.1885%" y="2325" width="0.0298%" height="15" fill="rgb(242,102,15)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="57.1885%" y="2309" width="0.0298%" height="15" fill="rgb(205,20,11)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="57.1885%" y="2293" width="0.0298%" height="15" fill="rgb(234,177,35)" fg:x="13421" fg:w="7"/><text x="57.4385%" y="2303.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="57.2183%" y="2501" width="0.0213%" height="15" fill="rgb(211,195,7)" fg:x="13428" fg:w="5"/><text x="57.4683%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="57.2183%" y="2485" width="0.0213%" height="15" fill="rgb(246,223,17)" fg:x="13428" fg:w="5"/><text x="57.4683%" y="2495.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="57.2183%" y="2469" width="0.0213%" height="15" fill="rgb(243,186,39)" fg:x="13428" fg:w="5"/><text x="57.4683%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="57.2183%" y="2453" width="0.0213%" height="15" fill="rgb(241,130,2)" fg:x="13428" fg:w="5"/><text x="57.4683%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.2183%" y="2437" width="0.0213%" height="15" fill="rgb(244,121,52)" fg:x="13428" fg:w="5"/><text x="57.4683%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.2183%" y="2421" width="0.0213%" height="15" fill="rgb(236,225,48)" fg:x="13428" fg:w="5"/><text x="57.4683%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="57.2183%" y="2773" width="0.0384%" height="15" fill="rgb(253,140,5)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="57.2183%" y="2757" width="0.0384%" height="15" fill="rgb(214,131,28)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="57.2183%" y="2741" width="0.0384%" height="15" fill="rgb(237,185,36)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="57.2183%" y="2725" width="0.0384%" height="15" fill="rgb(248,185,37)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="57.2183%" y="2709" width="0.0384%" height="15" fill="rgb(242,108,16)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="57.2183%" y="2693" width="0.0384%" height="15" fill="rgb(231,17,29)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2703.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="57.2183%" y="2677" width="0.0384%" height="15" fill="rgb(250,170,23)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2687.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="57.2183%" y="2661" width="0.0384%" height="15" fill="rgb(246,142,46)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="57.2183%" y="2645" width="0.0384%" height="15" fill="rgb(208,143,13)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2655.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="57.2183%" y="2629" width="0.0384%" height="15" fill="rgb(217,216,21)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="57.2183%" y="2613" width="0.0384%" height="15" fill="rgb(221,228,24)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2623.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="57.2183%" y="2597" width="0.0384%" height="15" fill="rgb(235,76,27)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2607.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="57.2183%" y="2581" width="0.0384%" height="15" fill="rgb(245,206,18)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2591.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="57.2183%" y="2565" width="0.0384%" height="15" fill="rgb(209,22,35)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="57.2183%" y="2549" width="0.0384%" height="15" fill="rgb(246,172,15)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2559.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="57.2183%" y="2533" width="0.0384%" height="15" fill="rgb(222,173,51)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2543.50"></text></g><g><title>criterion::analysis::estimates::stats (9 samples, 0.04%)</title><rect x="57.2183%" y="2517" width="0.0384%" height="15" fill="rgb(239,40,54)" fg:x="13428" fg:w="9"/><text x="57.4683%" y="2527.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="57.2396%" y="2501" width="0.0170%" height="15" fill="rgb(215,96,21)" fg:x="13433" fg:w="4"/><text x="57.4896%" y="2511.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="57.2396%" y="2485" width="0.0170%" height="15" fill="rgb(225,52,53)" fg:x="13433" fg:w="4"/><text x="57.4896%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="57.2396%" y="2469" width="0.0170%" height="15" fill="rgb(235,3,6)" fg:x="13433" fg:w="4"/><text x="57.4896%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.2396%" y="2453" width="0.0170%" height="15" fill="rgb(248,146,10)" fg:x="13433" fg:w="4"/><text x="57.4896%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.2396%" y="2437" width="0.0170%" height="15" fill="rgb(246,24,13)" fg:x="13433" fg:w="4"/><text x="57.4896%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="57.2567%" y="2437" width="0.0170%" height="15" fill="rgb(250,161,42)" fg:x="13437" fg:w="4"/><text x="57.5067%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="57.2567%" y="2421" width="0.0170%" height="15" fill="rgb(235,38,23)" fg:x="13437" fg:w="4"/><text x="57.5067%" y="2431.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="57.2567%" y="2405" width="0.0170%" height="15" fill="rgb(217,70,23)" fg:x="13437" fg:w="4"/><text x="57.5067%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="57.2567%" y="2389" width="0.0170%" height="15" fill="rgb(217,1,26)" fg:x="13437" fg:w="4"/><text x="57.5067%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.2567%" y="2373" width="0.0170%" height="15" fill="rgb(226,191,34)" fg:x="13437" fg:w="4"/><text x="57.5067%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.2567%" y="2357" width="0.0170%" height="15" fill="rgb(206,125,25)" fg:x="13437" fg:w="4"/><text x="57.5067%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="57.2823%" y="2357" width="0.0128%" height="15" fill="rgb(245,187,50)" fg:x="13443" fg:w="3"/><text x="57.5323%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="57.2823%" y="2341" width="0.0128%" height="15" fill="rgb(227,133,43)" fg:x="13443" fg:w="3"/><text x="57.5323%" y="2351.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (20 samples, 0.09%)</title><rect x="57.2183%" y="2885" width="0.0852%" height="15" fill="rgb(219,106,48)" fg:x="13428" fg:w="20"/><text x="57.4683%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (20 samples, 0.09%)</title><rect x="57.2183%" y="2869" width="0.0852%" height="15" fill="rgb(227,211,3)" fg:x="13428" fg:w="20"/><text x="57.4683%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="57.2183%" y="2853" width="0.0852%" height="15" fill="rgb(211,39,49)" fg:x="13428" fg:w="20"/><text x="57.4683%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="57.2183%" y="2837" width="0.0852%" height="15" fill="rgb(235,218,42)" fg:x="13428" fg:w="20"/><text x="57.4683%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="57.2183%" y="2821" width="0.0852%" height="15" fill="rgb(250,219,1)" fg:x="13428" fg:w="20"/><text x="57.4683%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="57.2183%" y="2805" width="0.0852%" height="15" fill="rgb(206,15,43)" fg:x="13428" fg:w="20"/><text x="57.4683%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="57.2183%" y="2789" width="0.0852%" height="15" fill="rgb(230,214,28)" fg:x="13428" fg:w="20"/><text x="57.4683%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="57.2567%" y="2773" width="0.0469%" height="15" fill="rgb(253,189,13)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="57.2567%" y="2757" width="0.0469%" height="15" fill="rgb(232,44,25)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2767.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="57.2567%" y="2741" width="0.0469%" height="15" fill="rgb(223,161,28)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="57.2567%" y="2725" width="0.0469%" height="15" fill="rgb(205,77,21)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="57.2567%" y="2709" width="0.0469%" height="15" fill="rgb(250,191,23)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="57.2567%" y="2693" width="0.0469%" height="15" fill="rgb(209,115,12)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="57.2567%" y="2677" width="0.0469%" height="15" fill="rgb(246,87,7)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="57.2567%" y="2661" width="0.0469%" height="15" fill="rgb(230,107,24)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (11 samples, 0.05%)</title><rect x="57.2567%" y="2645" width="0.0469%" height="15" fill="rgb(248,155,9)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="57.2567%" y="2629" width="0.0469%" height="15" fill="rgb(214,13,25)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (11 samples, 0.05%)</title><rect x="57.2567%" y="2613" width="0.0469%" height="15" fill="rgb(237,14,3)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (11 samples, 0.05%)</title><rect x="57.2567%" y="2597" width="0.0469%" height="15" fill="rgb(216,110,34)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="57.2567%" y="2581" width="0.0469%" height="15" fill="rgb(241,184,21)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (11 samples, 0.05%)</title><rect x="57.2567%" y="2565" width="0.0469%" height="15" fill="rgb(241,82,19)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (11 samples, 0.05%)</title><rect x="57.2567%" y="2549" width="0.0469%" height="15" fill="rgb(216,173,54)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (11 samples, 0.05%)</title><rect x="57.2567%" y="2533" width="0.0469%" height="15" fill="rgb(217,84,5)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (11 samples, 0.05%)</title><rect x="57.2567%" y="2517" width="0.0469%" height="15" fill="rgb(229,35,40)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (11 samples, 0.05%)</title><rect x="57.2567%" y="2501" width="0.0469%" height="15" fill="rgb(213,76,46)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (11 samples, 0.05%)</title><rect x="57.2567%" y="2485" width="0.0469%" height="15" fill="rgb(230,20,9)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (11 samples, 0.05%)</title><rect x="57.2567%" y="2469" width="0.0469%" height="15" fill="rgb(223,220,44)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (11 samples, 0.05%)</title><rect x="57.2567%" y="2453" width="0.0469%" height="15" fill="rgb(217,67,51)" fg:x="13437" fg:w="11"/><text x="57.5067%" y="2463.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="57.2737%" y="2437" width="0.0298%" height="15" fill="rgb(247,152,53)" fg:x="13441" fg:w="7"/><text x="57.5237%" y="2447.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="57.2737%" y="2421" width="0.0298%" height="15" fill="rgb(241,115,34)" fg:x="13441" fg:w="7"/><text x="57.5237%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="57.2737%" y="2405" width="0.0298%" height="15" fill="rgb(245,123,54)" fg:x="13441" fg:w="7"/><text x="57.5237%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="57.2737%" y="2389" width="0.0298%" height="15" fill="rgb(221,93,2)" fg:x="13441" fg:w="7"/><text x="57.5237%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="57.2737%" y="2373" width="0.0298%" height="15" fill="rgb(244,226,15)" fg:x="13441" fg:w="7"/><text x="57.5237%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="57.3036%" y="2709" width="0.0170%" height="15" fill="rgb(230,219,19)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3036%" y="2693" width="0.0170%" height="15" fill="rgb(230,116,45)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3036%" y="2677" width="0.0170%" height="15" fill="rgb(251,54,34)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.3036%" y="2661" width="0.0170%" height="15" fill="rgb(222,100,12)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="57.3036%" y="2645" width="0.0170%" height="15" fill="rgb(229,41,46)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="57.3036%" y="2629" width="0.0170%" height="15" fill="rgb(228,143,38)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="57.3036%" y="2613" width="0.0170%" height="15" fill="rgb(205,28,36)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="57.3036%" y="2597" width="0.0170%" height="15" fill="rgb(253,229,11)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="57.3036%" y="2581" width="0.0170%" height="15" fill="rgb(221,209,49)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="57.3036%" y="2565" width="0.0170%" height="15" fill="rgb(226,143,36)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="57.3036%" y="2549" width="0.0170%" height="15" fill="rgb(208,221,40)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3036%" y="2533" width="0.0170%" height="15" fill="rgb(231,53,11)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3036%" y="2517" width="0.0170%" height="15" fill="rgb(235,186,16)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="57.3036%" y="2501" width="0.0170%" height="15" fill="rgb(245,202,14)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3036%" y="2485" width="0.0170%" height="15" fill="rgb(242,204,42)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="57.3036%" y="2469" width="0.0170%" height="15" fill="rgb(251,94,50)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="57.3036%" y="2453" width="0.0170%" height="15" fill="rgb(254,204,28)" fg:x="13448" fg:w="4"/><text x="57.5536%" y="2463.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (26 samples, 0.11%)</title><rect x="57.2183%" y="2997" width="0.1108%" height="15" fill="rgb(207,123,3)" fg:x="13428" fg:w="26"/><text x="57.4683%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (26 samples, 0.11%)</title><rect x="57.2183%" y="2981" width="0.1108%" height="15" fill="rgb(246,190,19)" fg:x="13428" fg:w="26"/><text x="57.4683%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (26 samples, 0.11%)</title><rect x="57.2183%" y="2965" width="0.1108%" height="15" fill="rgb(209,38,14)" fg:x="13428" fg:w="26"/><text x="57.4683%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.11%)</title><rect x="57.2183%" y="2949" width="0.1108%" height="15" fill="rgb(238,147,20)" fg:x="13428" fg:w="26"/><text x="57.4683%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (26 samples, 0.11%)</title><rect x="57.2183%" y="2933" width="0.1108%" height="15" fill="rgb(213,203,19)" fg:x="13428" fg:w="26"/><text x="57.4683%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.11%)</title><rect x="57.2183%" y="2917" width="0.1108%" height="15" fill="rgb(212,215,37)" fg:x="13428" fg:w="26"/><text x="57.4683%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (26 samples, 0.11%)</title><rect x="57.2183%" y="2901" width="0.1108%" height="15" fill="rgb(223,220,16)" fg:x="13428" fg:w="26"/><text x="57.4683%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="57.3036%" y="2885" width="0.0256%" height="15" fill="rgb(225,221,19)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="57.3036%" y="2869" width="0.0256%" height="15" fill="rgb(209,154,5)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2879.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="57.3036%" y="2853" width="0.0256%" height="15" fill="rgb(232,88,46)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="57.3036%" y="2837" width="0.0256%" height="15" fill="rgb(218,188,32)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="57.3036%" y="2821" width="0.0256%" height="15" fill="rgb(239,46,0)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="57.3036%" y="2805" width="0.0256%" height="15" fill="rgb(208,7,52)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="57.3036%" y="2789" width="0.0256%" height="15" fill="rgb(248,224,14)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="57.3036%" y="2773" width="0.0256%" height="15" fill="rgb(237,34,27)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="57.3036%" y="2757" width="0.0256%" height="15" fill="rgb(210,25,48)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="57.3036%" y="2741" width="0.0256%" height="15" fill="rgb(241,18,46)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="57.3036%" y="2725" width="0.0256%" height="15" fill="rgb(237,93,5)" fg:x="13448" fg:w="6"/><text x="57.5536%" y="2735.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="57.3291%" y="2437" width="0.0128%" height="15" fill="rgb(233,39,16)" fg:x="13454" fg:w="3"/><text x="57.5791%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.3291%" y="2421" width="0.0128%" height="15" fill="rgb(225,191,32)" fg:x="13454" fg:w="3"/><text x="57.5791%" y="2431.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.3291%" y="2405" width="0.0128%" height="15" fill="rgb(215,108,30)" fg:x="13454" fg:w="3"/><text x="57.5791%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.3291%" y="2389" width="0.0128%" height="15" fill="rgb(253,156,26)" fg:x="13454" fg:w="3"/><text x="57.5791%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.3291%" y="2373" width="0.0128%" height="15" fill="rgb(230,199,39)" fg:x="13454" fg:w="3"/><text x="57.5791%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.3291%" y="2357" width="0.0128%" height="15" fill="rgb(252,49,12)" fg:x="13454" fg:w="3"/><text x="57.5791%" y="2367.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="57.3291%" y="2709" width="0.0213%" height="15" fill="rgb(239,40,42)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="57.3291%" y="2693" width="0.0213%" height="15" fill="rgb(239,104,15)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.3291%" y="2677" width="0.0213%" height="15" fill="rgb(252,180,41)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.3291%" y="2661" width="0.0213%" height="15" fill="rgb(226,115,13)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="57.3291%" y="2645" width="0.0213%" height="15" fill="rgb(239,150,5)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="57.3291%" y="2629" width="0.0213%" height="15" fill="rgb(252,54,13)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2639.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="57.3291%" y="2613" width="0.0213%" height="15" fill="rgb(211,46,8)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2623.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="57.3291%" y="2597" width="0.0213%" height="15" fill="rgb(245,31,14)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2607.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="57.3291%" y="2581" width="0.0213%" height="15" fill="rgb(211,147,5)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="57.3291%" y="2565" width="0.0213%" height="15" fill="rgb(219,130,10)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="57.3291%" y="2549" width="0.0213%" height="15" fill="rgb(240,134,49)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2559.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="57.3291%" y="2533" width="0.0213%" height="15" fill="rgb(253,224,36)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2543.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="57.3291%" y="2517" width="0.0213%" height="15" fill="rgb(233,33,19)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2527.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="57.3291%" y="2501" width="0.0213%" height="15" fill="rgb(252,147,19)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="57.3291%" y="2485" width="0.0213%" height="15" fill="rgb(233,135,45)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2495.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="57.3291%" y="2469" width="0.0213%" height="15" fill="rgb(237,10,52)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2479.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="57.3291%" y="2453" width="0.0213%" height="15" fill="rgb(234,210,51)" fg:x="13454" fg:w="5"/><text x="57.5791%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="57.3547%" y="2277" width="0.0128%" height="15" fill="rgb(214,82,48)" fg:x="13460" fg:w="3"/><text x="57.6047%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="57.3547%" y="2261" width="0.0128%" height="15" fill="rgb(207,127,20)" fg:x="13460" fg:w="3"/><text x="57.6047%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="57.3675%" y="2277" width="0.0128%" height="15" fill="rgb(225,208,2)" fg:x="13463" fg:w="3"/><text x="57.6175%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="57.3675%" y="2261" width="0.0128%" height="15" fill="rgb(220,179,4)" fg:x="13463" fg:w="3"/><text x="57.6175%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (9 samples, 0.04%)</title><rect x="57.3504%" y="2373" width="0.0384%" height="15" fill="rgb(247,21,50)" fg:x="13459" fg:w="9"/><text x="57.6004%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (9 samples, 0.04%)</title><rect x="57.3504%" y="2357" width="0.0384%" height="15" fill="rgb(217,113,1)" fg:x="13459" fg:w="9"/><text x="57.6004%" y="2367.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (9 samples, 0.04%)</title><rect x="57.3504%" y="2341" width="0.0384%" height="15" fill="rgb(253,109,18)" fg:x="13459" fg:w="9"/><text x="57.6004%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (9 samples, 0.04%)</title><rect x="57.3504%" y="2325" width="0.0384%" height="15" fill="rgb(223,38,30)" fg:x="13459" fg:w="9"/><text x="57.6004%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="57.3504%" y="2309" width="0.0384%" height="15" fill="rgb(217,212,35)" fg:x="13459" fg:w="9"/><text x="57.6004%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="57.3504%" y="2293" width="0.0384%" height="15" fill="rgb(251,140,30)" fg:x="13459" fg:w="9"/><text x="57.6004%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="57.3291%" y="2821" width="0.0639%" height="15" fill="rgb(207,86,15)" fg:x="13454" fg:w="15"/><text x="57.5791%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="57.3291%" y="2805" width="0.0639%" height="15" fill="rgb(221,0,6)" fg:x="13454" fg:w="15"/><text x="57.5791%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="57.3291%" y="2789" width="0.0639%" height="15" fill="rgb(234,227,27)" fg:x="13454" fg:w="15"/><text x="57.5791%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="57.3291%" y="2773" width="0.0639%" height="15" fill="rgb(235,196,47)" fg:x="13454" fg:w="15"/><text x="57.5791%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="57.3291%" y="2757" width="0.0639%" height="15" fill="rgb(250,202,34)" fg:x="13454" fg:w="15"/><text x="57.5791%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="57.3291%" y="2741" width="0.0639%" height="15" fill="rgb(231,111,13)" fg:x="13454" fg:w="15"/><text x="57.5791%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="57.3291%" y="2725" width="0.0639%" height="15" fill="rgb(231,15,43)" fg:x="13454" fg:w="15"/><text x="57.5791%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="57.3504%" y="2709" width="0.0426%" height="15" fill="rgb(242,221,50)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="57.3504%" y="2693" width="0.0426%" height="15" fill="rgb(221,132,3)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2703.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="57.3504%" y="2677" width="0.0426%" height="15" fill="rgb(251,98,20)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="57.3504%" y="2661" width="0.0426%" height="15" fill="rgb(218,107,22)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="57.3504%" y="2645" width="0.0426%" height="15" fill="rgb(237,16,17)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="57.3504%" y="2629" width="0.0426%" height="15" fill="rgb(236,29,32)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="57.3504%" y="2613" width="0.0426%" height="15" fill="rgb(224,206,32)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="57.3504%" y="2597" width="0.0426%" height="15" fill="rgb(219,59,27)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="57.3504%" y="2581" width="0.0426%" height="15" fill="rgb(254,126,52)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="57.3504%" y="2565" width="0.0426%" height="15" fill="rgb(246,129,43)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2575.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="57.3504%" y="2549" width="0.0426%" height="15" fill="rgb(210,16,0)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="57.3504%" y="2533" width="0.0426%" height="15" fill="rgb(215,94,42)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="57.3504%" y="2517" width="0.0426%" height="15" fill="rgb(232,207,0)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="57.3504%" y="2501" width="0.0426%" height="15" fill="rgb(232,132,44)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (10 samples, 0.04%)</title><rect x="57.3504%" y="2485" width="0.0426%" height="15" fill="rgb(224,24,52)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2495.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="57.3504%" y="2469" width="0.0426%" height="15" fill="rgb(253,20,42)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="57.3504%" y="2453" width="0.0426%" height="15" fill="rgb(207,191,33)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="57.3504%" y="2437" width="0.0426%" height="15" fill="rgb(217,198,36)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="57.3504%" y="2421" width="0.0426%" height="15" fill="rgb(214,120,51)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="57.3504%" y="2405" width="0.0426%" height="15" fill="rgb(205,89,32)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2415.50"></text></g><g><title>criterion::analysis::estimates::stats (10 samples, 0.04%)</title><rect x="57.3504%" y="2389" width="0.0426%" height="15" fill="rgb(210,71,14)" fg:x="13459" fg:w="10"/><text x="57.6004%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="57.3930%" y="2645" width="0.0170%" height="15" fill="rgb(252,77,5)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3930%" y="2629" width="0.0170%" height="15" fill="rgb(237,96,36)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3930%" y="2613" width="0.0170%" height="15" fill="rgb(239,129,46)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.3930%" y="2597" width="0.0170%" height="15" fill="rgb(243,208,17)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="57.3930%" y="2581" width="0.0170%" height="15" fill="rgb(211,194,43)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="57.3930%" y="2565" width="0.0170%" height="15" fill="rgb(246,19,40)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2575.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="57.3930%" y="2549" width="0.0170%" height="15" fill="rgb(226,202,24)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="57.3930%" y="2533" width="0.0170%" height="15" fill="rgb(222,210,2)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="57.3930%" y="2517" width="0.0170%" height="15" fill="rgb(226,201,9)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="57.3930%" y="2501" width="0.0170%" height="15" fill="rgb(232,90,18)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="57.3930%" y="2485" width="0.0170%" height="15" fill="rgb(231,29,10)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2495.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3930%" y="2469" width="0.0170%" height="15" fill="rgb(216,108,52)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3930%" y="2453" width="0.0170%" height="15" fill="rgb(219,101,5)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="57.3930%" y="2437" width="0.0170%" height="15" fill="rgb(248,170,40)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="57.3930%" y="2421" width="0.0170%" height="15" fill="rgb(243,57,40)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="57.3930%" y="2405" width="0.0170%" height="15" fill="rgb(245,32,36)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2415.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="57.3930%" y="2389" width="0.0170%" height="15" fill="rgb(210,20,3)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="57.3930%" y="2373" width="0.0170%" height="15" fill="rgb(236,102,36)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="57.3930%" y="2357" width="0.0170%" height="15" fill="rgb(221,157,2)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2367.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="57.3930%" y="2341" width="0.0170%" height="15" fill="rgb(233,181,46)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="57.3930%" y="2325" width="0.0170%" height="15" fill="rgb(208,70,16)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.3930%" y="2309" width="0.0170%" height="15" fill="rgb(241,215,37)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.3930%" y="2293" width="0.0170%" height="15" fill="rgb(236,54,3)" fg:x="13469" fg:w="4"/><text x="57.6430%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (234 samples, 1.00%)</title><rect x="56.4258%" y="3813" width="0.9971%" height="15" fill="rgb(245,135,39)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3823.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (234 samples, 1.00%)</title><rect x="56.4258%" y="3797" width="0.9971%" height="15" fill="rgb(219,178,17)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3807.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (234 samples, 1.00%)</title><rect x="56.4258%" y="3781" width="0.9971%" height="15" fill="rgb(240,3,26)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3791.50"></text></g><g><title>rayon_core::job::JobRef::execute (234 samples, 1.00%)</title><rect x="56.4258%" y="3765" width="0.9971%" height="15" fill="rgb(229,159,42)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3775.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (234 samples, 1.00%)</title><rect x="56.4258%" y="3749" width="0.9971%" height="15" fill="rgb(245,95,33)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3759.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (234 samples, 1.00%)</title><rect x="56.4258%" y="3733" width="0.9971%" height="15" fill="rgb(207,101,14)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3743.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (234 samples, 1.00%)</title><rect x="56.4258%" y="3717" width="0.9971%" height="15" fill="rgb(209,14,14)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3727.50"></text></g><g><title>std::panic::catch_unwind (234 samples, 1.00%)</title><rect x="56.4258%" y="3701" width="0.9971%" height="15" fill="rgb(211,150,3)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3711.50"></text></g><g><title>std::panicking::try (234 samples, 1.00%)</title><rect x="56.4258%" y="3685" width="0.9971%" height="15" fill="rgb(242,79,30)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3695.50"></text></g><g><title>std::panicking::try::do_call (234 samples, 1.00%)</title><rect x="56.4258%" y="3669" width="0.9971%" height="15" fill="rgb(230,139,9)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3679.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (234 samples, 1.00%)</title><rect x="56.4258%" y="3653" width="0.9971%" height="15" fill="rgb(216,26,31)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3663.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (234 samples, 1.00%)</title><rect x="56.4258%" y="3637" width="0.9971%" height="15" fill="rgb(210,119,22)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3647.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (234 samples, 1.00%)</title><rect x="56.4258%" y="3621" width="0.9971%" height="15" fill="rgb(250,109,24)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (234 samples, 1.00%)</title><rect x="56.4258%" y="3605" width="0.9971%" height="15" fill="rgb(214,212,46)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (234 samples, 1.00%)</title><rect x="56.4258%" y="3589" width="0.9971%" height="15" fill="rgb(206,46,20)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3599.50"></text></g><g><title>rayon_core::join::join_context (234 samples, 1.00%)</title><rect x="56.4258%" y="3573" width="0.9971%" height="15" fill="rgb(221,159,9)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3583.50"></text></g><g><title>rayon_core::registry::in_worker (234 samples, 1.00%)</title><rect x="56.4258%" y="3557" width="0.9971%" height="15" fill="rgb(214,173,53)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3567.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (234 samples, 1.00%)</title><rect x="56.4258%" y="3541" width="0.9971%" height="15" fill="rgb(226,158,2)" fg:x="13242" fg:w="234"/><text x="56.6758%" y="3551.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (176 samples, 0.75%)</title><rect x="56.6729%" y="3525" width="0.7500%" height="15" fill="rgb(254,61,48)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3535.50"></text></g><g><title>std::panic::catch_unwind (176 samples, 0.75%)</title><rect x="56.6729%" y="3509" width="0.7500%" height="15" fill="rgb(223,81,13)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3519.50"></text></g><g><title>std::panicking::try (176 samples, 0.75%)</title><rect x="56.6729%" y="3493" width="0.7500%" height="15" fill="rgb(246,160,27)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3503.50"></text></g><g><title>std::panicking::try::do_call (176 samples, 0.75%)</title><rect x="56.6729%" y="3477" width="0.7500%" height="15" fill="rgb(239,114,30)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3487.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (176 samples, 0.75%)</title><rect x="56.6729%" y="3461" width="0.7500%" height="15" fill="rgb(217,197,50)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3471.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (176 samples, 0.75%)</title><rect x="56.6729%" y="3445" width="0.7500%" height="15" fill="rgb(238,43,23)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (176 samples, 0.75%)</title><rect x="56.6729%" y="3429" width="0.7500%" height="15" fill="rgb(230,94,42)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (176 samples, 0.75%)</title><rect x="56.6729%" y="3413" width="0.7500%" height="15" fill="rgb(231,213,25)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3423.50"></text></g><g><title>rayon_core::join::join_context (176 samples, 0.75%)</title><rect x="56.6729%" y="3397" width="0.7500%" height="15" fill="rgb(237,220,17)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3407.50"></text></g><g><title>rayon_core::registry::in_worker (176 samples, 0.75%)</title><rect x="56.6729%" y="3381" width="0.7500%" height="15" fill="rgb(218,31,16)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (176 samples, 0.75%)</title><rect x="56.6729%" y="3365" width="0.7500%" height="15" fill="rgb(230,64,12)" fg:x="13300" fg:w="176"/><text x="56.9229%" y="3375.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (108 samples, 0.46%)</title><rect x="56.9627%" y="3349" width="0.4602%" height="15" fill="rgb(245,131,16)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3359.50"></text></g><g><title>std::panic::catch_unwind (108 samples, 0.46%)</title><rect x="56.9627%" y="3333" width="0.4602%" height="15" fill="rgb(205,41,47)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3343.50"></text></g><g><title>std::panicking::try (108 samples, 0.46%)</title><rect x="56.9627%" y="3317" width="0.4602%" height="15" fill="rgb(233,166,3)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3327.50"></text></g><g><title>std::panicking::try::do_call (108 samples, 0.46%)</title><rect x="56.9627%" y="3301" width="0.4602%" height="15" fill="rgb(252,80,44)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3311.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (108 samples, 0.46%)</title><rect x="56.9627%" y="3285" width="0.4602%" height="15" fill="rgb(207,204,46)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (108 samples, 0.46%)</title><rect x="56.9627%" y="3269" width="0.4602%" height="15" fill="rgb(205,37,33)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (108 samples, 0.46%)</title><rect x="56.9627%" y="3253" width="0.4602%" height="15" fill="rgb(208,121,2)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (108 samples, 0.46%)</title><rect x="56.9627%" y="3237" width="0.4602%" height="15" fill="rgb(236,123,35)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3247.50"></text></g><g><title>rayon_core::join::join_context (108 samples, 0.46%)</title><rect x="56.9627%" y="3221" width="0.4602%" height="15" fill="rgb(241,8,9)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3231.50"></text></g><g><title>rayon_core::registry::in_worker (108 samples, 0.46%)</title><rect x="56.9627%" y="3205" width="0.4602%" height="15" fill="rgb(223,56,40)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (108 samples, 0.46%)</title><rect x="56.9627%" y="3189" width="0.4602%" height="15" fill="rgb(231,205,45)" fg:x="13368" fg:w="108"/><text x="57.2127%" y="3199.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (48 samples, 0.20%)</title><rect x="57.2183%" y="3173" width="0.2045%" height="15" fill="rgb(254,77,4)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3183.50"></text></g><g><title>std::panic::catch_unwind (48 samples, 0.20%)</title><rect x="57.2183%" y="3157" width="0.2045%" height="15" fill="rgb(243,163,2)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3167.50"></text></g><g><title>std::panicking::try (48 samples, 0.20%)</title><rect x="57.2183%" y="3141" width="0.2045%" height="15" fill="rgb(247,214,3)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3151.50"></text></g><g><title>std::panicking::try::do_call (48 samples, 0.20%)</title><rect x="57.2183%" y="3125" width="0.2045%" height="15" fill="rgb(244,80,13)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3135.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (48 samples, 0.20%)</title><rect x="57.2183%" y="3109" width="0.2045%" height="15" fill="rgb(208,45,51)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (48 samples, 0.20%)</title><rect x="57.2183%" y="3093" width="0.2045%" height="15" fill="rgb(245,210,37)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (48 samples, 0.20%)</title><rect x="57.2183%" y="3077" width="0.2045%" height="15" fill="rgb(230,167,42)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.20%)</title><rect x="57.2183%" y="3061" width="0.2045%" height="15" fill="rgb(243,95,45)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (48 samples, 0.20%)</title><rect x="57.2183%" y="3045" width="0.2045%" height="15" fill="rgb(225,123,26)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.20%)</title><rect x="57.2183%" y="3029" width="0.2045%" height="15" fill="rgb(210,28,52)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (48 samples, 0.20%)</title><rect x="57.2183%" y="3013" width="0.2045%" height="15" fill="rgb(213,11,28)" fg:x="13428" fg:w="48"/><text x="57.4683%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="57.3291%" y="2997" width="0.0937%" height="15" fill="rgb(246,169,8)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="57.3291%" y="2981" width="0.0937%" height="15" fill="rgb(218,58,6)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2991.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="57.3291%" y="2965" width="0.0937%" height="15" fill="rgb(217,63,13)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="57.3291%" y="2949" width="0.0937%" height="15" fill="rgb(227,51,53)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="57.3291%" y="2933" width="0.0937%" height="15" fill="rgb(252,24,32)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (22 samples, 0.09%)</title><rect x="57.3291%" y="2917" width="0.0937%" height="15" fill="rgb(253,73,29)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="57.3291%" y="2901" width="0.0937%" height="15" fill="rgb(219,100,31)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="57.3291%" y="2885" width="0.0937%" height="15" fill="rgb(248,196,27)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="57.3291%" y="2869" width="0.0937%" height="15" fill="rgb(229,109,52)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="57.3291%" y="2853" width="0.0937%" height="15" fill="rgb(211,106,38)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="57.3291%" y="2837" width="0.0937%" height="15" fill="rgb(239,222,13)" fg:x="13454" fg:w="22"/><text x="57.5791%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.3930%" y="2821" width="0.0298%" height="15" fill="rgb(226,48,34)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.3930%" y="2805" width="0.0298%" height="15" fill="rgb(234,43,4)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2815.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.3930%" y="2789" width="0.0298%" height="15" fill="rgb(211,94,3)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.3930%" y="2773" width="0.0298%" height="15" fill="rgb(207,28,21)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.3930%" y="2757" width="0.0298%" height="15" fill="rgb(218,186,46)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.3930%" y="2741" width="0.0298%" height="15" fill="rgb(224,14,12)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.3930%" y="2725" width="0.0298%" height="15" fill="rgb(253,37,9)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.3930%" y="2709" width="0.0298%" height="15" fill="rgb(211,61,41)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.3930%" y="2693" width="0.0298%" height="15" fill="rgb(232,65,12)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.3930%" y="2677" width="0.0298%" height="15" fill="rgb(221,142,6)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.3930%" y="2661" width="0.0298%" height="15" fill="rgb(217,141,44)" fg:x="13469" fg:w="7"/><text x="57.6430%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4101%" y="2645" width="0.0128%" height="15" fill="rgb(253,57,13)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4101%" y="2629" width="0.0128%" height="15" fill="rgb(217,112,10)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2639.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4101%" y="2613" width="0.0128%" height="15" fill="rgb(234,179,40)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4101%" y="2597" width="0.0128%" height="15" fill="rgb(214,72,28)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4101%" y="2581" width="0.0128%" height="15" fill="rgb(243,146,24)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4101%" y="2565" width="0.0128%" height="15" fill="rgb(253,95,5)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4101%" y="2549" width="0.0128%" height="15" fill="rgb(224,214,11)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4101%" y="2533" width="0.0128%" height="15" fill="rgb(243,97,13)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.4101%" y="2517" width="0.0128%" height="15" fill="rgb(228,28,3)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.4101%" y="2501" width="0.0128%" height="15" fill="rgb(250,65,26)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2511.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.4101%" y="2485" width="0.0128%" height="15" fill="rgb(250,204,5)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.4101%" y="2469" width="0.0128%" height="15" fill="rgb(232,85,1)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2479.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.4101%" y="2453" width="0.0128%" height="15" fill="rgb(251,226,3)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2463.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.4101%" y="2437" width="0.0128%" height="15" fill="rgb(245,73,34)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2447.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="57.4101%" y="2421" width="0.0128%" height="15" fill="rgb(214,179,40)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2431.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4101%" y="2405" width="0.0128%" height="15" fill="rgb(253,126,21)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4101%" y="2389" width="0.0128%" height="15" fill="rgb(217,149,52)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.4101%" y="2373" width="0.0128%" height="15" fill="rgb(209,35,38)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4101%" y="2357" width="0.0128%" height="15" fill="rgb(215,120,7)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2367.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.4101%" y="2341" width="0.0128%" height="15" fill="rgb(229,23,49)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2351.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="57.4101%" y="2325" width="0.0128%" height="15" fill="rgb(214,35,11)" fg:x="13473" fg:w="3"/><text x="57.6601%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.4229%" y="1109" width="0.0128%" height="15" fill="rgb(227,45,19)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1119.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4229%" y="1093" width="0.0128%" height="15" fill="rgb(233,115,18)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4229%" y="1077" width="0.0128%" height="15" fill="rgb(224,5,25)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4229%" y="1061" width="0.0128%" height="15" fill="rgb(224,72,21)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1071.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4229%" y="1045" width="0.0128%" height="15" fill="rgb(217,102,2)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4229%" y="1029" width="0.0128%" height="15" fill="rgb(250,51,46)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4229%" y="1013" width="0.0128%" height="15" fill="rgb(246,10,28)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4229%" y="997" width="0.0128%" height="15" fill="rgb(241,194,53)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="1007.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4229%" y="981" width="0.0128%" height="15" fill="rgb(227,109,27)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="991.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4229%" y="965" width="0.0128%" height="15" fill="rgb(232,115,40)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="975.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4229%" y="949" width="0.0128%" height="15" fill="rgb(229,135,47)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4229%" y="933" width="0.0128%" height="15" fill="rgb(223,3,31)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4229%" y="917" width="0.0128%" height="15" fill="rgb(250,181,28)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4229%" y="901" width="0.0128%" height="15" fill="rgb(218,156,28)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4229%" y="885" width="0.0128%" height="15" fill="rgb(241,112,0)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="895.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.4229%" y="869" width="0.0128%" height="15" fill="rgb(237,59,40)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="879.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.4229%" y="853" width="0.0128%" height="15" fill="rgb(245,71,31)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="863.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="57.4229%" y="837" width="0.0128%" height="15" fill="rgb(230,34,28)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="847.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="57.4229%" y="821" width="0.0128%" height="15" fill="rgb(253,177,20)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="831.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="57.4229%" y="805" width="0.0128%" height="15" fill="rgb(230,86,52)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="815.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="57.4229%" y="789" width="0.0128%" height="15" fill="rgb(254,4,9)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="799.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="57.4229%" y="773" width="0.0128%" height="15" fill="rgb(236,161,3)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4229%" y="757" width="0.0128%" height="15" fill="rgb(252,103,0)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="767.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="57.4229%" y="741" width="0.0128%" height="15" fill="rgb(237,145,12)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="751.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.4229%" y="725" width="0.0128%" height="15" fill="rgb(238,17,47)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="735.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4229%" y="709" width="0.0128%" height="15" fill="rgb(218,145,26)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="719.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="57.4229%" y="693" width="0.0128%" height="15" fill="rgb(237,147,6)" fg:x="13476" fg:w="3"/><text x="57.6729%" y="703.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="57.4229%" y="1221" width="0.0341%" height="15" fill="rgb(216,88,36)" fg:x="13476" fg:w="8"/><text x="57.6729%" y="1231.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="57.4229%" y="1205" width="0.0341%" height="15" fill="rgb(205,146,38)" fg:x="13476" fg:w="8"/><text x="57.6729%" y="1215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="57.4229%" y="1189" width="0.0341%" height="15" fill="rgb(206,180,33)" fg:x="13476" fg:w="8"/><text x="57.6729%" y="1199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="57.4229%" y="1173" width="0.0341%" height="15" fill="rgb(219,76,21)" fg:x="13476" fg:w="8"/><text x="57.6729%" y="1183.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="57.4229%" y="1157" width="0.0341%" height="15" fill="rgb(215,116,6)" fg:x="13476" fg:w="8"/><text x="57.6729%" y="1167.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="57.4229%" y="1141" width="0.0341%" height="15" fill="rgb(235,122,48)" fg:x="13476" fg:w="8"/><text x="57.6729%" y="1151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="57.4229%" y="1125" width="0.0341%" height="15" fill="rgb(207,156,21)" fg:x="13476" fg:w="8"/><text x="57.6729%" y="1135.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.4357%" y="1109" width="0.0213%" height="15" fill="rgb(242,135,51)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1119.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.4357%" y="1093" width="0.0213%" height="15" fill="rgb(208,210,39)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1103.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.4357%" y="1077" width="0.0213%" height="15" fill="rgb(217,227,50)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1087.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.4357%" y="1061" width="0.0213%" height="15" fill="rgb(238,21,30)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1071.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.4357%" y="1045" width="0.0213%" height="15" fill="rgb(219,136,17)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1055.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.4357%" y="1029" width="0.0213%" height="15" fill="rgb(245,149,40)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.4357%" y="1013" width="0.0213%" height="15" fill="rgb(234,142,0)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.4357%" y="997" width="0.0213%" height="15" fill="rgb(247,17,23)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="1007.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.4357%" y="981" width="0.0213%" height="15" fill="rgb(238,44,28)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.4357%" y="965" width="0.0213%" height="15" fill="rgb(232,198,12)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.4357%" y="949" width="0.0213%" height="15" fill="rgb(248,145,2)" fg:x="13479" fg:w="5"/><text x="57.6857%" y="959.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4442%" y="933" width="0.0128%" height="15" fill="rgb(242,216,14)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="943.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4442%" y="917" width="0.0128%" height="15" fill="rgb(214,171,8)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="927.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4442%" y="901" width="0.0128%" height="15" fill="rgb(248,73,48)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="911.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4442%" y="885" width="0.0128%" height="15" fill="rgb(236,62,16)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="895.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4442%" y="869" width="0.0128%" height="15" fill="rgb(215,135,27)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="879.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4442%" y="853" width="0.0128%" height="15" fill="rgb(241,71,25)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4442%" y="837" width="0.0128%" height="15" fill="rgb(210,177,49)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4442%" y="821" width="0.0128%" height="15" fill="rgb(249,199,25)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.4442%" y="805" width="0.0128%" height="15" fill="rgb(245,97,14)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="815.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.4442%" y="789" width="0.0128%" height="15" fill="rgb(227,93,6)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="799.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="57.4442%" y="773" width="0.0128%" height="15" fill="rgb(245,112,51)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="783.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="57.4442%" y="757" width="0.0128%" height="15" fill="rgb(241,222,52)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="767.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="57.4442%" y="741" width="0.0128%" height="15" fill="rgb(219,200,11)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="751.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="57.4442%" y="725" width="0.0128%" height="15" fill="rgb(230,12,29)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="735.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="57.4442%" y="709" width="0.0128%" height="15" fill="rgb(226,211,13)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="719.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4442%" y="693" width="0.0128%" height="15" fill="rgb(207,207,9)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="703.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="57.4442%" y="677" width="0.0128%" height="15" fill="rgb(237,4,1)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="687.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.4442%" y="661" width="0.0128%" height="15" fill="rgb(207,35,32)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="671.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4442%" y="645" width="0.0128%" height="15" fill="rgb(226,82,40)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="655.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="57.4442%" y="629" width="0.0128%" height="15" fill="rgb(229,154,45)" fg:x="13481" fg:w="3"/><text x="57.6942%" y="639.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="57.4229%" y="3413" width="0.0511%" height="15" fill="rgb(232,52,48)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="3397" width="0.0511%" height="15" fill="rgb(246,113,50)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="3381" width="0.0511%" height="15" fill="rgb(219,86,32)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="3365" width="0.0511%" height="15" fill="rgb(224,51,42)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3375.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="3349" width="0.0511%" height="15" fill="rgb(220,50,39)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3359.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="3333" width="0.0511%" height="15" fill="rgb(209,218,7)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="3317" width="0.0511%" height="15" fill="rgb(244,222,41)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3327.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="57.4229%" y="3301" width="0.0511%" height="15" fill="rgb(236,229,41)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3311.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="57.4229%" y="3285" width="0.0511%" height="15" fill="rgb(238,64,50)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3295.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="3269" width="0.0511%" height="15" fill="rgb(251,180,26)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3279.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="3253" width="0.0511%" height="15" fill="rgb(254,212,47)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3263.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="3237" width="0.0511%" height="15" fill="rgb(227,195,16)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3247.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="57.4229%" y="3221" width="0.0511%" height="15" fill="rgb(218,78,4)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="3205" width="0.0511%" height="15" fill="rgb(207,136,51)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3215.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="3189" width="0.0511%" height="15" fill="rgb(212,153,38)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3199.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="3173" width="0.0511%" height="15" fill="rgb(206,167,6)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3183.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="3157" width="0.0511%" height="15" fill="rgb(230,31,33)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="3141" width="0.0511%" height="15" fill="rgb(227,57,36)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3151.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="3125" width="0.0511%" height="15" fill="rgb(253,208,35)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="3109" width="0.0511%" height="15" fill="rgb(246,101,6)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="3093" width="0.0511%" height="15" fill="rgb(253,108,16)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="3077" width="0.0511%" height="15" fill="rgb(245,46,35)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="3061" width="0.0511%" height="15" fill="rgb(253,191,42)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="3045" width="0.0511%" height="15" fill="rgb(223,46,19)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="3029" width="0.0511%" height="15" fill="rgb(254,184,39)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3039.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="57.4229%" y="3013" width="0.0511%" height="15" fill="rgb(236,205,33)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2997" width="0.0511%" height="15" fill="rgb(247,13,54)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2981" width="0.0511%" height="15" fill="rgb(231,55,50)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="2965" width="0.0511%" height="15" fill="rgb(233,61,2)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="2949" width="0.0511%" height="15" fill="rgb(225,29,51)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="2933" width="0.0511%" height="15" fill="rgb(234,58,29)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2917" width="0.0511%" height="15" fill="rgb(250,31,26)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="57.4229%" y="2901" width="0.0511%" height="15" fill="rgb(221,113,51)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2885" width="0.0511%" height="15" fill="rgb(236,197,0)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2869" width="0.0511%" height="15" fill="rgb(211,169,28)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="2853" width="0.0511%" height="15" fill="rgb(208,49,5)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="2837" width="0.0511%" height="15" fill="rgb(240,155,21)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="2821" width="0.0511%" height="15" fill="rgb(253,136,16)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2805" width="0.0511%" height="15" fill="rgb(240,202,54)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="57.4229%" y="2789" width="0.0511%" height="15" fill="rgb(252,44,44)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="57.4229%" y="2773" width="0.0511%" height="15" fill="rgb(214,128,12)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2783.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="2757" width="0.0511%" height="15" fill="rgb(245,174,10)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2767.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="2741" width="0.0511%" height="15" fill="rgb(208,46,36)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2751.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="2725" width="0.0511%" height="15" fill="rgb(208,213,2)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2735.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="57.4229%" y="2709" width="0.0511%" height="15" fill="rgb(226,142,28)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2719.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="2693" width="0.0511%" height="15" fill="rgb(223,23,51)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2703.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="2677" width="0.0511%" height="15" fill="rgb(244,16,52)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2687.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="2661" width="0.0511%" height="15" fill="rgb(216,132,15)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2671.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="2645" width="0.0511%" height="15" fill="rgb(252,2,50)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2655.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="2629" width="0.0511%" height="15" fill="rgb(253,9,12)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2639.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2613" width="0.0511%" height="15" fill="rgb(242,167,14)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2623.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2597" width="0.0511%" height="15" fill="rgb(218,37,15)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2581" width="0.0511%" height="15" fill="rgb(231,22,21)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="2565" width="0.0511%" height="15" fill="rgb(239,155,32)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2575.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="2549" width="0.0511%" height="15" fill="rgb(228,196,29)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2559.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="2533" width="0.0511%" height="15" fill="rgb(235,5,20)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2517" width="0.0511%" height="15" fill="rgb(240,82,50)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="57.4229%" y="2501" width="0.0511%" height="15" fill="rgb(241,198,9)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="57.4229%" y="2485" width="0.0511%" height="15" fill="rgb(231,79,52)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="2469" width="0.0511%" height="15" fill="rgb(251,26,42)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2479.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="2453" width="0.0511%" height="15" fill="rgb(217,74,37)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2463.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="2437" width="0.0511%" height="15" fill="rgb(210,142,2)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="57.4229%" y="2421" width="0.0511%" height="15" fill="rgb(245,202,43)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2431.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="2405" width="0.0511%" height="15" fill="rgb(210,139,8)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2415.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="2389" width="0.0511%" height="15" fill="rgb(228,211,48)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2399.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="2373" width="0.0511%" height="15" fill="rgb(238,22,39)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2383.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="2357" width="0.0511%" height="15" fill="rgb(206,128,37)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2367.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="2341" width="0.0511%" height="15" fill="rgb(233,34,48)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2351.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2325" width="0.0511%" height="15" fill="rgb(234,158,30)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2309" width="0.0511%" height="15" fill="rgb(213,59,41)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2293" width="0.0511%" height="15" fill="rgb(238,51,46)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="2277" width="0.0511%" height="15" fill="rgb(238,67,42)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2287.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="2261" width="0.0511%" height="15" fill="rgb(238,189,54)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2271.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="2245" width="0.0511%" height="15" fill="rgb(235,26,39)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2229" width="0.0511%" height="15" fill="rgb(249,174,54)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="2213" width="0.0511%" height="15" fill="rgb(217,182,42)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="2197" width="0.0511%" height="15" fill="rgb(206,137,48)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2207.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="2181" width="0.0511%" height="15" fill="rgb(230,52,43)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="2165" width="0.0511%" height="15" fill="rgb(232,14,5)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="2149" width="0.0511%" height="15" fill="rgb(239,54,10)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2159.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2133" width="0.0511%" height="15" fill="rgb(241,48,31)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2117" width="0.0511%" height="15" fill="rgb(218,135,33)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="2101" width="0.0511%" height="15" fill="rgb(235,118,42)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2111.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="2085" width="0.0511%" height="15" fill="rgb(249,51,3)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2095.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="2069" width="0.0511%" height="15" fill="rgb(239,151,1)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2079.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="2053" width="0.0511%" height="15" fill="rgb(221,130,8)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (12 samples, 0.05%)</title><rect x="57.4229%" y="2037" width="0.0511%" height="15" fill="rgb(243,172,10)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2047.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="57.4229%" y="2021" width="0.0511%" height="15" fill="rgb(234,229,12)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2031.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="2005" width="0.0511%" height="15" fill="rgb(236,101,52)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="2015.50"></text></g><g><title>rayon_core::job::JobRef::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="1989" width="0.0511%" height="15" fill="rgb(208,203,53)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1999.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 0.05%)</title><rect x="57.4229%" y="1973" width="0.0511%" height="15" fill="rgb(237,75,49)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1983.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (12 samples, 0.05%)</title><rect x="57.4229%" y="1957" width="0.0511%" height="15" fill="rgb(253,33,54)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1967.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="1941" width="0.0511%" height="15" fill="rgb(211,78,34)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1951.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="1925" width="0.0511%" height="15" fill="rgb(212,220,13)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1935.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="1909" width="0.0511%" height="15" fill="rgb(250,53,43)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1919.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="1893" width="0.0511%" height="15" fill="rgb(247,154,7)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1903.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="1877" width="0.0511%" height="15" fill="rgb(244,95,22)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1887.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1861" width="0.0511%" height="15" fill="rgb(247,166,27)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1845" width="0.0511%" height="15" fill="rgb(211,222,5)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1855.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1829" width="0.0511%" height="15" fill="rgb(213,166,43)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1839.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="1813" width="0.0511%" height="15" fill="rgb(235,136,30)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1823.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="1797" width="0.0511%" height="15" fill="rgb(242,23,1)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1807.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="1781" width="0.0511%" height="15" fill="rgb(209,45,49)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1791.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1765" width="0.0511%" height="15" fill="rgb(236,58,8)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="1749" width="0.0511%" height="15" fill="rgb(246,155,46)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1759.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="1733" width="0.0511%" height="15" fill="rgb(227,158,29)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1743.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="1717" width="0.0511%" height="15" fill="rgb(240,141,1)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1727.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="1701" width="0.0511%" height="15" fill="rgb(210,15,25)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="1685" width="0.0511%" height="15" fill="rgb(219,13,48)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1695.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1669" width="0.0511%" height="15" fill="rgb(228,164,2)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1653" width="0.0511%" height="15" fill="rgb(225,83,22)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="1637" width="0.0511%" height="15" fill="rgb(246,8,34)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1647.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="1621" width="0.0511%" height="15" fill="rgb(212,29,43)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1631.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="1605" width="0.0511%" height="15" fill="rgb(224,17,8)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1615.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1589" width="0.0511%" height="15" fill="rgb(254,130,48)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1599.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="1573" width="0.0511%" height="15" fill="rgb(240,89,17)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1583.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="1557" width="0.0511%" height="15" fill="rgb(229,2,16)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1567.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="1541" width="0.0511%" height="15" fill="rgb(212,200,4)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1551.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="1525" width="0.0511%" height="15" fill="rgb(239,5,4)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1535.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="1509" width="0.0511%" height="15" fill="rgb(212,42,48)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1519.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1493" width="0.0511%" height="15" fill="rgb(215,160,33)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1477" width="0.0511%" height="15" fill="rgb(253,25,13)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="1461" width="0.0511%" height="15" fill="rgb(207,199,53)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1471.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="1445" width="0.0511%" height="15" fill="rgb(217,126,17)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1455.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="1429" width="0.0511%" height="15" fill="rgb(224,97,20)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1413" width="0.0511%" height="15" fill="rgb(242,65,13)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1423.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.4229%" y="1397" width="0.0511%" height="15" fill="rgb(215,183,10)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1407.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.4229%" y="1381" width="0.0511%" height="15" fill="rgb(227,76,3)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1391.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.4229%" y="1365" width="0.0511%" height="15" fill="rgb(253,64,29)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1375.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.4229%" y="1349" width="0.0511%" height="15" fill="rgb(223,22,5)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1359.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.4229%" y="1333" width="0.0511%" height="15" fill="rgb(238,127,20)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1343.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1317" width="0.0511%" height="15" fill="rgb(210,89,10)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1301" width="0.0511%" height="15" fill="rgb(221,22,40)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.4229%" y="1285" width="0.0511%" height="15" fill="rgb(246,31,42)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1295.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.4229%" y="1269" width="0.0511%" height="15" fill="rgb(233,187,35)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1279.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.4229%" y="1253" width="0.0511%" height="15" fill="rgb(227,205,27)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.4229%" y="1237" width="0.0511%" height="15" fill="rgb(253,168,5)" fg:x="13476" fg:w="12"/><text x="57.6729%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="57.4570%" y="1221" width="0.0170%" height="15" fill="rgb(207,224,0)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="57.4570%" y="1205" width="0.0170%" height="15" fill="rgb(233,1,33)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1215.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="57.4570%" y="1189" width="0.0170%" height="15" fill="rgb(215,7,49)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="57.4570%" y="1173" width="0.0170%" height="15" fill="rgb(223,94,28)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="57.4570%" y="1157" width="0.0170%" height="15" fill="rgb(217,80,47)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1167.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="57.4570%" y="1141" width="0.0170%" height="15" fill="rgb(232,130,13)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.4570%" y="1125" width="0.0170%" height="15" fill="rgb(239,158,26)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.4570%" y="1109" width="0.0170%" height="15" fill="rgb(251,119,20)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1119.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="57.4570%" y="1093" width="0.0170%" height="15" fill="rgb(210,141,20)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="57.4570%" y="1077" width="0.0170%" height="15" fill="rgb(212,132,46)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="57.4570%" y="1061" width="0.0170%" height="15" fill="rgb(244,82,4)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1071.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="57.4570%" y="1045" width="0.0170%" height="15" fill="rgb(208,42,35)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1055.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="57.4570%" y="1029" width="0.0170%" height="15" fill="rgb(228,42,38)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.4570%" y="1013" width="0.0170%" height="15" fill="rgb(251,89,12)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.4570%" y="997" width="0.0170%" height="15" fill="rgb(247,9,54)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="1007.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="57.4570%" y="981" width="0.0170%" height="15" fill="rgb(218,135,52)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="57.4570%" y="965" width="0.0170%" height="15" fill="rgb(252,132,49)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="57.4570%" y="949" width="0.0170%" height="15" fill="rgb(244,192,48)" fg:x="13484" fg:w="4"/><text x="57.7070%" y="959.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="57.4229%" y="3525" width="0.0554%" height="15" fill="rgb(221,142,45)" fg:x="13476" fg:w="13"/><text x="57.6729%" y="3535.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="57.4229%" y="3509" width="0.0554%" height="15" fill="rgb(248,198,30)" fg:x="13476" fg:w="13"/><text x="57.6729%" y="3519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="57.4229%" y="3493" width="0.0554%" height="15" fill="rgb(242,13,14)" fg:x="13476" fg:w="13"/><text x="57.6729%" y="3503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="57.4229%" y="3477" width="0.0554%" height="15" fill="rgb(211,100,27)" fg:x="13476" fg:w="13"/><text x="57.6729%" y="3487.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="57.4229%" y="3461" width="0.0554%" height="15" fill="rgb(253,122,12)" fg:x="13476" fg:w="13"/><text x="57.6729%" y="3471.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="57.4229%" y="3445" width="0.0554%" height="15" fill="rgb(232,221,12)" fg:x="13476" fg:w="13"/><text x="57.6729%" y="3455.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="57.4229%" y="3429" width="0.0554%" height="15" fill="rgb(235,117,51)" fg:x="13476" fg:w="13"/><text x="57.6729%" y="3439.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="57.4229%" y="3637" width="0.0682%" height="15" fill="rgb(219,102,25)" fg:x="13476" fg:w="16"/><text x="57.6729%" y="3647.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="57.4229%" y="3621" width="0.0682%" height="15" fill="rgb(254,58,23)" fg:x="13476" fg:w="16"/><text x="57.6729%" y="3631.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="57.4229%" y="3605" width="0.0682%" height="15" fill="rgb(226,128,31)" fg:x="13476" fg:w="16"/><text x="57.6729%" y="3615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="57.4229%" y="3589" width="0.0682%" height="15" fill="rgb(220,84,9)" fg:x="13476" fg:w="16"/><text x="57.6729%" y="3599.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="57.4229%" y="3573" width="0.0682%" height="15" fill="rgb(234,228,30)" fg:x="13476" fg:w="16"/><text x="57.6729%" y="3583.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="57.4229%" y="3557" width="0.0682%" height="15" fill="rgb(225,68,24)" fg:x="13476" fg:w="16"/><text x="57.6729%" y="3567.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="57.4229%" y="3541" width="0.0682%" height="15" fill="rgb(231,99,43)" fg:x="13476" fg:w="16"/><text x="57.6729%" y="3551.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="57.4783%" y="3525" width="0.0128%" height="15" fill="rgb(221,56,52)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3535.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.4783%" y="3509" width="0.0128%" height="15" fill="rgb(239,162,48)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3519.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="57.4783%" y="3493" width="0.0128%" height="15" fill="rgb(231,139,18)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3503.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="57.4783%" y="3477" width="0.0128%" height="15" fill="rgb(221,49,39)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3487.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="57.4783%" y="3461" width="0.0128%" height="15" fill="rgb(216,126,6)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3471.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="57.4783%" y="3445" width="0.0128%" height="15" fill="rgb(249,77,38)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3455.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4783%" y="3429" width="0.0128%" height="15" fill="rgb(244,48,19)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3439.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4783%" y="3413" width="0.0128%" height="15" fill="rgb(244,16,14)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3423.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4783%" y="3397" width="0.0128%" height="15" fill="rgb(239,221,1)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3407.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4783%" y="3381" width="0.0128%" height="15" fill="rgb(220,142,1)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3391.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4783%" y="3365" width="0.0128%" height="15" fill="rgb(211,84,14)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3375.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4783%" y="3349" width="0.0128%" height="15" fill="rgb(227,220,41)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4783%" y="3333" width="0.0128%" height="15" fill="rgb(206,54,37)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4783%" y="3317" width="0.0128%" height="15" fill="rgb(228,60,11)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4783%" y="3301" width="0.0128%" height="15" fill="rgb(251,170,5)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4783%" y="3285" width="0.0128%" height="15" fill="rgb(229,66,28)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4783%" y="3269" width="0.0128%" height="15" fill="rgb(244,174,44)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4783%" y="3253" width="0.0128%" height="15" fill="rgb(236,98,49)" fg:x="13489" fg:w="3"/><text x="57.7283%" y="3263.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.4996%" y="3285" width="0.0128%" height="15" fill="rgb(218,55,48)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="3269" width="0.0128%" height="15" fill="rgb(225,106,32)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="3253" width="0.0128%" height="15" fill="rgb(246,132,29)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4996%" y="3237" width="0.0128%" height="15" fill="rgb(216,116,9)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3247.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4996%" y="3221" width="0.0128%" height="15" fill="rgb(221,116,17)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3231.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4996%" y="3205" width="0.0128%" height="15" fill="rgb(233,212,36)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="3189" width="0.0128%" height="15" fill="rgb(241,107,8)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="57.4996%" y="3173" width="0.0128%" height="15" fill="rgb(231,209,45)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.4996%" y="3157" width="0.0128%" height="15" fill="rgb(242,195,42)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3167.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="57.4996%" y="3141" width="0.0128%" height="15" fill="rgb(219,50,2)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3151.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="57.4996%" y="3125" width="0.0128%" height="15" fill="rgb(243,45,19)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3135.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="57.4996%" y="3109" width="0.0128%" height="15" fill="rgb(233,142,38)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3119.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="57.4996%" y="3093" width="0.0128%" height="15" fill="rgb(214,202,36)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4996%" y="3077" width="0.0128%" height="15" fill="rgb(207,26,48)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3087.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4996%" y="3061" width="0.0128%" height="15" fill="rgb(248,133,14)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3071.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4996%" y="3045" width="0.0128%" height="15" fill="rgb(206,182,34)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3055.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4996%" y="3029" width="0.0128%" height="15" fill="rgb(223,218,11)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4996%" y="3013" width="0.0128%" height="15" fill="rgb(252,157,30)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3023.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2997" width="0.0128%" height="15" fill="rgb(213,75,47)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2981" width="0.0128%" height="15" fill="rgb(242,5,0)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2965" width="0.0128%" height="15" fill="rgb(251,9,20)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4996%" y="2949" width="0.0128%" height="15" fill="rgb(211,92,21)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4996%" y="2933" width="0.0128%" height="15" fill="rgb(227,184,49)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4996%" y="2917" width="0.0128%" height="15" fill="rgb(252,57,22)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2901" width="0.0128%" height="15" fill="rgb(244,22,36)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4996%" y="2885" width="0.0128%" height="15" fill="rgb(252,74,44)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4996%" y="2869" width="0.0128%" height="15" fill="rgb(210,134,4)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2879.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4996%" y="2853" width="0.0128%" height="15" fill="rgb(219,124,16)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4996%" y="2837" width="0.0128%" height="15" fill="rgb(247,213,29)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4996%" y="2821" width="0.0128%" height="15" fill="rgb(224,151,16)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2805" width="0.0128%" height="15" fill="rgb(226,23,53)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2789" width="0.0128%" height="15" fill="rgb(222,51,0)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4996%" y="2773" width="0.0128%" height="15" fill="rgb(223,134,23)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4996%" y="2757" width="0.0128%" height="15" fill="rgb(215,147,34)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4996%" y="2741" width="0.0128%" height="15" fill="rgb(243,5,28)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2725" width="0.0128%" height="15" fill="rgb(240,65,31)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4996%" y="2709" width="0.0128%" height="15" fill="rgb(225,11,2)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4996%" y="2693" width="0.0128%" height="15" fill="rgb(254,150,9)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2703.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4996%" y="2677" width="0.0128%" height="15" fill="rgb(229,111,39)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4996%" y="2661" width="0.0128%" height="15" fill="rgb(254,219,42)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4996%" y="2645" width="0.0128%" height="15" fill="rgb(218,129,33)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2629" width="0.0128%" height="15" fill="rgb(205,71,52)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2613" width="0.0128%" height="15" fill="rgb(205,54,41)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4996%" y="2597" width="0.0128%" height="15" fill="rgb(249,11,28)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4996%" y="2581" width="0.0128%" height="15" fill="rgb(215,3,49)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4996%" y="2565" width="0.0128%" height="15" fill="rgb(209,159,49)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2549" width="0.0128%" height="15" fill="rgb(205,108,38)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.4996%" y="2533" width="0.0128%" height="15" fill="rgb(208,164,19)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2517" width="0.0128%" height="15" fill="rgb(213,145,23)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2501" width="0.0128%" height="15" fill="rgb(239,23,31)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4996%" y="2485" width="0.0128%" height="15" fill="rgb(246,193,54)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4996%" y="2469" width="0.0128%" height="15" fill="rgb(230,204,51)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4996%" y="2453" width="0.0128%" height="15" fill="rgb(234,177,28)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2437" width="0.0128%" height="15" fill="rgb(250,193,9)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="57.4996%" y="2421" width="0.0128%" height="15" fill="rgb(228,130,1)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.4996%" y="2405" width="0.0128%" height="15" fill="rgb(215,139,27)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2415.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="57.4996%" y="2389" width="0.0128%" height="15" fill="rgb(235,218,30)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2399.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="57.4996%" y="2373" width="0.0128%" height="15" fill="rgb(245,90,3)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2383.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="57.4996%" y="2357" width="0.0128%" height="15" fill="rgb(233,200,22)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2367.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="57.4996%" y="2341" width="0.0128%" height="15" fill="rgb(215,11,34)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2351.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.4996%" y="2325" width="0.0128%" height="15" fill="rgb(221,104,6)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2335.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.4996%" y="2309" width="0.0128%" height="15" fill="rgb(209,60,7)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2319.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.4996%" y="2293" width="0.0128%" height="15" fill="rgb(245,62,48)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2303.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.4996%" y="2277" width="0.0128%" height="15" fill="rgb(233,6,0)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2287.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.4996%" y="2261" width="0.0128%" height="15" fill="rgb(217,54,2)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2271.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2245" width="0.0128%" height="15" fill="rgb(230,90,54)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2229" width="0.0128%" height="15" fill="rgb(210,219,51)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2213" width="0.0128%" height="15" fill="rgb(220,128,51)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.4996%" y="2197" width="0.0128%" height="15" fill="rgb(225,101,50)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2207.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.4996%" y="2181" width="0.0128%" height="15" fill="rgb(219,98,7)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2191.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.4996%" y="2165" width="0.0128%" height="15" fill="rgb(244,181,32)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.4996%" y="2149" width="0.0128%" height="15" fill="rgb(211,170,24)" fg:x="13494" fg:w="3"/><text x="57.7496%" y="2159.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="57.5209%" y="1893" width="0.0128%" height="15" fill="rgb(207,148,6)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.5209%" y="1877" width="0.0128%" height="15" fill="rgb(216,156,3)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1887.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="57.5209%" y="1861" width="0.0128%" height="15" fill="rgb(245,119,54)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1871.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="57.5209%" y="1845" width="0.0128%" height="15" fill="rgb(208,87,27)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1855.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="57.5209%" y="1829" width="0.0128%" height="15" fill="rgb(247,198,8)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1839.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="57.5209%" y="1813" width="0.0128%" height="15" fill="rgb(212,155,33)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1823.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.5209%" y="1797" width="0.0128%" height="15" fill="rgb(236,141,19)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1807.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.5209%" y="1781" width="0.0128%" height="15" fill="rgb(223,109,53)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1791.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.5209%" y="1765" width="0.0128%" height="15" fill="rgb(221,173,37)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1775.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.5209%" y="1749" width="0.0128%" height="15" fill="rgb(210,26,47)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1759.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.5209%" y="1733" width="0.0128%" height="15" fill="rgb(214,115,45)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1743.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1717" width="0.0128%" height="15" fill="rgb(252,70,22)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1701" width="0.0128%" height="15" fill="rgb(212,56,5)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1685" width="0.0128%" height="15" fill="rgb(217,79,22)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.5209%" y="1669" width="0.0128%" height="15" fill="rgb(207,126,34)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.5209%" y="1653" width="0.0128%" height="15" fill="rgb(208,190,16)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.5209%" y="1637" width="0.0128%" height="15" fill="rgb(234,166,29)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1621" width="0.0128%" height="15" fill="rgb(241,100,2)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.5209%" y="1605" width="0.0128%" height="15" fill="rgb(213,225,40)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.5209%" y="1589" width="0.0128%" height="15" fill="rgb(243,24,29)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1599.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.5209%" y="1573" width="0.0128%" height="15" fill="rgb(223,51,44)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.5209%" y="1557" width="0.0128%" height="15" fill="rgb(208,120,3)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.5209%" y="1541" width="0.0128%" height="15" fill="rgb(219,219,48)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1525" width="0.0128%" height="15" fill="rgb(244,162,16)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1509" width="0.0128%" height="15" fill="rgb(211,135,3)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.5209%" y="1493" width="0.0128%" height="15" fill="rgb(206,91,28)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1503.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.5209%" y="1477" width="0.0128%" height="15" fill="rgb(229,224,47)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1487.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.5209%" y="1461" width="0.0128%" height="15" fill="rgb(228,215,25)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1471.50"></text></g><g><title><rayon::iter::reduce::ReduceFolder<R,T> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.5209%" y="1445" width="0.0128%" height="15" fill="rgb(227,17,11)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1455.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.5209%" y="1429" width="0.0128%" height="15" fill="rgb(248,42,40)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1439.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (3 samples, 0.01%)</title><rect x="57.5209%" y="1413" width="0.0128%" height="15" fill="rgb(209,22,34)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1423.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1397" width="0.0128%" height="15" fill="rgb(242,169,37)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1407.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1381" width="0.0128%" height="15" fill="rgb(218,115,17)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1391.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.5209%" y="1365" width="0.0128%" height="15" fill="rgb(240,185,16)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1375.50"></text></g><g><title>criterion::stats::univariate::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5209%" y="1349" width="0.0128%" height="15" fill="rgb(212,92,35)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1359.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.5209%" y="1333" width="0.0128%" height="15" fill="rgb(243,187,6)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1343.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="57.5209%" y="1317" width="0.0128%" height="15" fill="rgb(251,80,5)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1327.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.5209%" y="1301" width="0.0128%" height="15" fill="rgb(228,125,14)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1311.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.5209%" y="1285" width="0.0128%" height="15" fill="rgb(242,175,0)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1295.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.5209%" y="1269" width="0.0128%" height="15" fill="rgb(249,184,37)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1279.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.5209%" y="1253" width="0.0128%" height="15" fill="rgb(236,155,24)" fg:x="13499" fg:w="3"/><text x="57.7709%" y="1263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="57.5209%" y="2357" width="0.0298%" height="15" fill="rgb(210,96,15)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="57.5209%" y="2341" width="0.0298%" height="15" fill="rgb(226,94,15)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="57.5209%" y="2325" width="0.0298%" height="15" fill="rgb(242,115,0)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="57.5209%" y="2309" width="0.0298%" height="15" fill="rgb(225,11,43)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="57.5209%" y="2293" width="0.0298%" height="15" fill="rgb(209,190,24)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="57.5209%" y="2277" width="0.0298%" height="15" fill="rgb(211,229,45)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.5209%" y="2261" width="0.0298%" height="15" fill="rgb(209,18,6)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.5209%" y="2245" width="0.0298%" height="15" fill="rgb(209,64,1)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2255.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.5209%" y="2229" width="0.0298%" height="15" fill="rgb(222,127,12)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.5209%" y="2213" width="0.0298%" height="15" fill="rgb(234,41,7)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.5209%" y="2197" width="0.0298%" height="15" fill="rgb(242,79,40)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5209%" y="2181" width="0.0298%" height="15" fill="rgb(238,129,12)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5209%" y="2165" width="0.0298%" height="15" fill="rgb(215,157,1)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5209%" y="2149" width="0.0298%" height="15" fill="rgb(252,155,45)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.5209%" y="2133" width="0.0298%" height="15" fill="rgb(223,188,37)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.5209%" y="2117" width="0.0298%" height="15" fill="rgb(233,201,31)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.5209%" y="2101" width="0.0298%" height="15" fill="rgb(226,221,24)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5209%" y="2085" width="0.0298%" height="15" fill="rgb(238,170,26)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2095.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.5209%" y="2069" width="0.0298%" height="15" fill="rgb(236,83,45)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2079.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.5209%" y="2053" width="0.0298%" height="15" fill="rgb(206,194,32)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2063.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.5209%" y="2037" width="0.0298%" height="15" fill="rgb(238,220,33)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2047.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.5209%" y="2021" width="0.0298%" height="15" fill="rgb(252,214,27)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2031.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.5209%" y="2005" width="0.0298%" height="15" fill="rgb(237,51,12)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="2015.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5209%" y="1989" width="0.0298%" height="15" fill="rgb(222,209,40)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5209%" y="1973" width="0.0298%" height="15" fill="rgb(229,139,44)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="1983.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.5209%" y="1957" width="0.0298%" height="15" fill="rgb(219,207,36)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="1967.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.5209%" y="1941" width="0.0298%" height="15" fill="rgb(229,16,51)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="1951.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.5209%" y="1925" width="0.0298%" height="15" fill="rgb(210,205,39)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="1935.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5209%" y="1909" width="0.0298%" height="15" fill="rgb(212,163,41)" fg:x="13499" fg:w="7"/><text x="57.7709%" y="1919.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="57.5337%" y="1893" width="0.0170%" height="15" fill="rgb(213,96,31)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1903.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="57.5337%" y="1877" width="0.0170%" height="15" fill="rgb(224,133,41)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1887.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="57.5337%" y="1861" width="0.0170%" height="15" fill="rgb(208,20,4)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1871.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="57.5337%" y="1845" width="0.0170%" height="15" fill="rgb(236,198,37)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1855.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="57.5337%" y="1829" width="0.0170%" height="15" fill="rgb(205,62,42)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="57.5337%" y="1813" width="0.0170%" height="15" fill="rgb(233,70,27)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1823.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.5337%" y="1797" width="0.0170%" height="15" fill="rgb(220,151,19)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1807.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.5337%" y="1781" width="0.0170%" height="15" fill="rgb(220,38,49)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1791.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="57.5337%" y="1765" width="0.0170%" height="15" fill="rgb(229,63,41)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1775.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="57.5337%" y="1749" width="0.0170%" height="15" fill="rgb(225,167,18)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="57.5337%" y="1733" width="0.0170%" height="15" fill="rgb(207,192,0)" fg:x="13502" fg:w="4"/><text x="57.7837%" y="1743.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="57.5209%" y="3109" width="0.0341%" height="15" fill="rgb(240,213,53)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3119.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="57.5209%" y="3093" width="0.0341%" height="15" fill="rgb(210,78,32)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3103.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="57.5209%" y="3077" width="0.0341%" height="15" fill="rgb(253,224,33)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3087.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="57.5209%" y="3061" width="0.0341%" height="15" fill="rgb(229,48,6)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3071.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="57.5209%" y="3045" width="0.0341%" height="15" fill="rgb(215,221,49)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3055.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="57.5209%" y="3029" width="0.0341%" height="15" fill="rgb(254,146,25)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="57.5209%" y="3013" width="0.0341%" height="15" fill="rgb(241,47,14)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="57.5209%" y="2997" width="0.0341%" height="15" fill="rgb(226,196,6)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="3007.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="57.5209%" y="2981" width="0.0341%" height="15" fill="rgb(213,142,26)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="57.5209%" y="2965" width="0.0341%" height="15" fill="rgb(251,29,46)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="57.5209%" y="2949" width="0.0341%" height="15" fill="rgb(237,110,37)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2959.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2933" width="0.0341%" height="15" fill="rgb(220,127,11)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2917" width="0.0341%" height="15" fill="rgb(218,188,49)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2901" width="0.0341%" height="15" fill="rgb(243,73,38)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="57.5209%" y="2885" width="0.0341%" height="15" fill="rgb(246,41,25)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="57.5209%" y="2869" width="0.0341%" height="15" fill="rgb(214,27,35)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="57.5209%" y="2853" width="0.0341%" height="15" fill="rgb(228,88,9)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2837" width="0.0341%" height="15" fill="rgb(224,46,46)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (8 samples, 0.03%)</title><rect x="57.5209%" y="2821" width="0.0341%" height="15" fill="rgb(235,14,51)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="57.5209%" y="2805" width="0.0341%" height="15" fill="rgb(229,82,32)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2815.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (8 samples, 0.03%)</title><rect x="57.5209%" y="2789" width="0.0341%" height="15" fill="rgb(239,211,50)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2799.50"></text></g><g><title>rayon_core::job::JobRef::execute (8 samples, 0.03%)</title><rect x="57.5209%" y="2773" width="0.0341%" height="15" fill="rgb(248,175,20)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2783.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (8 samples, 0.03%)</title><rect x="57.5209%" y="2757" width="0.0341%" height="15" fill="rgb(227,2,52)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (8 samples, 0.03%)</title><rect x="57.5209%" y="2741" width="0.0341%" height="15" fill="rgb(218,21,9)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2751.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="57.5209%" y="2725" width="0.0341%" height="15" fill="rgb(239,165,0)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2735.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="57.5209%" y="2709" width="0.0341%" height="15" fill="rgb(246,95,52)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2719.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="57.5209%" y="2693" width="0.0341%" height="15" fill="rgb(215,132,31)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2703.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="57.5209%" y="2677" width="0.0341%" height="15" fill="rgb(246,11,46)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2687.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="57.5209%" y="2661" width="0.0341%" height="15" fill="rgb(248,207,39)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2671.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2645" width="0.0341%" height="15" fill="rgb(218,195,39)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2629" width="0.0341%" height="15" fill="rgb(218,166,20)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2613" width="0.0341%" height="15" fill="rgb(220,146,10)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="57.5209%" y="2597" width="0.0341%" height="15" fill="rgb(212,169,32)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="57.5209%" y="2581" width="0.0341%" height="15" fill="rgb(231,149,29)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="57.5209%" y="2565" width="0.0341%" height="15" fill="rgb(214,74,0)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2549" width="0.0341%" height="15" fill="rgb(224,117,45)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2559.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="57.5209%" y="2533" width="0.0341%" height="15" fill="rgb(226,66,22)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2543.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="57.5209%" y="2517" width="0.0341%" height="15" fill="rgb(250,39,37)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2527.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="57.5209%" y="2501" width="0.0341%" height="15" fill="rgb(214,188,6)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2511.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="57.5209%" y="2485" width="0.0341%" height="15" fill="rgb(238,32,21)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2495.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="57.5209%" y="2469" width="0.0341%" height="15" fill="rgb(218,67,25)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2453" width="0.0341%" height="15" fill="rgb(239,17,44)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2437" width="0.0341%" height="15" fill="rgb(223,17,48)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="57.5209%" y="2421" width="0.0341%" height="15" fill="rgb(242,28,46)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="57.5209%" y="2405" width="0.0341%" height="15" fill="rgb(237,152,52)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="57.5209%" y="2389" width="0.0341%" height="15" fill="rgb(234,8,50)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="57.5209%" y="2373" width="0.0341%" height="15" fill="rgb(205,192,45)" fg:x="13499" fg:w="8"/><text x="57.7709%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="57.5550%" y="2933" width="0.0213%" height="15" fill="rgb(242,180,3)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="57.5550%" y="2917" width="0.0213%" height="15" fill="rgb(250,178,26)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2927.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="57.5550%" y="2901" width="0.0213%" height="15" fill="rgb(237,176,51)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2911.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="57.5550%" y="2885" width="0.0213%" height="15" fill="rgb(211,29,41)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2895.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="57.5550%" y="2869" width="0.0213%" height="15" fill="rgb(224,64,37)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2879.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="57.5550%" y="2853" width="0.0213%" height="15" fill="rgb(242,208,53)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.5550%" y="2837" width="0.0213%" height="15" fill="rgb(234,67,13)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.5550%" y="2821" width="0.0213%" height="15" fill="rgb(230,189,8)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2831.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.5550%" y="2805" width="0.0213%" height="15" fill="rgb(216,75,11)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.5550%" y="2789" width="0.0213%" height="15" fill="rgb(240,46,16)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.5550%" y="2773" width="0.0213%" height="15" fill="rgb(246,79,42)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2783.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2757" width="0.0213%" height="15" fill="rgb(208,142,35)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2741" width="0.0213%" height="15" fill="rgb(226,100,35)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2725" width="0.0213%" height="15" fill="rgb(213,102,26)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.5550%" y="2709" width="0.0213%" height="15" fill="rgb(231,50,14)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.5550%" y="2693" width="0.0213%" height="15" fill="rgb(242,44,48)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.5550%" y="2677" width="0.0213%" height="15" fill="rgb(248,18,6)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2661" width="0.0213%" height="15" fill="rgb(244,185,32)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="57.5550%" y="2645" width="0.0213%" height="15" fill="rgb(244,27,16)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="57.5550%" y="2629" width="0.0213%" height="15" fill="rgb(206,158,21)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="57.5550%" y="2613" width="0.0213%" height="15" fill="rgb(206,65,32)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="57.5550%" y="2597" width="0.0213%" height="15" fill="rgb(227,193,4)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="57.5550%" y="2581" width="0.0213%" height="15" fill="rgb(228,89,34)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="57.5550%" y="2565" width="0.0213%" height="15" fill="rgb(233,155,0)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.5550%" y="2549" width="0.0213%" height="15" fill="rgb(221,48,49)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.5550%" y="2533" width="0.0213%" height="15" fill="rgb(240,202,42)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2543.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.5550%" y="2517" width="0.0213%" height="15" fill="rgb(243,71,26)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.5550%" y="2501" width="0.0213%" height="15" fill="rgb(226,213,30)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.5550%" y="2485" width="0.0213%" height="15" fill="rgb(241,75,17)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2469" width="0.0213%" height="15" fill="rgb(218,111,19)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2453" width="0.0213%" height="15" fill="rgb(227,138,47)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2437" width="0.0213%" height="15" fill="rgb(222,16,48)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.5550%" y="2421" width="0.0213%" height="15" fill="rgb(217,108,34)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.5550%" y="2405" width="0.0213%" height="15" fill="rgb(233,37,53)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.5550%" y="2389" width="0.0213%" height="15" fill="rgb(236,52,10)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2373" width="0.0213%" height="15" fill="rgb(240,2,28)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2383.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.5550%" y="2357" width="0.0213%" height="15" fill="rgb(209,222,20)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2367.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.5550%" y="2341" width="0.0213%" height="15" fill="rgb(222,12,40)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2351.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.5550%" y="2325" width="0.0213%" height="15" fill="rgb(226,224,51)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2335.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.5550%" y="2309" width="0.0213%" height="15" fill="rgb(248,96,12)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2319.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.5550%" y="2293" width="0.0213%" height="15" fill="rgb(205,167,3)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2303.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2277" width="0.0213%" height="15" fill="rgb(231,3,17)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2261" width="0.0213%" height="15" fill="rgb(247,111,17)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.5550%" y="2245" width="0.0213%" height="15" fill="rgb(217,55,0)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2255.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.5550%" y="2229" width="0.0213%" height="15" fill="rgb(208,108,42)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2239.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.5550%" y="2213" width="0.0213%" height="15" fill="rgb(234,179,53)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2223.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2197" width="0.0213%" height="15" fill="rgb(206,58,43)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2207.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.5550%" y="2181" width="0.0213%" height="15" fill="rgb(242,189,24)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2191.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.5550%" y="2165" width="0.0213%" height="15" fill="rgb(227,59,30)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2175.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.5550%" y="2149" width="0.0213%" height="15" fill="rgb(212,106,50)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2159.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.5550%" y="2133" width="0.0213%" height="15" fill="rgb(210,186,36)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2143.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.5550%" y="2117" width="0.0213%" height="15" fill="rgb(213,102,11)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2101" width="0.0213%" height="15" fill="rgb(229,86,18)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2085" width="0.0213%" height="15" fill="rgb(224,114,33)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.5550%" y="2069" width="0.0213%" height="15" fill="rgb(241,37,50)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.5550%" y="2053" width="0.0213%" height="15" fill="rgb(229,228,15)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.5550%" y="2037" width="0.0213%" height="15" fill="rgb(223,93,33)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5550%" y="2021" width="0.0213%" height="15" fill="rgb(236,175,6)" fg:x="13507" fg:w="5"/><text x="57.8050%" y="2031.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.5635%" y="2005" width="0.0128%" height="15" fill="rgb(209,73,50)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="2015.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.5635%" y="1989" width="0.0128%" height="15" fill="rgb(241,73,20)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1999.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.5635%" y="1973" width="0.0128%" height="15" fill="rgb(228,43,11)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1983.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.5635%" y="1957" width="0.0128%" height="15" fill="rgb(215,22,4)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1967.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.5635%" y="1941" width="0.0128%" height="15" fill="rgb(208,21,3)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5635%" y="1925" width="0.0128%" height="15" fill="rgb(219,122,32)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1935.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5635%" y="1909" width="0.0128%" height="15" fill="rgb(253,132,23)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1919.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.5635%" y="1893" width="0.0128%" height="15" fill="rgb(223,60,34)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1903.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.5635%" y="1877" width="0.0128%" height="15" fill="rgb(211,19,14)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1887.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.5635%" y="1861" width="0.0128%" height="15" fill="rgb(228,225,15)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1871.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5635%" y="1845" width="0.0128%" height="15" fill="rgb(206,54,48)" fg:x="13509" fg:w="3"/><text x="57.8135%" y="1855.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (285 samples, 1.21%)</title><rect x="56.3661%" y="3829" width="1.2144%" height="15" fill="rgb(237,78,21)" fg:x="13228" fg:w="285"/><text x="56.6161%" y="3839.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (37 samples, 0.16%)</title><rect x="57.4229%" y="3813" width="0.1577%" height="15" fill="rgb(240,85,50)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3823.50"></text></g><g><title>std::panic::catch_unwind (37 samples, 0.16%)</title><rect x="57.4229%" y="3797" width="0.1577%" height="15" fill="rgb(207,4,12)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3807.50"></text></g><g><title>std::panicking::try (37 samples, 0.16%)</title><rect x="57.4229%" y="3781" width="0.1577%" height="15" fill="rgb(211,213,46)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3791.50"></text></g><g><title>std::panicking::try::do_call (37 samples, 0.16%)</title><rect x="57.4229%" y="3765" width="0.1577%" height="15" fill="rgb(225,68,28)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3775.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (37 samples, 0.16%)</title><rect x="57.4229%" y="3749" width="0.1577%" height="15" fill="rgb(234,174,30)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3759.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (37 samples, 0.16%)</title><rect x="57.4229%" y="3733" width="0.1577%" height="15" fill="rgb(246,119,16)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (37 samples, 0.16%)</title><rect x="57.4229%" y="3717" width="0.1577%" height="15" fill="rgb(218,77,49)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.16%)</title><rect x="57.4229%" y="3701" width="0.1577%" height="15" fill="rgb(205,209,45)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3711.50"></text></g><g><title>rayon_core::join::join_context (37 samples, 0.16%)</title><rect x="57.4229%" y="3685" width="0.1577%" height="15" fill="rgb(238,200,33)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3695.50"></text></g><g><title>rayon_core::registry::in_worker (37 samples, 0.16%)</title><rect x="57.4229%" y="3669" width="0.1577%" height="15" fill="rgb(234,181,11)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (37 samples, 0.16%)</title><rect x="57.4229%" y="3653" width="0.1577%" height="15" fill="rgb(207,208,40)" fg:x="13476" fg:w="37"/><text x="57.6729%" y="3663.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (21 samples, 0.09%)</title><rect x="57.4911%" y="3637" width="0.0895%" height="15" fill="rgb(252,42,7)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3647.50"></text></g><g><title>std::panic::catch_unwind (21 samples, 0.09%)</title><rect x="57.4911%" y="3621" width="0.0895%" height="15" fill="rgb(216,70,9)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3631.50"></text></g><g><title>std::panicking::try (21 samples, 0.09%)</title><rect x="57.4911%" y="3605" width="0.0895%" height="15" fill="rgb(238,69,42)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3615.50"></text></g><g><title>std::panicking::try::do_call (21 samples, 0.09%)</title><rect x="57.4911%" y="3589" width="0.0895%" height="15" fill="rgb(227,139,42)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3599.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (21 samples, 0.09%)</title><rect x="57.4911%" y="3573" width="0.0895%" height="15" fill="rgb(226,159,46)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3583.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (21 samples, 0.09%)</title><rect x="57.4911%" y="3557" width="0.0895%" height="15" fill="rgb(222,164,0)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="57.4911%" y="3541" width="0.0895%" height="15" fill="rgb(216,201,33)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="57.4911%" y="3525" width="0.0895%" height="15" fill="rgb(227,102,1)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3535.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="57.4911%" y="3509" width="0.0895%" height="15" fill="rgb(218,178,8)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3519.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="57.4911%" y="3493" width="0.0895%" height="15" fill="rgb(217,116,44)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="57.4911%" y="3477" width="0.0895%" height="15" fill="rgb(218,6,0)" fg:x="13492" fg:w="21"/><text x="57.7411%" y="3487.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="57.4996%" y="3461" width="0.0810%" height="15" fill="rgb(227,157,39)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3471.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="57.4996%" y="3445" width="0.0810%" height="15" fill="rgb(208,106,36)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3455.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="57.4996%" y="3429" width="0.0810%" height="15" fill="rgb(232,93,50)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3439.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="57.4996%" y="3413" width="0.0810%" height="15" fill="rgb(218,60,25)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3423.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="57.4996%" y="3397" width="0.0810%" height="15" fill="rgb(218,207,6)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3407.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="57.4996%" y="3381" width="0.0810%" height="15" fill="rgb(218,210,51)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="57.4996%" y="3365" width="0.0810%" height="15" fill="rgb(233,100,3)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="57.4996%" y="3349" width="0.0810%" height="15" fill="rgb(222,191,9)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3359.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="57.4996%" y="3333" width="0.0810%" height="15" fill="rgb(242,92,43)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3343.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="57.4996%" y="3317" width="0.0810%" height="15" fill="rgb(245,69,47)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3327.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="57.4996%" y="3301" width="0.0810%" height="15" fill="rgb(251,179,33)" fg:x="13494" fg:w="19"/><text x="57.7496%" y="3311.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (14 samples, 0.06%)</title><rect x="57.5209%" y="3285" width="0.0597%" height="15" fill="rgb(254,38,4)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3295.50"></text></g><g><title>std::panic::catch_unwind (14 samples, 0.06%)</title><rect x="57.5209%" y="3269" width="0.0597%" height="15" fill="rgb(227,96,43)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3279.50"></text></g><g><title>std::panicking::try (14 samples, 0.06%)</title><rect x="57.5209%" y="3253" width="0.0597%" height="15" fill="rgb(236,159,27)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3263.50"></text></g><g><title>std::panicking::try::do_call (14 samples, 0.06%)</title><rect x="57.5209%" y="3237" width="0.0597%" height="15" fill="rgb(218,156,51)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3247.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (14 samples, 0.06%)</title><rect x="57.5209%" y="3221" width="0.0597%" height="15" fill="rgb(213,135,31)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (14 samples, 0.06%)</title><rect x="57.5209%" y="3205" width="0.0597%" height="15" fill="rgb(247,186,22)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="57.5209%" y="3189" width="0.0597%" height="15" fill="rgb(250,183,8)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="57.5209%" y="3173" width="0.0597%" height="15" fill="rgb(231,104,30)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3183.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="57.5209%" y="3157" width="0.0597%" height="15" fill="rgb(215,142,53)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3167.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="57.5209%" y="3141" width="0.0597%" height="15" fill="rgb(231,162,30)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="57.5209%" y="3125" width="0.0597%" height="15" fill="rgb(237,203,33)" fg:x="13499" fg:w="14"/><text x="57.7709%" y="3135.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="57.5550%" y="3109" width="0.0256%" height="15" fill="rgb(245,73,15)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3119.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="57.5550%" y="3093" width="0.0256%" height="15" fill="rgb(215,229,8)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3103.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="57.5550%" y="3077" width="0.0256%" height="15" fill="rgb(229,27,34)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3087.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="57.5550%" y="3061" width="0.0256%" height="15" fill="rgb(254,58,33)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3071.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="57.5550%" y="3045" width="0.0256%" height="15" fill="rgb(219,182,3)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="57.5550%" y="3029" width="0.0256%" height="15" fill="rgb(252,33,18)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="57.5550%" y="3013" width="0.0256%" height="15" fill="rgb(218,27,20)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="57.5550%" y="2997" width="0.0256%" height="15" fill="rgb(240,21,47)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="57.5550%" y="2981" width="0.0256%" height="15" fill="rgb(215,176,13)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="57.5550%" y="2965" width="0.0256%" height="15" fill="rgb(249,46,2)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="57.5550%" y="2949" width="0.0256%" height="15" fill="rgb(219,33,19)" fg:x="13507" fg:w="6"/><text x="57.8050%" y="2959.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.5891%" y="2117" width="0.0128%" height="15" fill="rgb(226,138,25)" fg:x="13515" fg:w="3"/><text x="57.8391%" y="2127.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5891%" y="2101" width="0.0128%" height="15" fill="rgb(227,51,28)" fg:x="13515" fg:w="3"/><text x="57.8391%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5891%" y="2085" width="0.0128%" height="15" fill="rgb(226,221,7)" fg:x="13515" fg:w="3"/><text x="57.8391%" y="2095.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.5891%" y="2069" width="0.0128%" height="15" fill="rgb(234,127,48)" fg:x="13515" fg:w="3"/><text x="57.8391%" y="2079.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.5891%" y="2053" width="0.0128%" height="15" fill="rgb(234,117,48)" fg:x="13515" fg:w="3"/><text x="57.8391%" y="2063.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.5891%" y="2037" width="0.0128%" height="15" fill="rgb(244,95,21)" fg:x="13515" fg:w="3"/><text x="57.8391%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.5891%" y="2021" width="0.0128%" height="15" fill="rgb(223,166,37)" fg:x="13515" fg:w="3"/><text x="57.8391%" y="2031.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="57.5805%" y="3045" width="0.0298%" height="15" fill="rgb(217,33,1)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="3029" width="0.0298%" height="15" fill="rgb(244,116,19)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="3013" width="0.0298%" height="15" fill="rgb(251,79,44)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.5805%" y="2997" width="0.0298%" height="15" fill="rgb(209,215,22)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.5805%" y="2981" width="0.0298%" height="15" fill="rgb(208,221,13)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.5805%" y="2965" width="0.0298%" height="15" fill="rgb(229,28,49)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2949" width="0.0298%" height="15" fill="rgb(246,119,0)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (7 samples, 0.03%)</title><rect x="57.5805%" y="2933" width="0.0298%" height="15" fill="rgb(240,165,40)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="57.5805%" y="2917" width="0.0298%" height="15" fill="rgb(231,136,37)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2927.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (7 samples, 0.03%)</title><rect x="57.5805%" y="2901" width="0.0298%" height="15" fill="rgb(226,162,27)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2911.50"></text></g><g><title>rayon_core::job::JobRef::execute (7 samples, 0.03%)</title><rect x="57.5805%" y="2885" width="0.0298%" height="15" fill="rgb(218,224,48)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2895.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (7 samples, 0.03%)</title><rect x="57.5805%" y="2869" width="0.0298%" height="15" fill="rgb(205,177,51)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2879.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (7 samples, 0.03%)</title><rect x="57.5805%" y="2853" width="0.0298%" height="15" fill="rgb(210,109,37)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.5805%" y="2837" width="0.0298%" height="15" fill="rgb(242,72,49)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.5805%" y="2821" width="0.0298%" height="15" fill="rgb(246,151,44)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2831.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.5805%" y="2805" width="0.0298%" height="15" fill="rgb(223,159,32)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.5805%" y="2789" width="0.0298%" height="15" fill="rgb(219,123,26)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.5805%" y="2773" width="0.0298%" height="15" fill="rgb(241,100,30)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2783.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2757" width="0.0298%" height="15" fill="rgb(227,8,49)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2741" width="0.0298%" height="15" fill="rgb(252,143,47)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2725" width="0.0298%" height="15" fill="rgb(218,202,18)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.5805%" y="2709" width="0.0298%" height="15" fill="rgb(208,171,25)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.5805%" y="2693" width="0.0298%" height="15" fill="rgb(231,170,49)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.5805%" y="2677" width="0.0298%" height="15" fill="rgb(241,103,20)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2661" width="0.0298%" height="15" fill="rgb(234,107,51)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.5805%" y="2645" width="0.0298%" height="15" fill="rgb(207,165,10)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.5805%" y="2629" width="0.0298%" height="15" fill="rgb(209,46,17)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2639.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.5805%" y="2613" width="0.0298%" height="15" fill="rgb(228,225,12)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.5805%" y="2597" width="0.0298%" height="15" fill="rgb(225,199,28)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.5805%" y="2581" width="0.0298%" height="15" fill="rgb(224,41,4)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2565" width="0.0298%" height="15" fill="rgb(254,75,41)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2549" width="0.0298%" height="15" fill="rgb(222,176,1)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.5805%" y="2533" width="0.0298%" height="15" fill="rgb(237,147,30)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2543.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.5805%" y="2517" width="0.0298%" height="15" fill="rgb(218,5,45)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2527.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.5805%" y="2501" width="0.0298%" height="15" fill="rgb(244,79,47)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2485" width="0.0298%" height="15" fill="rgb(244,83,45)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2495.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.5805%" y="2469" width="0.0298%" height="15" fill="rgb(254,191,27)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2479.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.5805%" y="2453" width="0.0298%" height="15" fill="rgb(248,87,37)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2463.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.5805%" y="2437" width="0.0298%" height="15" fill="rgb(234,91,14)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2447.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.5805%" y="2421" width="0.0298%" height="15" fill="rgb(226,127,13)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2431.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.5805%" y="2405" width="0.0298%" height="15" fill="rgb(245,14,53)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2389" width="0.0298%" height="15" fill="rgb(239,194,6)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2373" width="0.0298%" height="15" fill="rgb(248,52,54)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.5805%" y="2357" width="0.0298%" height="15" fill="rgb(238,121,32)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2367.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.5805%" y="2341" width="0.0298%" height="15" fill="rgb(206,13,0)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2351.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.5805%" y="2325" width="0.0298%" height="15" fill="rgb(205,98,15)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.5805%" y="2309" width="0.0298%" height="15" fill="rgb(227,94,42)" fg:x="13513" fg:w="7"/><text x="57.8305%" y="2319.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.5891%" y="2293" width="0.0213%" height="15" fill="rgb(238,167,53)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2303.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.5891%" y="2277" width="0.0213%" height="15" fill="rgb(216,105,15)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2287.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.5891%" y="2261" width="0.0213%" height="15" fill="rgb(208,120,52)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2271.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.5891%" y="2245" width="0.0213%" height="15" fill="rgb(247,85,15)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2255.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.5891%" y="2229" width="0.0213%" height="15" fill="rgb(252,151,44)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5891%" y="2213" width="0.0213%" height="15" fill="rgb(205,207,31)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5891%" y="2197" width="0.0213%" height="15" fill="rgb(233,168,14)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.5891%" y="2181" width="0.0213%" height="15" fill="rgb(219,86,28)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2191.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.5891%" y="2165" width="0.0213%" height="15" fill="rgb(215,54,53)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2175.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.5891%" y="2149" width="0.0213%" height="15" fill="rgb(205,113,14)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2159.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.5891%" y="2133" width="0.0213%" height="15" fill="rgb(236,57,32)" fg:x="13515" fg:w="5"/><text x="57.8391%" y="2143.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="57.5805%" y="3157" width="0.0426%" height="15" fill="rgb(239,175,9)" fg:x="13513" fg:w="10"/><text x="57.8305%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="57.5805%" y="3141" width="0.0426%" height="15" fill="rgb(236,84,30)" fg:x="13513" fg:w="10"/><text x="57.8305%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="57.5805%" y="3125" width="0.0426%" height="15" fill="rgb(218,106,35)" fg:x="13513" fg:w="10"/><text x="57.8305%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="57.5805%" y="3109" width="0.0426%" height="15" fill="rgb(221,219,14)" fg:x="13513" fg:w="10"/><text x="57.8305%" y="3119.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="57.5805%" y="3093" width="0.0426%" height="15" fill="rgb(234,154,34)" fg:x="13513" fg:w="10"/><text x="57.8305%" y="3103.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="57.5805%" y="3077" width="0.0426%" height="15" fill="rgb(247,43,17)" fg:x="13513" fg:w="10"/><text x="57.8305%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="57.5805%" y="3061" width="0.0426%" height="15" fill="rgb(224,126,14)" fg:x="13513" fg:w="10"/><text x="57.8305%" y="3071.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.6104%" y="3045" width="0.0128%" height="15" fill="rgb(217,89,13)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="3055.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.6104%" y="3029" width="0.0128%" height="15" fill="rgb(251,164,19)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="3039.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.6104%" y="3013" width="0.0128%" height="15" fill="rgb(244,63,39)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="3023.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.6104%" y="2997" width="0.0128%" height="15" fill="rgb(213,177,30)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="3007.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.6104%" y="2981" width="0.0128%" height="15" fill="rgb(225,140,7)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6104%" y="2965" width="0.0128%" height="15" fill="rgb(236,115,47)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6104%" y="2949" width="0.0128%" height="15" fill="rgb(236,24,50)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6104%" y="2933" width="0.0128%" height="15" fill="rgb(234,108,28)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="2943.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6104%" y="2917" width="0.0128%" height="15" fill="rgb(226,115,3)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="2927.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6104%" y="2901" width="0.0128%" height="15" fill="rgb(241,86,17)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6104%" y="2885" width="0.0128%" height="15" fill="rgb(220,51,54)" fg:x="13520" fg:w="3"/><text x="57.8604%" y="2895.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="57.5805%" y="3269" width="0.0511%" height="15" fill="rgb(233,134,37)" fg:x="13513" fg:w="12"/><text x="57.8305%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.5805%" y="3253" width="0.0511%" height="15" fill="rgb(210,137,29)" fg:x="13513" fg:w="12"/><text x="57.8305%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.5805%" y="3237" width="0.0511%" height="15" fill="rgb(219,127,51)" fg:x="13513" fg:w="12"/><text x="57.8305%" y="3247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.5805%" y="3221" width="0.0511%" height="15" fill="rgb(225,198,19)" fg:x="13513" fg:w="12"/><text x="57.8305%" y="3231.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.5805%" y="3205" width="0.0511%" height="15" fill="rgb(247,179,44)" fg:x="13513" fg:w="12"/><text x="57.8305%" y="3215.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.5805%" y="3189" width="0.0511%" height="15" fill="rgb(231,6,13)" fg:x="13513" fg:w="12"/><text x="57.8305%" y="3199.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.5805%" y="3173" width="0.0511%" height="15" fill="rgb(248,148,44)" fg:x="13513" fg:w="12"/><text x="57.8305%" y="3183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="57.6317%" y="3269" width="0.0128%" height="15" fill="rgb(206,64,7)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3279.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.6317%" y="3253" width="0.0128%" height="15" fill="rgb(239,152,16)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3263.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="3237" width="0.0128%" height="15" fill="rgb(237,67,14)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3247.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="3221" width="0.0128%" height="15" fill="rgb(254,167,40)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3231.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="3205" width="0.0128%" height="15" fill="rgb(247,49,26)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3215.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="57.6317%" y="3189" width="0.0128%" height="15" fill="rgb(207,49,28)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3199.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.6317%" y="3173" width="0.0128%" height="15" fill="rgb(206,228,54)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3183.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.6317%" y="3157" width="0.0128%" height="15" fill="rgb(254,55,0)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3167.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.6317%" y="3141" width="0.0128%" height="15" fill="rgb(253,46,19)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3151.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.6317%" y="3125" width="0.0128%" height="15" fill="rgb(221,20,21)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3135.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.6317%" y="3109" width="0.0128%" height="15" fill="rgb(242,71,14)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3119.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="3093" width="0.0128%" height="15" fill="rgb(214,150,28)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="3077" width="0.0128%" height="15" fill="rgb(212,209,49)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="3061" width="0.0128%" height="15" fill="rgb(242,108,5)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6317%" y="3045" width="0.0128%" height="15" fill="rgb(226,145,3)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3055.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6317%" y="3029" width="0.0128%" height="15" fill="rgb(223,126,17)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3039.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6317%" y="3013" width="0.0128%" height="15" fill="rgb(214,100,51)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2997" width="0.0128%" height="15" fill="rgb(243,156,0)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="3007.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.6317%" y="2981" width="0.0128%" height="15" fill="rgb(252,188,43)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2965" width="0.0128%" height="15" fill="rgb(254,195,4)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2949" width="0.0128%" height="15" fill="rgb(205,103,13)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6317%" y="2933" width="0.0128%" height="15" fill="rgb(240,71,30)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2943.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6317%" y="2917" width="0.0128%" height="15" fill="rgb(225,159,47)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2927.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6317%" y="2901" width="0.0128%" height="15" fill="rgb(215,173,17)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2885" width="0.0128%" height="15" fill="rgb(242,150,41)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="57.6317%" y="2869" width="0.0128%" height="15" fill="rgb(229,200,20)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.6317%" y="2853" width="0.0128%" height="15" fill="rgb(253,101,52)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2863.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="2837" width="0.0128%" height="15" fill="rgb(235,172,12)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2847.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="2821" width="0.0128%" height="15" fill="rgb(219,89,36)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2831.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="2805" width="0.0128%" height="15" fill="rgb(214,194,4)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2815.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="57.6317%" y="2789" width="0.0128%" height="15" fill="rgb(244,84,29)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.6317%" y="2773" width="0.0128%" height="15" fill="rgb(229,58,50)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.6317%" y="2757" width="0.0128%" height="15" fill="rgb(218,207,16)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2767.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.6317%" y="2741" width="0.0128%" height="15" fill="rgb(244,220,43)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.6317%" y="2725" width="0.0128%" height="15" fill="rgb(237,101,9)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.6317%" y="2709" width="0.0128%" height="15" fill="rgb(254,135,0)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2693" width="0.0128%" height="15" fill="rgb(210,222,30)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2677" width="0.0128%" height="15" fill="rgb(214,60,29)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2661" width="0.0128%" height="15" fill="rgb(241,56,29)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6317%" y="2645" width="0.0128%" height="15" fill="rgb(254,202,52)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2655.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6317%" y="2629" width="0.0128%" height="15" fill="rgb(247,46,47)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6317%" y="2613" width="0.0128%" height="15" fill="rgb(245,2,29)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2623.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2597" width="0.0128%" height="15" fill="rgb(240,156,26)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="57.6317%" y="2581" width="0.0128%" height="15" fill="rgb(219,41,37)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.6317%" y="2565" width="0.0128%" height="15" fill="rgb(214,169,43)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2575.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="2549" width="0.0128%" height="15" fill="rgb(210,224,40)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2559.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="2533" width="0.0128%" height="15" fill="rgb(220,32,42)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2543.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="57.6317%" y="2517" width="0.0128%" height="15" fill="rgb(216,197,43)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2527.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="57.6317%" y="2501" width="0.0128%" height="15" fill="rgb(225,91,11)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.6317%" y="2485" width="0.0128%" height="15" fill="rgb(238,66,27)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.6317%" y="2469" width="0.0128%" height="15" fill="rgb(207,10,42)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2479.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.6317%" y="2453" width="0.0128%" height="15" fill="rgb(217,160,30)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.6317%" y="2437" width="0.0128%" height="15" fill="rgb(227,129,11)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.6317%" y="2421" width="0.0128%" height="15" fill="rgb(211,159,3)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2405" width="0.0128%" height="15" fill="rgb(224,36,4)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2415.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2389" width="0.0128%" height="15" fill="rgb(236,178,29)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2373" width="0.0128%" height="15" fill="rgb(240,115,9)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6317%" y="2357" width="0.0128%" height="15" fill="rgb(247,32,20)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2367.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6317%" y="2341" width="0.0128%" height="15" fill="rgb(222,149,39)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2351.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6317%" y="2325" width="0.0128%" height="15" fill="rgb(240,182,30)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2309" width="0.0128%" height="15" fill="rgb(235,86,41)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2319.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.6317%" y="2293" width="0.0128%" height="15" fill="rgb(250,108,39)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2303.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.6317%" y="2277" width="0.0128%" height="15" fill="rgb(246,46,21)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2287.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.6317%" y="2261" width="0.0128%" height="15" fill="rgb(217,139,10)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2271.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.6317%" y="2245" width="0.0128%" height="15" fill="rgb(205,52,19)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2255.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.6317%" y="2229" width="0.0128%" height="15" fill="rgb(242,99,19)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2213" width="0.0128%" height="15" fill="rgb(232,28,43)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2197" width="0.0128%" height="15" fill="rgb(206,228,31)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6317%" y="2181" width="0.0128%" height="15" fill="rgb(221,5,15)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2191.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6317%" y="2165" width="0.0128%" height="15" fill="rgb(222,41,53)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2175.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6317%" y="2149" width="0.0128%" height="15" fill="rgb(250,204,32)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2159.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2133" width="0.0128%" height="15" fill="rgb(221,156,29)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2143.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.6317%" y="2117" width="0.0128%" height="15" fill="rgb(208,113,14)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2127.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.6317%" y="2101" width="0.0128%" height="15" fill="rgb(215,149,29)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2111.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.6317%" y="2085" width="0.0128%" height="15" fill="rgb(252,82,33)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2095.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.6317%" y="2069" width="0.0128%" height="15" fill="rgb(243,216,42)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2079.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.6317%" y="2053" width="0.0128%" height="15" fill="rgb(217,138,21)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2037" width="0.0128%" height="15" fill="rgb(235,185,35)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2047.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="2021" width="0.0128%" height="15" fill="rgb(217,105,15)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6317%" y="2005" width="0.0128%" height="15" fill="rgb(205,46,18)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="2015.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6317%" y="1989" width="0.0128%" height="15" fill="rgb(246,144,40)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="1999.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6317%" y="1973" width="0.0128%" height="15" fill="rgb(248,17,32)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="1983.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6317%" y="1957" width="0.0128%" height="15" fill="rgb(225,13,51)" fg:x="13525" fg:w="3"/><text x="57.8817%" y="1967.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.6445%" y="2869" width="0.0128%" height="15" fill="rgb(233,167,30)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6445%" y="2853" width="0.0128%" height="15" fill="rgb(245,117,51)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6445%" y="2837" width="0.0128%" height="15" fill="rgb(218,198,18)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6445%" y="2821" width="0.0128%" height="15" fill="rgb(223,197,47)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.6445%" y="2805" width="0.0128%" height="15" fill="rgb(226,124,18)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2815.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.6445%" y="2789" width="0.0128%" height="15" fill="rgb(211,188,9)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2799.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.6445%" y="2773" width="0.0128%" height="15" fill="rgb(231,190,19)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2783.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.6445%" y="2757" width="0.0128%" height="15" fill="rgb(254,20,27)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2767.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.6445%" y="2741" width="0.0128%" height="15" fill="rgb(243,59,39)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2751.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.6445%" y="2725" width="0.0128%" height="15" fill="rgb(224,51,31)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2735.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="57.6445%" y="2709" width="0.0128%" height="15" fill="rgb(207,156,54)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2719.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6445%" y="2693" width="0.0128%" height="15" fill="rgb(230,187,17)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6445%" y="2677" width="0.0128%" height="15" fill="rgb(210,83,43)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.6445%" y="2661" width="0.0128%" height="15" fill="rgb(206,192,9)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2671.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6445%" y="2645" width="0.0128%" height="15" fill="rgb(234,227,6)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2655.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.6445%" y="2629" width="0.0128%" height="15" fill="rgb(229,168,40)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2639.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="57.6445%" y="2613" width="0.0128%" height="15" fill="rgb(246,58,27)" fg:x="13528" fg:w="3"/><text x="57.8945%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="57.6445%" y="2981" width="0.0170%" height="15" fill="rgb(215,164,3)" fg:x="13528" fg:w="4"/><text x="57.8945%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="57.6445%" y="2965" width="0.0170%" height="15" fill="rgb(231,194,36)" fg:x="13528" fg:w="4"/><text x="57.8945%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.6445%" y="2949" width="0.0170%" height="15" fill="rgb(206,9,0)" fg:x="13528" fg:w="4"/><text x="57.8945%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.6445%" y="2933" width="0.0170%" height="15" fill="rgb(233,182,35)" fg:x="13528" fg:w="4"/><text x="57.8945%" y="2943.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="57.6445%" y="2917" width="0.0170%" height="15" fill="rgb(232,50,45)" fg:x="13528" fg:w="4"/><text x="57.8945%" y="2927.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="57.6445%" y="2901" width="0.0170%" height="15" fill="rgb(245,158,14)" fg:x="13528" fg:w="4"/><text x="57.8945%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="57.6445%" y="2885" width="0.0170%" height="15" fill="rgb(237,147,51)" fg:x="13528" fg:w="4"/><text x="57.8945%" y="2895.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="57.6445%" y="3093" width="0.0298%" height="15" fill="rgb(228,197,6)" fg:x="13528" fg:w="7"/><text x="57.8945%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="57.6445%" y="3077" width="0.0298%" height="15" fill="rgb(247,208,34)" fg:x="13528" fg:w="7"/><text x="57.8945%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.6445%" y="3061" width="0.0298%" height="15" fill="rgb(212,222,3)" fg:x="13528" fg:w="7"/><text x="57.8945%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.6445%" y="3045" width="0.0298%" height="15" fill="rgb(220,110,27)" fg:x="13528" fg:w="7"/><text x="57.8945%" y="3055.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="57.6445%" y="3029" width="0.0298%" height="15" fill="rgb(240,130,2)" fg:x="13528" fg:w="7"/><text x="57.8945%" y="3039.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="57.6445%" y="3013" width="0.0298%" height="15" fill="rgb(250,56,24)" fg:x="13528" fg:w="7"/><text x="57.8945%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="57.6445%" y="2997" width="0.0298%" height="15" fill="rgb(245,73,17)" fg:x="13528" fg:w="7"/><text x="57.8945%" y="3007.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.6615%" y="2981" width="0.0128%" height="15" fill="rgb(211,114,18)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2991.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.6615%" y="2965" width="0.0128%" height="15" fill="rgb(210,79,35)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2975.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.6615%" y="2949" width="0.0128%" height="15" fill="rgb(245,178,25)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2959.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.6615%" y="2933" width="0.0128%" height="15" fill="rgb(248,198,39)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2943.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.6615%" y="2917" width="0.0128%" height="15" fill="rgb(214,85,15)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6615%" y="2901" width="0.0128%" height="15" fill="rgb(237,67,23)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6615%" y="2885" width="0.0128%" height="15" fill="rgb(224,136,33)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6615%" y="2869" width="0.0128%" height="15" fill="rgb(248,191,34)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6615%" y="2853" width="0.0128%" height="15" fill="rgb(252,82,27)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6615%" y="2837" width="0.0128%" height="15" fill="rgb(223,19,43)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6615%" y="2821" width="0.0128%" height="15" fill="rgb(227,208,31)" fg:x="13532" fg:w="3"/><text x="57.9115%" y="2831.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.6743%" y="2917" width="0.0128%" height="15" fill="rgb(247,206,53)" fg:x="13535" fg:w="3"/><text x="57.9243%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6743%" y="2901" width="0.0128%" height="15" fill="rgb(230,214,0)" fg:x="13535" fg:w="3"/><text x="57.9243%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6743%" y="2885" width="0.0128%" height="15" fill="rgb(210,119,28)" fg:x="13535" fg:w="3"/><text x="57.9243%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6743%" y="2869" width="0.0128%" height="15" fill="rgb(229,36,20)" fg:x="13535" fg:w="3"/><text x="57.9243%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.6743%" y="2853" width="0.0128%" height="15" fill="rgb(232,37,48)" fg:x="13535" fg:w="3"/><text x="57.9243%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.6743%" y="2837" width="0.0128%" height="15" fill="rgb(251,229,6)" fg:x="13535" fg:w="3"/><text x="57.9243%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6743%" y="2821" width="0.0128%" height="15" fill="rgb(206,125,29)" fg:x="13535" fg:w="3"/><text x="57.9243%" y="2831.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (27 samples, 0.12%)</title><rect x="57.5805%" y="3381" width="0.1151%" height="15" fill="rgb(224,73,14)" fg:x="13513" fg:w="27"/><text x="57.8305%" y="3391.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (27 samples, 0.12%)</title><rect x="57.5805%" y="3365" width="0.1151%" height="15" fill="rgb(252,227,3)" fg:x="13513" fg:w="27"/><text x="57.8305%" y="3375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (27 samples, 0.12%)</title><rect x="57.5805%" y="3349" width="0.1151%" height="15" fill="rgb(226,182,11)" fg:x="13513" fg:w="27"/><text x="57.8305%" y="3359.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.12%)</title><rect x="57.5805%" y="3333" width="0.1151%" height="15" fill="rgb(253,29,48)" fg:x="13513" fg:w="27"/><text x="57.8305%" y="3343.50"></text></g><g><title>rayon_core::join::join_context (27 samples, 0.12%)</title><rect x="57.5805%" y="3317" width="0.1151%" height="15" fill="rgb(231,199,43)" fg:x="13513" fg:w="27"/><text x="57.8305%" y="3327.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.12%)</title><rect x="57.5805%" y="3301" width="0.1151%" height="15" fill="rgb(213,179,52)" fg:x="13513" fg:w="27"/><text x="57.8305%" y="3311.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (27 samples, 0.12%)</title><rect x="57.5805%" y="3285" width="0.1151%" height="15" fill="rgb(238,31,13)" fg:x="13513" fg:w="27"/><text x="57.8305%" y="3295.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="57.6445%" y="3269" width="0.0511%" height="15" fill="rgb(238,81,6)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3279.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="57.6445%" y="3253" width="0.0511%" height="15" fill="rgb(250,227,3)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3263.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="57.6445%" y="3237" width="0.0511%" height="15" fill="rgb(209,2,12)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3247.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="57.6445%" y="3221" width="0.0511%" height="15" fill="rgb(218,9,54)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3231.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="57.6445%" y="3205" width="0.0511%" height="15" fill="rgb(246,164,50)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="57.6445%" y="3189" width="0.0511%" height="15" fill="rgb(214,164,51)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.6445%" y="3173" width="0.0511%" height="15" fill="rgb(219,160,41)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.6445%" y="3157" width="0.0511%" height="15" fill="rgb(233,193,0)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3167.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.6445%" y="3141" width="0.0511%" height="15" fill="rgb(237,211,11)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3151.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.6445%" y="3125" width="0.0511%" height="15" fill="rgb(231,144,7)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.6445%" y="3109" width="0.0511%" height="15" fill="rgb(235,179,45)" fg:x="13528" fg:w="12"/><text x="57.8945%" y="3119.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.6743%" y="3093" width="0.0213%" height="15" fill="rgb(214,37,7)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="3103.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.6743%" y="3077" width="0.0213%" height="15" fill="rgb(211,176,42)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="3087.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.6743%" y="3061" width="0.0213%" height="15" fill="rgb(224,160,3)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="3071.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.6743%" y="3045" width="0.0213%" height="15" fill="rgb(208,174,44)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="3055.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.6743%" y="3029" width="0.0213%" height="15" fill="rgb(210,15,50)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.6743%" y="3013" width="0.0213%" height="15" fill="rgb(243,27,14)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.6743%" y="2997" width="0.0213%" height="15" fill="rgb(217,1,27)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.6743%" y="2981" width="0.0213%" height="15" fill="rgb(211,227,23)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="2991.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.6743%" y="2965" width="0.0213%" height="15" fill="rgb(215,229,40)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="2975.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.6743%" y="2949" width="0.0213%" height="15" fill="rgb(252,34,39)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.6743%" y="2933" width="0.0213%" height="15" fill="rgb(220,55,53)" fg:x="13535" fg:w="5"/><text x="57.9243%" y="2943.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.6956%" y="2869" width="0.0128%" height="15" fill="rgb(249,77,10)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6956%" y="2853" width="0.0128%" height="15" fill="rgb(233,79,40)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6956%" y="2837" width="0.0128%" height="15" fill="rgb(247,177,1)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.6956%" y="2821" width="0.0128%" height="15" fill="rgb(250,39,22)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.6956%" y="2805" width="0.0128%" height="15" fill="rgb(247,54,18)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2815.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.6956%" y="2789" width="0.0128%" height="15" fill="rgb(238,59,44)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2799.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.6956%" y="2773" width="0.0128%" height="15" fill="rgb(237,16,37)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2783.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.6956%" y="2757" width="0.0128%" height="15" fill="rgb(219,204,42)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2767.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.6956%" y="2741" width="0.0128%" height="15" fill="rgb(205,139,30)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2751.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.6956%" y="2725" width="0.0128%" height="15" fill="rgb(239,115,16)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2735.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="57.6956%" y="2709" width="0.0128%" height="15" fill="rgb(234,21,29)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2719.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6956%" y="2693" width="0.0128%" height="15" fill="rgb(234,43,52)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6956%" y="2677" width="0.0128%" height="15" fill="rgb(249,115,20)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2687.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.6956%" y="2661" width="0.0128%" height="15" fill="rgb(254,181,45)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2671.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.6956%" y="2645" width="0.0128%" height="15" fill="rgb(250,221,1)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2655.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.6956%" y="2629" width="0.0128%" height="15" fill="rgb(225,25,29)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2639.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="57.6956%" y="2613" width="0.0128%" height="15" fill="rgb(251,146,52)" fg:x="13540" fg:w="3"/><text x="57.9456%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="57.6956%" y="2981" width="0.0170%" height="15" fill="rgb(211,183,32)" fg:x="13540" fg:w="4"/><text x="57.9456%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="57.6956%" y="2965" width="0.0170%" height="15" fill="rgb(253,128,44)" fg:x="13540" fg:w="4"/><text x="57.9456%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.6956%" y="2949" width="0.0170%" height="15" fill="rgb(208,147,32)" fg:x="13540" fg:w="4"/><text x="57.9456%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.6956%" y="2933" width="0.0170%" height="15" fill="rgb(242,145,4)" fg:x="13540" fg:w="4"/><text x="57.9456%" y="2943.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="57.6956%" y="2917" width="0.0170%" height="15" fill="rgb(252,98,30)" fg:x="13540" fg:w="4"/><text x="57.9456%" y="2927.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="57.6956%" y="2901" width="0.0170%" height="15" fill="rgb(217,50,53)" fg:x="13540" fg:w="4"/><text x="57.9456%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="57.6956%" y="2885" width="0.0170%" height="15" fill="rgb(250,56,20)" fg:x="13540" fg:w="4"/><text x="57.9456%" y="2895.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="57.7126%" y="2805" width="0.0170%" height="15" fill="rgb(221,218,6)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="57.7126%" y="2789" width="0.0170%" height="15" fill="rgb(238,174,36)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="57.7126%" y="2773" width="0.0170%" height="15" fill="rgb(249,18,47)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="57.7126%" y="2757" width="0.0170%" height="15" fill="rgb(207,59,40)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="57.7126%" y="2741" width="0.0170%" height="15" fill="rgb(239,199,54)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2751.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="57.7126%" y="2725" width="0.0170%" height="15" fill="rgb(242,212,25)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2735.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="57.7126%" y="2709" width="0.0170%" height="15" fill="rgb(235,7,45)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2719.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="57.7126%" y="2693" width="0.0170%" height="15" fill="rgb(231,19,12)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2703.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="57.7126%" y="2677" width="0.0170%" height="15" fill="rgb(237,69,14)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2687.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="57.7126%" y="2661" width="0.0170%" height="15" fill="rgb(217,82,2)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="57.7126%" y="2645" width="0.0170%" height="15" fill="rgb(205,5,23)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2655.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="57.7126%" y="2629" width="0.0170%" height="15" fill="rgb(238,205,29)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2639.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="57.7126%" y="2613" width="0.0170%" height="15" fill="rgb(214,220,43)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="57.7126%" y="2597" width="0.0170%" height="15" fill="rgb(218,17,28)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2607.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="57.7126%" y="2581" width="0.0170%" height="15" fill="rgb(231,219,5)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2591.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="57.7126%" y="2565" width="0.0170%" height="15" fill="rgb(245,224,10)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2575.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="57.7126%" y="2549" width="0.0170%" height="15" fill="rgb(224,10,53)" fg:x="13544" fg:w="4"/><text x="57.9626%" y="2559.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.7169%" y="2533" width="0.0128%" height="15" fill="rgb(247,24,39)" fg:x="13545" fg:w="3"/><text x="57.9669%" y="2543.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.7169%" y="2517" width="0.0128%" height="15" fill="rgb(235,195,18)" fg:x="13545" fg:w="3"/><text x="57.9669%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.7169%" y="2501" width="0.0128%" height="15" fill="rgb(220,136,0)" fg:x="13545" fg:w="3"/><text x="57.9669%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.7169%" y="2485" width="0.0128%" height="15" fill="rgb(243,78,25)" fg:x="13545" fg:w="3"/><text x="57.9669%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.7169%" y="2469" width="0.0128%" height="15" fill="rgb(249,51,27)" fg:x="13545" fg:w="3"/><text x="57.9669%" y="2479.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="57.6956%" y="3093" width="0.0384%" height="15" fill="rgb(239,225,18)" fg:x="13540" fg:w="9"/><text x="57.9456%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="57.6956%" y="3077" width="0.0384%" height="15" fill="rgb(215,50,26)" fg:x="13540" fg:w="9"/><text x="57.9456%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="57.6956%" y="3061" width="0.0384%" height="15" fill="rgb(212,191,28)" fg:x="13540" fg:w="9"/><text x="57.9456%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="57.6956%" y="3045" width="0.0384%" height="15" fill="rgb(245,142,10)" fg:x="13540" fg:w="9"/><text x="57.9456%" y="3055.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="57.6956%" y="3029" width="0.0384%" height="15" fill="rgb(250,76,23)" fg:x="13540" fg:w="9"/><text x="57.9456%" y="3039.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="57.6956%" y="3013" width="0.0384%" height="15" fill="rgb(210,62,5)" fg:x="13540" fg:w="9"/><text x="57.9456%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="57.6956%" y="2997" width="0.0384%" height="15" fill="rgb(218,65,6)" fg:x="13540" fg:w="9"/><text x="57.9456%" y="3007.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.7126%" y="2981" width="0.0213%" height="15" fill="rgb(223,58,19)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2991.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.7126%" y="2965" width="0.0213%" height="15" fill="rgb(244,180,32)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2975.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.7126%" y="2949" width="0.0213%" height="15" fill="rgb(251,71,40)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2959.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.7126%" y="2933" width="0.0213%" height="15" fill="rgb(246,215,17)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2943.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.7126%" y="2917" width="0.0213%" height="15" fill="rgb(207,175,42)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7126%" y="2901" width="0.0213%" height="15" fill="rgb(237,135,6)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7126%" y="2885" width="0.0213%" height="15" fill="rgb(221,42,47)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.7126%" y="2869" width="0.0213%" height="15" fill="rgb(223,105,51)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.7126%" y="2853" width="0.0213%" height="15" fill="rgb(216,220,13)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.7126%" y="2837" width="0.0213%" height="15" fill="rgb(233,37,20)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7126%" y="2821" width="0.0213%" height="15" fill="rgb(246,206,34)" fg:x="13544" fg:w="5"/><text x="57.9626%" y="2831.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="57.6956%" y="3205" width="0.0469%" height="15" fill="rgb(218,67,15)" fg:x="13540" fg:w="11"/><text x="57.9456%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="57.6956%" y="3189" width="0.0469%" height="15" fill="rgb(224,59,16)" fg:x="13540" fg:w="11"/><text x="57.9456%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="57.6956%" y="3173" width="0.0469%" height="15" fill="rgb(248,55,51)" fg:x="13540" fg:w="11"/><text x="57.9456%" y="3183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="57.6956%" y="3157" width="0.0469%" height="15" fill="rgb(208,35,24)" fg:x="13540" fg:w="11"/><text x="57.9456%" y="3167.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="57.6956%" y="3141" width="0.0469%" height="15" fill="rgb(211,190,30)" fg:x="13540" fg:w="11"/><text x="57.9456%" y="3151.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="57.6956%" y="3125" width="0.0469%" height="15" fill="rgb(223,196,54)" fg:x="13540" fg:w="11"/><text x="57.9456%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="57.6956%" y="3109" width="0.0469%" height="15" fill="rgb(214,122,43)" fg:x="13540" fg:w="11"/><text x="57.9456%" y="3119.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="57.7425%" y="3029" width="0.0213%" height="15" fill="rgb(239,99,42)" fg:x="13551" fg:w="5"/><text x="57.9925%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7425%" y="3013" width="0.0213%" height="15" fill="rgb(229,108,21)" fg:x="13551" fg:w="5"/><text x="57.9925%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7425%" y="2997" width="0.0213%" height="15" fill="rgb(249,207,14)" fg:x="13551" fg:w="5"/><text x="57.9925%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.7425%" y="2981" width="0.0213%" height="15" fill="rgb(221,225,3)" fg:x="13551" fg:w="5"/><text x="57.9925%" y="2991.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.7425%" y="2965" width="0.0213%" height="15" fill="rgb(249,122,8)" fg:x="13551" fg:w="5"/><text x="57.9925%" y="2975.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.7425%" y="2949" width="0.0213%" height="15" fill="rgb(217,106,16)" fg:x="13551" fg:w="5"/><text x="57.9925%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7425%" y="2933" width="0.0213%" height="15" fill="rgb(245,39,17)" fg:x="13551" fg:w="5"/><text x="57.9925%" y="2943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.7510%" y="2917" width="0.0128%" height="15" fill="rgb(230,174,53)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2927.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.7510%" y="2901" width="0.0128%" height="15" fill="rgb(235,76,31)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2911.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.7510%" y="2885" width="0.0128%" height="15" fill="rgb(220,106,15)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2895.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.7510%" y="2869" width="0.0128%" height="15" fill="rgb(218,113,0)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.7510%" y="2853" width="0.0128%" height="15" fill="rgb(205,124,52)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7510%" y="2837" width="0.0128%" height="15" fill="rgb(205,187,41)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7510%" y="2821" width="0.0128%" height="15" fill="rgb(236,227,26)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.7510%" y="2805" width="0.0128%" height="15" fill="rgb(240,44,42)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2815.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.7510%" y="2789" width="0.0128%" height="15" fill="rgb(224,40,9)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.7510%" y="2773" width="0.0128%" height="15" fill="rgb(250,89,34)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7510%" y="2757" width="0.0128%" height="15" fill="rgb(209,74,46)" fg:x="13553" fg:w="3"/><text x="58.0010%" y="2767.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (46 samples, 0.20%)</title><rect x="57.5805%" y="3493" width="0.1960%" height="15" fill="rgb(244,226,42)" fg:x="13513" fg:w="46"/><text x="57.8305%" y="3503.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (46 samples, 0.20%)</title><rect x="57.5805%" y="3477" width="0.1960%" height="15" fill="rgb(226,204,17)" fg:x="13513" fg:w="46"/><text x="57.8305%" y="3487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (46 samples, 0.20%)</title><rect x="57.5805%" y="3461" width="0.1960%" height="15" fill="rgb(228,135,42)" fg:x="13513" fg:w="46"/><text x="57.8305%" y="3471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.20%)</title><rect x="57.5805%" y="3445" width="0.1960%" height="15" fill="rgb(217,221,12)" fg:x="13513" fg:w="46"/><text x="57.8305%" y="3455.50"></text></g><g><title>rayon_core::join::join_context (46 samples, 0.20%)</title><rect x="57.5805%" y="3429" width="0.1960%" height="15" fill="rgb(224,83,40)" fg:x="13513" fg:w="46"/><text x="57.8305%" y="3439.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.20%)</title><rect x="57.5805%" y="3413" width="0.1960%" height="15" fill="rgb(213,183,30)" fg:x="13513" fg:w="46"/><text x="57.8305%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (46 samples, 0.20%)</title><rect x="57.5805%" y="3397" width="0.1960%" height="15" fill="rgb(218,70,12)" fg:x="13513" fg:w="46"/><text x="57.8305%" y="3407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (19 samples, 0.08%)</title><rect x="57.6956%" y="3381" width="0.0810%" height="15" fill="rgb(223,76,4)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3391.50"></text></g><g><title>std::panic::catch_unwind (19 samples, 0.08%)</title><rect x="57.6956%" y="3365" width="0.0810%" height="15" fill="rgb(249,153,2)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3375.50"></text></g><g><title>std::panicking::try (19 samples, 0.08%)</title><rect x="57.6956%" y="3349" width="0.0810%" height="15" fill="rgb(218,169,48)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3359.50"></text></g><g><title>std::panicking::try::do_call (19 samples, 0.08%)</title><rect x="57.6956%" y="3333" width="0.0810%" height="15" fill="rgb(214,44,20)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (19 samples, 0.08%)</title><rect x="57.6956%" y="3317" width="0.0810%" height="15" fill="rgb(231,124,23)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (19 samples, 0.08%)</title><rect x="57.6956%" y="3301" width="0.0810%" height="15" fill="rgb(206,148,51)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (19 samples, 0.08%)</title><rect x="57.6956%" y="3285" width="0.0810%" height="15" fill="rgb(247,87,51)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="57.6956%" y="3269" width="0.0810%" height="15" fill="rgb(208,177,5)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3279.50"></text></g><g><title>rayon_core::join::join_context (19 samples, 0.08%)</title><rect x="57.6956%" y="3253" width="0.0810%" height="15" fill="rgb(215,3,42)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3263.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="57.6956%" y="3237" width="0.0810%" height="15" fill="rgb(246,226,53)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (19 samples, 0.08%)</title><rect x="57.6956%" y="3221" width="0.0810%" height="15" fill="rgb(220,0,46)" fg:x="13540" fg:w="19"/><text x="57.9456%" y="3231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="57.7425%" y="3205" width="0.0341%" height="15" fill="rgb(230,59,36)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3215.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="57.7425%" y="3189" width="0.0341%" height="15" fill="rgb(220,46,15)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3199.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="57.7425%" y="3173" width="0.0341%" height="15" fill="rgb(238,62,39)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3183.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="57.7425%" y="3157" width="0.0341%" height="15" fill="rgb(242,189,11)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="57.7425%" y="3141" width="0.0341%" height="15" fill="rgb(207,132,6)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="57.7425%" y="3125" width="0.0341%" height="15" fill="rgb(223,111,38)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="57.7425%" y="3109" width="0.0341%" height="15" fill="rgb(226,85,24)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="57.7425%" y="3093" width="0.0341%" height="15" fill="rgb(216,224,34)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3103.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="57.7425%" y="3077" width="0.0341%" height="15" fill="rgb(252,69,8)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3087.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="57.7425%" y="3061" width="0.0341%" height="15" fill="rgb(231,183,37)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="57.7425%" y="3045" width="0.0341%" height="15" fill="rgb(253,52,3)" fg:x="13551" fg:w="8"/><text x="57.9925%" y="3055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.7638%" y="3029" width="0.0128%" height="15" fill="rgb(236,134,13)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="3039.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.7638%" y="3013" width="0.0128%" height="15" fill="rgb(238,60,32)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="3023.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.7638%" y="2997" width="0.0128%" height="15" fill="rgb(221,167,29)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="3007.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.7638%" y="2981" width="0.0128%" height="15" fill="rgb(247,101,21)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.7638%" y="2965" width="0.0128%" height="15" fill="rgb(231,144,52)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7638%" y="2949" width="0.0128%" height="15" fill="rgb(253,41,9)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7638%" y="2933" width="0.0128%" height="15" fill="rgb(213,28,12)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.7638%" y="2917" width="0.0128%" height="15" fill="rgb(206,124,48)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2927.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.7638%" y="2901" width="0.0128%" height="15" fill="rgb(226,175,27)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2911.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.7638%" y="2885" width="0.0128%" height="15" fill="rgb(213,223,7)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7638%" y="2869" width="0.0128%" height="15" fill="rgb(213,220,49)" fg:x="13556" fg:w="3"/><text x="58.0138%" y="2879.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="57.7851%" y="3093" width="0.0213%" height="15" fill="rgb(205,202,30)" fg:x="13561" fg:w="5"/><text x="58.0351%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7851%" y="3077" width="0.0213%" height="15" fill="rgb(231,36,8)" fg:x="13561" fg:w="5"/><text x="58.0351%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7851%" y="3061" width="0.0213%" height="15" fill="rgb(227,67,0)" fg:x="13561" fg:w="5"/><text x="58.0351%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.7851%" y="3045" width="0.0213%" height="15" fill="rgb(227,17,20)" fg:x="13561" fg:w="5"/><text x="58.0351%" y="3055.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.7851%" y="3029" width="0.0213%" height="15" fill="rgb(219,220,24)" fg:x="13561" fg:w="5"/><text x="58.0351%" y="3039.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.7851%" y="3013" width="0.0213%" height="15" fill="rgb(232,43,38)" fg:x="13561" fg:w="5"/><text x="58.0351%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.7851%" y="2997" width="0.0213%" height="15" fill="rgb(254,223,52)" fg:x="13561" fg:w="5"/><text x="58.0351%" y="3007.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.7936%" y="2981" width="0.0128%" height="15" fill="rgb(233,74,7)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2991.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.7936%" y="2965" width="0.0128%" height="15" fill="rgb(234,203,9)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2975.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.7936%" y="2949" width="0.0128%" height="15" fill="rgb(221,127,17)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2959.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.7936%" y="2933" width="0.0128%" height="15" fill="rgb(232,103,12)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2943.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.7936%" y="2917" width="0.0128%" height="15" fill="rgb(232,53,28)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7936%" y="2901" width="0.0128%" height="15" fill="rgb(231,137,13)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7936%" y="2885" width="0.0128%" height="15" fill="rgb(221,198,4)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.7936%" y="2869" width="0.0128%" height="15" fill="rgb(246,199,11)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.7936%" y="2853" width="0.0128%" height="15" fill="rgb(225,57,16)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.7936%" y="2837" width="0.0128%" height="15" fill="rgb(230,163,33)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.7936%" y="2821" width="0.0128%" height="15" fill="rgb(206,54,14)" fg:x="13563" fg:w="3"/><text x="58.0436%" y="2831.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.8064%" y="2917" width="0.0128%" height="15" fill="rgb(241,25,0)" fg:x="13566" fg:w="3"/><text x="58.0564%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8064%" y="2901" width="0.0128%" height="15" fill="rgb(248,200,45)" fg:x="13566" fg:w="3"/><text x="58.0564%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8064%" y="2885" width="0.0128%" height="15" fill="rgb(232,77,20)" fg:x="13566" fg:w="3"/><text x="58.0564%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.8064%" y="2869" width="0.0128%" height="15" fill="rgb(221,87,36)" fg:x="13566" fg:w="3"/><text x="58.0564%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.8064%" y="2853" width="0.0128%" height="15" fill="rgb(224,196,2)" fg:x="13566" fg:w="3"/><text x="58.0564%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.8064%" y="2837" width="0.0128%" height="15" fill="rgb(223,82,0)" fg:x="13566" fg:w="3"/><text x="58.0564%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8064%" y="2821" width="0.0128%" height="15" fill="rgb(234,171,2)" fg:x="13566" fg:w="3"/><text x="58.0564%" y="2831.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="57.7851%" y="3205" width="0.0426%" height="15" fill="rgb(226,87,35)" fg:x="13561" fg:w="10"/><text x="58.0351%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="57.7851%" y="3189" width="0.0426%" height="15" fill="rgb(239,82,49)" fg:x="13561" fg:w="10"/><text x="58.0351%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="57.7851%" y="3173" width="0.0426%" height="15" fill="rgb(205,221,20)" fg:x="13561" fg:w="10"/><text x="58.0351%" y="3183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="57.7851%" y="3157" width="0.0426%" height="15" fill="rgb(253,73,50)" fg:x="13561" fg:w="10"/><text x="58.0351%" y="3167.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="57.7851%" y="3141" width="0.0426%" height="15" fill="rgb(253,107,38)" fg:x="13561" fg:w="10"/><text x="58.0351%" y="3151.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="57.7851%" y="3125" width="0.0426%" height="15" fill="rgb(254,108,21)" fg:x="13561" fg:w="10"/><text x="58.0351%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="57.7851%" y="3109" width="0.0426%" height="15" fill="rgb(209,172,37)" fg:x="13561" fg:w="10"/><text x="58.0351%" y="3119.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.8064%" y="3093" width="0.0213%" height="15" fill="rgb(248,78,9)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="3103.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.8064%" y="3077" width="0.0213%" height="15" fill="rgb(219,96,43)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="3087.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.8064%" y="3061" width="0.0213%" height="15" fill="rgb(212,168,29)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="3071.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.8064%" y="3045" width="0.0213%" height="15" fill="rgb(223,84,0)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="3055.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.8064%" y="3029" width="0.0213%" height="15" fill="rgb(232,122,40)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8064%" y="3013" width="0.0213%" height="15" fill="rgb(248,12,37)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8064%" y="2997" width="0.0213%" height="15" fill="rgb(234,203,21)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.8064%" y="2981" width="0.0213%" height="15" fill="rgb(239,71,36)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="2991.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.8064%" y="2965" width="0.0213%" height="15" fill="rgb(216,138,35)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="2975.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.8064%" y="2949" width="0.0213%" height="15" fill="rgb(213,12,15)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8064%" y="2933" width="0.0213%" height="15" fill="rgb(217,112,12)" fg:x="13566" fg:w="5"/><text x="58.0564%" y="2943.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="57.8277%" y="2533" width="0.0128%" height="15" fill="rgb(210,53,44)" fg:x="13571" fg:w="3"/><text x="58.0777%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.8277%" y="2517" width="0.0128%" height="15" fill="rgb(218,99,13)" fg:x="13571" fg:w="3"/><text x="58.0777%" y="2527.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.8277%" y="2501" width="0.0128%" height="15" fill="rgb(227,91,37)" fg:x="13571" fg:w="3"/><text x="58.0777%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.8277%" y="2485" width="0.0128%" height="15" fill="rgb(237,101,30)" fg:x="13571" fg:w="3"/><text x="58.0777%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8277%" y="2469" width="0.0128%" height="15" fill="rgb(213,184,17)" fg:x="13571" fg:w="3"/><text x="58.0777%" y="2479.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8277%" y="2453" width="0.0128%" height="15" fill="rgb(254,144,17)" fg:x="13571" fg:w="3"/><text x="58.0777%" y="2463.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="57.8277%" y="2805" width="0.0256%" height="15" fill="rgb(231,191,50)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8277%" y="2789" width="0.0256%" height="15" fill="rgb(205,15,54)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8277%" y="2773" width="0.0256%" height="15" fill="rgb(249,7,28)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="57.8277%" y="2757" width="0.0256%" height="15" fill="rgb(238,107,53)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="57.8277%" y="2741" width="0.0256%" height="15" fill="rgb(253,187,3)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2751.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="57.8277%" y="2725" width="0.0256%" height="15" fill="rgb(252,180,17)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2735.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="57.8277%" y="2709" width="0.0256%" height="15" fill="rgb(207,101,25)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2719.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="57.8277%" y="2693" width="0.0256%" height="15" fill="rgb(229,203,19)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2703.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="57.8277%" y="2677" width="0.0256%" height="15" fill="rgb(224,93,15)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2687.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="57.8277%" y="2661" width="0.0256%" height="15" fill="rgb(218,197,46)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="57.8277%" y="2645" width="0.0256%" height="15" fill="rgb(241,29,19)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2655.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8277%" y="2629" width="0.0256%" height="15" fill="rgb(216,165,10)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2639.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8277%" y="2613" width="0.0256%" height="15" fill="rgb(239,53,40)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="57.8277%" y="2597" width="0.0256%" height="15" fill="rgb(208,134,44)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2607.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8277%" y="2581" width="0.0256%" height="15" fill="rgb(209,208,35)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2591.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="57.8277%" y="2565" width="0.0256%" height="15" fill="rgb(207,130,33)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2575.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="57.8277%" y="2549" width="0.0256%" height="15" fill="rgb(216,16,35)" fg:x="13571" fg:w="6"/><text x="58.0777%" y="2559.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.8405%" y="2533" width="0.0128%" height="15" fill="rgb(230,186,6)" fg:x="13574" fg:w="3"/><text x="58.0905%" y="2543.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.8405%" y="2517" width="0.0128%" height="15" fill="rgb(235,58,34)" fg:x="13574" fg:w="3"/><text x="58.0905%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.8405%" y="2501" width="0.0128%" height="15" fill="rgb(216,13,52)" fg:x="13574" fg:w="3"/><text x="58.0905%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8405%" y="2485" width="0.0128%" height="15" fill="rgb(219,164,48)" fg:x="13574" fg:w="3"/><text x="58.0905%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8405%" y="2469" width="0.0128%" height="15" fill="rgb(237,88,20)" fg:x="13574" fg:w="3"/><text x="58.0905%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="57.8532%" y="2469" width="0.0128%" height="15" fill="rgb(206,100,10)" fg:x="13577" fg:w="3"/><text x="58.1032%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.8532%" y="2453" width="0.0128%" height="15" fill="rgb(224,214,8)" fg:x="13577" fg:w="3"/><text x="58.1032%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.8532%" y="2437" width="0.0128%" height="15" fill="rgb(233,203,18)" fg:x="13577" fg:w="3"/><text x="58.1032%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.8532%" y="2421" width="0.0128%" height="15" fill="rgb(233,94,1)" fg:x="13577" fg:w="3"/><text x="58.1032%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8532%" y="2405" width="0.0128%" height="15" fill="rgb(231,59,28)" fg:x="13577" fg:w="3"/><text x="58.1032%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8532%" y="2389" width="0.0128%" height="15" fill="rgb(249,206,2)" fg:x="13577" fg:w="3"/><text x="58.1032%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="57.8277%" y="2917" width="0.0511%" height="15" fill="rgb(244,216,1)" fg:x="13571" fg:w="12"/><text x="58.0777%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="57.8277%" y="2901" width="0.0511%" height="15" fill="rgb(236,105,34)" fg:x="13571" fg:w="12"/><text x="58.0777%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="57.8277%" y="2885" width="0.0511%" height="15" fill="rgb(239,81,2)" fg:x="13571" fg:w="12"/><text x="58.0777%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="57.8277%" y="2869" width="0.0511%" height="15" fill="rgb(218,164,16)" fg:x="13571" fg:w="12"/><text x="58.0777%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="57.8277%" y="2853" width="0.0511%" height="15" fill="rgb(207,1,18)" fg:x="13571" fg:w="12"/><text x="58.0777%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="57.8277%" y="2837" width="0.0511%" height="15" fill="rgb(215,114,2)" fg:x="13571" fg:w="12"/><text x="58.0777%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="57.8277%" y="2821" width="0.0511%" height="15" fill="rgb(241,64,33)" fg:x="13571" fg:w="12"/><text x="58.0777%" y="2831.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="57.8532%" y="2805" width="0.0256%" height="15" fill="rgb(232,149,19)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2815.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="57.8532%" y="2789" width="0.0256%" height="15" fill="rgb(206,117,32)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2799.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="57.8532%" y="2773" width="0.0256%" height="15" fill="rgb(237,193,13)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2783.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="57.8532%" y="2757" width="0.0256%" height="15" fill="rgb(239,47,12)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2767.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="57.8532%" y="2741" width="0.0256%" height="15" fill="rgb(240,105,10)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8532%" y="2725" width="0.0256%" height="15" fill="rgb(232,38,45)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8532%" y="2709" width="0.0256%" height="15" fill="rgb(229,96,15)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="57.8532%" y="2693" width="0.0256%" height="15" fill="rgb(254,11,33)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="57.8532%" y="2677" width="0.0256%" height="15" fill="rgb(251,157,51)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="57.8532%" y="2661" width="0.0256%" height="15" fill="rgb(230,154,36)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2671.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="57.8532%" y="2645" width="0.0256%" height="15" fill="rgb(218,28,2)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="57.8532%" y="2629" width="0.0256%" height="15" fill="rgb(253,146,22)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="57.8532%" y="2613" width="0.0256%" height="15" fill="rgb(251,7,10)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="57.8532%" y="2597" width="0.0256%" height="15" fill="rgb(246,0,21)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="57.8532%" y="2581" width="0.0256%" height="15" fill="rgb(205,130,44)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8532%" y="2565" width="0.0256%" height="15" fill="rgb(216,80,18)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8532%" y="2549" width="0.0256%" height="15" fill="rgb(250,23,16)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="57.8532%" y="2533" width="0.0256%" height="15" fill="rgb(222,80,36)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="57.8532%" y="2517" width="0.0256%" height="15" fill="rgb(220,59,9)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="57.8532%" y="2501" width="0.0256%" height="15" fill="rgb(223,195,31)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2511.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="57.8532%" y="2485" width="0.0256%" height="15" fill="rgb(231,120,50)" fg:x="13577" fg:w="6"/><text x="58.1032%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.8660%" y="2469" width="0.0128%" height="15" fill="rgb(244,49,46)" fg:x="13580" fg:w="3"/><text x="58.1160%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.8660%" y="2453" width="0.0128%" height="15" fill="rgb(217,62,32)" fg:x="13580" fg:w="3"/><text x="58.1160%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.8660%" y="2437" width="0.0128%" height="15" fill="rgb(246,62,25)" fg:x="13580" fg:w="3"/><text x="58.1160%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8660%" y="2421" width="0.0128%" height="15" fill="rgb(220,13,13)" fg:x="13580" fg:w="3"/><text x="58.1160%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.8660%" y="2405" width="0.0128%" height="15" fill="rgb(215,218,14)" fg:x="13580" fg:w="3"/><text x="58.1160%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="57.8660%" y="2389" width="0.0128%" height="15" fill="rgb(220,91,54)" fg:x="13580" fg:w="3"/><text x="58.1160%" y="2399.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="57.8788%" y="2917" width="0.0213%" height="15" fill="rgb(243,66,33)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2927.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="57.8788%" y="2901" width="0.0213%" height="15" fill="rgb(216,86,39)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2911.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="57.8788%" y="2885" width="0.0213%" height="15" fill="rgb(250,105,52)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2895.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="57.8788%" y="2869" width="0.0213%" height="15" fill="rgb(238,215,45)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2879.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="57.8788%" y="2853" width="0.0213%" height="15" fill="rgb(246,166,31)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2863.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="57.8788%" y="2837" width="0.0213%" height="15" fill="rgb(243,30,51)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.8788%" y="2821" width="0.0213%" height="15" fill="rgb(227,107,32)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.8788%" y="2805" width="0.0213%" height="15" fill="rgb(217,45,12)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2815.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.8788%" y="2789" width="0.0213%" height="15" fill="rgb(227,123,15)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.8788%" y="2773" width="0.0213%" height="15" fill="rgb(209,33,51)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.8788%" y="2757" width="0.0213%" height="15" fill="rgb(247,188,6)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2767.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8788%" y="2741" width="0.0213%" height="15" fill="rgb(242,123,45)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8788%" y="2725" width="0.0213%" height="15" fill="rgb(251,148,48)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8788%" y="2709" width="0.0213%" height="15" fill="rgb(213,223,43)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.8788%" y="2693" width="0.0213%" height="15" fill="rgb(254,48,41)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2703.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.8788%" y="2677" width="0.0213%" height="15" fill="rgb(210,34,33)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.8788%" y="2661" width="0.0213%" height="15" fill="rgb(242,99,27)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8788%" y="2645" width="0.0213%" height="15" fill="rgb(254,92,6)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2655.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="57.8788%" y="2629" width="0.0213%" height="15" fill="rgb(219,178,31)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2639.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="57.8788%" y="2613" width="0.0213%" height="15" fill="rgb(238,145,6)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2623.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="57.8788%" y="2597" width="0.0213%" height="15" fill="rgb(253,172,27)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2607.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="57.8788%" y="2581" width="0.0213%" height="15" fill="rgb(216,205,12)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2591.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="57.8788%" y="2565" width="0.0213%" height="15" fill="rgb(240,117,43)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8788%" y="2549" width="0.0213%" height="15" fill="rgb(242,55,48)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8788%" y="2533" width="0.0213%" height="15" fill="rgb(254,67,34)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.8788%" y="2517" width="0.0213%" height="15" fill="rgb(210,200,54)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2527.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="57.8788%" y="2501" width="0.0213%" height="15" fill="rgb(224,0,52)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.8788%" y="2485" width="0.0213%" height="15" fill="rgb(225,153,21)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="57.8788%" y="2469" width="0.0213%" height="15" fill="rgb(246,65,31)" fg:x="13583" fg:w="5"/><text x="58.1288%" y="2479.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.8873%" y="2453" width="0.0128%" height="15" fill="rgb(234,112,44)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2463.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.8873%" y="2437" width="0.0128%" height="15" fill="rgb(209,6,16)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2447.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.8873%" y="2421" width="0.0128%" height="15" fill="rgb(253,155,17)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2431.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.8873%" y="2405" width="0.0128%" height="15" fill="rgb(231,208,11)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2415.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.8873%" y="2389" width="0.0128%" height="15" fill="rgb(210,212,45)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2373" width="0.0128%" height="15" fill="rgb(247,125,9)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2357" width="0.0128%" height="15" fill="rgb(208,206,9)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.8873%" y="2341" width="0.0128%" height="15" fill="rgb(251,193,54)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2351.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.8873%" y="2325" width="0.0128%" height="15" fill="rgb(222,199,44)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2335.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.8873%" y="2309" width="0.0128%" height="15" fill="rgb(217,28,22)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2293" width="0.0128%" height="15" fill="rgb(231,138,46)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.8873%" y="2277" width="0.0128%" height="15" fill="rgb(241,142,5)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2287.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2261" width="0.0128%" height="15" fill="rgb(241,212,19)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2245" width="0.0128%" height="15" fill="rgb(210,113,41)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.8873%" y="2229" width="0.0128%" height="15" fill="rgb(207,103,39)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2239.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.8873%" y="2213" width="0.0128%" height="15" fill="rgb(207,82,38)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2223.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.8873%" y="2197" width="0.0128%" height="15" fill="rgb(207,16,26)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2207.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2181" width="0.0128%" height="15" fill="rgb(242,200,37)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2191.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.8873%" y="2165" width="0.0128%" height="15" fill="rgb(227,209,54)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2175.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2149" width="0.0128%" height="15" fill="rgb(216,202,28)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2133" width="0.0128%" height="15" fill="rgb(240,1,37)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2143.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.8873%" y="2117" width="0.0128%" height="15" fill="rgb(247,182,44)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2127.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="57.8873%" y="2101" width="0.0128%" height="15" fill="rgb(242,70,54)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2111.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.8873%" y="2085" width="0.0128%" height="15" fill="rgb(237,200,10)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2095.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="57.8873%" y="2069" width="0.0128%" height="15" fill="rgb(242,101,38)" fg:x="13585" fg:w="3"/><text x="58.1373%" y="2079.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.9001%" y="2741" width="0.0128%" height="15" fill="rgb(207,155,22)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9001%" y="2725" width="0.0128%" height="15" fill="rgb(207,172,11)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9001%" y="2709" width="0.0128%" height="15" fill="rgb(221,47,16)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.9001%" y="2693" width="0.0128%" height="15" fill="rgb(210,35,15)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.9001%" y="2677" width="0.0128%" height="15" fill="rgb(250,53,33)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9001%" y="2661" width="0.0128%" height="15" fill="rgb(229,69,25)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2671.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9001%" y="2645" width="0.0128%" height="15" fill="rgb(254,56,41)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.9001%" y="2629" width="0.0128%" height="15" fill="rgb(247,205,26)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9001%" y="2613" width="0.0128%" height="15" fill="rgb(211,166,37)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9001%" y="2597" width="0.0128%" height="15" fill="rgb(241,63,53)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="57.9001%" y="2581" width="0.0128%" height="15" fill="rgb(225,186,18)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9001%" y="2565" width="0.0128%" height="15" fill="rgb(254,142,17)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9001%" y="2549" width="0.0128%" height="15" fill="rgb(210,138,52)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.9001%" y="2533" width="0.0128%" height="15" fill="rgb(240,6,39)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9001%" y="2517" width="0.0128%" height="15" fill="rgb(210,153,46)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.9001%" y="2501" width="0.0128%" height="15" fill="rgb(253,81,51)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2511.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="57.9001%" y="2485" width="0.0128%" height="15" fill="rgb(250,153,51)" fg:x="13588" fg:w="3"/><text x="58.1501%" y="2495.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (23 samples, 0.10%)</title><rect x="57.8277%" y="3029" width="0.0980%" height="15" fill="rgb(243,223,6)" fg:x="13571" fg:w="23"/><text x="58.0777%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (23 samples, 0.10%)</title><rect x="57.8277%" y="3013" width="0.0980%" height="15" fill="rgb(247,7,29)" fg:x="13571" fg:w="23"/><text x="58.0777%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (23 samples, 0.10%)</title><rect x="57.8277%" y="2997" width="0.0980%" height="15" fill="rgb(205,78,38)" fg:x="13571" fg:w="23"/><text x="58.0777%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.10%)</title><rect x="57.8277%" y="2981" width="0.0980%" height="15" fill="rgb(235,210,47)" fg:x="13571" fg:w="23"/><text x="58.0777%" y="2991.50"></text></g><g><title>rayon_core::join::join_context (23 samples, 0.10%)</title><rect x="57.8277%" y="2965" width="0.0980%" height="15" fill="rgb(219,75,16)" fg:x="13571" fg:w="23"/><text x="58.0777%" y="2975.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.10%)</title><rect x="57.8277%" y="2949" width="0.0980%" height="15" fill="rgb(236,224,46)" fg:x="13571" fg:w="23"/><text x="58.0777%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (23 samples, 0.10%)</title><rect x="57.8277%" y="2933" width="0.0980%" height="15" fill="rgb(207,173,4)" fg:x="13571" fg:w="23"/><text x="58.0777%" y="2943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="57.9001%" y="2917" width="0.0256%" height="15" fill="rgb(252,22,54)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2927.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="57.9001%" y="2901" width="0.0256%" height="15" fill="rgb(231,29,8)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2911.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="57.9001%" y="2885" width="0.0256%" height="15" fill="rgb(243,54,3)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2895.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="57.9001%" y="2869" width="0.0256%" height="15" fill="rgb(217,217,52)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="57.9001%" y="2853" width="0.0256%" height="15" fill="rgb(252,137,26)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9001%" y="2837" width="0.0256%" height="15" fill="rgb(234,75,51)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9001%" y="2821" width="0.0256%" height="15" fill="rgb(244,190,54)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="57.9001%" y="2805" width="0.0256%" height="15" fill="rgb(243,225,28)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2815.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="57.9001%" y="2789" width="0.0256%" height="15" fill="rgb(208,150,51)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2799.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="57.9001%" y="2773" width="0.0256%" height="15" fill="rgb(225,145,8)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9001%" y="2757" width="0.0256%" height="15" fill="rgb(206,108,44)" fg:x="13588" fg:w="6"/><text x="58.1501%" y="2767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.9129%" y="2741" width="0.0128%" height="15" fill="rgb(252,29,42)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2751.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.9129%" y="2725" width="0.0128%" height="15" fill="rgb(209,39,6)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2735.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.9129%" y="2709" width="0.0128%" height="15" fill="rgb(250,150,16)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2719.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.9129%" y="2693" width="0.0128%" height="15" fill="rgb(236,145,44)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.9129%" y="2677" width="0.0128%" height="15" fill="rgb(219,223,4)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9129%" y="2661" width="0.0128%" height="15" fill="rgb(233,74,51)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9129%" y="2645" width="0.0128%" height="15" fill="rgb(231,118,29)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.9129%" y="2629" width="0.0128%" height="15" fill="rgb(232,97,53)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.9129%" y="2613" width="0.0128%" height="15" fill="rgb(216,196,7)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9129%" y="2597" width="0.0128%" height="15" fill="rgb(242,196,0)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2607.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9129%" y="2581" width="0.0128%" height="15" fill="rgb(250,24,39)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2591.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.9129%" y="2565" width="0.0128%" height="15" fill="rgb(215,216,27)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9129%" y="2549" width="0.0128%" height="15" fill="rgb(239,136,19)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9129%" y="2533" width="0.0128%" height="15" fill="rgb(249,198,44)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="57.9129%" y="2517" width="0.0128%" height="15" fill="rgb(243,212,43)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9129%" y="2501" width="0.0128%" height="15" fill="rgb(220,108,14)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9129%" y="2485" width="0.0128%" height="15" fill="rgb(233,83,54)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.9129%" y="2469" width="0.0128%" height="15" fill="rgb(221,4,24)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9129%" y="2453" width="0.0128%" height="15" fill="rgb(236,79,32)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.9129%" y="2437" width="0.0128%" height="15" fill="rgb(236,181,22)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2447.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="57.9129%" y="2421" width="0.0128%" height="15" fill="rgb(213,53,48)" fg:x="13591" fg:w="3"/><text x="58.1629%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="57.9257%" y="2741" width="0.0128%" height="15" fill="rgb(225,24,5)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9257%" y="2725" width="0.0128%" height="15" fill="rgb(229,222,3)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9257%" y="2709" width="0.0128%" height="15" fill="rgb(215,15,48)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.9257%" y="2693" width="0.0128%" height="15" fill="rgb(233,35,39)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.9257%" y="2677" width="0.0128%" height="15" fill="rgb(213,167,41)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9257%" y="2661" width="0.0128%" height="15" fill="rgb(212,219,20)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2671.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9257%" y="2645" width="0.0128%" height="15" fill="rgb(246,182,9)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.9257%" y="2629" width="0.0128%" height="15" fill="rgb(227,90,28)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9257%" y="2613" width="0.0128%" height="15" fill="rgb(241,186,3)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9257%" y="2597" width="0.0128%" height="15" fill="rgb(253,192,38)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="57.9257%" y="2581" width="0.0128%" height="15" fill="rgb(236,44,37)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9257%" y="2565" width="0.0128%" height="15" fill="rgb(232,228,29)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9257%" y="2549" width="0.0128%" height="15" fill="rgb(245,213,44)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.9257%" y="2533" width="0.0128%" height="15" fill="rgb(252,82,17)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9257%" y="2517" width="0.0128%" height="15" fill="rgb(216,210,4)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.9257%" y="2501" width="0.0128%" height="15" fill="rgb(214,22,53)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2511.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="57.9257%" y="2485" width="0.0128%" height="15" fill="rgb(207,190,9)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.9257%" y="2469" width="0.0128%" height="15" fill="rgb(222,54,51)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.9257%" y="2453" width="0.0128%" height="15" fill="rgb(223,155,24)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.9257%" y="2437" width="0.0128%" height="15" fill="rgb(209,143,0)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.9257%" y="2421" width="0.0128%" height="15" fill="rgb(237,160,43)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.9257%" y="2405" width="0.0128%" height="15" fill="rgb(234,151,41)" fg:x="13594" fg:w="3"/><text x="58.1757%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (39 samples, 0.17%)</title><rect x="57.7851%" y="3317" width="0.1662%" height="15" fill="rgb(247,220,35)" fg:x="13561" fg:w="39"/><text x="58.0351%" y="3327.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (39 samples, 0.17%)</title><rect x="57.7851%" y="3301" width="0.1662%" height="15" fill="rgb(244,86,30)" fg:x="13561" fg:w="39"/><text x="58.0351%" y="3311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (39 samples, 0.17%)</title><rect x="57.7851%" y="3285" width="0.1662%" height="15" fill="rgb(232,57,5)" fg:x="13561" fg:w="39"/><text x="58.0351%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.17%)</title><rect x="57.7851%" y="3269" width="0.1662%" height="15" fill="rgb(211,54,54)" fg:x="13561" fg:w="39"/><text x="58.0351%" y="3279.50"></text></g><g><title>rayon_core::join::join_context (39 samples, 0.17%)</title><rect x="57.7851%" y="3253" width="0.1662%" height="15" fill="rgb(241,204,6)" fg:x="13561" fg:w="39"/><text x="58.0351%" y="3263.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.17%)</title><rect x="57.7851%" y="3237" width="0.1662%" height="15" fill="rgb(219,13,19)" fg:x="13561" fg:w="39"/><text x="58.0351%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (39 samples, 0.17%)</title><rect x="57.7851%" y="3221" width="0.1662%" height="15" fill="rgb(234,128,14)" fg:x="13561" fg:w="39"/><text x="58.0351%" y="3231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (29 samples, 0.12%)</title><rect x="57.8277%" y="3205" width="0.1236%" height="15" fill="rgb(221,140,6)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3215.50"></text></g><g><title>std::panic::catch_unwind (29 samples, 0.12%)</title><rect x="57.8277%" y="3189" width="0.1236%" height="15" fill="rgb(246,105,8)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3199.50"></text></g><g><title>std::panicking::try (29 samples, 0.12%)</title><rect x="57.8277%" y="3173" width="0.1236%" height="15" fill="rgb(244,20,48)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3183.50"></text></g><g><title>std::panicking::try::do_call (29 samples, 0.12%)</title><rect x="57.8277%" y="3157" width="0.1236%" height="15" fill="rgb(209,171,13)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (29 samples, 0.12%)</title><rect x="57.8277%" y="3141" width="0.1236%" height="15" fill="rgb(249,170,3)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (29 samples, 0.12%)</title><rect x="57.8277%" y="3125" width="0.1236%" height="15" fill="rgb(232,17,37)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (29 samples, 0.12%)</title><rect x="57.8277%" y="3109" width="0.1236%" height="15" fill="rgb(242,203,36)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.12%)</title><rect x="57.8277%" y="3093" width="0.1236%" height="15" fill="rgb(229,144,39)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3103.50"></text></g><g><title>rayon_core::join::join_context (29 samples, 0.12%)</title><rect x="57.8277%" y="3077" width="0.1236%" height="15" fill="rgb(207,64,42)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3087.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.12%)</title><rect x="57.8277%" y="3061" width="0.1236%" height="15" fill="rgb(250,49,34)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (29 samples, 0.12%)</title><rect x="57.8277%" y="3045" width="0.1236%" height="15" fill="rgb(240,5,4)" fg:x="13571" fg:w="29"/><text x="58.0777%" y="3055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="57.9257%" y="3029" width="0.0256%" height="15" fill="rgb(222,184,18)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="3039.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="57.9257%" y="3013" width="0.0256%" height="15" fill="rgb(206,110,21)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="3023.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="57.9257%" y="2997" width="0.0256%" height="15" fill="rgb(254,139,11)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="3007.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="57.9257%" y="2981" width="0.0256%" height="15" fill="rgb(252,218,36)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="57.9257%" y="2965" width="0.0256%" height="15" fill="rgb(207,52,40)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9257%" y="2949" width="0.0256%" height="15" fill="rgb(217,11,12)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9257%" y="2933" width="0.0256%" height="15" fill="rgb(228,65,24)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="57.9257%" y="2917" width="0.0256%" height="15" fill="rgb(251,82,44)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2927.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="57.9257%" y="2901" width="0.0256%" height="15" fill="rgb(205,176,10)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2911.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="57.9257%" y="2885" width="0.0256%" height="15" fill="rgb(229,21,42)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9257%" y="2869" width="0.0256%" height="15" fill="rgb(217,173,32)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2879.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="57.9257%" y="2853" width="0.0256%" height="15" fill="rgb(210,137,43)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9257%" y="2837" width="0.0256%" height="15" fill="rgb(226,129,27)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9257%" y="2821" width="0.0256%" height="15" fill="rgb(223,113,16)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="57.9257%" y="2805" width="0.0256%" height="15" fill="rgb(234,229,26)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2815.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="57.9257%" y="2789" width="0.0256%" height="15" fill="rgb(208,158,9)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2799.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="57.9257%" y="2773" width="0.0256%" height="15" fill="rgb(219,204,17)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="57.9257%" y="2757" width="0.0256%" height="15" fill="rgb(230,53,52)" fg:x="13594" fg:w="6"/><text x="58.1757%" y="2767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="57.9385%" y="2741" width="0.0128%" height="15" fill="rgb(240,226,27)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2751.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="57.9385%" y="2725" width="0.0128%" height="15" fill="rgb(251,45,53)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2735.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="57.9385%" y="2709" width="0.0128%" height="15" fill="rgb(209,224,39)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2719.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="57.9385%" y="2693" width="0.0128%" height="15" fill="rgb(220,16,2)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="57.9385%" y="2677" width="0.0128%" height="15" fill="rgb(252,144,50)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9385%" y="2661" width="0.0128%" height="15" fill="rgb(225,33,46)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9385%" y="2645" width="0.0128%" height="15" fill="rgb(237,131,10)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.9385%" y="2629" width="0.0128%" height="15" fill="rgb(207,141,35)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.9385%" y="2613" width="0.0128%" height="15" fill="rgb(220,219,45)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9385%" y="2597" width="0.0128%" height="15" fill="rgb(221,99,42)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2607.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="57.9385%" y="2581" width="0.0128%" height="15" fill="rgb(208,192,24)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2591.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="57.9385%" y="2565" width="0.0128%" height="15" fill="rgb(252,215,24)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9385%" y="2549" width="0.0128%" height="15" fill="rgb(229,63,12)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="57.9385%" y="2533" width="0.0128%" height="15" fill="rgb(236,218,42)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="57.9385%" y="2517" width="0.0128%" height="15" fill="rgb(234,181,39)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9385%" y="2501" width="0.0128%" height="15" fill="rgb(238,33,35)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9385%" y="2485" width="0.0128%" height="15" fill="rgb(241,114,27)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="57.9385%" y="2469" width="0.0128%" height="15" fill="rgb(251,70,50)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="57.9385%" y="2453" width="0.0128%" height="15" fill="rgb(239,7,8)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="57.9385%" y="2437" width="0.0128%" height="15" fill="rgb(226,212,30)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2447.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="57.9385%" y="2421" width="0.0128%" height="15" fill="rgb(245,31,42)" fg:x="13597" fg:w="3"/><text x="58.1885%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="57.9513%" y="2805" width="0.0298%" height="15" fill="rgb(208,158,6)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9513%" y="2789" width="0.0298%" height="15" fill="rgb(226,157,35)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9513%" y="2773" width="0.0298%" height="15" fill="rgb(252,182,33)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.9513%" y="2757" width="0.0298%" height="15" fill="rgb(248,149,48)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="57.9513%" y="2741" width="0.0298%" height="15" fill="rgb(239,46,7)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2751.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.9513%" y="2725" width="0.0298%" height="15" fill="rgb(223,204,51)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2735.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.9513%" y="2709" width="0.0298%" height="15" fill="rgb(247,207,21)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2719.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="57.9513%" y="2693" width="0.0298%" height="15" fill="rgb(217,174,1)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2703.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.9513%" y="2677" width="0.0298%" height="15" fill="rgb(245,149,24)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2687.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.9513%" y="2661" width="0.0298%" height="15" fill="rgb(225,156,30)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="57.9513%" y="2645" width="0.0298%" height="15" fill="rgb(252,42,46)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2655.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9513%" y="2629" width="0.0298%" height="15" fill="rgb(244,16,0)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2639.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9513%" y="2613" width="0.0298%" height="15" fill="rgb(213,225,30)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2623.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="57.9513%" y="2597" width="0.0298%" height="15" fill="rgb(241,85,48)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2607.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9513%" y="2581" width="0.0298%" height="15" fill="rgb(218,170,27)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2591.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="57.9513%" y="2565" width="0.0298%" height="15" fill="rgb(207,87,12)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2575.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="57.9513%" y="2549" width="0.0298%" height="15" fill="rgb(249,52,46)" fg:x="13600" fg:w="7"/><text x="58.2013%" y="2559.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="57.9598%" y="2533" width="0.0213%" height="15" fill="rgb(230,87,31)" fg:x="13602" fg:w="5"/><text x="58.2098%" y="2543.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="57.9598%" y="2517" width="0.0213%" height="15" fill="rgb(209,133,24)" fg:x="13602" fg:w="5"/><text x="58.2098%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="57.9598%" y="2501" width="0.0213%" height="15" fill="rgb(233,52,10)" fg:x="13602" fg:w="5"/><text x="58.2098%" y="2511.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.9598%" y="2485" width="0.0213%" height="15" fill="rgb(250,73,19)" fg:x="13602" fg:w="5"/><text x="58.2098%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.9598%" y="2469" width="0.0213%" height="15" fill="rgb(223,80,36)" fg:x="13602" fg:w="5"/><text x="58.2098%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="57.9811%" y="2469" width="0.0170%" height="15" fill="rgb(206,150,37)" fg:x="13607" fg:w="4"/><text x="58.2311%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="57.9811%" y="2453" width="0.0170%" height="15" fill="rgb(244,145,39)" fg:x="13607" fg:w="4"/><text x="58.2311%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="57.9811%" y="2437" width="0.0170%" height="15" fill="rgb(223,181,46)" fg:x="13607" fg:w="4"/><text x="58.2311%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="57.9811%" y="2421" width="0.0170%" height="15" fill="rgb(216,105,11)" fg:x="13607" fg:w="4"/><text x="58.2311%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.9811%" y="2405" width="0.0170%" height="15" fill="rgb(216,223,5)" fg:x="13607" fg:w="4"/><text x="58.2311%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="57.9811%" y="2389" width="0.0170%" height="15" fill="rgb(217,188,49)" fg:x="13607" fg:w="4"/><text x="58.2311%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="57.9853%" y="2373" width="0.0128%" height="15" fill="rgb(243,26,46)" fg:x="13608" fg:w="3"/><text x="58.2353%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="57.9513%" y="2917" width="0.0597%" height="15" fill="rgb(210,47,10)" fg:x="13600" fg:w="14"/><text x="58.2013%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="57.9513%" y="2901" width="0.0597%" height="15" fill="rgb(233,66,50)" fg:x="13600" fg:w="14"/><text x="58.2013%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="57.9513%" y="2885" width="0.0597%" height="15" fill="rgb(239,157,53)" fg:x="13600" fg:w="14"/><text x="58.2013%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="57.9513%" y="2869" width="0.0597%" height="15" fill="rgb(249,12,37)" fg:x="13600" fg:w="14"/><text x="58.2013%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="57.9513%" y="2853" width="0.0597%" height="15" fill="rgb(248,166,41)" fg:x="13600" fg:w="14"/><text x="58.2013%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="57.9513%" y="2837" width="0.0597%" height="15" fill="rgb(236,175,46)" fg:x="13600" fg:w="14"/><text x="58.2013%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="57.9513%" y="2821" width="0.0597%" height="15" fill="rgb(222,211,3)" fg:x="13600" fg:w="14"/><text x="58.2013%" y="2831.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="57.9811%" y="2805" width="0.0298%" height="15" fill="rgb(211,163,1)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2815.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="57.9811%" y="2789" width="0.0298%" height="15" fill="rgb(209,41,5)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2799.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="57.9811%" y="2773" width="0.0298%" height="15" fill="rgb(251,33,19)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2783.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="57.9811%" y="2757" width="0.0298%" height="15" fill="rgb(242,148,35)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2767.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="57.9811%" y="2741" width="0.0298%" height="15" fill="rgb(236,124,52)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9811%" y="2725" width="0.0298%" height="15" fill="rgb(217,108,3)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9811%" y="2709" width="0.0298%" height="15" fill="rgb(217,178,24)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="57.9811%" y="2693" width="0.0298%" height="15" fill="rgb(212,110,1)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="57.9811%" y="2677" width="0.0298%" height="15" fill="rgb(224,89,33)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.9811%" y="2661" width="0.0298%" height="15" fill="rgb(223,108,49)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2671.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="57.9811%" y="2645" width="0.0298%" height="15" fill="rgb(215,121,4)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="57.9811%" y="2629" width="0.0298%" height="15" fill="rgb(241,151,18)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.9811%" y="2613" width="0.0298%" height="15" fill="rgb(207,120,21)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="57.9811%" y="2597" width="0.0298%" height="15" fill="rgb(243,198,24)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="57.9811%" y="2581" width="0.0298%" height="15" fill="rgb(220,154,53)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9811%" y="2565" width="0.0298%" height="15" fill="rgb(251,34,20)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9811%" y="2549" width="0.0298%" height="15" fill="rgb(223,128,18)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="57.9811%" y="2533" width="0.0298%" height="15" fill="rgb(217,124,25)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="57.9811%" y="2517" width="0.0298%" height="15" fill="rgb(216,187,31)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="57.9811%" y="2501" width="0.0298%" height="15" fill="rgb(216,142,4)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2511.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="57.9811%" y="2485" width="0.0298%" height="15" fill="rgb(240,169,4)" fg:x="13607" fg:w="7"/><text x="58.2311%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="57.9981%" y="2469" width="0.0128%" height="15" fill="rgb(245,180,33)" fg:x="13611" fg:w="3"/><text x="58.2481%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="57.9981%" y="2453" width="0.0128%" height="15" fill="rgb(214,63,48)" fg:x="13611" fg:w="3"/><text x="58.2481%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="57.9981%" y="2437" width="0.0128%" height="15" fill="rgb(221,4,32)" fg:x="13611" fg:w="3"/><text x="58.2481%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.9981%" y="2421" width="0.0128%" height="15" fill="rgb(252,162,30)" fg:x="13611" fg:w="3"/><text x="58.2481%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.9981%" y="2405" width="0.0128%" height="15" fill="rgb(230,96,2)" fg:x="13611" fg:w="3"/><text x="58.2481%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="58.0109%" y="2469" width="0.0128%" height="15" fill="rgb(253,17,3)" fg:x="13614" fg:w="3"/><text x="58.2609%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.0109%" y="2453" width="0.0128%" height="15" fill="rgb(211,188,7)" fg:x="13614" fg:w="3"/><text x="58.2609%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.0109%" y="2437" width="0.0128%" height="15" fill="rgb(225,52,41)" fg:x="13614" fg:w="3"/><text x="58.2609%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.0109%" y="2421" width="0.0128%" height="15" fill="rgb(224,16,25)" fg:x="13614" fg:w="3"/><text x="58.2609%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.0109%" y="2405" width="0.0128%" height="15" fill="rgb(227,10,53)" fg:x="13614" fg:w="3"/><text x="58.2609%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.0109%" y="2389" width="0.0128%" height="15" fill="rgb(246,102,0)" fg:x="13614" fg:w="3"/><text x="58.2609%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.0109%" y="2741" width="0.0213%" height="15" fill="rgb(239,2,22)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.0109%" y="2725" width="0.0213%" height="15" fill="rgb(215,152,29)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.0109%" y="2709" width="0.0213%" height="15" fill="rgb(216,176,30)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.0109%" y="2693" width="0.0213%" height="15" fill="rgb(245,219,37)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="58.0109%" y="2677" width="0.0213%" height="15" fill="rgb(249,174,28)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.0109%" y="2661" width="0.0213%" height="15" fill="rgb(214,180,49)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2671.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.0109%" y="2645" width="0.0213%" height="15" fill="rgb(225,162,53)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="58.0109%" y="2629" width="0.0213%" height="15" fill="rgb(245,23,41)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.0109%" y="2613" width="0.0213%" height="15" fill="rgb(225,225,31)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.0109%" y="2597" width="0.0213%" height="15" fill="rgb(210,7,26)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="58.0109%" y="2581" width="0.0213%" height="15" fill="rgb(240,122,10)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="58.0109%" y="2565" width="0.0213%" height="15" fill="rgb(205,36,27)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="58.0109%" y="2549" width="0.0213%" height="15" fill="rgb(238,225,5)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="58.0109%" y="2533" width="0.0213%" height="15" fill="rgb(224,181,42)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="58.0109%" y="2517" width="0.0213%" height="15" fill="rgb(207,129,3)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="58.0109%" y="2501" width="0.0213%" height="15" fill="rgb(230,189,40)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2511.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="58.0109%" y="2485" width="0.0213%" height="15" fill="rgb(228,149,14)" fg:x="13614" fg:w="5"/><text x="58.2609%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.0322%" y="2741" width="0.0128%" height="15" fill="rgb(233,49,36)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.0322%" y="2725" width="0.0128%" height="15" fill="rgb(234,170,12)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2735.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.0322%" y="2709" width="0.0128%" height="15" fill="rgb(228,86,43)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2719.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.0322%" y="2693" width="0.0128%" height="15" fill="rgb(234,24,45)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2703.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.0322%" y="2677" width="0.0128%" height="15" fill="rgb(220,206,18)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2687.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.0322%" y="2661" width="0.0128%" height="15" fill="rgb(231,49,5)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.0322%" y="2645" width="0.0128%" height="15" fill="rgb(236,47,29)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.0322%" y="2629" width="0.0128%" height="15" fill="rgb(246,112,37)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2639.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.0322%" y="2613" width="0.0128%" height="15" fill="rgb(217,225,52)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.0322%" y="2597" width="0.0128%" height="15" fill="rgb(226,0,42)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.0322%" y="2581" width="0.0128%" height="15" fill="rgb(231,178,33)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0322%" y="2565" width="0.0128%" height="15" fill="rgb(207,73,49)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0322%" y="2549" width="0.0128%" height="15" fill="rgb(241,54,23)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0322%" y="2533" width="0.0128%" height="15" fill="rgb(208,22,40)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.0322%" y="2517" width="0.0128%" height="15" fill="rgb(251,38,4)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2527.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.0322%" y="2501" width="0.0128%" height="15" fill="rgb(239,126,9)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.0322%" y="2485" width="0.0128%" height="15" fill="rgb(251,111,28)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0322%" y="2469" width="0.0128%" height="15" fill="rgb(244,132,1)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2479.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.0322%" y="2453" width="0.0128%" height="15" fill="rgb(241,114,29)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2463.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.0322%" y="2437" width="0.0128%" height="15" fill="rgb(247,177,18)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2447.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.0322%" y="2421" width="0.0128%" height="15" fill="rgb(214,57,31)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2431.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.0322%" y="2405" width="0.0128%" height="15" fill="rgb(242,96,34)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2415.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.0322%" y="2389" width="0.0128%" height="15" fill="rgb(208,14,46)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0322%" y="2373" width="0.0128%" height="15" fill="rgb(220,14,45)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0322%" y="2357" width="0.0128%" height="15" fill="rgb(245,136,27)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.0322%" y="2341" width="0.0128%" height="15" fill="rgb(214,167,38)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2351.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.0322%" y="2325" width="0.0128%" height="15" fill="rgb(212,198,5)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2335.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.0322%" y="2309" width="0.0128%" height="15" fill="rgb(249,89,8)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0322%" y="2293" width="0.0128%" height="15" fill="rgb(241,184,42)" fg:x="13619" fg:w="3"/><text x="58.2822%" y="2303.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (25 samples, 0.11%)</title><rect x="57.9513%" y="3029" width="0.1065%" height="15" fill="rgb(212,56,19)" fg:x="13600" fg:w="25"/><text x="58.2013%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (25 samples, 0.11%)</title><rect x="57.9513%" y="3013" width="0.1065%" height="15" fill="rgb(230,177,40)" fg:x="13600" fg:w="25"/><text x="58.2013%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (25 samples, 0.11%)</title><rect x="57.9513%" y="2997" width="0.1065%" height="15" fill="rgb(244,166,18)" fg:x="13600" fg:w="25"/><text x="58.2013%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.11%)</title><rect x="57.9513%" y="2981" width="0.1065%" height="15" fill="rgb(220,148,31)" fg:x="13600" fg:w="25"/><text x="58.2013%" y="2991.50"></text></g><g><title>rayon_core::join::join_context (25 samples, 0.11%)</title><rect x="57.9513%" y="2965" width="0.1065%" height="15" fill="rgb(248,14,38)" fg:x="13600" fg:w="25"/><text x="58.2013%" y="2975.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.11%)</title><rect x="57.9513%" y="2949" width="0.1065%" height="15" fill="rgb(208,3,18)" fg:x="13600" fg:w="25"/><text x="58.2013%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (25 samples, 0.11%)</title><rect x="57.9513%" y="2933" width="0.1065%" height="15" fill="rgb(229,108,33)" fg:x="13600" fg:w="25"/><text x="58.2013%" y="2943.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="58.0109%" y="2917" width="0.0469%" height="15" fill="rgb(249,73,5)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2927.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="58.0109%" y="2901" width="0.0469%" height="15" fill="rgb(218,21,30)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2911.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="58.0109%" y="2885" width="0.0469%" height="15" fill="rgb(215,126,34)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2895.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="58.0109%" y="2869" width="0.0469%" height="15" fill="rgb(253,67,15)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2879.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="58.0109%" y="2853" width="0.0469%" height="15" fill="rgb(253,58,47)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="58.0109%" y="2837" width="0.0469%" height="15" fill="rgb(222,7,12)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="58.0109%" y="2821" width="0.0469%" height="15" fill="rgb(213,113,24)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="58.0109%" y="2805" width="0.0469%" height="15" fill="rgb(212,111,5)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2815.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="58.0109%" y="2789" width="0.0469%" height="15" fill="rgb(206,26,32)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2799.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="58.0109%" y="2773" width="0.0469%" height="15" fill="rgb(225,32,15)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="58.0109%" y="2757" width="0.0469%" height="15" fill="rgb(237,65,46)" fg:x="13614" fg:w="11"/><text x="58.2609%" y="2767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.0450%" y="2741" width="0.0128%" height="15" fill="rgb(210,114,10)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2751.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.0450%" y="2725" width="0.0128%" height="15" fill="rgb(235,116,19)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2735.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.0450%" y="2709" width="0.0128%" height="15" fill="rgb(209,50,25)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2719.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.0450%" y="2693" width="0.0128%" height="15" fill="rgb(208,156,35)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.0450%" y="2677" width="0.0128%" height="15" fill="rgb(208,85,28)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0450%" y="2661" width="0.0128%" height="15" fill="rgb(228,19,41)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0450%" y="2645" width="0.0128%" height="15" fill="rgb(233,159,12)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.0450%" y="2629" width="0.0128%" height="15" fill="rgb(215,46,54)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.0450%" y="2613" width="0.0128%" height="15" fill="rgb(217,73,17)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.0450%" y="2597" width="0.0128%" height="15" fill="rgb(246,141,16)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2607.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.0450%" y="2581" width="0.0128%" height="15" fill="rgb(252,6,27)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2591.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.0450%" y="2565" width="0.0128%" height="15" fill="rgb(250,68,6)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.0450%" y="2549" width="0.0128%" height="15" fill="rgb(229,91,32)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.0450%" y="2533" width="0.0128%" height="15" fill="rgb(218,113,35)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.0450%" y="2517" width="0.0128%" height="15" fill="rgb(210,150,54)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0450%" y="2501" width="0.0128%" height="15" fill="rgb(217,197,12)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0450%" y="2485" width="0.0128%" height="15" fill="rgb(215,193,46)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.0450%" y="2469" width="0.0128%" height="15" fill="rgb(224,183,19)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.0450%" y="2453" width="0.0128%" height="15" fill="rgb(221,40,53)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.0450%" y="2437" width="0.0128%" height="15" fill="rgb(244,141,19)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2447.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.0450%" y="2421" width="0.0128%" height="15" fill="rgb(207,224,41)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="58.0450%" y="2405" width="0.0128%" height="15" fill="rgb(220,54,26)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.0450%" y="2389" width="0.0128%" height="15" fill="rgb(235,146,25)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.0450%" y="2373" width="0.0128%" height="15" fill="rgb(253,213,47)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.0450%" y="2357" width="0.0128%" height="15" fill="rgb(227,50,41)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.0450%" y="2341" width="0.0128%" height="15" fill="rgb(225,214,8)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.0450%" y="2325" width="0.0128%" height="15" fill="rgb(249,20,51)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="58.0450%" y="2309" width="0.0128%" height="15" fill="rgb(234,10,39)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="58.0450%" y="2293" width="0.0128%" height="15" fill="rgb(243,156,44)" fg:x="13622" fg:w="3"/><text x="58.2950%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (4 samples, 0.02%)</title><rect x="58.0620%" y="2373" width="0.0170%" height="15" fill="rgb(207,117,26)" fg:x="13626" fg:w="4"/><text x="58.3120%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="58.0663%" y="2357" width="0.0128%" height="15" fill="rgb(227,32,25)" fg:x="13627" fg:w="3"/><text x="58.3163%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="58.0620%" y="2469" width="0.0213%" height="15" fill="rgb(230,102,7)" fg:x="13626" fg:w="5"/><text x="58.3120%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="58.0620%" y="2453" width="0.0213%" height="15" fill="rgb(211,115,50)" fg:x="13626" fg:w="5"/><text x="58.3120%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="58.0620%" y="2437" width="0.0213%" height="15" fill="rgb(242,183,29)" fg:x="13626" fg:w="5"/><text x="58.3120%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="58.0620%" y="2421" width="0.0213%" height="15" fill="rgb(206,5,31)" fg:x="13626" fg:w="5"/><text x="58.3120%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="58.0620%" y="2405" width="0.0213%" height="15" fill="rgb(240,225,3)" fg:x="13626" fg:w="5"/><text x="58.3120%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="58.0620%" y="2389" width="0.0213%" height="15" fill="rgb(219,220,44)" fg:x="13626" fg:w="5"/><text x="58.3120%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="58.0620%" y="2741" width="0.0384%" height="15" fill="rgb(206,161,27)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="58.0620%" y="2725" width="0.0384%" height="15" fill="rgb(225,110,22)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="58.0620%" y="2709" width="0.0384%" height="15" fill="rgb(245,36,1)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="58.0620%" y="2693" width="0.0384%" height="15" fill="rgb(218,28,24)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="58.0620%" y="2677" width="0.0384%" height="15" fill="rgb(238,112,10)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="58.0620%" y="2661" width="0.0384%" height="15" fill="rgb(228,210,12)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2671.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="58.0620%" y="2645" width="0.0384%" height="15" fill="rgb(233,221,7)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="58.0620%" y="2629" width="0.0384%" height="15" fill="rgb(242,180,32)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="58.0620%" y="2613" width="0.0384%" height="15" fill="rgb(217,199,26)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="58.0620%" y="2597" width="0.0384%" height="15" fill="rgb(229,116,48)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="58.0620%" y="2581" width="0.0384%" height="15" fill="rgb(230,81,28)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="58.0620%" y="2565" width="0.0384%" height="15" fill="rgb(214,186,19)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="58.0620%" y="2549" width="0.0384%" height="15" fill="rgb(207,132,25)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="58.0620%" y="2533" width="0.0384%" height="15" fill="rgb(220,62,32)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="58.0620%" y="2517" width="0.0384%" height="15" fill="rgb(218,91,9)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="58.0620%" y="2501" width="0.0384%" height="15" fill="rgb(251,71,7)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2511.50"></text></g><g><title>criterion::analysis::estimates::stats (9 samples, 0.04%)</title><rect x="58.0620%" y="2485" width="0.0384%" height="15" fill="rgb(231,90,7)" fg:x="13626" fg:w="9"/><text x="58.3120%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="58.0833%" y="2469" width="0.0170%" height="15" fill="rgb(208,39,26)" fg:x="13631" fg:w="4"/><text x="58.3333%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="58.0833%" y="2453" width="0.0170%" height="15" fill="rgb(246,213,18)" fg:x="13631" fg:w="4"/><text x="58.3333%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="58.0833%" y="2437" width="0.0170%" height="15" fill="rgb(253,208,10)" fg:x="13631" fg:w="4"/><text x="58.3333%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.0833%" y="2421" width="0.0170%" height="15" fill="rgb(215,49,45)" fg:x="13631" fg:w="4"/><text x="58.3333%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.0833%" y="2405" width="0.0170%" height="15" fill="rgb(215,20,2)" fg:x="13631" fg:w="4"/><text x="58.3333%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="58.0620%" y="2853" width="0.0511%" height="15" fill="rgb(219,35,42)" fg:x="13626" fg:w="12"/><text x="58.3120%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="58.0620%" y="2837" width="0.0511%" height="15" fill="rgb(205,172,28)" fg:x="13626" fg:w="12"/><text x="58.3120%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="58.0620%" y="2821" width="0.0511%" height="15" fill="rgb(206,2,24)" fg:x="13626" fg:w="12"/><text x="58.3120%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="58.0620%" y="2805" width="0.0511%" height="15" fill="rgb(220,120,30)" fg:x="13626" fg:w="12"/><text x="58.3120%" y="2815.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="58.0620%" y="2789" width="0.0511%" height="15" fill="rgb(241,21,34)" fg:x="13626" fg:w="12"/><text x="58.3120%" y="2799.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="58.0620%" y="2773" width="0.0511%" height="15" fill="rgb(245,205,14)" fg:x="13626" fg:w="12"/><text x="58.3120%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="58.0620%" y="2757" width="0.0511%" height="15" fill="rgb(223,120,50)" fg:x="13626" fg:w="12"/><text x="58.3120%" y="2767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.1004%" y="2741" width="0.0128%" height="15" fill="rgb(220,184,49)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2751.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.1004%" y="2725" width="0.0128%" height="15" fill="rgb(249,153,36)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2735.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.1004%" y="2709" width="0.0128%" height="15" fill="rgb(242,19,49)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2719.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.1004%" y="2693" width="0.0128%" height="15" fill="rgb(206,89,14)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.1004%" y="2677" width="0.0128%" height="15" fill="rgb(237,202,28)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1004%" y="2661" width="0.0128%" height="15" fill="rgb(205,60,8)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1004%" y="2645" width="0.0128%" height="15" fill="rgb(251,11,2)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.1004%" y="2629" width="0.0128%" height="15" fill="rgb(236,44,37)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.1004%" y="2613" width="0.0128%" height="15" fill="rgb(237,206,47)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.1004%" y="2597" width="0.0128%" height="15" fill="rgb(211,217,50)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2607.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.1004%" y="2581" width="0.0128%" height="15" fill="rgb(227,36,49)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2591.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.1004%" y="2565" width="0.0128%" height="15" fill="rgb(215,42,41)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.1004%" y="2549" width="0.0128%" height="15" fill="rgb(227,111,40)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.1004%" y="2533" width="0.0128%" height="15" fill="rgb(237,202,42)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.1004%" y="2517" width="0.0128%" height="15" fill="rgb(228,136,30)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1004%" y="2501" width="0.0128%" height="15" fill="rgb(232,25,32)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1004%" y="2485" width="0.0128%" height="15" fill="rgb(239,178,54)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.1004%" y="2469" width="0.0128%" height="15" fill="rgb(236,29,8)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1004%" y="2453" width="0.0128%" height="15" fill="rgb(240,112,25)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.1004%" y="2437" width="0.0128%" height="15" fill="rgb(228,47,30)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2447.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.1004%" y="2421" width="0.0128%" height="15" fill="rgb(228,145,9)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="58.1004%" y="2405" width="0.0128%" height="15" fill="rgb(240,70,11)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.1004%" y="2389" width="0.0128%" height="15" fill="rgb(207,210,19)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.1004%" y="2373" width="0.0128%" height="15" fill="rgb(223,74,24)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.1004%" y="2357" width="0.0128%" height="15" fill="rgb(229,144,41)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.1004%" y="2341" width="0.0128%" height="15" fill="rgb(221,109,48)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.1004%" y="2325" width="0.0128%" height="15" fill="rgb(242,88,25)" fg:x="13635" fg:w="3"/><text x="58.3504%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (41 samples, 0.17%)</title><rect x="57.9513%" y="3141" width="0.1747%" height="15" fill="rgb(228,224,34)" fg:x="13600" fg:w="41"/><text x="58.2013%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (41 samples, 0.17%)</title><rect x="57.9513%" y="3125" width="0.1747%" height="15" fill="rgb(239,138,40)" fg:x="13600" fg:w="41"/><text x="58.2013%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (41 samples, 0.17%)</title><rect x="57.9513%" y="3109" width="0.1747%" height="15" fill="rgb(227,97,36)" fg:x="13600" fg:w="41"/><text x="58.2013%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.17%)</title><rect x="57.9513%" y="3093" width="0.1747%" height="15" fill="rgb(243,220,50)" fg:x="13600" fg:w="41"/><text x="58.2013%" y="3103.50"></text></g><g><title>rayon_core::join::join_context (41 samples, 0.17%)</title><rect x="57.9513%" y="3077" width="0.1747%" height="15" fill="rgb(216,151,17)" fg:x="13600" fg:w="41"/><text x="58.2013%" y="3087.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.17%)</title><rect x="57.9513%" y="3061" width="0.1747%" height="15" fill="rgb(217,35,14)" fg:x="13600" fg:w="41"/><text x="58.2013%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (41 samples, 0.17%)</title><rect x="57.9513%" y="3045" width="0.1747%" height="15" fill="rgb(208,24,40)" fg:x="13600" fg:w="41"/><text x="58.2013%" y="3055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="58.0620%" y="3029" width="0.0639%" height="15" fill="rgb(218,53,27)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="3039.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="58.0620%" y="3013" width="0.0639%" height="15" fill="rgb(240,219,36)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="3023.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="58.0620%" y="2997" width="0.0639%" height="15" fill="rgb(221,54,11)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="3007.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="58.0620%" y="2981" width="0.0639%" height="15" fill="rgb(231,147,47)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="58.0620%" y="2965" width="0.0639%" height="15" fill="rgb(229,82,20)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="58.0620%" y="2949" width="0.0639%" height="15" fill="rgb(211,68,41)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="58.0620%" y="2933" width="0.0639%" height="15" fill="rgb(253,217,31)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="58.0620%" y="2917" width="0.0639%" height="15" fill="rgb(221,118,11)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2927.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="58.0620%" y="2901" width="0.0639%" height="15" fill="rgb(222,148,42)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2911.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="58.0620%" y="2885" width="0.0639%" height="15" fill="rgb(209,152,34)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="58.0620%" y="2869" width="0.0639%" height="15" fill="rgb(226,9,28)" fg:x="13626" fg:w="15"/><text x="58.3120%" y="2879.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.1132%" y="2853" width="0.0128%" height="15" fill="rgb(220,105,29)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2863.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.1132%" y="2837" width="0.0128%" height="15" fill="rgb(239,132,15)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2847.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.1132%" y="2821" width="0.0128%" height="15" fill="rgb(246,186,6)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2831.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.1132%" y="2805" width="0.0128%" height="15" fill="rgb(246,23,52)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2815.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.1132%" y="2789" width="0.0128%" height="15" fill="rgb(231,220,38)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1132%" y="2773" width="0.0128%" height="15" fill="rgb(243,214,17)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1132%" y="2757" width="0.0128%" height="15" fill="rgb(224,149,10)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.1132%" y="2741" width="0.0128%" height="15" fill="rgb(219,65,2)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2751.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.1132%" y="2725" width="0.0128%" height="15" fill="rgb(251,211,30)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.1132%" y="2709" width="0.0128%" height="15" fill="rgb(223,28,0)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.1132%" y="2693" width="0.0128%" height="15" fill="rgb(209,197,39)" fg:x="13638" fg:w="3"/><text x="58.3632%" y="2703.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (5 samples, 0.02%)</title><rect x="58.1345%" y="2373" width="0.0213%" height="15" fill="rgb(248,170,42)" fg:x="13643" fg:w="5"/><text x="58.3845%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (4 samples, 0.02%)</title><rect x="58.1387%" y="2357" width="0.0170%" height="15" fill="rgb(240,170,31)" fg:x="13644" fg:w="4"/><text x="58.3887%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="58.1302%" y="2469" width="0.0298%" height="15" fill="rgb(253,219,18)" fg:x="13642" fg:w="7"/><text x="58.3802%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="58.1302%" y="2453" width="0.0298%" height="15" fill="rgb(230,85,28)" fg:x="13642" fg:w="7"/><text x="58.3802%" y="2463.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="58.1302%" y="2437" width="0.0298%" height="15" fill="rgb(213,122,17)" fg:x="13642" fg:w="7"/><text x="58.3802%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="58.1302%" y="2421" width="0.0298%" height="15" fill="rgb(247,23,29)" fg:x="13642" fg:w="7"/><text x="58.3802%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="58.1302%" y="2405" width="0.0298%" height="15" fill="rgb(217,73,37)" fg:x="13642" fg:w="7"/><text x="58.3802%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="58.1302%" y="2389" width="0.0298%" height="15" fill="rgb(238,97,16)" fg:x="13642" fg:w="7"/><text x="58.3802%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="58.1686%" y="2389" width="0.0128%" height="15" fill="rgb(226,130,35)" fg:x="13651" fg:w="3"/><text x="58.4186%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="58.1686%" y="2373" width="0.0128%" height="15" fill="rgb(252,65,48)" fg:x="13651" fg:w="3"/><text x="58.4186%" y="2383.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="58.1302%" y="2741" width="0.0554%" height="15" fill="rgb(249,42,27)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="58.1302%" y="2725" width="0.0554%" height="15" fill="rgb(215,21,6)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="58.1302%" y="2709" width="0.0554%" height="15" fill="rgb(209,47,53)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="58.1302%" y="2693" width="0.0554%" height="15" fill="rgb(251,161,31)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.06%)</title><rect x="58.1302%" y="2677" width="0.0554%" height="15" fill="rgb(225,190,23)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2687.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="58.1302%" y="2661" width="0.0554%" height="15" fill="rgb(221,227,48)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2671.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="58.1302%" y="2645" width="0.0554%" height="15" fill="rgb(226,25,5)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="58.1302%" y="2629" width="0.0554%" height="15" fill="rgb(246,174,31)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2639.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="58.1302%" y="2613" width="0.0554%" height="15" fill="rgb(233,48,43)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2623.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="58.1302%" y="2597" width="0.0554%" height="15" fill="rgb(222,89,10)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (13 samples, 0.06%)</title><rect x="58.1302%" y="2581" width="0.0554%" height="15" fill="rgb(236,111,44)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2591.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (13 samples, 0.06%)</title><rect x="58.1302%" y="2565" width="0.0554%" height="15" fill="rgb(218,218,3)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (13 samples, 0.06%)</title><rect x="58.1302%" y="2549" width="0.0554%" height="15" fill="rgb(250,75,28)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2559.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (13 samples, 0.06%)</title><rect x="58.1302%" y="2533" width="0.0554%" height="15" fill="rgb(230,70,8)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2543.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (13 samples, 0.06%)</title><rect x="58.1302%" y="2517" width="0.0554%" height="15" fill="rgb(241,129,18)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2527.50"></text></g><g><title>core::ops::function::Fn::call (13 samples, 0.06%)</title><rect x="58.1302%" y="2501" width="0.0554%" height="15" fill="rgb(229,21,39)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2511.50"></text></g><g><title>criterion::analysis::estimates::stats (13 samples, 0.06%)</title><rect x="58.1302%" y="2485" width="0.0554%" height="15" fill="rgb(208,213,32)" fg:x="13642" fg:w="13"/><text x="58.3802%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="58.1600%" y="2469" width="0.0256%" height="15" fill="rgb(234,106,44)" fg:x="13649" fg:w="6"/><text x="58.4100%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="58.1600%" y="2453" width="0.0256%" height="15" fill="rgb(230,29,3)" fg:x="13649" fg:w="6"/><text x="58.4100%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="58.1600%" y="2437" width="0.0256%" height="15" fill="rgb(212,87,26)" fg:x="13649" fg:w="6"/><text x="58.4100%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="58.1600%" y="2421" width="0.0256%" height="15" fill="rgb(235,7,49)" fg:x="13649" fg:w="6"/><text x="58.4100%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="58.1600%" y="2405" width="0.0256%" height="15" fill="rgb(230,105,5)" fg:x="13649" fg:w="6"/><text x="58.4100%" y="2415.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (17 samples, 0.07%)</title><rect x="58.1302%" y="2853" width="0.0724%" height="15" fill="rgb(244,180,17)" fg:x="13642" fg:w="17"/><text x="58.3802%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (17 samples, 0.07%)</title><rect x="58.1302%" y="2837" width="0.0724%" height="15" fill="rgb(230,106,16)" fg:x="13642" fg:w="17"/><text x="58.3802%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (17 samples, 0.07%)</title><rect x="58.1302%" y="2821" width="0.0724%" height="15" fill="rgb(217,34,43)" fg:x="13642" fg:w="17"/><text x="58.3802%" y="2831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="58.1302%" y="2805" width="0.0724%" height="15" fill="rgb(223,45,7)" fg:x="13642" fg:w="17"/><text x="58.3802%" y="2815.50"></text></g><g><title>rayon_core::join::join_context (17 samples, 0.07%)</title><rect x="58.1302%" y="2789" width="0.0724%" height="15" fill="rgb(219,2,13)" fg:x="13642" fg:w="17"/><text x="58.3802%" y="2799.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="58.1302%" y="2773" width="0.0724%" height="15" fill="rgb(225,66,29)" fg:x="13642" fg:w="17"/><text x="58.3802%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (17 samples, 0.07%)</title><rect x="58.1302%" y="2757" width="0.0724%" height="15" fill="rgb(241,155,25)" fg:x="13642" fg:w="17"/><text x="58.3802%" y="2767.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.1856%" y="2741" width="0.0170%" height="15" fill="rgb(243,81,16)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2751.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.1856%" y="2725" width="0.0170%" height="15" fill="rgb(215,176,46)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2735.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.1856%" y="2709" width="0.0170%" height="15" fill="rgb(244,192,23)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2719.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.1856%" y="2693" width="0.0170%" height="15" fill="rgb(245,28,35)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2703.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.1856%" y="2677" width="0.0170%" height="15" fill="rgb(209,207,7)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.1856%" y="2661" width="0.0170%" height="15" fill="rgb(241,195,14)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.1856%" y="2645" width="0.0170%" height="15" fill="rgb(243,101,26)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.1856%" y="2629" width="0.0170%" height="15" fill="rgb(236,44,28)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="58.1856%" y="2613" width="0.0170%" height="15" fill="rgb(218,166,16)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.1856%" y="2597" width="0.0170%" height="15" fill="rgb(227,38,1)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2607.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.1856%" y="2581" width="0.0170%" height="15" fill="rgb(231,124,24)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2591.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="58.1856%" y="2565" width="0.0170%" height="15" fill="rgb(226,50,18)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.1856%" y="2549" width="0.0170%" height="15" fill="rgb(252,113,47)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.1856%" y="2533" width="0.0170%" height="15" fill="rgb(230,98,3)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="58.1856%" y="2517" width="0.0170%" height="15" fill="rgb(251,140,22)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="58.1856%" y="2501" width="0.0170%" height="15" fill="rgb(240,33,22)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="58.1856%" y="2485" width="0.0170%" height="15" fill="rgb(251,164,36)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="58.1856%" y="2469" width="0.0170%" height="15" fill="rgb(233,185,10)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="58.1856%" y="2453" width="0.0170%" height="15" fill="rgb(208,176,5)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="58.1856%" y="2437" width="0.0170%" height="15" fill="rgb(247,86,28)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2447.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="58.1856%" y="2421" width="0.0170%" height="15" fill="rgb(223,208,15)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="58.1856%" y="2405" width="0.0170%" height="15" fill="rgb(206,146,29)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="58.1856%" y="2389" width="0.0170%" height="15" fill="rgb(234,111,5)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="58.1856%" y="2373" width="0.0170%" height="15" fill="rgb(243,120,41)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="58.1856%" y="2357" width="0.0170%" height="15" fill="rgb(234,164,37)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.1856%" y="2341" width="0.0170%" height="15" fill="rgb(206,78,30)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.1856%" y="2325" width="0.0170%" height="15" fill="rgb(253,26,39)" fg:x="13655" fg:w="4"/><text x="58.4356%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.1899%" y="2309" width="0.0128%" height="15" fill="rgb(227,151,38)" fg:x="13656" fg:w="3"/><text x="58.4399%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="58.1899%" y="2293" width="0.0128%" height="15" fill="rgb(219,95,8)" fg:x="13656" fg:w="3"/><text x="58.4399%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="58.1899%" y="2277" width="0.0128%" height="15" fill="rgb(234,190,11)" fg:x="13656" fg:w="3"/><text x="58.4399%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="58.2112%" y="2309" width="0.0128%" height="15" fill="rgb(246,188,37)" fg:x="13661" fg:w="3"/><text x="58.4612%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="58.2069%" y="2405" width="0.0298%" height="15" fill="rgb(251,119,33)" fg:x="13660" fg:w="7"/><text x="58.4569%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="58.2069%" y="2389" width="0.0298%" height="15" fill="rgb(240,110,28)" fg:x="13660" fg:w="7"/><text x="58.4569%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="58.2069%" y="2373" width="0.0298%" height="15" fill="rgb(218,82,52)" fg:x="13660" fg:w="7"/><text x="58.4569%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="58.2069%" y="2357" width="0.0298%" height="15" fill="rgb(213,63,41)" fg:x="13660" fg:w="7"/><text x="58.4569%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="58.2069%" y="2341" width="0.0298%" height="15" fill="rgb(244,16,52)" fg:x="13660" fg:w="7"/><text x="58.4569%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="58.2069%" y="2325" width="0.0298%" height="15" fill="rgb(252,49,3)" fg:x="13660" fg:w="7"/><text x="58.4569%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="58.2069%" y="2677" width="0.0341%" height="15" fill="rgb(246,63,15)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="58.2069%" y="2661" width="0.0341%" height="15" fill="rgb(247,152,10)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="58.2069%" y="2645" width="0.0341%" height="15" fill="rgb(227,227,47)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="58.2069%" y="2629" width="0.0341%" height="15" fill="rgb(230,131,52)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="58.2069%" y="2613" width="0.0341%" height="15" fill="rgb(229,74,25)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="58.2069%" y="2597" width="0.0341%" height="15" fill="rgb(251,110,2)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2607.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (8 samples, 0.03%)</title><rect x="58.2069%" y="2581" width="0.0341%" height="15" fill="rgb(219,131,45)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2591.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (8 samples, 0.03%)</title><rect x="58.2069%" y="2565" width="0.0341%" height="15" fill="rgb(219,18,43)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="58.2069%" y="2549" width="0.0341%" height="15" fill="rgb(213,69,47)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (8 samples, 0.03%)</title><rect x="58.2069%" y="2533" width="0.0341%" height="15" fill="rgb(243,146,33)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.03%)</title><rect x="58.2069%" y="2517" width="0.0341%" height="15" fill="rgb(212,55,46)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (8 samples, 0.03%)</title><rect x="58.2069%" y="2501" width="0.0341%" height="15" fill="rgb(223,207,9)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (8 samples, 0.03%)</title><rect x="58.2069%" y="2485" width="0.0341%" height="15" fill="rgb(216,98,43)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (8 samples, 0.03%)</title><rect x="58.2069%" y="2469" width="0.0341%" height="15" fill="rgb(239,87,2)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (8 samples, 0.03%)</title><rect x="58.2069%" y="2453" width="0.0341%" height="15" fill="rgb(219,212,25)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (8 samples, 0.03%)</title><rect x="58.2069%" y="2437" width="0.0341%" height="15" fill="rgb(216,55,33)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2447.50"></text></g><g><title>criterion::analysis::estimates::stats (8 samples, 0.03%)</title><rect x="58.2069%" y="2421" width="0.0341%" height="15" fill="rgb(249,176,50)" fg:x="13660" fg:w="8"/><text x="58.4569%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (28 samples, 0.12%)</title><rect x="58.1302%" y="2965" width="0.1193%" height="15" fill="rgb(214,26,20)" fg:x="13642" fg:w="28"/><text x="58.3802%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (28 samples, 0.12%)</title><rect x="58.1302%" y="2949" width="0.1193%" height="15" fill="rgb(225,3,23)" fg:x="13642" fg:w="28"/><text x="58.3802%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (28 samples, 0.12%)</title><rect x="58.1302%" y="2933" width="0.1193%" height="15" fill="rgb(235,143,20)" fg:x="13642" fg:w="28"/><text x="58.3802%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.12%)</title><rect x="58.1302%" y="2917" width="0.1193%" height="15" fill="rgb(209,182,14)" fg:x="13642" fg:w="28"/><text x="58.3802%" y="2927.50"></text></g><g><title>rayon_core::join::join_context (28 samples, 0.12%)</title><rect x="58.1302%" y="2901" width="0.1193%" height="15" fill="rgb(244,75,32)" fg:x="13642" fg:w="28"/><text x="58.3802%" y="2911.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.12%)</title><rect x="58.1302%" y="2885" width="0.1193%" height="15" fill="rgb(227,4,12)" fg:x="13642" fg:w="28"/><text x="58.3802%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (28 samples, 0.12%)</title><rect x="58.1302%" y="2869" width="0.1193%" height="15" fill="rgb(250,63,24)" fg:x="13642" fg:w="28"/><text x="58.3802%" y="2879.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="58.2069%" y="2853" width="0.0426%" height="15" fill="rgb(210,227,37)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2863.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="58.2069%" y="2837" width="0.0426%" height="15" fill="rgb(213,170,41)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2847.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="58.2069%" y="2821" width="0.0426%" height="15" fill="rgb(239,33,8)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2831.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="58.2069%" y="2805" width="0.0426%" height="15" fill="rgb(225,224,5)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2815.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="58.2069%" y="2789" width="0.0426%" height="15" fill="rgb(248,155,17)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2069%" y="2773" width="0.0426%" height="15" fill="rgb(238,73,2)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2069%" y="2757" width="0.0426%" height="15" fill="rgb(231,194,27)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="58.2069%" y="2741" width="0.0426%" height="15" fill="rgb(229,49,7)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2751.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="58.2069%" y="2725" width="0.0426%" height="15" fill="rgb(215,110,24)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2735.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="58.2069%" y="2709" width="0.0426%" height="15" fill="rgb(205,2,13)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2069%" y="2693" width="0.0426%" height="15" fill="rgb(250,68,6)" fg:x="13660" fg:w="10"/><text x="58.4569%" y="2703.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (4 samples, 0.02%)</title><rect x="58.2495%" y="2309" width="0.0170%" height="15" fill="rgb(232,204,49)" fg:x="13670" fg:w="4"/><text x="58.4995%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="58.2495%" y="2405" width="0.0298%" height="15" fill="rgb(206,182,1)" fg:x="13670" fg:w="7"/><text x="58.4995%" y="2415.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="58.2495%" y="2389" width="0.0298%" height="15" fill="rgb(244,171,13)" fg:x="13670" fg:w="7"/><text x="58.4995%" y="2399.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="58.2495%" y="2373" width="0.0298%" height="15" fill="rgb(213,225,9)" fg:x="13670" fg:w="7"/><text x="58.4995%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="58.2495%" y="2357" width="0.0298%" height="15" fill="rgb(213,196,35)" fg:x="13670" fg:w="7"/><text x="58.4995%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="58.2495%" y="2341" width="0.0298%" height="15" fill="rgb(218,41,31)" fg:x="13670" fg:w="7"/><text x="58.4995%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="58.2495%" y="2325" width="0.0298%" height="15" fill="rgb(252,131,18)" fg:x="13670" fg:w="7"/><text x="58.4995%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="58.2495%" y="2677" width="0.0426%" height="15" fill="rgb(227,92,32)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2495%" y="2661" width="0.0426%" height="15" fill="rgb(242,74,17)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2495%" y="2645" width="0.0426%" height="15" fill="rgb(240,228,25)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="58.2495%" y="2629" width="0.0426%" height="15" fill="rgb(225,153,0)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="58.2495%" y="2613" width="0.0426%" height="15" fill="rgb(205,101,53)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2623.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="58.2495%" y="2597" width="0.0426%" height="15" fill="rgb(233,54,23)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2607.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="58.2495%" y="2581" width="0.0426%" height="15" fill="rgb(241,88,13)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2591.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="58.2495%" y="2565" width="0.0426%" height="15" fill="rgb(206,1,37)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2575.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="58.2495%" y="2549" width="0.0426%" height="15" fill="rgb(240,64,53)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2559.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="58.2495%" y="2533" width="0.0426%" height="15" fill="rgb(251,214,17)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (10 samples, 0.04%)</title><rect x="58.2495%" y="2517" width="0.0426%" height="15" fill="rgb(247,43,44)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2527.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2495%" y="2501" width="0.0426%" height="15" fill="rgb(238,91,14)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2495%" y="2485" width="0.0426%" height="15" fill="rgb(235,8,29)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2495.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="58.2495%" y="2469" width="0.0426%" height="15" fill="rgb(207,22,41)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2479.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="58.2495%" y="2453" width="0.0426%" height="15" fill="rgb(242,69,7)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2463.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="58.2495%" y="2437" width="0.0426%" height="15" fill="rgb(226,88,42)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2447.50"></text></g><g><title>criterion::analysis::estimates::stats (10 samples, 0.04%)</title><rect x="58.2495%" y="2421" width="0.0426%" height="15" fill="rgb(222,210,29)" fg:x="13670" fg:w="10"/><text x="58.4995%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.2794%" y="2405" width="0.0128%" height="15" fill="rgb(207,0,28)" fg:x="13677" fg:w="3"/><text x="58.5294%" y="2415.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.2794%" y="2389" width="0.0128%" height="15" fill="rgb(224,5,25)" fg:x="13677" fg:w="3"/><text x="58.5294%" y="2399.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.2794%" y="2373" width="0.0128%" height="15" fill="rgb(207,67,17)" fg:x="13677" fg:w="3"/><text x="58.5294%" y="2383.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.2794%" y="2357" width="0.0128%" height="15" fill="rgb(235,67,42)" fg:x="13677" fg:w="3"/><text x="58.5294%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.2794%" y="2341" width="0.0128%" height="15" fill="rgb(236,211,20)" fg:x="13677" fg:w="3"/><text x="58.5294%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.2794%" y="2325" width="0.0128%" height="15" fill="rgb(245,75,1)" fg:x="13677" fg:w="3"/><text x="58.5294%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="58.2794%" y="2309" width="0.0128%" height="15" fill="rgb(242,169,19)" fg:x="13677" fg:w="3"/><text x="58.5294%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="58.2495%" y="2789" width="0.0511%" height="15" fill="rgb(212,148,34)" fg:x="13670" fg:w="12"/><text x="58.4995%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="58.2495%" y="2773" width="0.0511%" height="15" fill="rgb(220,123,43)" fg:x="13670" fg:w="12"/><text x="58.4995%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="58.2495%" y="2757" width="0.0511%" height="15" fill="rgb(246,111,39)" fg:x="13670" fg:w="12"/><text x="58.4995%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="58.2495%" y="2741" width="0.0511%" height="15" fill="rgb(220,53,19)" fg:x="13670" fg:w="12"/><text x="58.4995%" y="2751.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="58.2495%" y="2725" width="0.0511%" height="15" fill="rgb(231,50,11)" fg:x="13670" fg:w="12"/><text x="58.4995%" y="2735.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="58.2495%" y="2709" width="0.0511%" height="15" fill="rgb(238,126,8)" fg:x="13670" fg:w="12"/><text x="58.4995%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="58.2495%" y="2693" width="0.0511%" height="15" fill="rgb(227,224,8)" fg:x="13670" fg:w="12"/><text x="58.4995%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (172 samples, 0.73%)</title><rect x="57.5805%" y="3589" width="0.7329%" height="15" fill="rgb(223,219,29)" fg:x="13513" fg:w="172"/><text x="57.8305%" y="3599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (172 samples, 0.73%)</title><rect x="57.5805%" y="3573" width="0.7329%" height="15" fill="rgb(211,66,38)" fg:x="13513" fg:w="172"/><text x="57.8305%" y="3583.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (172 samples, 0.73%)</title><rect x="57.5805%" y="3557" width="0.7329%" height="15" fill="rgb(215,136,1)" fg:x="13513" fg:w="172"/><text x="57.8305%" y="3567.50"></text></g><g><title>rayon_core::join::join_context (172 samples, 0.73%)</title><rect x="57.5805%" y="3541" width="0.7329%" height="15" fill="rgb(253,155,2)" fg:x="13513" fg:w="172"/><text x="57.8305%" y="3551.50"></text></g><g><title>rayon_core::registry::in_worker (172 samples, 0.73%)</title><rect x="57.5805%" y="3525" width="0.7329%" height="15" fill="rgb(238,122,26)" fg:x="13513" fg:w="172"/><text x="57.8305%" y="3535.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (172 samples, 0.73%)</title><rect x="57.5805%" y="3509" width="0.7329%" height="15" fill="rgb(242,126,19)" fg:x="13513" fg:w="172"/><text x="57.8305%" y="3519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (124 samples, 0.53%)</title><rect x="57.7851%" y="3493" width="0.5284%" height="15" fill="rgb(230,114,29)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3503.50"></text></g><g><title>std::panic::catch_unwind (124 samples, 0.53%)</title><rect x="57.7851%" y="3477" width="0.5284%" height="15" fill="rgb(242,14,36)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3487.50"></text></g><g><title>std::panicking::try (124 samples, 0.53%)</title><rect x="57.7851%" y="3461" width="0.5284%" height="15" fill="rgb(222,158,16)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3471.50"></text></g><g><title>std::panicking::try::do_call (124 samples, 0.53%)</title><rect x="57.7851%" y="3445" width="0.5284%" height="15" fill="rgb(228,28,30)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (124 samples, 0.53%)</title><rect x="57.7851%" y="3429" width="0.5284%" height="15" fill="rgb(219,146,37)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3439.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (124 samples, 0.53%)</title><rect x="57.7851%" y="3413" width="0.5284%" height="15" fill="rgb(219,106,0)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (124 samples, 0.53%)</title><rect x="57.7851%" y="3397" width="0.5284%" height="15" fill="rgb(231,149,51)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (124 samples, 0.53%)</title><rect x="57.7851%" y="3381" width="0.5284%" height="15" fill="rgb(215,105,20)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3391.50"></text></g><g><title>rayon_core::join::join_context (124 samples, 0.53%)</title><rect x="57.7851%" y="3365" width="0.5284%" height="15" fill="rgb(211,31,45)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3375.50"></text></g><g><title>rayon_core::registry::in_worker (124 samples, 0.53%)</title><rect x="57.7851%" y="3349" width="0.5284%" height="15" fill="rgb(231,54,28)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (124 samples, 0.53%)</title><rect x="57.7851%" y="3333" width="0.5284%" height="15" fill="rgb(235,211,7)" fg:x="13561" fg:w="124"/><text x="58.0351%" y="3343.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (85 samples, 0.36%)</title><rect x="57.9513%" y="3317" width="0.3622%" height="15" fill="rgb(214,98,26)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3327.50"></text></g><g><title>std::panic::catch_unwind (85 samples, 0.36%)</title><rect x="57.9513%" y="3301" width="0.3622%" height="15" fill="rgb(254,179,32)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3311.50"></text></g><g><title>std::panicking::try (85 samples, 0.36%)</title><rect x="57.9513%" y="3285" width="0.3622%" height="15" fill="rgb(219,154,49)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3295.50"></text></g><g><title>std::panicking::try::do_call (85 samples, 0.36%)</title><rect x="57.9513%" y="3269" width="0.3622%" height="15" fill="rgb(210,50,42)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3279.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (85 samples, 0.36%)</title><rect x="57.9513%" y="3253" width="0.3622%" height="15" fill="rgb(244,202,17)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3263.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (85 samples, 0.36%)</title><rect x="57.9513%" y="3237" width="0.3622%" height="15" fill="rgb(248,100,24)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (85 samples, 0.36%)</title><rect x="57.9513%" y="3221" width="0.3622%" height="15" fill="rgb(238,12,49)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85 samples, 0.36%)</title><rect x="57.9513%" y="3205" width="0.3622%" height="15" fill="rgb(250,14,53)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3215.50"></text></g><g><title>rayon_core::join::join_context (85 samples, 0.36%)</title><rect x="57.9513%" y="3189" width="0.3622%" height="15" fill="rgb(254,37,22)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3199.50"></text></g><g><title>rayon_core::registry::in_worker (85 samples, 0.36%)</title><rect x="57.9513%" y="3173" width="0.3622%" height="15" fill="rgb(218,98,3)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (85 samples, 0.36%)</title><rect x="57.9513%" y="3157" width="0.3622%" height="15" fill="rgb(250,49,50)" fg:x="13600" fg:w="85"/><text x="58.2013%" y="3167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (43 samples, 0.18%)</title><rect x="58.1302%" y="3141" width="0.1832%" height="15" fill="rgb(244,21,32)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3151.50"></text></g><g><title>std::panic::catch_unwind (43 samples, 0.18%)</title><rect x="58.1302%" y="3125" width="0.1832%" height="15" fill="rgb(242,176,49)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3135.50"></text></g><g><title>std::panicking::try (43 samples, 0.18%)</title><rect x="58.1302%" y="3109" width="0.1832%" height="15" fill="rgb(231,16,7)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3119.50"></text></g><g><title>std::panicking::try::do_call (43 samples, 0.18%)</title><rect x="58.1302%" y="3093" width="0.1832%" height="15" fill="rgb(206,127,12)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (43 samples, 0.18%)</title><rect x="58.1302%" y="3077" width="0.1832%" height="15" fill="rgb(250,127,19)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (43 samples, 0.18%)</title><rect x="58.1302%" y="3061" width="0.1832%" height="15" fill="rgb(232,3,19)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (43 samples, 0.18%)</title><rect x="58.1302%" y="3045" width="0.1832%" height="15" fill="rgb(251,37,50)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.18%)</title><rect x="58.1302%" y="3029" width="0.1832%" height="15" fill="rgb(229,48,12)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3039.50"></text></g><g><title>rayon_core::join::join_context (43 samples, 0.18%)</title><rect x="58.1302%" y="3013" width="0.1832%" height="15" fill="rgb(220,101,48)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3023.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.18%)</title><rect x="58.1302%" y="2997" width="0.1832%" height="15" fill="rgb(242,18,36)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (43 samples, 0.18%)</title><rect x="58.1302%" y="2981" width="0.1832%" height="15" fill="rgb(240,198,13)" fg:x="13642" fg:w="43"/><text x="58.3802%" y="2991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (15 samples, 0.06%)</title><rect x="58.2495%" y="2965" width="0.0639%" height="15" fill="rgb(234,131,10)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2975.50"></text></g><g><title>std::panic::catch_unwind (15 samples, 0.06%)</title><rect x="58.2495%" y="2949" width="0.0639%" height="15" fill="rgb(227,31,52)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2959.50"></text></g><g><title>std::panicking::try (15 samples, 0.06%)</title><rect x="58.2495%" y="2933" width="0.0639%" height="15" fill="rgb(215,181,50)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2943.50"></text></g><g><title>std::panicking::try::do_call (15 samples, 0.06%)</title><rect x="58.2495%" y="2917" width="0.0639%" height="15" fill="rgb(248,19,52)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (15 samples, 0.06%)</title><rect x="58.2495%" y="2901" width="0.0639%" height="15" fill="rgb(224,151,9)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (15 samples, 0.06%)</title><rect x="58.2495%" y="2885" width="0.0639%" height="15" fill="rgb(238,106,16)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="58.2495%" y="2869" width="0.0639%" height="15" fill="rgb(235,185,4)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="58.2495%" y="2853" width="0.0639%" height="15" fill="rgb(230,72,20)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2863.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="58.2495%" y="2837" width="0.0639%" height="15" fill="rgb(229,166,35)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2847.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="58.2495%" y="2821" width="0.0639%" height="15" fill="rgb(226,84,43)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="58.2495%" y="2805" width="0.0639%" height="15" fill="rgb(231,85,18)" fg:x="13670" fg:w="15"/><text x="58.4995%" y="2815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3007%" y="2789" width="0.0128%" height="15" fill="rgb(231,101,35)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2799.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3007%" y="2773" width="0.0128%" height="15" fill="rgb(248,149,54)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2783.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3007%" y="2757" width="0.0128%" height="15" fill="rgb(249,228,1)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2767.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3007%" y="2741" width="0.0128%" height="15" fill="rgb(214,5,44)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3007%" y="2725" width="0.0128%" height="15" fill="rgb(218,37,0)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3007%" y="2709" width="0.0128%" height="15" fill="rgb(245,168,16)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3007%" y="2693" width="0.0128%" height="15" fill="rgb(252,194,15)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3007%" y="2677" width="0.0128%" height="15" fill="rgb(243,195,49)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2687.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3007%" y="2661" width="0.0128%" height="15" fill="rgb(249,73,22)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3007%" y="2645" width="0.0128%" height="15" fill="rgb(206,218,52)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3007%" y="2629" width="0.0128%" height="15" fill="rgb(213,64,10)" fg:x="13682" fg:w="3"/><text x="58.5507%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.3177%" y="2501" width="0.0128%" height="15" fill="rgb(222,3,18)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.3177%" y="2485" width="0.0128%" height="15" fill="rgb(242,153,29)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="2469" width="0.0128%" height="15" fill="rgb(209,106,42)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2479.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="2453" width="0.0128%" height="15" fill="rgb(246,147,8)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2463.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="2437" width="0.0128%" height="15" fill="rgb(239,71,0)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2447.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.3177%" y="2421" width="0.0128%" height="15" fill="rgb(244,36,25)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2431.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="2405" width="0.0128%" height="15" fill="rgb(211,32,17)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2415.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="2389" width="0.0128%" height="15" fill="rgb(212,68,44)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2399.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="2373" width="0.0128%" height="15" fill="rgb(244,153,6)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2383.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="2357" width="0.0128%" height="15" fill="rgb(235,138,35)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2367.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="2341" width="0.0128%" height="15" fill="rgb(210,47,38)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2351.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="2325" width="0.0128%" height="15" fill="rgb(208,64,35)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2335.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="2309" width="0.0128%" height="15" fill="rgb(238,198,5)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="2293" width="0.0128%" height="15" fill="rgb(217,5,51)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="2277" width="0.0128%" height="15" fill="rgb(220,179,33)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2287.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="2261" width="0.0128%" height="15" fill="rgb(228,167,46)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2271.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="2245" width="0.0128%" height="15" fill="rgb(245,221,1)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2255.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="2229" width="0.0128%" height="15" fill="rgb(242,10,36)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2239.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.3177%" y="2213" width="0.0128%" height="15" fill="rgb(251,69,35)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2223.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.3177%" y="2197" width="0.0128%" height="15" fill="rgb(218,117,28)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="2181" width="0.0128%" height="15" fill="rgb(251,28,25)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2191.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="2165" width="0.0128%" height="15" fill="rgb(225,203,47)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2175.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="2149" width="0.0128%" height="15" fill="rgb(235,180,23)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.3177%" y="2133" width="0.0128%" height="15" fill="rgb(214,173,46)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2143.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="2117" width="0.0128%" height="15" fill="rgb(215,28,20)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2127.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="2101" width="0.0128%" height="15" fill="rgb(232,84,52)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2111.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="2085" width="0.0128%" height="15" fill="rgb(226,180,46)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2095.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="2069" width="0.0128%" height="15" fill="rgb(211,129,44)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2079.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="2053" width="0.0128%" height="15" fill="rgb(212,177,1)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2063.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="2037" width="0.0128%" height="15" fill="rgb(217,110,26)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2047.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="2021" width="0.0128%" height="15" fill="rgb(227,182,2)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2031.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="2005" width="0.0128%" height="15" fill="rgb(235,187,44)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="1989" width="0.0128%" height="15" fill="rgb(240,184,1)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1999.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="1973" width="0.0128%" height="15" fill="rgb(235,148,6)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1983.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="1957" width="0.0128%" height="15" fill="rgb(208,225,45)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1967.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1941" width="0.0128%" height="15" fill="rgb(238,2,51)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1951.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.3177%" y="1925" width="0.0128%" height="15" fill="rgb(222,47,38)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1935.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.3177%" y="1909" width="0.0128%" height="15" fill="rgb(249,3,53)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1893" width="0.0128%" height="15" fill="rgb(239,186,25)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1903.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1877" width="0.0128%" height="15" fill="rgb(247,123,15)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1887.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1861" width="0.0128%" height="15" fill="rgb(214,118,9)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1871.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.3177%" y="1845" width="0.0128%" height="15" fill="rgb(241,43,2)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1855.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="1829" width="0.0128%" height="15" fill="rgb(225,186,39)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1839.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="1813" width="0.0128%" height="15" fill="rgb(216,124,41)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1823.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="1797" width="0.0128%" height="15" fill="rgb(253,54,15)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1807.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="1781" width="0.0128%" height="15" fill="rgb(248,91,6)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1791.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="1765" width="0.0128%" height="15" fill="rgb(219,212,52)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1775.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1749" width="0.0128%" height="15" fill="rgb(242,110,34)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1759.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1733" width="0.0128%" height="15" fill="rgb(232,13,16)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1743.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1717" width="0.0128%" height="15" fill="rgb(231,55,14)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="1701" width="0.0128%" height="15" fill="rgb(229,107,48)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1711.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="1685" width="0.0128%" height="15" fill="rgb(249,9,26)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1695.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="1669" width="0.0128%" height="15" fill="rgb(253,210,5)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1679.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1653" width="0.0128%" height="15" fill="rgb(211,50,25)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1663.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="1637" width="0.0128%" height="15" fill="rgb(228,9,22)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1647.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="1621" width="0.0128%" height="15" fill="rgb(228,219,16)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1631.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="1605" width="0.0128%" height="15" fill="rgb(250,17,48)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1615.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="1589" width="0.0128%" height="15" fill="rgb(226,72,42)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1599.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="1573" width="0.0128%" height="15" fill="rgb(249,186,22)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1583.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1557" width="0.0128%" height="15" fill="rgb(241,137,34)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1541" width="0.0128%" height="15" fill="rgb(231,88,29)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="1525" width="0.0128%" height="15" fill="rgb(233,29,44)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1535.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="1509" width="0.0128%" height="15" fill="rgb(238,124,42)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1519.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="1493" width="0.0128%" height="15" fill="rgb(223,182,11)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1477" width="0.0128%" height="15" fill="rgb(243,6,47)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1487.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.3177%" y="1461" width="0.0128%" height="15" fill="rgb(225,63,23)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1471.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.3177%" y="1445" width="0.0128%" height="15" fill="rgb(220,63,42)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1455.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1429" width="0.0128%" height="15" fill="rgb(217,26,36)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1439.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1413" width="0.0128%" height="15" fill="rgb(253,69,3)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1423.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1397" width="0.0128%" height="15" fill="rgb(206,67,18)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1407.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.3177%" y="1381" width="0.0128%" height="15" fill="rgb(248,228,35)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1391.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="1365" width="0.0128%" height="15" fill="rgb(246,167,3)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1375.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="1349" width="0.0128%" height="15" fill="rgb(244,74,38)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1359.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="1333" width="0.0128%" height="15" fill="rgb(210,200,18)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1343.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="1317" width="0.0128%" height="15" fill="rgb(231,214,41)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1327.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="1301" width="0.0128%" height="15" fill="rgb(247,49,51)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1311.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1285" width="0.0128%" height="15" fill="rgb(206,129,5)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1295.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1269" width="0.0128%" height="15" fill="rgb(249,33,39)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1253" width="0.0128%" height="15" fill="rgb(224,70,52)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="1237" width="0.0128%" height="15" fill="rgb(226,147,50)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1247.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="1221" width="0.0128%" height="15" fill="rgb(207,135,21)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1231.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="1205" width="0.0128%" height="15" fill="rgb(229,185,43)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="1189" width="0.0128%" height="15" fill="rgb(222,63,45)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1199.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.3177%" y="1173" width="0.0128%" height="15" fill="rgb(240,53,23)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.3177%" y="1157" width="0.0128%" height="15" fill="rgb(213,181,3)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1141" width="0.0128%" height="15" fill="rgb(212,47,4)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1151.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1125" width="0.0128%" height="15" fill="rgb(239,113,24)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1135.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="1109" width="0.0128%" height="15" fill="rgb(252,203,47)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1119.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.3177%" y="1093" width="0.0128%" height="15" fill="rgb(212,60,11)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1103.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="1077" width="0.0128%" height="15" fill="rgb(246,3,53)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1087.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="1061" width="0.0128%" height="15" fill="rgb(216,219,8)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1071.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="1045" width="0.0128%" height="15" fill="rgb(234,71,3)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="1029" width="0.0128%" height="15" fill="rgb(251,0,45)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1039.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="1013" width="0.0128%" height="15" fill="rgb(208,26,38)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1023.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="997" width="0.0128%" height="15" fill="rgb(234,149,38)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="981" width="0.0128%" height="15" fill="rgb(228,188,33)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="965" width="0.0128%" height="15" fill="rgb(224,219,11)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="949" width="0.0128%" height="15" fill="rgb(229,38,34)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="959.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="933" width="0.0128%" height="15" fill="rgb(211,66,2)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="917" width="0.0128%" height="15" fill="rgb(231,142,23)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="901" width="0.0128%" height="15" fill="rgb(244,123,25)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="911.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.3177%" y="885" width="0.0128%" height="15" fill="rgb(211,37,46)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="869" width="0.0128%" height="15" fill="rgb(224,128,17)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="853" width="0.0128%" height="15" fill="rgb(208,223,19)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="837" width="0.0128%" height="15" fill="rgb(213,48,1)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="847.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="821" width="0.0128%" height="15" fill="rgb(207,194,48)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="805" width="0.0128%" height="15" fill="rgb(227,125,35)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="789" width="0.0128%" height="15" fill="rgb(225,32,6)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.3177%" y="773" width="0.0128%" height="15" fill="rgb(208,151,14)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.3177%" y="757" width="0.0128%" height="15" fill="rgb(205,85,20)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="741" width="0.0128%" height="15" fill="rgb(229,157,31)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="751.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="725" width="0.0128%" height="15" fill="rgb(218,119,5)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="735.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="709" width="0.0128%" height="15" fill="rgb(205,187,18)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="719.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.3177%" y="693" width="0.0128%" height="15" fill="rgb(254,193,28)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="677" width="0.0128%" height="15" fill="rgb(254,98,0)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="687.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="661" width="0.0128%" height="15" fill="rgb(213,163,13)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="671.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="645" width="0.0128%" height="15" fill="rgb(220,82,7)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="655.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="629" width="0.0128%" height="15" fill="rgb(245,0,15)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="613" width="0.0128%" height="15" fill="rgb(231,80,21)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="623.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="597" width="0.0128%" height="15" fill="rgb(234,163,52)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="581" width="0.0128%" height="15" fill="rgb(206,145,20)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="565" width="0.0128%" height="15" fill="rgb(233,219,41)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="549" width="0.0128%" height="15" fill="rgb(207,205,22)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="559.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3177%" y="533" width="0.0128%" height="15" fill="rgb(236,22,42)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3177%" y="517" width="0.0128%" height="15" fill="rgb(226,181,35)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="501" width="0.0128%" height="15" fill="rgb(207,218,36)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.3177%" y="485" width="0.0128%" height="15" fill="rgb(238,84,12)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.3177%" y="469" width="0.0128%" height="15" fill="rgb(212,54,35)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="479.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="453" width="0.0128%" height="15" fill="rgb(246,166,27)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="463.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="437" width="0.0128%" height="15" fill="rgb(215,120,42)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.3177%" y="421" width="0.0128%" height="15" fill="rgb(216,163,5)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.3177%" y="405" width="0.0128%" height="15" fill="rgb(227,191,15)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.3177%" y="389" width="0.0128%" height="15" fill="rgb(223,140,9)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="399.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.3177%" y="373" width="0.0128%" height="15" fill="rgb(244,227,39)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="383.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.3177%" y="357" width="0.0128%" height="15" fill="rgb(238,182,24)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="367.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.3177%" y="341" width="0.0128%" height="15" fill="rgb(231,60,34)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="325" width="0.0128%" height="15" fill="rgb(211,212,9)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="309" width="0.0128%" height="15" fill="rgb(241,194,1)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="293" width="0.0128%" height="15" fill="rgb(223,39,37)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="277" width="0.0128%" height="15" fill="rgb(247,6,3)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3177%" y="261" width="0.0128%" height="15" fill="rgb(235,161,51)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="271.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.3177%" y="245" width="0.0128%" height="15" fill="rgb(225,181,15)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="255.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.3177%" y="229" width="0.0128%" height="15" fill="rgb(219,196,11)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="239.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="58.3177%" y="213" width="0.0128%" height="15" fill="rgb(232,10,25)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="223.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="58.3177%" y="197" width="0.0128%" height="15" fill="rgb(228,143,39)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="207.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="58.3177%" y="181" width="0.0128%" height="15" fill="rgb(235,68,37)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="191.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="58.3177%" y="165" width="0.0128%" height="15" fill="rgb(230,85,12)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="175.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="58.3177%" y="149" width="0.0128%" height="15" fill="rgb(249,187,3)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="159.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="133" width="0.0128%" height="15" fill="rgb(253,84,29)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="143.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="58.3177%" y="117" width="0.0128%" height="15" fill="rgb(240,225,34)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="127.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.3177%" y="101" width="0.0128%" height="15" fill="rgb(248,216,31)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="111.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3177%" y="85" width="0.0128%" height="15" fill="rgb(239,0,36)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="95.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="58.3177%" y="69" width="0.0128%" height="15" fill="rgb(232,180,49)" fg:x="13686" fg:w="3"/><text x="58.5677%" y="79.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (178 samples, 0.76%)</title><rect x="57.5805%" y="3829" width="0.7585%" height="15" fill="rgb(241,185,12)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3839.50"></text></g><g><title>rayon_core::registry::main_loop (178 samples, 0.76%)</title><rect x="57.5805%" y="3813" width="0.7585%" height="15" fill="rgb(211,113,15)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3823.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_out_of_work (178 samples, 0.76%)</title><rect x="57.5805%" y="3797" width="0.7585%" height="15" fill="rgb(232,217,1)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (178 samples, 0.76%)</title><rect x="57.5805%" y="3781" width="0.7585%" height="15" fill="rgb(249,203,18)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (178 samples, 0.76%)</title><rect x="57.5805%" y="3765" width="0.7585%" height="15" fill="rgb(241,17,36)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3775.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (178 samples, 0.76%)</title><rect x="57.5805%" y="3749" width="0.7585%" height="15" fill="rgb(241,102,40)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3759.50"></text></g><g><title>rayon_core::job::JobRef::execute (178 samples, 0.76%)</title><rect x="57.5805%" y="3733" width="0.7585%" height="15" fill="rgb(206,60,30)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3743.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (178 samples, 0.76%)</title><rect x="57.5805%" y="3717" width="0.7585%" height="15" fill="rgb(253,65,14)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3727.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (178 samples, 0.76%)</title><rect x="57.5805%" y="3701" width="0.7585%" height="15" fill="rgb(249,27,45)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3711.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (178 samples, 0.76%)</title><rect x="57.5805%" y="3685" width="0.7585%" height="15" fill="rgb(205,208,22)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3695.50"></text></g><g><title>std::panic::catch_unwind (178 samples, 0.76%)</title><rect x="57.5805%" y="3669" width="0.7585%" height="15" fill="rgb(228,212,3)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3679.50"></text></g><g><title>std::panicking::try (178 samples, 0.76%)</title><rect x="57.5805%" y="3653" width="0.7585%" height="15" fill="rgb(216,57,31)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3663.50"></text></g><g><title>std::panicking::try::do_call (178 samples, 0.76%)</title><rect x="57.5805%" y="3637" width="0.7585%" height="15" fill="rgb(236,70,31)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3647.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (178 samples, 0.76%)</title><rect x="57.5805%" y="3621" width="0.7585%" height="15" fill="rgb(248,65,31)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (178 samples, 0.76%)</title><rect x="57.5805%" y="3605" width="0.7585%" height="15" fill="rgb(228,138,1)" fg:x="13513" fg:w="178"/><text x="57.8305%" y="3615.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}}::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3589" width="0.0256%" height="15" fill="rgb(221,218,43)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3573" width="0.0256%" height="15" fill="rgb(230,229,10)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="58.3134%" y="3557" width="0.0256%" height="15" fill="rgb(250,85,22)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3567.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="58.3134%" y="3541" width="0.0256%" height="15" fill="rgb(211,49,3)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3551.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="58.3134%" y="3525" width="0.0256%" height="15" fill="rgb(234,204,38)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3535.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="58.3134%" y="3509" width="0.0256%" height="15" fill="rgb(209,121,14)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="58.3134%" y="3493" width="0.0256%" height="15" fill="rgb(245,75,14)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3477" width="0.0256%" height="15" fill="rgb(239,193,47)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3461" width="0.0256%" height="15" fill="rgb(216,8,18)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.3134%" y="3445" width="0.0256%" height="15" fill="rgb(207,156,25)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3455.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="58.3134%" y="3429" width="0.0256%" height="15" fill="rgb(237,212,10)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3439.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="58.3134%" y="3413" width="0.0256%" height="15" fill="rgb(223,79,41)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3397" width="0.0256%" height="15" fill="rgb(245,223,14)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3407.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="58.3134%" y="3381" width="0.0256%" height="15" fill="rgb(229,208,42)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3391.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="58.3134%" y="3365" width="0.0256%" height="15" fill="rgb(241,70,30)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3375.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="58.3134%" y="3349" width="0.0256%" height="15" fill="rgb(228,150,9)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3359.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="58.3134%" y="3333" width="0.0256%" height="15" fill="rgb(236,38,24)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3343.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="58.3134%" y="3317" width="0.0256%" height="15" fill="rgb(240,100,51)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3327.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3301" width="0.0256%" height="15" fill="rgb(247,42,20)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3285" width="0.0256%" height="15" fill="rgb(254,198,5)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.3134%" y="3269" width="0.0256%" height="15" fill="rgb(252,4,1)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3279.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="58.3134%" y="3253" width="0.0256%" height="15" fill="rgb(251,28,19)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3263.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="58.3134%" y="3237" width="0.0256%" height="15" fill="rgb(236,84,34)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3221" width="0.0256%" height="15" fill="rgb(220,133,44)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3231.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="58.3134%" y="3205" width="0.0256%" height="15" fill="rgb(242,214,16)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3215.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="58.3134%" y="3189" width="0.0256%" height="15" fill="rgb(238,208,24)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3199.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="58.3134%" y="3173" width="0.0256%" height="15" fill="rgb(218,133,26)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3183.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="58.3134%" y="3157" width="0.0256%" height="15" fill="rgb(216,150,17)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3167.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="58.3134%" y="3141" width="0.0256%" height="15" fill="rgb(251,138,17)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3125" width="0.0256%" height="15" fill="rgb(237,12,37)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3109" width="0.0256%" height="15" fill="rgb(251,65,0)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.3134%" y="3093" width="0.0256%" height="15" fill="rgb(238,151,20)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3103.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="58.3134%" y="3077" width="0.0256%" height="15" fill="rgb(219,151,28)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3087.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="58.3134%" y="3061" width="0.0256%" height="15" fill="rgb(211,113,36)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="3045" width="0.0256%" height="15" fill="rgb(237,103,4)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3055.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="58.3134%" y="3029" width="0.0256%" height="15" fill="rgb(251,150,47)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3039.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="58.3134%" y="3013" width="0.0256%" height="15" fill="rgb(244,73,21)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3023.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="58.3134%" y="2997" width="0.0256%" height="15" fill="rgb(248,57,0)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="3007.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="58.3134%" y="2981" width="0.0256%" height="15" fill="rgb(207,30,3)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2991.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="58.3134%" y="2965" width="0.0256%" height="15" fill="rgb(240,159,34)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="2949" width="0.0256%" height="15" fill="rgb(229,127,23)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="2933" width="0.0256%" height="15" fill="rgb(222,139,40)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.3134%" y="2917" width="0.0256%" height="15" fill="rgb(220,163,13)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2927.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="58.3134%" y="2901" width="0.0256%" height="15" fill="rgb(210,81,9)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2911.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="58.3134%" y="2885" width="0.0256%" height="15" fill="rgb(247,72,10)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3134%" y="2869" width="0.0256%" height="15" fill="rgb(222,191,48)" fg:x="13685" fg:w="6"/><text x="58.5634%" y="2879.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3177%" y="2853" width="0.0213%" height="15" fill="rgb(238,96,11)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2863.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3177%" y="2837" width="0.0213%" height="15" fill="rgb(230,64,25)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2847.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3177%" y="2821" width="0.0213%" height="15" fill="rgb(218,197,29)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2831.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3177%" y="2805" width="0.0213%" height="15" fill="rgb(251,12,8)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2815.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3177%" y="2789" width="0.0213%" height="15" fill="rgb(208,196,29)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3177%" y="2773" width="0.0213%" height="15" fill="rgb(238,200,36)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3177%" y="2757" width="0.0213%" height="15" fill="rgb(217,182,49)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3177%" y="2741" width="0.0213%" height="15" fill="rgb(223,133,46)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2751.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3177%" y="2725" width="0.0213%" height="15" fill="rgb(225,104,48)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3177%" y="2709" width="0.0213%" height="15" fill="rgb(218,168,32)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3177%" y="2693" width="0.0213%" height="15" fill="rgb(210,69,31)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3177%" y="2677" width="0.0213%" height="15" fill="rgb(252,150,46)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2687.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3177%" y="2661" width="0.0213%" height="15" fill="rgb(225,54,11)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2671.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3177%" y="2645" width="0.0213%" height="15" fill="rgb(222,211,49)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2655.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3177%" y="2629" width="0.0213%" height="15" fill="rgb(241,28,5)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3177%" y="2613" width="0.0213%" height="15" fill="rgb(246,142,32)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2623.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3177%" y="2597" width="0.0213%" height="15" fill="rgb(250,75,8)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3177%" y="2581" width="0.0213%" height="15" fill="rgb(226,82,6)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3177%" y="2565" width="0.0213%" height="15" fill="rgb(247,173,48)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2575.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3177%" y="2549" width="0.0213%" height="15" fill="rgb(207,175,26)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3177%" y="2533" width="0.0213%" height="15" fill="rgb(251,114,11)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3177%" y="2517" width="0.0213%" height="15" fill="rgb(237,227,15)" fg:x="13686" fg:w="5"/><text x="58.5677%" y="2527.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.3390%" y="3445" width="0.0128%" height="15" fill="rgb(213,182,23)" fg:x="13691" fg:w="3"/><text x="58.5890%" y="3455.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3390%" y="3429" width="0.0128%" height="15" fill="rgb(216,88,10)" fg:x="13691" fg:w="3"/><text x="58.5890%" y="3439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3390%" y="3413" width="0.0128%" height="15" fill="rgb(247,110,12)" fg:x="13691" fg:w="3"/><text x="58.5890%" y="3423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.3390%" y="3397" width="0.0128%" height="15" fill="rgb(222,211,23)" fg:x="13691" fg:w="3"/><text x="58.5890%" y="3407.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.3390%" y="3381" width="0.0128%" height="15" fill="rgb(236,192,0)" fg:x="13691" fg:w="3"/><text x="58.5890%" y="3391.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.3390%" y="3365" width="0.0128%" height="15" fill="rgb(209,207,6)" fg:x="13691" fg:w="3"/><text x="58.5890%" y="3375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.3390%" y="3349" width="0.0128%" height="15" fill="rgb(208,201,8)" fg:x="13691" fg:w="3"/><text x="58.5890%" y="3359.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.3390%" y="3557" width="0.0213%" height="15" fill="rgb(210,18,21)" fg:x="13691" fg:w="5"/><text x="58.5890%" y="3567.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3390%" y="3541" width="0.0213%" height="15" fill="rgb(213,155,17)" fg:x="13691" fg:w="5"/><text x="58.5890%" y="3551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3390%" y="3525" width="0.0213%" height="15" fill="rgb(231,180,40)" fg:x="13691" fg:w="5"/><text x="58.5890%" y="3535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3390%" y="3509" width="0.0213%" height="15" fill="rgb(245,176,21)" fg:x="13691" fg:w="5"/><text x="58.5890%" y="3519.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3390%" y="3493" width="0.0213%" height="15" fill="rgb(248,11,54)" fg:x="13691" fg:w="5"/><text x="58.5890%" y="3503.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3390%" y="3477" width="0.0213%" height="15" fill="rgb(239,53,9)" fg:x="13691" fg:w="5"/><text x="58.5890%" y="3487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3390%" y="3461" width="0.0213%" height="15" fill="rgb(230,193,22)" fg:x="13691" fg:w="5"/><text x="58.5890%" y="3471.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="58.3390%" y="3653" width="0.0384%" height="15" fill="rgb(243,219,23)" fg:x="13691" fg:w="9"/><text x="58.5890%" y="3663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="58.3390%" y="3637" width="0.0384%" height="15" fill="rgb(217,92,12)" fg:x="13691" fg:w="9"/><text x="58.5890%" y="3647.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="58.3390%" y="3621" width="0.0384%" height="15" fill="rgb(240,91,48)" fg:x="13691" fg:w="9"/><text x="58.5890%" y="3631.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="58.3390%" y="3605" width="0.0384%" height="15" fill="rgb(239,68,48)" fg:x="13691" fg:w="9"/><text x="58.5890%" y="3615.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="58.3390%" y="3589" width="0.0384%" height="15" fill="rgb(245,86,10)" fg:x="13691" fg:w="9"/><text x="58.5890%" y="3599.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="58.3390%" y="3573" width="0.0384%" height="15" fill="rgb(237,69,40)" fg:x="13691" fg:w="9"/><text x="58.5890%" y="3583.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.3603%" y="3557" width="0.0170%" height="15" fill="rgb(248,65,40)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3567.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.3603%" y="3541" width="0.0170%" height="15" fill="rgb(249,12,35)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3551.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.3603%" y="3525" width="0.0170%" height="15" fill="rgb(223,151,36)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3535.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.3603%" y="3509" width="0.0170%" height="15" fill="rgb(245,190,42)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3519.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.3603%" y="3493" width="0.0170%" height="15" fill="rgb(208,6,15)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3503.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.3603%" y="3477" width="0.0170%" height="15" fill="rgb(219,103,7)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.3603%" y="3461" width="0.0170%" height="15" fill="rgb(232,97,0)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3471.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.3603%" y="3445" width="0.0170%" height="15" fill="rgb(231,167,2)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3455.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.3603%" y="3429" width="0.0170%" height="15" fill="rgb(248,140,33)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3439.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.3603%" y="3413" width="0.0170%" height="15" fill="rgb(212,200,38)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3423.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.3603%" y="3397" width="0.0170%" height="15" fill="rgb(218,192,13)" fg:x="13696" fg:w="4"/><text x="58.6103%" y="3407.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="58.3390%" y="3829" width="0.0469%" height="15" fill="rgb(230,138,39)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3839.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="58.3390%" y="3813" width="0.0469%" height="15" fill="rgb(213,212,32)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3823.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="58.3390%" y="3797" width="0.0469%" height="15" fill="rgb(218,50,45)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3807.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="58.3390%" y="3781" width="0.0469%" height="15" fill="rgb(224,130,37)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3791.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="58.3390%" y="3765" width="0.0469%" height="15" fill="rgb(225,89,47)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3775.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="58.3390%" y="3749" width="0.0469%" height="15" fill="rgb(225,190,32)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3759.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="58.3390%" y="3733" width="0.0469%" height="15" fill="rgb(228,149,25)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3743.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="58.3390%" y="3717" width="0.0469%" height="15" fill="rgb(216,218,27)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3727.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="58.3390%" y="3701" width="0.0469%" height="15" fill="rgb(233,113,3)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3711.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="58.3390%" y="3685" width="0.0469%" height="15" fill="rgb(252,219,19)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="58.3390%" y="3669" width="0.0469%" height="15" fill="rgb(228,104,6)" fg:x="13691" fg:w="11"/><text x="58.5890%" y="3679.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.3859%" y="3573" width="0.0213%" height="15" fill="rgb(250,159,53)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3583.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3557" width="0.0213%" height="15" fill="rgb(232,229,35)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3541" width="0.0213%" height="15" fill="rgb(240,62,17)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="3525" width="0.0213%" height="15" fill="rgb(208,222,33)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3535.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="3509" width="0.0213%" height="15" fill="rgb(248,178,1)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3519.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="3493" width="0.0213%" height="15" fill="rgb(214,205,15)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3477" width="0.0213%" height="15" fill="rgb(244,43,49)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3487.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.3859%" y="3461" width="0.0213%" height="15" fill="rgb(238,10,52)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3471.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3445" width="0.0213%" height="15" fill="rgb(233,16,15)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3429" width="0.0213%" height="15" fill="rgb(240,153,43)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="3413" width="0.0213%" height="15" fill="rgb(207,13,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3423.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="3397" width="0.0213%" height="15" fill="rgb(225,130,44)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3407.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="3381" width="0.0213%" height="15" fill="rgb(217,93,42)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3365" width="0.0213%" height="15" fill="rgb(252,28,10)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3375.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.3859%" y="3349" width="0.0213%" height="15" fill="rgb(214,60,19)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3333" width="0.0213%" height="15" fill="rgb(251,14,32)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3317" width="0.0213%" height="15" fill="rgb(225,86,41)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="3301" width="0.0213%" height="15" fill="rgb(234,165,43)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="3285" width="0.0213%" height="15" fill="rgb(210,45,29)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="3269" width="0.0213%" height="15" fill="rgb(234,44,35)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3253" width="0.0213%" height="15" fill="rgb(227,119,31)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3263.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="58.3859%" y="3237" width="0.0213%" height="15" fill="rgb(236,6,34)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3247.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="58.3859%" y="3221" width="0.0213%" height="15" fill="rgb(231,17,40)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3231.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="3205" width="0.0213%" height="15" fill="rgb(249,27,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3215.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="3189" width="0.0213%" height="15" fill="rgb(232,103,19)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3199.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="3173" width="0.0213%" height="15" fill="rgb(213,13,7)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3183.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="58.3859%" y="3157" width="0.0213%" height="15" fill="rgb(241,181,14)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3859%" y="3141" width="0.0213%" height="15" fill="rgb(205,185,33)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3151.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3859%" y="3125" width="0.0213%" height="15" fill="rgb(224,32,7)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3135.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3859%" y="3109" width="0.0213%" height="15" fill="rgb(242,206,24)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3119.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3859%" y="3093" width="0.0213%" height="15" fill="rgb(229,84,3)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3859%" y="3077" width="0.0213%" height="15" fill="rgb(214,68,32)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3087.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3061" width="0.0213%" height="15" fill="rgb(231,76,8)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3045" width="0.0213%" height="15" fill="rgb(222,160,5)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="3029" width="0.0213%" height="15" fill="rgb(239,34,33)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="3013" width="0.0213%" height="15" fill="rgb(221,132,45)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="2997" width="0.0213%" height="15" fill="rgb(218,23,0)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="2981" width="0.0213%" height="15" fill="rgb(254,178,38)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2965" width="0.0213%" height="15" fill="rgb(206,89,41)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3859%" y="2949" width="0.0213%" height="15" fill="rgb(225,201,12)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3859%" y="2933" width="0.0213%" height="15" fill="rgb(250,18,48)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2943.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3859%" y="2917" width="0.0213%" height="15" fill="rgb(212,184,32)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3859%" y="2901" width="0.0213%" height="15" fill="rgb(213,154,8)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3859%" y="2885" width="0.0213%" height="15" fill="rgb(237,214,33)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2869" width="0.0213%" height="15" fill="rgb(234,101,53)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2853" width="0.0213%" height="15" fill="rgb(241,124,29)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="2837" width="0.0213%" height="15" fill="rgb(250,43,33)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="2821" width="0.0213%" height="15" fill="rgb(233,13,48)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="2805" width="0.0213%" height="15" fill="rgb(215,101,31)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2789" width="0.0213%" height="15" fill="rgb(251,79,40)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3859%" y="2773" width="0.0213%" height="15" fill="rgb(206,64,19)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3859%" y="2757" width="0.0213%" height="15" fill="rgb(253,62,42)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2767.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3859%" y="2741" width="0.0213%" height="15" fill="rgb(207,151,38)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3859%" y="2725" width="0.0213%" height="15" fill="rgb(206,119,25)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3859%" y="2709" width="0.0213%" height="15" fill="rgb(223,61,6)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2693" width="0.0213%" height="15" fill="rgb(211,12,1)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2677" width="0.0213%" height="15" fill="rgb(217,99,8)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="2661" width="0.0213%" height="15" fill="rgb(230,12,19)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="2645" width="0.0213%" height="15" fill="rgb(227,36,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="2629" width="0.0213%" height="15" fill="rgb(250,48,53)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2613" width="0.0213%" height="15" fill="rgb(249,153,43)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2623.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.3859%" y="2597" width="0.0213%" height="15" fill="rgb(230,80,49)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2581" width="0.0213%" height="15" fill="rgb(220,80,36)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2565" width="0.0213%" height="15" fill="rgb(225,113,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="2549" width="0.0213%" height="15" fill="rgb(241,61,22)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="2533" width="0.0213%" height="15" fill="rgb(217,86,9)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="2517" width="0.0213%" height="15" fill="rgb(226,160,28)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2501" width="0.0213%" height="15" fill="rgb(242,182,34)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="58.3859%" y="2485" width="0.0213%" height="15" fill="rgb(229,79,25)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="58.3859%" y="2469" width="0.0213%" height="15" fill="rgb(246,202,5)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2479.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="2453" width="0.0213%" height="15" fill="rgb(233,148,32)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2463.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="2437" width="0.0213%" height="15" fill="rgb(235,86,27)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2447.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="2421" width="0.0213%" height="15" fill="rgb(207,216,8)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2431.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="58.3859%" y="2405" width="0.0213%" height="15" fill="rgb(235,185,46)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2415.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3859%" y="2389" width="0.0213%" height="15" fill="rgb(246,174,12)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2399.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3859%" y="2373" width="0.0213%" height="15" fill="rgb(221,209,51)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2383.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3859%" y="2357" width="0.0213%" height="15" fill="rgb(250,141,48)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2367.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3859%" y="2341" width="0.0213%" height="15" fill="rgb(236,131,14)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2351.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3859%" y="2325" width="0.0213%" height="15" fill="rgb(250,143,20)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2335.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2309" width="0.0213%" height="15" fill="rgb(205,153,33)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2319.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2293" width="0.0213%" height="15" fill="rgb(242,164,44)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2277" width="0.0213%" height="15" fill="rgb(224,224,7)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="2261" width="0.0213%" height="15" fill="rgb(229,213,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2271.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="2245" width="0.0213%" height="15" fill="rgb(207,123,45)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2255.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="2229" width="0.0213%" height="15" fill="rgb(235,219,14)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2239.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2213" width="0.0213%" height="15" fill="rgb(210,5,1)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2223.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="58.3859%" y="2197" width="0.0213%" height="15" fill="rgb(215,102,40)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2207.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="58.3859%" y="2181" width="0.0213%" height="15" fill="rgb(232,94,41)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2191.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="2165" width="0.0213%" height="15" fill="rgb(212,189,4)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2175.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="2149" width="0.0213%" height="15" fill="rgb(240,125,11)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2159.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="2133" width="0.0213%" height="15" fill="rgb(220,19,36)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2143.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="58.3859%" y="2117" width="0.0213%" height="15" fill="rgb(242,17,51)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2127.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3859%" y="2101" width="0.0213%" height="15" fill="rgb(237,115,28)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2111.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3859%" y="2085" width="0.0213%" height="15" fill="rgb(217,72,12)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2095.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3859%" y="2069" width="0.0213%" height="15" fill="rgb(238,160,47)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2079.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3859%" y="2053" width="0.0213%" height="15" fill="rgb(223,223,11)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2063.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3859%" y="2037" width="0.0213%" height="15" fill="rgb(236,204,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2047.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2021" width="0.0213%" height="15" fill="rgb(216,19,2)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="2005" width="0.0213%" height="15" fill="rgb(246,81,49)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="1989" width="0.0213%" height="15" fill="rgb(251,185,34)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="1973" width="0.0213%" height="15" fill="rgb(253,190,30)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="1957" width="0.0213%" height="15" fill="rgb(233,172,12)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="1941" width="0.0213%" height="15" fill="rgb(233,34,40)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="1925" width="0.0213%" height="15" fill="rgb(230,216,46)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1935.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="58.3859%" y="1909" width="0.0213%" height="15" fill="rgb(253,226,36)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1919.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="58.3859%" y="1893" width="0.0213%" height="15" fill="rgb(216,61,24)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1903.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="1877" width="0.0213%" height="15" fill="rgb(233,195,46)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1887.50"></text></g><g><title>rayon_core::job::JobRef::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="1861" width="0.0213%" height="15" fill="rgb(229,2,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1871.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (5 samples, 0.02%)</title><rect x="58.3859%" y="1845" width="0.0213%" height="15" fill="rgb(225,77,29)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1855.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (5 samples, 0.02%)</title><rect x="58.3859%" y="1829" width="0.0213%" height="15" fill="rgb(250,149,10)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1839.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.3859%" y="1813" width="0.0213%" height="15" fill="rgb(210,72,34)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1823.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.3859%" y="1797" width="0.0213%" height="15" fill="rgb(237,35,18)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1807.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.3859%" y="1781" width="0.0213%" height="15" fill="rgb(238,91,34)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1791.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.3859%" y="1765" width="0.0213%" height="15" fill="rgb(210,37,16)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1775.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.3859%" y="1749" width="0.0213%" height="15" fill="rgb(221,152,50)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1759.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="1733" width="0.0213%" height="15" fill="rgb(233,73,15)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1743.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="1717" width="0.0213%" height="15" fill="rgb(218,157,31)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="1701" width="0.0213%" height="15" fill="rgb(250,8,36)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.3859%" y="1685" width="0.0213%" height="15" fill="rgb(237,150,46)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1695.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.3859%" y="1669" width="0.0213%" height="15" fill="rgb(231,197,46)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1679.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.3859%" y="1653" width="0.0213%" height="15" fill="rgb(246,193,51)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.3859%" y="1637" width="0.0213%" height="15" fill="rgb(228,26,40)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1647.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (5 samples, 0.02%)</title><rect x="58.3859%" y="1621" width="0.0213%" height="15" fill="rgb(244,13,13)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="58.3859%" y="1605" width="0.0213%" height="15" fill="rgb(212,207,25)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1615.50"></text></g><g><title>rayon_core::sleep::Sleep::no_work_found (5 samples, 0.02%)</title><rect x="58.3859%" y="1589" width="0.0213%" height="15" fill="rgb(228,126,34)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1599.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="58.3859%" y="1573" width="0.0213%" height="15" fill="rgb(212,223,31)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1583.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="58.3859%" y="1557" width="0.0213%" height="15" fill="rgb(237,174,22)" fg:x="13702" fg:w="5"/><text x="58.6359%" y="1567.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="58.3901%" y="1541" width="0.0170%" height="15" fill="rgb(227,63,21)" fg:x="13703" fg:w="4"/><text x="58.6401%" y="1551.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="58.3901%" y="1525" width="0.0170%" height="15" fill="rgb(234,161,13)" fg:x="13703" fg:w="4"/><text x="58.6401%" y="1535.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="58.3901%" y="1509" width="0.0170%" height="15" fill="rgb(215,112,12)" fg:x="13703" fg:w="4"/><text x="58.6401%" y="1519.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="58.3901%" y="1493" width="0.0170%" height="15" fill="rgb(224,224,0)" fg:x="13703" fg:w="4"/><text x="58.6401%" y="1503.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="58.3859%" y="3685" width="0.0256%" height="15" fill="rgb(222,108,18)" fg:x="13702" fg:w="6"/><text x="58.6359%" y="3695.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3859%" y="3669" width="0.0256%" height="15" fill="rgb(214,222,45)" fg:x="13702" fg:w="6"/><text x="58.6359%" y="3679.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3859%" y="3653" width="0.0256%" height="15" fill="rgb(249,65,31)" fg:x="13702" fg:w="6"/><text x="58.6359%" y="3663.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.3859%" y="3637" width="0.0256%" height="15" fill="rgb(206,75,45)" fg:x="13702" fg:w="6"/><text x="58.6359%" y="3647.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="58.3859%" y="3621" width="0.0256%" height="15" fill="rgb(247,82,2)" fg:x="13702" fg:w="6"/><text x="58.6359%" y="3631.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="58.3859%" y="3605" width="0.0256%" height="15" fill="rgb(242,75,31)" fg:x="13702" fg:w="6"/><text x="58.6359%" y="3615.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.3859%" y="3589" width="0.0256%" height="15" fill="rgb(248,89,19)" fg:x="13702" fg:w="6"/><text x="58.6359%" y="3599.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="58.3859%" y="3797" width="0.0384%" height="15" fill="rgb(236,91,1)" fg:x="13702" fg:w="9"/><text x="58.6359%" y="3807.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="58.3859%" y="3781" width="0.0384%" height="15" fill="rgb(217,28,31)" fg:x="13702" fg:w="9"/><text x="58.6359%" y="3791.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="58.3859%" y="3765" width="0.0384%" height="15" fill="rgb(250,193,38)" fg:x="13702" fg:w="9"/><text x="58.6359%" y="3775.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="58.3859%" y="3749" width="0.0384%" height="15" fill="rgb(219,36,53)" fg:x="13702" fg:w="9"/><text x="58.6359%" y="3759.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="58.3859%" y="3733" width="0.0384%" height="15" fill="rgb(253,13,16)" fg:x="13702" fg:w="9"/><text x="58.6359%" y="3743.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="58.3859%" y="3717" width="0.0384%" height="15" fill="rgb(229,178,3)" fg:x="13702" fg:w="9"/><text x="58.6359%" y="3727.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="58.3859%" y="3701" width="0.0384%" height="15" fill="rgb(245,86,48)" fg:x="13702" fg:w="9"/><text x="58.6359%" y="3711.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="58.4115%" y="3685" width="0.0128%" height="15" fill="rgb(240,214,27)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3695.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="58.4115%" y="3669" width="0.0128%" height="15" fill="rgb(222,180,19)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3679.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="58.4115%" y="3653" width="0.0128%" height="15" fill="rgb(209,191,2)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3663.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="58.4115%" y="3637" width="0.0128%" height="15" fill="rgb(210,160,27)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3647.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="58.4115%" y="3621" width="0.0128%" height="15" fill="rgb(208,141,5)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3631.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="58.4115%" y="3605" width="0.0128%" height="15" fill="rgb(231,1,10)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3615.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.4115%" y="3589" width="0.0128%" height="15" fill="rgb(208,221,31)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3599.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.4115%" y="3573" width="0.0128%" height="15" fill="rgb(215,111,27)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3583.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.4115%" y="3557" width="0.0128%" height="15" fill="rgb(222,20,2)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3567.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.4115%" y="3541" width="0.0128%" height="15" fill="rgb(205,181,14)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3551.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.4115%" y="3525" width="0.0128%" height="15" fill="rgb(240,110,11)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3535.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4115%" y="3509" width="0.0128%" height="15" fill="rgb(246,78,4)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3519.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4115%" y="3493" width="0.0128%" height="15" fill="rgb(232,74,18)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4115%" y="3477" width="0.0128%" height="15" fill="rgb(210,9,16)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.4115%" y="3461" width="0.0128%" height="15" fill="rgb(250,177,7)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3471.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.4115%" y="3445" width="0.0128%" height="15" fill="rgb(235,157,8)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3455.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.4115%" y="3429" width="0.0128%" height="15" fill="rgb(226,207,45)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4115%" y="3413" width="0.0128%" height="15" fill="rgb(211,40,31)" fg:x="13708" fg:w="3"/><text x="58.6615%" y="3423.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.4242%" y="3173" width="0.0128%" height="15" fill="rgb(205,120,50)" fg:x="13711" fg:w="3"/><text x="58.6742%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4242%" y="3157" width="0.0128%" height="15" fill="rgb(231,26,51)" fg:x="13711" fg:w="3"/><text x="58.6742%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4242%" y="3141" width="0.0128%" height="15" fill="rgb(234,127,51)" fg:x="13711" fg:w="3"/><text x="58.6742%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.4242%" y="3125" width="0.0128%" height="15" fill="rgb(226,32,8)" fg:x="13711" fg:w="3"/><text x="58.6742%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.4242%" y="3109" width="0.0128%" height="15" fill="rgb(248,47,14)" fg:x="13711" fg:w="3"/><text x="58.6742%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.4242%" y="3093" width="0.0128%" height="15" fill="rgb(240,75,14)" fg:x="13711" fg:w="3"/><text x="58.6742%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4242%" y="3077" width="0.0128%" height="15" fill="rgb(236,61,2)" fg:x="13711" fg:w="3"/><text x="58.6742%" y="3087.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.4242%" y="3285" width="0.0213%" height="15" fill="rgb(241,127,42)" fg:x="13711" fg:w="5"/><text x="58.6742%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4242%" y="3269" width="0.0213%" height="15" fill="rgb(232,193,22)" fg:x="13711" fg:w="5"/><text x="58.6742%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4242%" y="3253" width="0.0213%" height="15" fill="rgb(222,183,43)" fg:x="13711" fg:w="5"/><text x="58.6742%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.4242%" y="3237" width="0.0213%" height="15" fill="rgb(205,22,22)" fg:x="13711" fg:w="5"/><text x="58.6742%" y="3247.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.4242%" y="3221" width="0.0213%" height="15" fill="rgb(210,69,27)" fg:x="13711" fg:w="5"/><text x="58.6742%" y="3231.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.4242%" y="3205" width="0.0213%" height="15" fill="rgb(226,222,2)" fg:x="13711" fg:w="5"/><text x="58.6742%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4242%" y="3189" width="0.0213%" height="15" fill="rgb(250,10,13)" fg:x="13711" fg:w="5"/><text x="58.6742%" y="3199.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.4455%" y="2885" width="0.0128%" height="15" fill="rgb(217,204,47)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4455%" y="2869" width="0.0128%" height="15" fill="rgb(209,112,0)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4455%" y="2853" width="0.0128%" height="15" fill="rgb(214,67,30)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.4455%" y="2837" width="0.0128%" height="15" fill="rgb(247,130,33)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.4455%" y="2821" width="0.0128%" height="15" fill="rgb(242,196,3)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2831.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.4455%" y="2805" width="0.0128%" height="15" fill="rgb(248,55,42)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2815.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.4455%" y="2789" width="0.0128%" height="15" fill="rgb(221,82,14)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2799.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.4455%" y="2773" width="0.0128%" height="15" fill="rgb(247,51,53)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2783.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.4455%" y="2757" width="0.0128%" height="15" fill="rgb(216,206,9)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2767.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.4455%" y="2741" width="0.0128%" height="15" fill="rgb(245,33,27)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.4455%" y="2725" width="0.0128%" height="15" fill="rgb(254,174,46)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2735.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4455%" y="2709" width="0.0128%" height="15" fill="rgb(226,173,6)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4455%" y="2693" width="0.0128%" height="15" fill="rgb(231,212,9)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.4455%" y="2677" width="0.0128%" height="15" fill="rgb(223,151,52)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2687.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4455%" y="2661" width="0.0128%" height="15" fill="rgb(223,157,24)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2671.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.4455%" y="2645" width="0.0128%" height="15" fill="rgb(239,216,9)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2655.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.4455%" y="2629" width="0.0128%" height="15" fill="rgb(242,11,10)" fg:x="13716" fg:w="3"/><text x="58.6955%" y="2639.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="58.4455%" y="2997" width="0.0170%" height="15" fill="rgb(229,99,39)" fg:x="13716" fg:w="4"/><text x="58.6955%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="58.4455%" y="2981" width="0.0170%" height="15" fill="rgb(237,168,0)" fg:x="13716" fg:w="4"/><text x="58.6955%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.4455%" y="2965" width="0.0170%" height="15" fill="rgb(234,193,47)" fg:x="13716" fg:w="4"/><text x="58.6955%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.4455%" y="2949" width="0.0170%" height="15" fill="rgb(224,175,0)" fg:x="13716" fg:w="4"/><text x="58.6955%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.4455%" y="2933" width="0.0170%" height="15" fill="rgb(205,11,14)" fg:x="13716" fg:w="4"/><text x="58.6955%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.4455%" y="2917" width="0.0170%" height="15" fill="rgb(236,1,5)" fg:x="13716" fg:w="4"/><text x="58.6955%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.4455%" y="2901" width="0.0170%" height="15" fill="rgb(226,19,35)" fg:x="13716" fg:w="4"/><text x="58.6955%" y="2911.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (10 samples, 0.04%)</title><rect x="58.4242%" y="3397" width="0.0426%" height="15" fill="rgb(235,219,54)" fg:x="13711" fg:w="10"/><text x="58.6742%" y="3407.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (10 samples, 0.04%)</title><rect x="58.4242%" y="3381" width="0.0426%" height="15" fill="rgb(244,65,2)" fg:x="13711" fg:w="10"/><text x="58.6742%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="58.4242%" y="3365" width="0.0426%" height="15" fill="rgb(233,204,31)" fg:x="13711" fg:w="10"/><text x="58.6742%" y="3375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="58.4242%" y="3349" width="0.0426%" height="15" fill="rgb(238,55,6)" fg:x="13711" fg:w="10"/><text x="58.6742%" y="3359.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="58.4242%" y="3333" width="0.0426%" height="15" fill="rgb(221,198,40)" fg:x="13711" fg:w="10"/><text x="58.6742%" y="3343.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="58.4242%" y="3317" width="0.0426%" height="15" fill="rgb(232,100,53)" fg:x="13711" fg:w="10"/><text x="58.6742%" y="3327.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="58.4242%" y="3301" width="0.0426%" height="15" fill="rgb(213,15,24)" fg:x="13711" fg:w="10"/><text x="58.6742%" y="3311.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.4455%" y="3285" width="0.0213%" height="15" fill="rgb(221,85,53)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3295.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.4455%" y="3269" width="0.0213%" height="15" fill="rgb(220,66,18)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3279.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.4455%" y="3253" width="0.0213%" height="15" fill="rgb(211,40,49)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3263.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.4455%" y="3237" width="0.0213%" height="15" fill="rgb(209,109,48)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3247.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.4455%" y="3221" width="0.0213%" height="15" fill="rgb(252,56,53)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4455%" y="3205" width="0.0213%" height="15" fill="rgb(242,76,11)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4455%" y="3189" width="0.0213%" height="15" fill="rgb(225,81,9)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.4455%" y="3173" width="0.0213%" height="15" fill="rgb(225,186,21)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3183.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.4455%" y="3157" width="0.0213%" height="15" fill="rgb(229,130,21)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3167.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.4455%" y="3141" width="0.0213%" height="15" fill="rgb(218,112,47)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4455%" y="3125" width="0.0213%" height="15" fill="rgb(207,32,29)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3135.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.4455%" y="3109" width="0.0213%" height="15" fill="rgb(221,192,36)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4455%" y="3093" width="0.0213%" height="15" fill="rgb(223,198,35)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4455%" y="3077" width="0.0213%" height="15" fill="rgb(222,45,41)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.4455%" y="3061" width="0.0213%" height="15" fill="rgb(231,67,2)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.4455%" y="3045" width="0.0213%" height="15" fill="rgb(220,18,9)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.4455%" y="3029" width="0.0213%" height="15" fill="rgb(224,217,34)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4455%" y="3013" width="0.0213%" height="15" fill="rgb(220,158,19)" fg:x="13716" fg:w="5"/><text x="58.6955%" y="3023.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.4668%" y="3109" width="0.0213%" height="15" fill="rgb(220,113,22)" fg:x="13721" fg:w="5"/><text x="58.7168%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4668%" y="3093" width="0.0213%" height="15" fill="rgb(215,75,53)" fg:x="13721" fg:w="5"/><text x="58.7168%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4668%" y="3077" width="0.0213%" height="15" fill="rgb(208,121,40)" fg:x="13721" fg:w="5"/><text x="58.7168%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.4668%" y="3061" width="0.0213%" height="15" fill="rgb(208,144,40)" fg:x="13721" fg:w="5"/><text x="58.7168%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.4668%" y="3045" width="0.0213%" height="15" fill="rgb(210,185,31)" fg:x="13721" fg:w="5"/><text x="58.7168%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.4668%" y="3029" width="0.0213%" height="15" fill="rgb(220,154,32)" fg:x="13721" fg:w="5"/><text x="58.7168%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.4668%" y="3013" width="0.0213%" height="15" fill="rgb(231,116,0)" fg:x="13721" fg:w="5"/><text x="58.7168%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.4754%" y="2997" width="0.0128%" height="15" fill="rgb(237,213,41)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.4754%" y="2981" width="0.0128%" height="15" fill="rgb(229,203,22)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2991.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.4754%" y="2965" width="0.0128%" height="15" fill="rgb(212,124,26)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.4754%" y="2949" width="0.0128%" height="15" fill="rgb(234,129,13)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.4754%" y="2933" width="0.0128%" height="15" fill="rgb(221,39,44)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2917" width="0.0128%" height="15" fill="rgb(228,215,11)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2901" width="0.0128%" height="15" fill="rgb(205,208,42)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.4754%" y="2885" width="0.0128%" height="15" fill="rgb(230,140,3)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.4754%" y="2869" width="0.0128%" height="15" fill="rgb(242,155,36)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.4754%" y="2853" width="0.0128%" height="15" fill="rgb(240,134,17)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2837" width="0.0128%" height="15" fill="rgb(207,190,18)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2847.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.4754%" y="2821" width="0.0128%" height="15" fill="rgb(239,103,33)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2805" width="0.0128%" height="15" fill="rgb(208,190,48)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2789" width="0.0128%" height="15" fill="rgb(254,194,29)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.4754%" y="2773" width="0.0128%" height="15" fill="rgb(218,112,29)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.4754%" y="2757" width="0.0128%" height="15" fill="rgb(249,220,29)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2767.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.4754%" y="2741" width="0.0128%" height="15" fill="rgb(223,64,28)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2751.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.4754%" y="2725" width="0.0128%" height="15" fill="rgb(252,19,35)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2735.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.4754%" y="2709" width="0.0128%" height="15" fill="rgb(249,212,0)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2719.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.4754%" y="2693" width="0.0128%" height="15" fill="rgb(225,189,21)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2703.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.4754%" y="2677" width="0.0128%" height="15" fill="rgb(254,26,26)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.4754%" y="2661" width="0.0128%" height="15" fill="rgb(211,70,21)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2671.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2645" width="0.0128%" height="15" fill="rgb(247,95,12)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2629" width="0.0128%" height="15" fill="rgb(250,201,4)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.4754%" y="2613" width="0.0128%" height="15" fill="rgb(221,133,49)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2623.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.4754%" y="2597" width="0.0128%" height="15" fill="rgb(208,223,6)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2607.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.4754%" y="2581" width="0.0128%" height="15" fill="rgb(212,181,30)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2591.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.4754%" y="2565" width="0.0128%" height="15" fill="rgb(253,206,7)" fg:x="13723" fg:w="3"/><text x="58.7254%" y="2575.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="58.4668%" y="3221" width="0.0298%" height="15" fill="rgb(241,166,0)" fg:x="13721" fg:w="7"/><text x="58.7168%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="58.4668%" y="3205" width="0.0298%" height="15" fill="rgb(251,43,38)" fg:x="13721" fg:w="7"/><text x="58.7168%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="58.4668%" y="3189" width="0.0298%" height="15" fill="rgb(212,98,16)" fg:x="13721" fg:w="7"/><text x="58.7168%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="58.4668%" y="3173" width="0.0298%" height="15" fill="rgb(245,190,54)" fg:x="13721" fg:w="7"/><text x="58.7168%" y="3183.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="58.4668%" y="3157" width="0.0298%" height="15" fill="rgb(213,88,25)" fg:x="13721" fg:w="7"/><text x="58.7168%" y="3167.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="58.4668%" y="3141" width="0.0298%" height="15" fill="rgb(207,16,17)" fg:x="13721" fg:w="7"/><text x="58.7168%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="58.4668%" y="3125" width="0.0298%" height="15" fill="rgb(240,223,35)" fg:x="13721" fg:w="7"/><text x="58.7168%" y="3135.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (21 samples, 0.09%)</title><rect x="58.4242%" y="3509" width="0.0895%" height="15" fill="rgb(229,187,20)" fg:x="13711" fg:w="21"/><text x="58.6742%" y="3519.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (21 samples, 0.09%)</title><rect x="58.4242%" y="3493" width="0.0895%" height="15" fill="rgb(251,101,19)" fg:x="13711" fg:w="21"/><text x="58.6742%" y="3503.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (21 samples, 0.09%)</title><rect x="58.4242%" y="3477" width="0.0895%" height="15" fill="rgb(215,74,37)" fg:x="13711" fg:w="21"/><text x="58.6742%" y="3487.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.09%)</title><rect x="58.4242%" y="3461" width="0.0895%" height="15" fill="rgb(222,78,4)" fg:x="13711" fg:w="21"/><text x="58.6742%" y="3471.50"></text></g><g><title>rayon_core::join::join_context (21 samples, 0.09%)</title><rect x="58.4242%" y="3445" width="0.0895%" height="15" fill="rgb(213,91,47)" fg:x="13711" fg:w="21"/><text x="58.6742%" y="3455.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.09%)</title><rect x="58.4242%" y="3429" width="0.0895%" height="15" fill="rgb(216,42,49)" fg:x="13711" fg:w="21"/><text x="58.6742%" y="3439.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (21 samples, 0.09%)</title><rect x="58.4242%" y="3413" width="0.0895%" height="15" fill="rgb(240,193,14)" fg:x="13711" fg:w="21"/><text x="58.6742%" y="3423.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="58.4668%" y="3397" width="0.0469%" height="15" fill="rgb(253,64,41)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3407.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="58.4668%" y="3381" width="0.0469%" height="15" fill="rgb(233,62,16)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3391.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="58.4668%" y="3365" width="0.0469%" height="15" fill="rgb(240,35,19)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3375.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="58.4668%" y="3349" width="0.0469%" height="15" fill="rgb(228,225,41)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3359.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="58.4668%" y="3333" width="0.0469%" height="15" fill="rgb(233,24,48)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="58.4668%" y="3317" width="0.0469%" height="15" fill="rgb(207,109,40)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="58.4668%" y="3301" width="0.0469%" height="15" fill="rgb(244,70,43)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="58.4668%" y="3285" width="0.0469%" height="15" fill="rgb(250,38,22)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3295.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="58.4668%" y="3269" width="0.0469%" height="15" fill="rgb(220,145,34)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3279.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="58.4668%" y="3253" width="0.0469%" height="15" fill="rgb(242,127,1)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3263.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="58.4668%" y="3237" width="0.0469%" height="15" fill="rgb(232,68,51)" fg:x="13721" fg:w="11"/><text x="58.7168%" y="3247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.4967%" y="3221" width="0.0170%" height="15" fill="rgb(215,151,14)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3231.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.4967%" y="3205" width="0.0170%" height="15" fill="rgb(232,209,6)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3215.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.4967%" y="3189" width="0.0170%" height="15" fill="rgb(216,137,11)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3199.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.4967%" y="3173" width="0.0170%" height="15" fill="rgb(214,124,11)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.4967%" y="3157" width="0.0170%" height="15" fill="rgb(207,228,43)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.4967%" y="3141" width="0.0170%" height="15" fill="rgb(233,12,1)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.4967%" y="3125" width="0.0170%" height="15" fill="rgb(251,4,1)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.4967%" y="3109" width="0.0170%" height="15" fill="rgb(232,177,38)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3119.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.4967%" y="3093" width="0.0170%" height="15" fill="rgb(223,217,31)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3103.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.4967%" y="3077" width="0.0170%" height="15" fill="rgb(223,117,22)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.4967%" y="3061" width="0.0170%" height="15" fill="rgb(224,188,10)" fg:x="13728" fg:w="4"/><text x="58.7467%" y="3071.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.5137%" y="2885" width="0.0128%" height="15" fill="rgb(207,116,28)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5137%" y="2869" width="0.0128%" height="15" fill="rgb(207,54,31)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5137%" y="2853" width="0.0128%" height="15" fill="rgb(224,132,39)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5137%" y="2837" width="0.0128%" height="15" fill="rgb(249,136,17)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.5137%" y="2821" width="0.0128%" height="15" fill="rgb(239,216,21)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2831.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.5137%" y="2805" width="0.0128%" height="15" fill="rgb(240,186,35)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2815.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.5137%" y="2789" width="0.0128%" height="15" fill="rgb(220,210,37)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2799.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.5137%" y="2773" width="0.0128%" height="15" fill="rgb(232,206,41)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2783.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.5137%" y="2757" width="0.0128%" height="15" fill="rgb(232,112,23)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2767.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.5137%" y="2741" width="0.0128%" height="15" fill="rgb(237,82,2)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2751.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.5137%" y="2725" width="0.0128%" height="15" fill="rgb(221,138,32)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2735.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5137%" y="2709" width="0.0128%" height="15" fill="rgb(243,110,23)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2719.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5137%" y="2693" width="0.0128%" height="15" fill="rgb(233,156,32)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2703.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.5137%" y="2677" width="0.0128%" height="15" fill="rgb(253,129,54)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2687.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5137%" y="2661" width="0.0128%" height="15" fill="rgb(221,172,0)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2671.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.5137%" y="2645" width="0.0128%" height="15" fill="rgb(234,149,51)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2655.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.5137%" y="2629" width="0.0128%" height="15" fill="rgb(224,128,27)" fg:x="13732" fg:w="3"/><text x="58.7637%" y="2639.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="58.5137%" y="2997" width="0.0384%" height="15" fill="rgb(253,150,40)" fg:x="13732" fg:w="9"/><text x="58.7637%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="58.5137%" y="2981" width="0.0384%" height="15" fill="rgb(212,22,18)" fg:x="13732" fg:w="9"/><text x="58.7637%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="58.5137%" y="2965" width="0.0384%" height="15" fill="rgb(223,184,4)" fg:x="13732" fg:w="9"/><text x="58.7637%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="58.5137%" y="2949" width="0.0384%" height="15" fill="rgb(237,221,24)" fg:x="13732" fg:w="9"/><text x="58.7637%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="58.5137%" y="2933" width="0.0384%" height="15" fill="rgb(235,187,41)" fg:x="13732" fg:w="9"/><text x="58.7637%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="58.5137%" y="2917" width="0.0384%" height="15" fill="rgb(254,8,28)" fg:x="13732" fg:w="9"/><text x="58.7637%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="58.5137%" y="2901" width="0.0384%" height="15" fill="rgb(209,179,24)" fg:x="13732" fg:w="9"/><text x="58.7637%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.5350%" y="2885" width="0.0170%" height="15" fill="rgb(224,27,29)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.5350%" y="2869" width="0.0170%" height="15" fill="rgb(206,106,10)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2879.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.5350%" y="2853" width="0.0170%" height="15" fill="rgb(237,21,28)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.5350%" y="2837" width="0.0170%" height="15" fill="rgb(216,195,32)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.5350%" y="2821" width="0.0170%" height="15" fill="rgb(215,187,19)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5350%" y="2805" width="0.0170%" height="15" fill="rgb(244,66,43)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5350%" y="2789" width="0.0170%" height="15" fill="rgb(222,112,29)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.5350%" y="2773" width="0.0170%" height="15" fill="rgb(210,214,27)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="58.5350%" y="2757" width="0.0170%" height="15" fill="rgb(221,79,29)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2767.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.5350%" y="2741" width="0.0170%" height="15" fill="rgb(214,220,27)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2751.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.5350%" y="2725" width="0.0170%" height="15" fill="rgb(242,59,54)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2735.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="58.5350%" y="2709" width="0.0170%" height="15" fill="rgb(250,189,52)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2719.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.5350%" y="2693" width="0.0170%" height="15" fill="rgb(230,122,37)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2703.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.5350%" y="2677" width="0.0170%" height="15" fill="rgb(222,52,42)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="58.5350%" y="2661" width="0.0170%" height="15" fill="rgb(207,186,16)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2671.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5350%" y="2645" width="0.0170%" height="15" fill="rgb(234,60,53)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5350%" y="2629" width="0.0170%" height="15" fill="rgb(208,154,51)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="58.5350%" y="2613" width="0.0170%" height="15" fill="rgb(245,57,13)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2623.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5350%" y="2597" width="0.0170%" height="15" fill="rgb(252,16,48)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2607.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="58.5350%" y="2581" width="0.0170%" height="15" fill="rgb(249,32,44)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2591.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="58.5350%" y="2565" width="0.0170%" height="15" fill="rgb(228,206,41)" fg:x="13737" fg:w="4"/><text x="58.7850%" y="2575.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="58.5137%" y="3109" width="0.0511%" height="15" fill="rgb(227,172,34)" fg:x="13732" fg:w="12"/><text x="58.7637%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="58.5137%" y="3093" width="0.0511%" height="15" fill="rgb(225,151,46)" fg:x="13732" fg:w="12"/><text x="58.7637%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="58.5137%" y="3077" width="0.0511%" height="15" fill="rgb(214,183,25)" fg:x="13732" fg:w="12"/><text x="58.7637%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="58.5137%" y="3061" width="0.0511%" height="15" fill="rgb(208,145,32)" fg:x="13732" fg:w="12"/><text x="58.7637%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="58.5137%" y="3045" width="0.0511%" height="15" fill="rgb(247,160,11)" fg:x="13732" fg:w="12"/><text x="58.7637%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="58.5137%" y="3029" width="0.0511%" height="15" fill="rgb(216,145,5)" fg:x="13732" fg:w="12"/><text x="58.7637%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="58.5137%" y="3013" width="0.0511%" height="15" fill="rgb(222,167,46)" fg:x="13732" fg:w="12"/><text x="58.7637%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.5521%" y="2997" width="0.0128%" height="15" fill="rgb(234,101,9)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.5521%" y="2981" width="0.0128%" height="15" fill="rgb(211,138,18)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2991.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.5521%" y="2965" width="0.0128%" height="15" fill="rgb(225,98,52)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.5521%" y="2949" width="0.0128%" height="15" fill="rgb(245,87,39)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.5521%" y="2933" width="0.0128%" height="15" fill="rgb(208,96,45)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5521%" y="2917" width="0.0128%" height="15" fill="rgb(252,35,49)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5521%" y="2901" width="0.0128%" height="15" fill="rgb(221,200,10)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5521%" y="2885" width="0.0128%" height="15" fill="rgb(232,67,39)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.5521%" y="2869" width="0.0128%" height="15" fill="rgb(248,45,20)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.5521%" y="2853" width="0.0128%" height="15" fill="rgb(213,229,43)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5521%" y="2837" width="0.0128%" height="15" fill="rgb(239,111,20)" fg:x="13741" fg:w="3"/><text x="58.8021%" y="2847.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="58.5137%" y="3221" width="0.0639%" height="15" fill="rgb(225,149,6)" fg:x="13732" fg:w="15"/><text x="58.7637%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="58.5137%" y="3205" width="0.0639%" height="15" fill="rgb(231,11,7)" fg:x="13732" fg:w="15"/><text x="58.7637%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="58.5137%" y="3189" width="0.0639%" height="15" fill="rgb(205,100,35)" fg:x="13732" fg:w="15"/><text x="58.7637%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="58.5137%" y="3173" width="0.0639%" height="15" fill="rgb(251,127,11)" fg:x="13732" fg:w="15"/><text x="58.7637%" y="3183.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="58.5137%" y="3157" width="0.0639%" height="15" fill="rgb(209,164,40)" fg:x="13732" fg:w="15"/><text x="58.7637%" y="3167.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="58.5137%" y="3141" width="0.0639%" height="15" fill="rgb(249,183,37)" fg:x="13732" fg:w="15"/><text x="58.7637%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="58.5137%" y="3125" width="0.0639%" height="15" fill="rgb(247,3,7)" fg:x="13732" fg:w="15"/><text x="58.7637%" y="3135.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.5649%" y="3109" width="0.0128%" height="15" fill="rgb(217,127,0)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3119.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.5649%" y="3093" width="0.0128%" height="15" fill="rgb(250,188,46)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3103.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.5649%" y="3077" width="0.0128%" height="15" fill="rgb(240,5,50)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3087.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.5649%" y="3061" width="0.0128%" height="15" fill="rgb(250,211,37)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3071.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.5649%" y="3045" width="0.0128%" height="15" fill="rgb(238,45,28)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5649%" y="3029" width="0.0128%" height="15" fill="rgb(209,200,46)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5649%" y="3013" width="0.0128%" height="15" fill="rgb(245,29,10)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5649%" y="2997" width="0.0128%" height="15" fill="rgb(245,188,19)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.5649%" y="2981" width="0.0128%" height="15" fill="rgb(244,92,42)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.5649%" y="2965" width="0.0128%" height="15" fill="rgb(240,182,20)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5649%" y="2949" width="0.0128%" height="15" fill="rgb(222,213,18)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2959.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.5649%" y="2933" width="0.0128%" height="15" fill="rgb(216,135,53)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5649%" y="2917" width="0.0128%" height="15" fill="rgb(211,55,34)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5649%" y="2901" width="0.0128%" height="15" fill="rgb(239,131,5)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5649%" y="2885" width="0.0128%" height="15" fill="rgb(233,152,9)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.5649%" y="2869" width="0.0128%" height="15" fill="rgb(228,101,27)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.5649%" y="2853" width="0.0128%" height="15" fill="rgb(227,151,11)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5649%" y="2837" width="0.0128%" height="15" fill="rgb(231,161,44)" fg:x="13744" fg:w="3"/><text x="58.8149%" y="2847.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.5776%" y="2933" width="0.0128%" height="15" fill="rgb(206,131,36)" fg:x="13747" fg:w="3"/><text x="58.8276%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5776%" y="2917" width="0.0128%" height="15" fill="rgb(217,155,2)" fg:x="13747" fg:w="3"/><text x="58.8276%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5776%" y="2901" width="0.0128%" height="15" fill="rgb(227,195,48)" fg:x="13747" fg:w="3"/><text x="58.8276%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5776%" y="2885" width="0.0128%" height="15" fill="rgb(250,187,47)" fg:x="13747" fg:w="3"/><text x="58.8276%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.5776%" y="2869" width="0.0128%" height="15" fill="rgb(212,190,7)" fg:x="13747" fg:w="3"/><text x="58.8276%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.5776%" y="2853" width="0.0128%" height="15" fill="rgb(237,37,44)" fg:x="13747" fg:w="3"/><text x="58.8276%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5776%" y="2837" width="0.0128%" height="15" fill="rgb(216,172,7)" fg:x="13747" fg:w="3"/><text x="58.8276%" y="2847.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="58.5776%" y="3045" width="0.0170%" height="15" fill="rgb(251,76,30)" fg:x="13747" fg:w="4"/><text x="58.8276%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5776%" y="3029" width="0.0170%" height="15" fill="rgb(209,89,13)" fg:x="13747" fg:w="4"/><text x="58.8276%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5776%" y="3013" width="0.0170%" height="15" fill="rgb(211,64,20)" fg:x="13747" fg:w="4"/><text x="58.8276%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.5776%" y="2997" width="0.0170%" height="15" fill="rgb(219,182,15)" fg:x="13747" fg:w="4"/><text x="58.8276%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.5776%" y="2981" width="0.0170%" height="15" fill="rgb(221,205,16)" fg:x="13747" fg:w="4"/><text x="58.8276%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.5776%" y="2965" width="0.0170%" height="15" fill="rgb(251,28,54)" fg:x="13747" fg:w="4"/><text x="58.8276%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.5776%" y="2949" width="0.0170%" height="15" fill="rgb(205,198,31)" fg:x="13747" fg:w="4"/><text x="58.8276%" y="2959.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (22 samples, 0.09%)</title><rect x="58.5137%" y="3333" width="0.0937%" height="15" fill="rgb(243,136,42)" fg:x="13732" fg:w="22"/><text x="58.7637%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (22 samples, 0.09%)</title><rect x="58.5137%" y="3317" width="0.0937%" height="15" fill="rgb(210,165,51)" fg:x="13732" fg:w="22"/><text x="58.7637%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="58.5137%" y="3301" width="0.0937%" height="15" fill="rgb(232,111,45)" fg:x="13732" fg:w="22"/><text x="58.7637%" y="3311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="58.5137%" y="3285" width="0.0937%" height="15" fill="rgb(232,228,32)" fg:x="13732" fg:w="22"/><text x="58.7637%" y="3295.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="58.5137%" y="3269" width="0.0937%" height="15" fill="rgb(218,226,16)" fg:x="13732" fg:w="22"/><text x="58.7637%" y="3279.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="58.5137%" y="3253" width="0.0937%" height="15" fill="rgb(227,0,31)" fg:x="13732" fg:w="22"/><text x="58.7637%" y="3263.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="58.5137%" y="3237" width="0.0937%" height="15" fill="rgb(233,153,47)" fg:x="13732" fg:w="22"/><text x="58.7637%" y="3247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="58.5776%" y="3221" width="0.0298%" height="15" fill="rgb(231,112,31)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3231.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="58.5776%" y="3205" width="0.0298%" height="15" fill="rgb(206,130,3)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3215.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="58.5776%" y="3189" width="0.0298%" height="15" fill="rgb(253,152,53)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3199.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="58.5776%" y="3173" width="0.0298%" height="15" fill="rgb(249,182,26)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="58.5776%" y="3157" width="0.0298%" height="15" fill="rgb(217,130,20)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="58.5776%" y="3141" width="0.0298%" height="15" fill="rgb(215,135,9)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="58.5776%" y="3125" width="0.0298%" height="15" fill="rgb(234,116,45)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="58.5776%" y="3109" width="0.0298%" height="15" fill="rgb(244,123,33)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3119.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="58.5776%" y="3093" width="0.0298%" height="15" fill="rgb(249,164,32)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3103.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="58.5776%" y="3077" width="0.0298%" height="15" fill="rgb(244,49,32)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="58.5776%" y="3061" width="0.0298%" height="15" fill="rgb(224,105,29)" fg:x="13747" fg:w="7"/><text x="58.8276%" y="3071.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.5947%" y="3045" width="0.0128%" height="15" fill="rgb(228,194,42)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="3055.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.5947%" y="3029" width="0.0128%" height="15" fill="rgb(225,144,8)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="3039.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.5947%" y="3013" width="0.0128%" height="15" fill="rgb(231,136,28)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="3023.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.5947%" y="2997" width="0.0128%" height="15" fill="rgb(218,147,34)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="3007.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.5947%" y="2981" width="0.0128%" height="15" fill="rgb(238,190,40)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2965" width="0.0128%" height="15" fill="rgb(222,208,21)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2949" width="0.0128%" height="15" fill="rgb(237,160,0)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5947%" y="2933" width="0.0128%" height="15" fill="rgb(248,50,20)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2943.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.5947%" y="2917" width="0.0128%" height="15" fill="rgb(252,79,5)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2927.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.5947%" y="2901" width="0.0128%" height="15" fill="rgb(230,193,8)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2885" width="0.0128%" height="15" fill="rgb(230,166,47)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2895.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.5947%" y="2869" width="0.0128%" height="15" fill="rgb(248,31,10)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2879.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.5947%" y="2853" width="0.0128%" height="15" fill="rgb(212,174,26)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2863.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.5947%" y="2837" width="0.0128%" height="15" fill="rgb(213,15,29)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2847.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.5947%" y="2821" width="0.0128%" height="15" fill="rgb(205,228,47)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2831.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.5947%" y="2805" width="0.0128%" height="15" fill="rgb(242,86,11)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2789" width="0.0128%" height="15" fill="rgb(228,162,17)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2773" width="0.0128%" height="15" fill="rgb(245,200,18)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5947%" y="2757" width="0.0128%" height="15" fill="rgb(220,223,53)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2767.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.5947%" y="2741" width="0.0128%" height="15" fill="rgb(216,134,26)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2751.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.5947%" y="2725" width="0.0128%" height="15" fill="rgb(234,160,32)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2709" width="0.0128%" height="15" fill="rgb(217,130,36)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2719.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.5947%" y="2693" width="0.0128%" height="15" fill="rgb(213,20,34)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2703.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.5947%" y="2677" width="0.0128%" height="15" fill="rgb(242,173,3)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2687.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.5947%" y="2661" width="0.0128%" height="15" fill="rgb(228,156,53)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2671.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.5947%" y="2645" width="0.0128%" height="15" fill="rgb(242,118,33)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2655.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.5947%" y="2629" width="0.0128%" height="15" fill="rgb(234,24,34)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2613" width="0.0128%" height="15" fill="rgb(229,108,27)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2597" width="0.0128%" height="15" fill="rgb(212,77,12)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.5947%" y="2581" width="0.0128%" height="15" fill="rgb(246,147,5)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.5947%" y="2565" width="0.0128%" height="15" fill="rgb(219,87,41)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.5947%" y="2549" width="0.0128%" height="15" fill="rgb(206,210,54)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2559.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.5947%" y="2533" width="0.0128%" height="15" fill="rgb(231,11,34)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.5947%" y="2517" width="0.0128%" height="15" fill="rgb(235,226,25)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2527.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.5947%" y="2501" width="0.0128%" height="15" fill="rgb(243,107,48)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.5947%" y="2485" width="0.0128%" height="15" fill="rgb(244,86,2)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2495.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.5947%" y="2469" width="0.0128%" height="15" fill="rgb(223,169,19)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2479.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2453" width="0.0128%" height="15" fill="rgb(210,6,9)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2463.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2437" width="0.0128%" height="15" fill="rgb(254,29,22)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.5947%" y="2421" width="0.0128%" height="15" fill="rgb(245,16,12)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.5947%" y="2405" width="0.0128%" height="15" fill="rgb(248,43,21)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2415.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.5947%" y="2389" width="0.0128%" height="15" fill="rgb(235,156,44)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2399.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.5947%" y="2373" width="0.0128%" height="15" fill="rgb(237,219,17)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.5947%" y="2357" width="0.0128%" height="15" fill="rgb(220,122,4)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2367.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.5947%" y="2341" width="0.0128%" height="15" fill="rgb(233,41,12)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.5947%" y="2325" width="0.0128%" height="15" fill="rgb(217,28,11)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.5947%" y="2309" width="0.0128%" height="15" fill="rgb(214,147,47)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.5947%" y="2293" width="0.0128%" height="15" fill="rgb(214,158,7)" fg:x="13751" fg:w="3"/><text x="58.8447%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="58.6160%" y="2485" width="0.0128%" height="15" fill="rgb(219,175,18)" fg:x="13756" fg:w="3"/><text x="58.8660%" y="2495.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="58.6160%" y="2469" width="0.0128%" height="15" fill="rgb(237,0,28)" fg:x="13756" fg:w="3"/><text x="58.8660%" y="2479.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="58.6075%" y="2821" width="0.0298%" height="15" fill="rgb(250,218,30)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="58.6075%" y="2805" width="0.0298%" height="15" fill="rgb(239,158,2)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="58.6075%" y="2789" width="0.0298%" height="15" fill="rgb(217,62,9)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="58.6075%" y="2773" width="0.0298%" height="15" fill="rgb(205,115,18)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="58.6075%" y="2757" width="0.0298%" height="15" fill="rgb(228,59,15)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2767.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="58.6075%" y="2741" width="0.0298%" height="15" fill="rgb(237,186,53)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2751.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="58.6075%" y="2725" width="0.0298%" height="15" fill="rgb(237,25,6)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2735.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="58.6075%" y="2709" width="0.0298%" height="15" fill="rgb(236,198,29)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2719.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="58.6075%" y="2693" width="0.0298%" height="15" fill="rgb(239,186,2)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2703.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="58.6075%" y="2677" width="0.0298%" height="15" fill="rgb(222,127,52)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="58.6075%" y="2661" width="0.0298%" height="15" fill="rgb(227,88,14)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2671.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="58.6075%" y="2645" width="0.0298%" height="15" fill="rgb(236,136,33)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2655.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="58.6075%" y="2629" width="0.0298%" height="15" fill="rgb(232,23,52)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2639.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="58.6075%" y="2613" width="0.0298%" height="15" fill="rgb(221,220,50)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2623.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="58.6075%" y="2597" width="0.0298%" height="15" fill="rgb(245,29,23)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2607.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="58.6075%" y="2581" width="0.0298%" height="15" fill="rgb(246,70,51)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2591.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="58.6075%" y="2565" width="0.0298%" height="15" fill="rgb(223,209,29)" fg:x="13754" fg:w="7"/><text x="58.8575%" y="2575.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="58.6160%" y="2549" width="0.0213%" height="15" fill="rgb(247,67,51)" fg:x="13756" fg:w="5"/><text x="58.8660%" y="2559.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="58.6160%" y="2533" width="0.0213%" height="15" fill="rgb(247,126,7)" fg:x="13756" fg:w="5"/><text x="58.8660%" y="2543.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="58.6160%" y="2517" width="0.0213%" height="15" fill="rgb(222,142,23)" fg:x="13756" fg:w="5"/><text x="58.8660%" y="2527.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="58.6160%" y="2501" width="0.0213%" height="15" fill="rgb(215,86,46)" fg:x="13756" fg:w="5"/><text x="58.8660%" y="2511.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="58.6075%" y="2933" width="0.0511%" height="15" fill="rgb(248,69,49)" fg:x="13754" fg:w="12"/><text x="58.8575%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="58.6075%" y="2917" width="0.0511%" height="15" fill="rgb(252,203,25)" fg:x="13754" fg:w="12"/><text x="58.8575%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="58.6075%" y="2901" width="0.0511%" height="15" fill="rgb(205,37,22)" fg:x="13754" fg:w="12"/><text x="58.8575%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="58.6075%" y="2885" width="0.0511%" height="15" fill="rgb(249,67,29)" fg:x="13754" fg:w="12"/><text x="58.8575%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="58.6075%" y="2869" width="0.0511%" height="15" fill="rgb(218,193,6)" fg:x="13754" fg:w="12"/><text x="58.8575%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="58.6075%" y="2853" width="0.0511%" height="15" fill="rgb(236,100,8)" fg:x="13754" fg:w="12"/><text x="58.8575%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="58.6075%" y="2837" width="0.0511%" height="15" fill="rgb(234,198,21)" fg:x="13754" fg:w="12"/><text x="58.8575%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.6373%" y="2821" width="0.0213%" height="15" fill="rgb(224,204,37)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.6373%" y="2805" width="0.0213%" height="15" fill="rgb(254,88,30)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2815.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.6373%" y="2789" width="0.0213%" height="15" fill="rgb(242,224,13)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.6373%" y="2773" width="0.0213%" height="15" fill="rgb(236,183,0)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.6373%" y="2757" width="0.0213%" height="15" fill="rgb(231,183,15)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6373%" y="2741" width="0.0213%" height="15" fill="rgb(250,207,37)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6373%" y="2725" width="0.0213%" height="15" fill="rgb(231,34,12)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.6373%" y="2709" width="0.0213%" height="15" fill="rgb(214,212,23)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="58.6373%" y="2693" width="0.0213%" height="15" fill="rgb(208,91,19)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.6373%" y="2677" width="0.0213%" height="15" fill="rgb(250,89,38)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2687.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.6373%" y="2661" width="0.0213%" height="15" fill="rgb(219,44,43)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="58.6373%" y="2645" width="0.0213%" height="15" fill="rgb(247,137,7)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.6373%" y="2629" width="0.0213%" height="15" fill="rgb(251,151,31)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2639.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.6373%" y="2613" width="0.0213%" height="15" fill="rgb(207,74,45)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="58.6373%" y="2597" width="0.0213%" height="15" fill="rgb(236,227,17)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2607.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6373%" y="2581" width="0.0213%" height="15" fill="rgb(234,13,5)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6373%" y="2565" width="0.0213%" height="15" fill="rgb(206,50,50)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="58.6373%" y="2549" width="0.0213%" height="15" fill="rgb(216,79,46)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2559.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6373%" y="2533" width="0.0213%" height="15" fill="rgb(250,45,34)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2543.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="58.6373%" y="2517" width="0.0213%" height="15" fill="rgb(253,76,28)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2527.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="58.6373%" y="2501" width="0.0213%" height="15" fill="rgb(221,67,2)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="58.6373%" y="2485" width="0.0213%" height="15" fill="rgb(215,84,9)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="58.6373%" y="2469" width="0.0213%" height="15" fill="rgb(247,110,48)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="58.6373%" y="2453" width="0.0213%" height="15" fill="rgb(229,220,37)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="58.6373%" y="2437" width="0.0213%" height="15" fill="rgb(217,160,22)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="58.6373%" y="2421" width="0.0213%" height="15" fill="rgb(208,102,13)" fg:x="13761" fg:w="5"/><text x="58.8873%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="58.6416%" y="2405" width="0.0170%" height="15" fill="rgb(228,159,31)" fg:x="13762" fg:w="4"/><text x="58.8916%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="58.6458%" y="2389" width="0.0128%" height="15" fill="rgb(244,19,52)" fg:x="13763" fg:w="3"/><text x="58.8958%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (15 samples, 0.06%)</title><rect x="58.6075%" y="3045" width="0.0639%" height="15" fill="rgb(206,60,26)" fg:x="13754" fg:w="15"/><text x="58.8575%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (15 samples, 0.06%)</title><rect x="58.6075%" y="3029" width="0.0639%" height="15" fill="rgb(254,169,21)" fg:x="13754" fg:w="15"/><text x="58.8575%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (15 samples, 0.06%)</title><rect x="58.6075%" y="3013" width="0.0639%" height="15" fill="rgb(207,162,52)" fg:x="13754" fg:w="15"/><text x="58.8575%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="58.6075%" y="2997" width="0.0639%" height="15" fill="rgb(224,213,0)" fg:x="13754" fg:w="15"/><text x="58.8575%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (15 samples, 0.06%)</title><rect x="58.6075%" y="2981" width="0.0639%" height="15" fill="rgb(229,162,22)" fg:x="13754" fg:w="15"/><text x="58.8575%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="58.6075%" y="2965" width="0.0639%" height="15" fill="rgb(232,97,9)" fg:x="13754" fg:w="15"/><text x="58.8575%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 0.06%)</title><rect x="58.6075%" y="2949" width="0.0639%" height="15" fill="rgb(208,104,50)" fg:x="13754" fg:w="15"/><text x="58.8575%" y="2959.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.6586%" y="2933" width="0.0128%" height="15" fill="rgb(233,24,1)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2943.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.6586%" y="2917" width="0.0128%" height="15" fill="rgb(216,223,16)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2927.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.6586%" y="2901" width="0.0128%" height="15" fill="rgb(224,195,48)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2911.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.6586%" y="2885" width="0.0128%" height="15" fill="rgb(239,114,28)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2895.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.6586%" y="2869" width="0.0128%" height="15" fill="rgb(249,110,16)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2853" width="0.0128%" height="15" fill="rgb(231,98,27)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2837" width="0.0128%" height="15" fill="rgb(231,176,3)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.6586%" y="2821" width="0.0128%" height="15" fill="rgb(230,200,2)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2831.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.6586%" y="2805" width="0.0128%" height="15" fill="rgb(250,160,38)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.6586%" y="2789" width="0.0128%" height="15" fill="rgb(206,16,37)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2773" width="0.0128%" height="15" fill="rgb(210,208,22)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2783.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.6586%" y="2757" width="0.0128%" height="15" fill="rgb(239,130,7)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2741" width="0.0128%" height="15" fill="rgb(210,103,15)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2725" width="0.0128%" height="15" fill="rgb(220,47,47)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.6586%" y="2709" width="0.0128%" height="15" fill="rgb(231,77,22)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.6586%" y="2693" width="0.0128%" height="15" fill="rgb(225,213,16)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.6586%" y="2677" width="0.0128%" height="15" fill="rgb(207,100,7)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2687.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.6586%" y="2661" width="0.0128%" height="15" fill="rgb(208,161,8)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.6586%" y="2645" width="0.0128%" height="15" fill="rgb(231,115,52)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.6586%" y="2629" width="0.0128%" height="15" fill="rgb(241,15,53)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2639.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.6586%" y="2613" width="0.0128%" height="15" fill="rgb(239,157,17)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.6586%" y="2597" width="0.0128%" height="15" fill="rgb(248,142,19)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2607.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2581" width="0.0128%" height="15" fill="rgb(223,63,25)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2565" width="0.0128%" height="15" fill="rgb(229,114,11)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.6586%" y="2549" width="0.0128%" height="15" fill="rgb(228,153,43)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2559.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6586%" y="2533" width="0.0128%" height="15" fill="rgb(246,58,11)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2543.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.6586%" y="2517" width="0.0128%" height="15" fill="rgb(208,154,10)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2527.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.6586%" y="2501" width="0.0128%" height="15" fill="rgb(207,86,24)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="58.6586%" y="2485" width="0.0128%" height="15" fill="rgb(228,203,50)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.6586%" y="2469" width="0.0128%" height="15" fill="rgb(206,5,12)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.6586%" y="2453" width="0.0128%" height="15" fill="rgb(241,37,10)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.6586%" y="2437" width="0.0128%" height="15" fill="rgb(237,125,35)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.6586%" y="2421" width="0.0128%" height="15" fill="rgb(229,95,11)" fg:x="13766" fg:w="3"/><text x="58.9086%" y="2431.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (18 samples, 0.08%)</title><rect x="58.6075%" y="3157" width="0.0767%" height="15" fill="rgb(208,55,11)" fg:x="13754" fg:w="18"/><text x="58.8575%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (18 samples, 0.08%)</title><rect x="58.6075%" y="3141" width="0.0767%" height="15" fill="rgb(219,36,54)" fg:x="13754" fg:w="18"/><text x="58.8575%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (18 samples, 0.08%)</title><rect x="58.6075%" y="3125" width="0.0767%" height="15" fill="rgb(225,225,21)" fg:x="13754" fg:w="18"/><text x="58.8575%" y="3135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.08%)</title><rect x="58.6075%" y="3109" width="0.0767%" height="15" fill="rgb(215,21,3)" fg:x="13754" fg:w="18"/><text x="58.8575%" y="3119.50"></text></g><g><title>rayon_core::join::join_context (18 samples, 0.08%)</title><rect x="58.6075%" y="3093" width="0.0767%" height="15" fill="rgb(217,171,13)" fg:x="13754" fg:w="18"/><text x="58.8575%" y="3103.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.08%)</title><rect x="58.6075%" y="3077" width="0.0767%" height="15" fill="rgb(253,198,4)" fg:x="13754" fg:w="18"/><text x="58.8575%" y="3087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (18 samples, 0.08%)</title><rect x="58.6075%" y="3061" width="0.0767%" height="15" fill="rgb(232,110,42)" fg:x="13754" fg:w="18"/><text x="58.8575%" y="3071.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.6714%" y="3045" width="0.0128%" height="15" fill="rgb(243,52,4)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="3055.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.6714%" y="3029" width="0.0128%" height="15" fill="rgb(244,8,43)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="3039.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.6714%" y="3013" width="0.0128%" height="15" fill="rgb(246,142,11)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="3023.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.6714%" y="2997" width="0.0128%" height="15" fill="rgb(235,126,46)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="3007.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.6714%" y="2981" width="0.0128%" height="15" fill="rgb(251,11,42)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6714%" y="2965" width="0.0128%" height="15" fill="rgb(230,42,39)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6714%" y="2949" width="0.0128%" height="15" fill="rgb(230,84,0)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.6714%" y="2933" width="0.0128%" height="15" fill="rgb(250,90,9)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="2943.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.6714%" y="2917" width="0.0128%" height="15" fill="rgb(226,80,3)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="2927.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.6714%" y="2901" width="0.0128%" height="15" fill="rgb(243,20,17)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.6714%" y="2885" width="0.0128%" height="15" fill="rgb(220,121,35)" fg:x="13769" fg:w="3"/><text x="58.9214%" y="2895.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.6842%" y="2869" width="0.0213%" height="15" fill="rgb(229,63,39)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2853" width="0.0213%" height="15" fill="rgb(228,224,12)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2837" width="0.0213%" height="15" fill="rgb(240,221,32)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.6842%" y="2821" width="0.0213%" height="15" fill="rgb(253,3,47)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2831.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.6842%" y="2805" width="0.0213%" height="15" fill="rgb(205,43,45)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2815.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.6842%" y="2789" width="0.0213%" height="15" fill="rgb(217,61,8)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2773" width="0.0213%" height="15" fill="rgb(254,145,30)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2783.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="58.6842%" y="2757" width="0.0213%" height="15" fill="rgb(228,79,8)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2741" width="0.0213%" height="15" fill="rgb(216,80,3)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2725" width="0.0213%" height="15" fill="rgb(248,132,11)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.6842%" y="2709" width="0.0213%" height="15" fill="rgb(217,172,11)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="58.6842%" y="2693" width="0.0213%" height="15" fill="rgb(216,119,2)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2703.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.6842%" y="2677" width="0.0213%" height="15" fill="rgb(242,100,53)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2687.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.6842%" y="2661" width="0.0213%" height="15" fill="rgb(223,195,24)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2671.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="58.6842%" y="2645" width="0.0213%" height="15" fill="rgb(224,192,24)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2655.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.6842%" y="2629" width="0.0213%" height="15" fill="rgb(235,183,22)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2639.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.6842%" y="2613" width="0.0213%" height="15" fill="rgb(246,18,22)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="58.6842%" y="2597" width="0.0213%" height="15" fill="rgb(225,12,36)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2607.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2581" width="0.0213%" height="15" fill="rgb(237,2,35)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2565" width="0.0213%" height="15" fill="rgb(223,0,22)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2575.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="58.6842%" y="2549" width="0.0213%" height="15" fill="rgb(253,82,28)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2559.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="58.6842%" y="2533" width="0.0213%" height="15" fill="rgb(216,88,22)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2543.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="58.6842%" y="2517" width="0.0213%" height="15" fill="rgb(247,116,32)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2527.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="58.6842%" y="2501" width="0.0213%" height="15" fill="rgb(212,79,35)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2511.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="58.6842%" y="2485" width="0.0213%" height="15" fill="rgb(232,127,50)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2495.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="58.6842%" y="2469" width="0.0213%" height="15" fill="rgb(250,60,35)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2479.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="58.6842%" y="2453" width="0.0213%" height="15" fill="rgb(209,54,47)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2463.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="58.6842%" y="2437" width="0.0213%" height="15" fill="rgb(251,43,10)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2447.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="58.6842%" y="2421" width="0.0213%" height="15" fill="rgb(214,156,17)" fg:x="13772" fg:w="5"/><text x="58.9342%" y="2431.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="58.6884%" y="2405" width="0.0170%" height="15" fill="rgb(234,65,29)" fg:x="13773" fg:w="4"/><text x="58.9384%" y="2415.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (4 samples, 0.02%)</title><rect x="58.6884%" y="2389" width="0.0170%" height="15" fill="rgb(246,193,23)" fg:x="13773" fg:w="4"/><text x="58.9384%" y="2399.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="58.6842%" y="2981" width="0.0384%" height="15" fill="rgb(224,117,20)" fg:x="13772" fg:w="9"/><text x="58.9342%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="58.6842%" y="2965" width="0.0384%" height="15" fill="rgb(235,92,31)" fg:x="13772" fg:w="9"/><text x="58.9342%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="58.6842%" y="2949" width="0.0384%" height="15" fill="rgb(235,146,10)" fg:x="13772" fg:w="9"/><text x="58.9342%" y="2959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="58.6842%" y="2933" width="0.0384%" height="15" fill="rgb(206,57,41)" fg:x="13772" fg:w="9"/><text x="58.9342%" y="2943.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="58.6842%" y="2917" width="0.0384%" height="15" fill="rgb(215,117,31)" fg:x="13772" fg:w="9"/><text x="58.9342%" y="2927.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="58.6842%" y="2901" width="0.0384%" height="15" fill="rgb(248,179,2)" fg:x="13772" fg:w="9"/><text x="58.9342%" y="2911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="58.6842%" y="2885" width="0.0384%" height="15" fill="rgb(228,107,30)" fg:x="13772" fg:w="9"/><text x="58.9342%" y="2895.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.7055%" y="2869" width="0.0170%" height="15" fill="rgb(243,114,19)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2879.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.7055%" y="2853" width="0.0170%" height="15" fill="rgb(211,98,33)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2863.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.7055%" y="2837" width="0.0170%" height="15" fill="rgb(254,34,49)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2847.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.7055%" y="2821" width="0.0170%" height="15" fill="rgb(241,144,16)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2831.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.7055%" y="2805" width="0.0170%" height="15" fill="rgb(212,169,19)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2789" width="0.0170%" height="15" fill="rgb(254,169,20)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2773" width="0.0170%" height="15" fill="rgb(211,172,16)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.7055%" y="2757" width="0.0170%" height="15" fill="rgb(215,78,26)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2767.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.7055%" y="2741" width="0.0170%" height="15" fill="rgb(246,66,4)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2751.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.7055%" y="2725" width="0.0170%" height="15" fill="rgb(244,38,28)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2735.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2709" width="0.0170%" height="15" fill="rgb(249,28,17)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2719.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.7055%" y="2693" width="0.0170%" height="15" fill="rgb(240,122,5)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2703.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.7055%" y="2677" width="0.0170%" height="15" fill="rgb(227,130,16)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2687.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.7055%" y="2661" width="0.0170%" height="15" fill="rgb(222,110,16)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2671.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.7055%" y="2645" width="0.0170%" height="15" fill="rgb(214,139,7)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2655.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.7055%" y="2629" width="0.0170%" height="15" fill="rgb(205,152,31)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2613" width="0.0170%" height="15" fill="rgb(215,102,27)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2597" width="0.0170%" height="15" fill="rgb(247,151,46)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.7055%" y="2581" width="0.0170%" height="15" fill="rgb(249,48,47)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="58.7055%" y="2565" width="0.0170%" height="15" fill="rgb(226,38,18)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2575.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.7055%" y="2549" width="0.0170%" height="15" fill="rgb(214,161,20)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2559.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.7055%" y="2533" width="0.0170%" height="15" fill="rgb(218,164,32)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="58.7055%" y="2517" width="0.0170%" height="15" fill="rgb(212,57,5)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2527.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.7055%" y="2501" width="0.0170%" height="15" fill="rgb(222,148,37)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2511.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.7055%" y="2485" width="0.0170%" height="15" fill="rgb(246,99,5)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2495.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="58.7055%" y="2469" width="0.0170%" height="15" fill="rgb(217,15,16)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2479.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2453" width="0.0170%" height="15" fill="rgb(211,102,32)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2463.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2437" width="0.0170%" height="15" fill="rgb(251,9,20)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2447.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="58.7055%" y="2421" width="0.0170%" height="15" fill="rgb(217,205,28)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2431.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="58.7055%" y="2405" width="0.0170%" height="15" fill="rgb(231,226,21)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2415.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="58.7055%" y="2389" width="0.0170%" height="15" fill="rgb(230,123,13)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2399.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="58.7055%" y="2373" width="0.0170%" height="15" fill="rgb(251,194,36)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="58.7055%" y="2357" width="0.0170%" height="15" fill="rgb(242,75,2)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2367.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="58.7055%" y="2341" width="0.0170%" height="15" fill="rgb(208,201,12)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="58.7055%" y="2325" width="0.0170%" height="15" fill="rgb(238,52,24)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.7055%" y="2309" width="0.0170%" height="15" fill="rgb(220,213,6)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2319.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.7055%" y="2293" width="0.0170%" height="15" fill="rgb(239,2,15)" fg:x="13777" fg:w="4"/><text x="58.9555%" y="2303.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="58.7353%" y="2293" width="0.0170%" height="15" fill="rgb(248,45,43)" fg:x="13784" fg:w="4"/><text x="58.9853%" y="2303.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="58.7353%" y="2277" width="0.0170%" height="15" fill="rgb(233,3,42)" fg:x="13784" fg:w="4"/><text x="58.9853%" y="2287.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="58.7353%" y="2261" width="0.0170%" height="15" fill="rgb(212,98,0)" fg:x="13784" fg:w="4"/><text x="58.9853%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="58.7353%" y="2245" width="0.0170%" height="15" fill="rgb(222,130,11)" fg:x="13784" fg:w="4"/><text x="58.9853%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.7353%" y="2229" width="0.0170%" height="15" fill="rgb(232,128,44)" fg:x="13784" fg:w="4"/><text x="58.9853%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.7353%" y="2213" width="0.0170%" height="15" fill="rgb(210,31,9)" fg:x="13784" fg:w="4"/><text x="58.9853%" y="2223.50"></text></g><g><title>core::ptr::drop_in_place<rayon::slice::quicksort::CopyOnDrop<f64>> (3 samples, 0.01%)</title><rect x="58.7609%" y="2181" width="0.0128%" height="15" fill="rgb(216,74,17)" fg:x="13790" fg:w="3"/><text x="59.0109%" y="2191.50"></text></g><g><title><rayon::slice::quicksort::CopyOnDrop<T> as core::ops::drop::Drop>::drop (3 samples, 0.01%)</title><rect x="58.7609%" y="2165" width="0.0128%" height="15" fill="rgb(228,211,20)" fg:x="13790" fg:w="3"/><text x="59.0109%" y="2175.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3 samples, 0.01%)</title><rect x="58.7609%" y="2149" width="0.0128%" height="15" fill="rgb(241,177,47)" fg:x="13790" fg:w="3"/><text x="59.0109%" y="2159.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (83 samples, 0.35%)</title><rect x="58.4242%" y="3797" width="0.3537%" height="15" fill="rgb(253,38,24)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (83 samples, 0.35%)</title><rect x="58.4242%" y="3781" width="0.3537%" height="15" fill="rgb(226,171,0)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3791.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (83 samples, 0.35%)</title><rect x="58.4242%" y="3765" width="0.3537%" height="15" fill="rgb(214,161,26)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3775.50"></text></g><g><title>rayon_core::job::JobRef::execute (83 samples, 0.35%)</title><rect x="58.4242%" y="3749" width="0.3537%" height="15" fill="rgb(246,148,0)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3759.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (83 samples, 0.35%)</title><rect x="58.4242%" y="3733" width="0.3537%" height="15" fill="rgb(233,153,46)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3743.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (83 samples, 0.35%)</title><rect x="58.4242%" y="3717" width="0.3537%" height="15" fill="rgb(248,148,29)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3727.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (83 samples, 0.35%)</title><rect x="58.4242%" y="3701" width="0.3537%" height="15" fill="rgb(236,202,29)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3711.50"></text></g><g><title>std::panic::catch_unwind (83 samples, 0.35%)</title><rect x="58.4242%" y="3685" width="0.3537%" height="15" fill="rgb(218,208,0)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3695.50"></text></g><g><title>std::panicking::try (83 samples, 0.35%)</title><rect x="58.4242%" y="3669" width="0.3537%" height="15" fill="rgb(231,43,39)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3679.50"></text></g><g><title>std::panicking::try::do_call (83 samples, 0.35%)</title><rect x="58.4242%" y="3653" width="0.3537%" height="15" fill="rgb(220,154,50)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3663.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (83 samples, 0.35%)</title><rect x="58.4242%" y="3637" width="0.3537%" height="15" fill="rgb(215,55,29)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3647.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (83 samples, 0.35%)</title><rect x="58.4242%" y="3621" width="0.3537%" height="15" fill="rgb(228,19,43)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3631.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (83 samples, 0.35%)</title><rect x="58.4242%" y="3605" width="0.3537%" height="15" fill="rgb(206,120,27)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (83 samples, 0.35%)</title><rect x="58.4242%" y="3589" width="0.3537%" height="15" fill="rgb(251,227,47)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (83 samples, 0.35%)</title><rect x="58.4242%" y="3573" width="0.3537%" height="15" fill="rgb(234,33,47)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3583.50"></text></g><g><title>rayon_core::join::join_context (83 samples, 0.35%)</title><rect x="58.4242%" y="3557" width="0.3537%" height="15" fill="rgb(252,168,14)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3567.50"></text></g><g><title>rayon_core::registry::in_worker (83 samples, 0.35%)</title><rect x="58.4242%" y="3541" width="0.3537%" height="15" fill="rgb(242,199,23)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3551.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (83 samples, 0.35%)</title><rect x="58.4242%" y="3525" width="0.3537%" height="15" fill="rgb(224,216,25)" fg:x="13711" fg:w="83"/><text x="58.6742%" y="3535.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (62 samples, 0.26%)</title><rect x="58.5137%" y="3509" width="0.2642%" height="15" fill="rgb(229,213,24)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3519.50"></text></g><g><title>std::panic::catch_unwind (62 samples, 0.26%)</title><rect x="58.5137%" y="3493" width="0.2642%" height="15" fill="rgb(210,29,34)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3503.50"></text></g><g><title>std::panicking::try (62 samples, 0.26%)</title><rect x="58.5137%" y="3477" width="0.2642%" height="15" fill="rgb(247,203,38)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3487.50"></text></g><g><title>std::panicking::try::do_call (62 samples, 0.26%)</title><rect x="58.5137%" y="3461" width="0.2642%" height="15" fill="rgb(239,181,17)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3471.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (62 samples, 0.26%)</title><rect x="58.5137%" y="3445" width="0.2642%" height="15" fill="rgb(248,41,46)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3455.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (62 samples, 0.26%)</title><rect x="58.5137%" y="3429" width="0.2642%" height="15" fill="rgb(250,24,5)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (62 samples, 0.26%)</title><rect x="58.5137%" y="3413" width="0.2642%" height="15" fill="rgb(209,175,2)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3423.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (62 samples, 0.26%)</title><rect x="58.5137%" y="3397" width="0.2642%" height="15" fill="rgb(253,207,15)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3407.50"></text></g><g><title>rayon_core::join::join_context (62 samples, 0.26%)</title><rect x="58.5137%" y="3381" width="0.2642%" height="15" fill="rgb(218,112,39)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3391.50"></text></g><g><title>rayon_core::registry::in_worker (62 samples, 0.26%)</title><rect x="58.5137%" y="3365" width="0.2642%" height="15" fill="rgb(215,99,35)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3375.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (62 samples, 0.26%)</title><rect x="58.5137%" y="3349" width="0.2642%" height="15" fill="rgb(219,145,6)" fg:x="13732" fg:w="62"/><text x="58.7637%" y="3359.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (40 samples, 0.17%)</title><rect x="58.6075%" y="3333" width="0.1704%" height="15" fill="rgb(228,39,8)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3343.50"></text></g><g><title>std::panic::catch_unwind (40 samples, 0.17%)</title><rect x="58.6075%" y="3317" width="0.1704%" height="15" fill="rgb(211,54,9)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3327.50"></text></g><g><title>std::panicking::try (40 samples, 0.17%)</title><rect x="58.6075%" y="3301" width="0.1704%" height="15" fill="rgb(248,224,24)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3311.50"></text></g><g><title>std::panicking::try::do_call (40 samples, 0.17%)</title><rect x="58.6075%" y="3285" width="0.1704%" height="15" fill="rgb(223,228,31)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3295.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (40 samples, 0.17%)</title><rect x="58.6075%" y="3269" width="0.1704%" height="15" fill="rgb(252,223,38)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (40 samples, 0.17%)</title><rect x="58.6075%" y="3253" width="0.1704%" height="15" fill="rgb(218,201,18)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (40 samples, 0.17%)</title><rect x="58.6075%" y="3237" width="0.1704%" height="15" fill="rgb(249,108,51)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.17%)</title><rect x="58.6075%" y="3221" width="0.1704%" height="15" fill="rgb(246,221,35)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3231.50"></text></g><g><title>rayon_core::join::join_context (40 samples, 0.17%)</title><rect x="58.6075%" y="3205" width="0.1704%" height="15" fill="rgb(246,136,32)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3215.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.17%)</title><rect x="58.6075%" y="3189" width="0.1704%" height="15" fill="rgb(246,41,7)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3199.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (40 samples, 0.17%)</title><rect x="58.6075%" y="3173" width="0.1704%" height="15" fill="rgb(241,212,35)" fg:x="13754" fg:w="40"/><text x="58.8575%" y="3183.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (22 samples, 0.09%)</title><rect x="58.6842%" y="3157" width="0.0937%" height="15" fill="rgb(213,110,35)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3167.50"></text></g><g><title>std::panic::catch_unwind (22 samples, 0.09%)</title><rect x="58.6842%" y="3141" width="0.0937%" height="15" fill="rgb(226,47,17)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3151.50"></text></g><g><title>std::panicking::try (22 samples, 0.09%)</title><rect x="58.6842%" y="3125" width="0.0937%" height="15" fill="rgb(218,70,12)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3135.50"></text></g><g><title>std::panicking::try::do_call (22 samples, 0.09%)</title><rect x="58.6842%" y="3109" width="0.0937%" height="15" fill="rgb(214,98,8)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3119.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (22 samples, 0.09%)</title><rect x="58.6842%" y="3093" width="0.0937%" height="15" fill="rgb(230,51,15)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (22 samples, 0.09%)</title><rect x="58.6842%" y="3077" width="0.0937%" height="15" fill="rgb(218,45,15)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (22 samples, 0.09%)</title><rect x="58.6842%" y="3061" width="0.0937%" height="15" fill="rgb(241,102,22)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="58.6842%" y="3045" width="0.0937%" height="15" fill="rgb(207,54,33)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3055.50"></text></g><g><title>rayon_core::join::join_context (22 samples, 0.09%)</title><rect x="58.6842%" y="3029" width="0.0937%" height="15" fill="rgb(238,96,31)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3039.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="58.6842%" y="3013" width="0.0937%" height="15" fill="rgb(211,161,53)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (22 samples, 0.09%)</title><rect x="58.6842%" y="2997" width="0.0937%" height="15" fill="rgb(209,83,54)" fg:x="13772" fg:w="22"/><text x="58.9342%" y="3007.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="58.7225%" y="2981" width="0.0554%" height="15" fill="rgb(250,213,28)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2991.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="58.7225%" y="2965" width="0.0554%" height="15" fill="rgb(251,79,38)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2975.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="58.7225%" y="2949" width="0.0554%" height="15" fill="rgb(230,66,15)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2959.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="58.7225%" y="2933" width="0.0554%" height="15" fill="rgb(207,61,4)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2943.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="58.7225%" y="2917" width="0.0554%" height="15" fill="rgb(212,87,31)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="58.7225%" y="2901" width="0.0554%" height="15" fill="rgb(226,190,30)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="58.7225%" y="2885" width="0.0554%" height="15" fill="rgb(243,133,39)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="58.7225%" y="2869" width="0.0554%" height="15" fill="rgb(216,214,0)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2879.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="58.7225%" y="2853" width="0.0554%" height="15" fill="rgb(205,53,31)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2863.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="58.7225%" y="2837" width="0.0554%" height="15" fill="rgb(229,82,9)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2847.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="58.7225%" y="2821" width="0.0554%" height="15" fill="rgb(225,30,15)" fg:x="13781" fg:w="13"/><text x="58.9725%" y="2831.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="58.7310%" y="2805" width="0.0469%" height="15" fill="rgb(238,71,14)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2815.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="58.7310%" y="2789" width="0.0469%" height="15" fill="rgb(245,77,40)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2799.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="58.7310%" y="2773" width="0.0469%" height="15" fill="rgb(210,133,37)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2783.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="58.7310%" y="2757" width="0.0469%" height="15" fill="rgb(231,212,25)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2767.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="58.7310%" y="2741" width="0.0469%" height="15" fill="rgb(230,161,14)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="58.7310%" y="2725" width="0.0469%" height="15" fill="rgb(250,72,34)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="58.7310%" y="2709" width="0.0469%" height="15" fill="rgb(205,221,25)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="58.7310%" y="2693" width="0.0469%" height="15" fill="rgb(211,111,20)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2703.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="58.7310%" y="2677" width="0.0469%" height="15" fill="rgb(242,19,20)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2687.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="58.7310%" y="2661" width="0.0469%" height="15" fill="rgb(221,220,22)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="58.7310%" y="2645" width="0.0469%" height="15" fill="rgb(249,102,11)" fg:x="13783" fg:w="11"/><text x="58.9810%" y="2655.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="58.7353%" y="2629" width="0.0426%" height="15" fill="rgb(221,127,53)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2639.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="58.7353%" y="2613" width="0.0426%" height="15" fill="rgb(210,91,2)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2623.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="58.7353%" y="2597" width="0.0426%" height="15" fill="rgb(217,195,20)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2607.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="58.7353%" y="2581" width="0.0426%" height="15" fill="rgb(248,201,12)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2591.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="58.7353%" y="2565" width="0.0426%" height="15" fill="rgb(206,196,9)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="58.7353%" y="2549" width="0.0426%" height="15" fill="rgb(237,109,24)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="58.7353%" y="2533" width="0.0426%" height="15" fill="rgb(253,25,16)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="58.7353%" y="2517" width="0.0426%" height="15" fill="rgb(239,222,15)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="58.7353%" y="2501" width="0.0426%" height="15" fill="rgb(246,152,27)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2511.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="58.7353%" y="2485" width="0.0426%" height="15" fill="rgb(218,68,54)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2495.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (10 samples, 0.04%)</title><rect x="58.7353%" y="2469" width="0.0426%" height="15" fill="rgb(241,218,20)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2479.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (10 samples, 0.04%)</title><rect x="58.7353%" y="2453" width="0.0426%" height="15" fill="rgb(250,30,50)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2463.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="58.7353%" y="2437" width="0.0426%" height="15" fill="rgb(226,18,7)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2447.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (10 samples, 0.04%)</title><rect x="58.7353%" y="2421" width="0.0426%" height="15" fill="rgb(231,211,3)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (10 samples, 0.04%)</title><rect x="58.7353%" y="2405" width="0.0426%" height="15" fill="rgb(210,135,54)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2415.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (10 samples, 0.04%)</title><rect x="58.7353%" y="2389" width="0.0426%" height="15" fill="rgb(206,33,11)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2399.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (10 samples, 0.04%)</title><rect x="58.7353%" y="2373" width="0.0426%" height="15" fill="rgb(214,122,13)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (10 samples, 0.04%)</title><rect x="58.7353%" y="2357" width="0.0426%" height="15" fill="rgb(244,147,49)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2367.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (10 samples, 0.04%)</title><rect x="58.7353%" y="2341" width="0.0426%" height="15" fill="rgb(214,185,36)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2351.50"></text></g><g><title>core::ops::function::Fn::call (10 samples, 0.04%)</title><rect x="58.7353%" y="2325" width="0.0426%" height="15" fill="rgb(211,194,19)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2335.50"></text></g><g><title>criterion::analysis::estimates::stats (10 samples, 0.04%)</title><rect x="58.7353%" y="2309" width="0.0426%" height="15" fill="rgb(217,206,19)" fg:x="13784" fg:w="10"/><text x="58.9853%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="58.7523%" y="2293" width="0.0256%" height="15" fill="rgb(230,132,43)" fg:x="13788" fg:w="6"/><text x="59.0023%" y="2303.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="58.7523%" y="2277" width="0.0256%" height="15" fill="rgb(209,194,18)" fg:x="13788" fg:w="6"/><text x="59.0023%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="58.7523%" y="2261" width="0.0256%" height="15" fill="rgb(222,207,16)" fg:x="13788" fg:w="6"/><text x="59.0023%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="58.7523%" y="2245" width="0.0256%" height="15" fill="rgb(237,210,16)" fg:x="13788" fg:w="6"/><text x="59.0023%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="58.7523%" y="2229" width="0.0256%" height="15" fill="rgb(206,119,39)" fg:x="13788" fg:w="6"/><text x="59.0023%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (6 samples, 0.03%)</title><rect x="58.7523%" y="2213" width="0.0256%" height="15" fill="rgb(254,115,0)" fg:x="13788" fg:w="6"/><text x="59.0023%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (5 samples, 0.02%)</title><rect x="58.7566%" y="2197" width="0.0213%" height="15" fill="rgb(240,47,16)" fg:x="13789" fg:w="5"/><text x="59.0066%" y="2207.50"></text></g><g><title>rayon_core::registry::in_worker (98 samples, 0.42%)</title><rect x="58.3859%" y="3829" width="0.4176%" height="15" fill="rgb(243,73,51)" fg:x="13702" fg:w="98"/><text x="58.6359%" y="3839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (98 samples, 0.42%)</title><rect x="58.3859%" y="3813" width="0.4176%" height="15" fill="rgb(221,228,50)" fg:x="13702" fg:w="98"/><text x="58.6359%" y="3823.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="58.7779%" y="3797" width="0.0256%" height="15" fill="rgb(218,2,7)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3807.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="58.7779%" y="3781" width="0.0256%" height="15" fill="rgb(205,93,39)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3791.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="58.7779%" y="3765" width="0.0256%" height="15" fill="rgb(231,161,22)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3775.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="58.7779%" y="3749" width="0.0256%" height="15" fill="rgb(207,63,3)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3759.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="58.7779%" y="3733" width="0.0256%" height="15" fill="rgb(223,53,26)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3743.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="58.7779%" y="3717" width="0.0256%" height="15" fill="rgb(210,75,27)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3727.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.7779%" y="3701" width="0.0256%" height="15" fill="rgb(253,100,11)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.7779%" y="3685" width="0.0256%" height="15" fill="rgb(213,205,4)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3695.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="58.7779%" y="3669" width="0.0256%" height="15" fill="rgb(206,124,31)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3679.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="58.7779%" y="3653" width="0.0256%" height="15" fill="rgb(235,15,18)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3663.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.7779%" y="3637" width="0.0256%" height="15" fill="rgb(224,154,23)" fg:x="13794" fg:w="6"/><text x="59.0279%" y="3647.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.7822%" y="3621" width="0.0213%" height="15" fill="rgb(241,4,36)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3631.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.7822%" y="3605" width="0.0213%" height="15" fill="rgb(229,225,47)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3615.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.7822%" y="3589" width="0.0213%" height="15" fill="rgb(205,191,5)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3599.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.7822%" y="3573" width="0.0213%" height="15" fill="rgb(244,89,11)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3583.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.7822%" y="3557" width="0.0213%" height="15" fill="rgb(211,89,18)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3567.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.7822%" y="3541" width="0.0213%" height="15" fill="rgb(242,109,15)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.7822%" y="3525" width="0.0213%" height="15" fill="rgb(226,32,8)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.7822%" y="3509" width="0.0213%" height="15" fill="rgb(228,82,36)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3519.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.7822%" y="3493" width="0.0213%" height="15" fill="rgb(225,196,10)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3503.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.7822%" y="3477" width="0.0213%" height="15" fill="rgb(227,82,4)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3487.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.7822%" y="3461" width="0.0213%" height="15" fill="rgb(210,186,35)" fg:x="13795" fg:w="5"/><text x="59.0322%" y="3471.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="58.8077%" y="3301" width="0.0170%" height="15" fill="rgb(212,36,13)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3311.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8077%" y="3285" width="0.0170%" height="15" fill="rgb(209,214,20)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8077%" y="3269" width="0.0170%" height="15" fill="rgb(226,15,51)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.8077%" y="3253" width="0.0170%" height="15" fill="rgb(250,43,23)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3263.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.8077%" y="3237" width="0.0170%" height="15" fill="rgb(244,34,18)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3247.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.8077%" y="3221" width="0.0170%" height="15" fill="rgb(227,138,48)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8077%" y="3205" width="0.0170%" height="15" fill="rgb(250,90,17)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3215.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.8077%" y="3189" width="0.0170%" height="15" fill="rgb(253,174,54)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3199.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.8077%" y="3173" width="0.0170%" height="15" fill="rgb(211,7,26)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3183.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.8077%" y="3157" width="0.0170%" height="15" fill="rgb(243,26,30)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3167.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.8077%" y="3141" width="0.0170%" height="15" fill="rgb(246,117,5)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3151.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.8077%" y="3125" width="0.0170%" height="15" fill="rgb(214,48,49)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8077%" y="3109" width="0.0170%" height="15" fill="rgb(227,71,22)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8077%" y="3093" width="0.0170%" height="15" fill="rgb(217,225,33)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.8077%" y="3077" width="0.0170%" height="15" fill="rgb(231,122,9)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.8077%" y="3061" width="0.0170%" height="15" fill="rgb(249,151,48)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.8077%" y="3045" width="0.0170%" height="15" fill="rgb(239,72,54)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8077%" y="3029" width="0.0170%" height="15" fill="rgb(207,223,14)" fg:x="13801" fg:w="4"/><text x="59.0577%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.8120%" y="3013" width="0.0128%" height="15" fill="rgb(242,143,50)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.8120%" y="2997" width="0.0128%" height="15" fill="rgb(242,147,33)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="3007.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.8120%" y="2981" width="0.0128%" height="15" fill="rgb(212,30,38)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.8120%" y="2965" width="0.0128%" height="15" fill="rgb(215,116,39)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.8120%" y="2949" width="0.0128%" height="15" fill="rgb(249,83,51)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8120%" y="2933" width="0.0128%" height="15" fill="rgb(218,201,26)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8120%" y="2917" width="0.0128%" height="15" fill="rgb(240,69,41)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.8120%" y="2901" width="0.0128%" height="15" fill="rgb(214,64,27)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.8120%" y="2885" width="0.0128%" height="15" fill="rgb(225,170,5)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.8120%" y="2869" width="0.0128%" height="15" fill="rgb(222,93,37)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8120%" y="2853" width="0.0128%" height="15" fill="rgb(220,114,31)" fg:x="13802" fg:w="3"/><text x="59.0620%" y="2863.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="58.8248%" y="3013" width="0.0128%" height="15" fill="rgb(216,54,19)" fg:x="13805" fg:w="3"/><text x="59.0748%" y="3023.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8248%" y="2997" width="0.0128%" height="15" fill="rgb(247,127,45)" fg:x="13805" fg:w="3"/><text x="59.0748%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8248%" y="2981" width="0.0128%" height="15" fill="rgb(207,170,12)" fg:x="13805" fg:w="3"/><text x="59.0748%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.8248%" y="2965" width="0.0128%" height="15" fill="rgb(250,205,34)" fg:x="13805" fg:w="3"/><text x="59.0748%" y="2975.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.8248%" y="2949" width="0.0128%" height="15" fill="rgb(206,21,30)" fg:x="13805" fg:w="3"/><text x="59.0748%" y="2959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.8248%" y="2933" width="0.0128%" height="15" fill="rgb(237,127,49)" fg:x="13805" fg:w="3"/><text x="59.0748%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8248%" y="2917" width="0.0128%" height="15" fill="rgb(250,64,42)" fg:x="13805" fg:w="3"/><text x="59.0748%" y="2927.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (8 samples, 0.03%)</title><rect x="58.8248%" y="3125" width="0.0341%" height="15" fill="rgb(225,26,24)" fg:x="13805" fg:w="8"/><text x="59.0748%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (8 samples, 0.03%)</title><rect x="58.8248%" y="3109" width="0.0341%" height="15" fill="rgb(246,193,26)" fg:x="13805" fg:w="8"/><text x="59.0748%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="58.8248%" y="3093" width="0.0341%" height="15" fill="rgb(254,217,34)" fg:x="13805" fg:w="8"/><text x="59.0748%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="58.8248%" y="3077" width="0.0341%" height="15" fill="rgb(205,212,2)" fg:x="13805" fg:w="8"/><text x="59.0748%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="58.8248%" y="3061" width="0.0341%" height="15" fill="rgb(221,109,52)" fg:x="13805" fg:w="8"/><text x="59.0748%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="58.8248%" y="3045" width="0.0341%" height="15" fill="rgb(230,139,31)" fg:x="13805" fg:w="8"/><text x="59.0748%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="58.8248%" y="3029" width="0.0341%" height="15" fill="rgb(213,114,19)" fg:x="13805" fg:w="8"/><text x="59.0748%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.8376%" y="3013" width="0.0213%" height="15" fill="rgb(214,1,26)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.8376%" y="2997" width="0.0213%" height="15" fill="rgb(220,153,45)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="3007.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.8376%" y="2981" width="0.0213%" height="15" fill="rgb(239,6,4)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.8376%" y="2965" width="0.0213%" height="15" fill="rgb(237,7,16)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.8376%" y="2949" width="0.0213%" height="15" fill="rgb(235,35,10)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.8376%" y="2933" width="0.0213%" height="15" fill="rgb(226,162,0)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.8376%" y="2917" width="0.0213%" height="15" fill="rgb(240,131,42)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.8376%" y="2901" width="0.0213%" height="15" fill="rgb(228,148,21)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="58.8376%" y="2885" width="0.0213%" height="15" fill="rgb(209,215,45)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="58.8376%" y="2869" width="0.0213%" height="15" fill="rgb(230,2,16)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="58.8376%" y="2853" width="0.0213%" height="15" fill="rgb(251,203,7)" fg:x="13808" fg:w="5"/><text x="59.0876%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="58.8418%" y="2837" width="0.0170%" height="15" fill="rgb(220,84,50)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="58.8418%" y="2821" width="0.0170%" height="15" fill="rgb(209,222,10)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2831.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="58.8418%" y="2805" width="0.0170%" height="15" fill="rgb(232,44,33)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="58.8418%" y="2789" width="0.0170%" height="15" fill="rgb(212,11,19)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="58.8418%" y="2773" width="0.0170%" height="15" fill="rgb(248,146,36)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8418%" y="2757" width="0.0170%" height="15" fill="rgb(234,32,36)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8418%" y="2741" width="0.0170%" height="15" fill="rgb(210,70,17)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.8418%" y="2725" width="0.0170%" height="15" fill="rgb(251,7,25)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="58.8418%" y="2709" width="0.0170%" height="15" fill="rgb(251,156,0)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="58.8418%" y="2693" width="0.0170%" height="15" fill="rgb(236,8,9)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8418%" y="2677" width="0.0170%" height="15" fill="rgb(221,5,19)" fg:x="13809" fg:w="4"/><text x="59.0918%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.8461%" y="2661" width="0.0128%" height="15" fill="rgb(235,90,17)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.8461%" y="2645" width="0.0128%" height="15" fill="rgb(210,121,0)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2655.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.8461%" y="2629" width="0.0128%" height="15" fill="rgb(241,3,51)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.8461%" y="2613" width="0.0128%" height="15" fill="rgb(220,108,31)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.8461%" y="2597" width="0.0128%" height="15" fill="rgb(248,159,20)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2581" width="0.0128%" height="15" fill="rgb(226,53,16)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2565" width="0.0128%" height="15" fill="rgb(213,229,12)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.8461%" y="2549" width="0.0128%" height="15" fill="rgb(215,100,34)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="58.8461%" y="2533" width="0.0128%" height="15" fill="rgb(254,85,1)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="58.8461%" y="2517" width="0.0128%" height="15" fill="rgb(229,222,35)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2501" width="0.0128%" height="15" fill="rgb(234,131,18)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.8461%" y="2485" width="0.0128%" height="15" fill="rgb(226,89,23)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.8461%" y="2469" width="0.0128%" height="15" fill="rgb(237,207,35)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2479.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.8461%" y="2453" width="0.0128%" height="15" fill="rgb(234,196,48)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.8461%" y="2437" width="0.0128%" height="15" fill="rgb(219,8,25)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.8461%" y="2421" width="0.0128%" height="15" fill="rgb(219,188,53)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2405" width="0.0128%" height="15" fill="rgb(215,70,26)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2389" width="0.0128%" height="15" fill="rgb(247,191,4)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.8461%" y="2373" width="0.0128%" height="15" fill="rgb(227,69,41)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.8461%" y="2357" width="0.0128%" height="15" fill="rgb(231,3,39)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.8461%" y="2341" width="0.0128%" height="15" fill="rgb(246,125,11)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2351.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.8461%" y="2325" width="0.0128%" height="15" fill="rgb(209,136,12)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2335.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.8461%" y="2309" width="0.0128%" height="15" fill="rgb(210,209,4)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.8461%" y="2293" width="0.0128%" height="15" fill="rgb(236,185,0)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2303.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.8461%" y="2277" width="0.0128%" height="15" fill="rgb(213,205,51)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2287.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.8461%" y="2261" width="0.0128%" height="15" fill="rgb(227,7,30)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2271.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2245" width="0.0128%" height="15" fill="rgb(226,211,18)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2255.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2229" width="0.0128%" height="15" fill="rgb(251,32,48)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.8461%" y="2213" width="0.0128%" height="15" fill="rgb(233,66,39)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2223.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.8461%" y="2197" width="0.0128%" height="15" fill="rgb(240,127,42)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2207.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.8461%" y="2181" width="0.0128%" height="15" fill="rgb(207,139,5)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2191.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.8461%" y="2165" width="0.0128%" height="15" fill="rgb(210,114,9)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2175.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="58.8461%" y="2149" width="0.0128%" height="15" fill="rgb(207,141,8)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.8461%" y="2133" width="0.0128%" height="15" fill="rgb(219,183,44)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.8461%" y="2117" width="0.0128%" height="15" fill="rgb(226,184,47)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.8461%" y="2101" width="0.0128%" height="15" fill="rgb(225,210,34)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.8461%" y="2085" width="0.0128%" height="15" fill="rgb(245,220,46)" fg:x="13810" fg:w="3"/><text x="59.0961%" y="2095.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="58.8631%" y="2661" width="0.0256%" height="15" fill="rgb(238,125,46)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2671.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2645" width="0.0256%" height="15" fill="rgb(215,80,46)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2629" width="0.0256%" height="15" fill="rgb(215,138,42)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.8631%" y="2613" width="0.0256%" height="15" fill="rgb(224,156,29)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2623.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="58.8631%" y="2597" width="0.0256%" height="15" fill="rgb(222,222,38)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2607.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="58.8631%" y="2581" width="0.0256%" height="15" fill="rgb(237,37,41)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2565" width="0.0256%" height="15" fill="rgb(216,139,1)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="58.8631%" y="2549" width="0.0256%" height="15" fill="rgb(250,62,21)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="58.8631%" y="2533" width="0.0256%" height="15" fill="rgb(228,30,12)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2543.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="58.8631%" y="2517" width="0.0256%" height="15" fill="rgb(226,97,13)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="58.8631%" y="2501" width="0.0256%" height="15" fill="rgb(219,116,12)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="58.8631%" y="2485" width="0.0256%" height="15" fill="rgb(206,45,33)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2469" width="0.0256%" height="15" fill="rgb(232,221,35)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2453" width="0.0256%" height="15" fill="rgb(233,205,21)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="58.8631%" y="2437" width="0.0256%" height="15" fill="rgb(219,103,53)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="58.8631%" y="2421" width="0.0256%" height="15" fill="rgb(234,223,0)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="58.8631%" y="2405" width="0.0256%" height="15" fill="rgb(250,21,12)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2415.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="58.8631%" y="2389" width="0.0256%" height="15" fill="rgb(249,193,34)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2399.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="58.8631%" y="2373" width="0.0256%" height="15" fill="rgb(238,59,8)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="58.8631%" y="2357" width="0.0256%" height="15" fill="rgb(213,121,11)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2367.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="58.8631%" y="2341" width="0.0256%" height="15" fill="rgb(226,134,50)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2351.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="58.8631%" y="2325" width="0.0256%" height="15" fill="rgb(220,88,50)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2335.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2309" width="0.0256%" height="15" fill="rgb(240,145,31)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2319.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2293" width="0.0256%" height="15" fill="rgb(219,11,27)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="58.8631%" y="2277" width="0.0256%" height="15" fill="rgb(239,46,40)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="58.8631%" y="2261" width="0.0256%" height="15" fill="rgb(237,122,24)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2271.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="58.8631%" y="2245" width="0.0256%" height="15" fill="rgb(253,131,27)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2255.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="58.8631%" y="2229" width="0.0256%" height="15" fill="rgb(209,41,40)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2239.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="58.8631%" y="2213" width="0.0256%" height="15" fill="rgb(241,100,36)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2223.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="58.8631%" y="2197" width="0.0256%" height="15" fill="rgb(216,222,7)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="58.8631%" y="2181" width="0.0256%" height="15" fill="rgb(224,45,51)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="58.8631%" y="2165" width="0.0256%" height="15" fill="rgb(219,1,20)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2175.50"></text></g><g><title>rayon::slice::quicksort::partition (6 samples, 0.03%)</title><rect x="58.8631%" y="2149" width="0.0256%" height="15" fill="rgb(254,67,7)" fg:x="13814" fg:w="6"/><text x="59.1131%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (5 samples, 0.02%)</title><rect x="58.8674%" y="2133" width="0.0213%" height="15" fill="rgb(221,24,44)" fg:x="13815" fg:w="5"/><text x="59.1174%" y="2143.50"></text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::offset (5 samples, 0.02%)</title><rect x="58.8674%" y="2117" width="0.0213%" height="15" fill="rgb(212,219,36)" fg:x="13815" fg:w="5"/><text x="59.1174%" y="2127.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="58.8887%" y="2485" width="0.0170%" height="15" fill="rgb(240,95,20)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8887%" y="2469" width="0.0170%" height="15" fill="rgb(228,166,25)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8887%" y="2453" width="0.0170%" height="15" fill="rgb(238,144,8)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.8887%" y="2437" width="0.0170%" height="15" fill="rgb(208,51,11)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="58.8887%" y="2421" width="0.0170%" height="15" fill="rgb(229,157,28)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.8887%" y="2405" width="0.0170%" height="15" fill="rgb(207,25,20)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2415.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.8887%" y="2389" width="0.0170%" height="15" fill="rgb(211,195,13)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2399.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="58.8887%" y="2373" width="0.0170%" height="15" fill="rgb(233,151,18)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.8887%" y="2357" width="0.0170%" height="15" fill="rgb(209,100,2)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2367.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.8887%" y="2341" width="0.0170%" height="15" fill="rgb(217,150,16)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2351.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="58.8887%" y="2325" width="0.0170%" height="15" fill="rgb(250,46,28)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2335.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8887%" y="2309" width="0.0170%" height="15" fill="rgb(235,23,31)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2319.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8887%" y="2293" width="0.0170%" height="15" fill="rgb(222,171,18)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="58.8887%" y="2277" width="0.0170%" height="15" fill="rgb(243,86,8)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="58.8887%" y="2261" width="0.0170%" height="15" fill="rgb(213,92,13)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2271.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="58.8887%" y="2245" width="0.0170%" height="15" fill="rgb(254,128,3)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2255.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="58.8887%" y="2229" width="0.0170%" height="15" fill="rgb(253,180,41)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2239.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="58.8887%" y="2213" width="0.0170%" height="15" fill="rgb(240,104,54)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2223.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="58.8887%" y="2197" width="0.0170%" height="15" fill="rgb(218,177,31)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="58.8887%" y="2181" width="0.0170%" height="15" fill="rgb(248,55,16)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.8887%" y="2165" width="0.0170%" height="15" fill="rgb(245,168,19)" fg:x="13820" fg:w="4"/><text x="59.1387%" y="2175.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (14 samples, 0.06%)</title><rect x="58.8589%" y="2949" width="0.0597%" height="15" fill="rgb(231,171,18)" fg:x="13813" fg:w="14"/><text x="59.1089%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (14 samples, 0.06%)</title><rect x="58.8589%" y="2933" width="0.0597%" height="15" fill="rgb(252,98,48)" fg:x="13813" fg:w="14"/><text x="59.1089%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (14 samples, 0.06%)</title><rect x="58.8589%" y="2917" width="0.0597%" height="15" fill="rgb(221,131,11)" fg:x="13813" fg:w="14"/><text x="59.1089%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="58.8589%" y="2901" width="0.0597%" height="15" fill="rgb(243,14,25)" fg:x="13813" fg:w="14"/><text x="59.1089%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (14 samples, 0.06%)</title><rect x="58.8589%" y="2885" width="0.0597%" height="15" fill="rgb(251,201,24)" fg:x="13813" fg:w="14"/><text x="59.1089%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="58.8589%" y="2869" width="0.0597%" height="15" fill="rgb(240,52,30)" fg:x="13813" fg:w="14"/><text x="59.1089%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (14 samples, 0.06%)</title><rect x="58.8589%" y="2853" width="0.0597%" height="15" fill="rgb(242,38,7)" fg:x="13813" fg:w="14"/><text x="59.1089%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="58.8631%" y="2837" width="0.0554%" height="15" fill="rgb(211,129,16)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="58.8631%" y="2821" width="0.0554%" height="15" fill="rgb(241,218,9)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2831.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="58.8631%" y="2805" width="0.0554%" height="15" fill="rgb(215,172,27)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="58.8631%" y="2789" width="0.0554%" height="15" fill="rgb(219,70,10)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="58.8631%" y="2773" width="0.0554%" height="15" fill="rgb(248,166,53)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="58.8631%" y="2757" width="0.0554%" height="15" fill="rgb(224,17,15)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="58.8631%" y="2741" width="0.0554%" height="15" fill="rgb(218,31,19)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="58.8631%" y="2725" width="0.0554%" height="15" fill="rgb(224,40,43)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="58.8631%" y="2709" width="0.0554%" height="15" fill="rgb(242,162,22)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="58.8631%" y="2693" width="0.0554%" height="15" fill="rgb(208,212,40)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="58.8631%" y="2677" width="0.0554%" height="15" fill="rgb(250,96,7)" fg:x="13814" fg:w="13"/><text x="59.1131%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="58.8887%" y="2661" width="0.0298%" height="15" fill="rgb(208,159,43)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="58.8887%" y="2645" width="0.0298%" height="15" fill="rgb(250,119,40)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2655.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="58.8887%" y="2629" width="0.0298%" height="15" fill="rgb(205,117,23)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="58.8887%" y="2613" width="0.0298%" height="15" fill="rgb(244,40,33)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="58.8887%" y="2597" width="0.0298%" height="15" fill="rgb(229,135,7)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="58.8887%" y="2581" width="0.0298%" height="15" fill="rgb(215,102,10)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="58.8887%" y="2565" width="0.0298%" height="15" fill="rgb(224,75,5)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="58.8887%" y="2549" width="0.0298%" height="15" fill="rgb(240,197,27)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="58.8887%" y="2533" width="0.0298%" height="15" fill="rgb(211,143,43)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="58.8887%" y="2517" width="0.0298%" height="15" fill="rgb(251,27,45)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="58.8887%" y="2501" width="0.0298%" height="15" fill="rgb(232,227,29)" fg:x="13820" fg:w="7"/><text x="59.1387%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="58.9057%" y="2485" width="0.0128%" height="15" fill="rgb(229,184,45)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="58.9057%" y="2469" width="0.0128%" height="15" fill="rgb(223,66,51)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2479.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="58.9057%" y="2453" width="0.0128%" height="15" fill="rgb(232,143,37)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="58.9057%" y="2437" width="0.0128%" height="15" fill="rgb(212,143,53)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="58.9057%" y="2421" width="0.0128%" height="15" fill="rgb(219,195,24)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="58.9057%" y="2405" width="0.0128%" height="15" fill="rgb(205,61,6)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="58.9057%" y="2389" width="0.0128%" height="15" fill="rgb(206,190,48)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="58.9057%" y="2373" width="0.0128%" height="15" fill="rgb(250,152,26)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="58.9057%" y="2357" width="0.0128%" height="15" fill="rgb(243,19,48)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.9057%" y="2341" width="0.0128%" height="15" fill="rgb(239,37,15)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2351.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="58.9057%" y="2325" width="0.0128%" height="15" fill="rgb(240,78,32)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2335.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="58.9057%" y="2309" width="0.0128%" height="15" fill="rgb(232,209,42)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.9057%" y="2293" width="0.0128%" height="15" fill="rgb(230,185,54)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2303.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="58.9057%" y="2277" width="0.0128%" height="15" fill="rgb(231,75,27)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2287.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="58.9057%" y="2261" width="0.0128%" height="15" fill="rgb(249,107,43)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2271.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="58.9057%" y="2245" width="0.0128%" height="15" fill="rgb(241,6,23)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2255.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="58.9057%" y="2229" width="0.0128%" height="15" fill="rgb(253,17,32)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="58.9057%" y="2213" width="0.0128%" height="15" fill="rgb(242,68,51)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2223.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="58.9057%" y="2197" width="0.0128%" height="15" fill="rgb(244,1,35)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2207.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="58.9057%" y="2181" width="0.0128%" height="15" fill="rgb(251,207,41)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2191.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="58.9057%" y="2165" width="0.0128%" height="15" fill="rgb(232,26,34)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2175.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="58.9057%" y="2149" width="0.0128%" height="15" fill="rgb(232,58,11)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="58.9057%" y="2133" width="0.0128%" height="15" fill="rgb(247,157,33)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="58.9057%" y="2117" width="0.0128%" height="15" fill="rgb(210,143,27)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="58.9057%" y="2101" width="0.0128%" height="15" fill="rgb(226,88,31)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="58.9057%" y="2085" width="0.0128%" height="15" fill="rgb(244,188,28)" fg:x="13824" fg:w="3"/><text x="59.1557%" y="2095.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="58.9270%" y="2485" width="0.0170%" height="15" fill="rgb(218,207,10)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="58.9270%" y="2469" width="0.0170%" height="15" fill="rgb(221,28,14)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="58.9270%" y="2453" width="0.0170%" height="15" fill="rgb(225,145,35)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="58.9270%" y="2437" width="0.0170%" height="15" fill="rgb(246,199,40)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="58.9270%" y="2421" width="0.0170%" height="15" fill="rgb(232,36,20)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.9270%" y="2405" width="0.0170%" height="15" fill="rgb(206,150,10)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2415.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="58.9270%" y="2389" width="0.0170%" height="15" fill="rgb(236,71,48)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2399.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="58.9270%" y="2373" width="0.0170%" height="15" fill="rgb(251,33,7)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.9270%" y="2357" width="0.0170%" height="15" fill="rgb(230,88,30)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2367.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="58.9270%" y="2341" width="0.0170%" height="15" fill="rgb(250,129,54)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2351.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="58.9270%" y="2325" width="0.0170%" height="15" fill="rgb(243,73,10)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2335.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="58.9270%" y="2309" width="0.0170%" height="15" fill="rgb(253,120,35)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2319.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="58.9270%" y="2293" width="0.0170%" height="15" fill="rgb(236,228,54)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="58.9270%" y="2277" width="0.0170%" height="15" fill="rgb(206,31,40)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="58.9270%" y="2261" width="0.0170%" height="15" fill="rgb(249,137,35)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2271.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="58.9270%" y="2245" width="0.0170%" height="15" fill="rgb(246,179,11)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2255.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="58.9270%" y="2229" width="0.0170%" height="15" fill="rgb(245,196,49)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2239.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="58.9270%" y="2213" width="0.0170%" height="15" fill="rgb(231,29,41)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2223.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="58.9270%" y="2197" width="0.0170%" height="15" fill="rgb(216,133,47)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="58.9270%" y="2181" width="0.0170%" height="15" fill="rgb(210,159,41)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="58.9270%" y="2165" width="0.0170%" height="15" fill="rgb(236,200,28)" fg:x="13829" fg:w="4"/><text x="59.1770%" y="2175.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="58.9185%" y="2773" width="0.0469%" height="15" fill="rgb(246,179,26)" fg:x="13827" fg:w="11"/><text x="59.1685%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="58.9185%" y="2757" width="0.0469%" height="15" fill="rgb(208,85,44)" fg:x="13827" fg:w="11"/><text x="59.1685%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="58.9185%" y="2741" width="0.0469%" height="15" fill="rgb(232,43,34)" fg:x="13827" fg:w="11"/><text x="59.1685%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="58.9185%" y="2725" width="0.0469%" height="15" fill="rgb(241,100,47)" fg:x="13827" fg:w="11"/><text x="59.1685%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="58.9185%" y="2709" width="0.0469%" height="15" fill="rgb(207,159,51)" fg:x="13827" fg:w="11"/><text x="59.1685%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="58.9185%" y="2693" width="0.0469%" height="15" fill="rgb(243,115,26)" fg:x="13827" fg:w="11"/><text x="59.1685%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="58.9185%" y="2677" width="0.0469%" height="15" fill="rgb(232,79,38)" fg:x="13827" fg:w="11"/><text x="59.1685%" y="2687.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="58.9270%" y="2661" width="0.0384%" height="15" fill="rgb(208,211,32)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2671.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="58.9270%" y="2645" width="0.0384%" height="15" fill="rgb(223,205,25)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2655.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="58.9270%" y="2629" width="0.0384%" height="15" fill="rgb(238,72,46)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2639.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="58.9270%" y="2613" width="0.0384%" height="15" fill="rgb(231,170,51)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2623.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="58.9270%" y="2597" width="0.0384%" height="15" fill="rgb(217,131,15)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9270%" y="2581" width="0.0384%" height="15" fill="rgb(249,52,46)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9270%" y="2565" width="0.0384%" height="15" fill="rgb(221,212,33)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="58.9270%" y="2549" width="0.0384%" height="15" fill="rgb(219,150,54)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (9 samples, 0.04%)</title><rect x="58.9270%" y="2533" width="0.0384%" height="15" fill="rgb(208,185,0)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="58.9270%" y="2517" width="0.0384%" height="15" fill="rgb(231,172,19)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9270%" y="2501" width="0.0384%" height="15" fill="rgb(208,110,15)" fg:x="13829" fg:w="9"/><text x="59.1770%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="58.9441%" y="2485" width="0.0213%" height="15" fill="rgb(251,141,8)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="58.9441%" y="2469" width="0.0213%" height="15" fill="rgb(221,76,14)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2479.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="58.9441%" y="2453" width="0.0213%" height="15" fill="rgb(238,151,8)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="58.9441%" y="2437" width="0.0213%" height="15" fill="rgb(217,118,49)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="58.9441%" y="2421" width="0.0213%" height="15" fill="rgb(211,106,20)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="58.9441%" y="2405" width="0.0213%" height="15" fill="rgb(230,52,38)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="58.9441%" y="2389" width="0.0213%" height="15" fill="rgb(246,71,29)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="58.9441%" y="2373" width="0.0213%" height="15" fill="rgb(213,190,6)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="58.9441%" y="2357" width="0.0213%" height="15" fill="rgb(238,105,33)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.9441%" y="2341" width="0.0213%" height="15" fill="rgb(232,99,20)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2351.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (5 samples, 0.02%)</title><rect x="58.9441%" y="2325" width="0.0213%" height="15" fill="rgb(229,120,5)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2335.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="58.9441%" y="2309" width="0.0213%" height="15" fill="rgb(237,57,39)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.9441%" y="2293" width="0.0213%" height="15" fill="rgb(211,22,48)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2303.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (5 samples, 0.02%)</title><rect x="58.9441%" y="2277" width="0.0213%" height="15" fill="rgb(213,189,6)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2287.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (5 samples, 0.02%)</title><rect x="58.9441%" y="2261" width="0.0213%" height="15" fill="rgb(206,57,43)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2271.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="58.9441%" y="2245" width="0.0213%" height="15" fill="rgb(227,21,39)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2255.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (5 samples, 0.02%)</title><rect x="58.9441%" y="2229" width="0.0213%" height="15" fill="rgb(246,185,25)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (5 samples, 0.02%)</title><rect x="58.9441%" y="2213" width="0.0213%" height="15" fill="rgb(206,75,6)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2223.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (5 samples, 0.02%)</title><rect x="58.9441%" y="2197" width="0.0213%" height="15" fill="rgb(252,192,19)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2207.50"></text></g><g><title>core::ops::function::Fn::call (5 samples, 0.02%)</title><rect x="58.9441%" y="2181" width="0.0213%" height="15" fill="rgb(252,110,52)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2191.50"></text></g><g><title>criterion::analysis::estimates::stats (5 samples, 0.02%)</title><rect x="58.9441%" y="2165" width="0.0213%" height="15" fill="rgb(216,160,2)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2175.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (5 samples, 0.02%)</title><rect x="58.9441%" y="2149" width="0.0213%" height="15" fill="rgb(242,54,23)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="58.9441%" y="2133" width="0.0213%" height="15" fill="rgb(223,212,42)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="58.9441%" y="2117" width="0.0213%" height="15" fill="rgb(220,42,23)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="58.9441%" y="2101" width="0.0213%" height="15" fill="rgb(231,46,51)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="58.9441%" y="2085" width="0.0213%" height="15" fill="rgb(207,180,36)" fg:x="13833" fg:w="5"/><text x="59.1941%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="58.9484%" y="2069" width="0.0170%" height="15" fill="rgb(214,170,10)" fg:x="13834" fg:w="4"/><text x="59.1984%" y="2079.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="58.9526%" y="2053" width="0.0128%" height="15" fill="rgb(244,42,50)" fg:x="13835" fg:w="3"/><text x="59.2026%" y="2063.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (9 samples, 0.04%)</title><rect x="58.9654%" y="2485" width="0.0384%" height="15" fill="rgb(208,66,9)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2495.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9654%" y="2469" width="0.0384%" height="15" fill="rgb(223,152,2)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9654%" y="2453" width="0.0384%" height="15" fill="rgb(211,63,12)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="58.9654%" y="2437" width="0.0384%" height="15" fill="rgb(207,197,27)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="58.9654%" y="2421" width="0.0384%" height="15" fill="rgb(221,145,2)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2431.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="58.9654%" y="2405" width="0.0384%" height="15" fill="rgb(252,10,8)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2415.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="58.9654%" y="2389" width="0.0384%" height="15" fill="rgb(219,41,15)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2399.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="58.9654%" y="2373" width="0.0384%" height="15" fill="rgb(240,114,25)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2383.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="58.9654%" y="2357" width="0.0384%" height="15" fill="rgb(249,91,20)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2367.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="58.9654%" y="2341" width="0.0384%" height="15" fill="rgb(238,13,46)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2351.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="58.9654%" y="2325" width="0.0384%" height="15" fill="rgb(236,8,0)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2335.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9654%" y="2309" width="0.0384%" height="15" fill="rgb(210,171,29)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2319.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9654%" y="2293" width="0.0384%" height="15" fill="rgb(213,142,22)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2303.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="58.9654%" y="2277" width="0.0384%" height="15" fill="rgb(207,89,45)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2287.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="58.9654%" y="2261" width="0.0384%" height="15" fill="rgb(227,10,5)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2271.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="58.9654%" y="2245" width="0.0384%" height="15" fill="rgb(230,225,10)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2255.50"></text></g><g><title>criterion::analysis::estimates::stats (9 samples, 0.04%)</title><rect x="58.9654%" y="2229" width="0.0384%" height="15" fill="rgb(220,203,5)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2239.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (9 samples, 0.04%)</title><rect x="58.9654%" y="2213" width="0.0384%" height="15" fill="rgb(254,195,30)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2223.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (9 samples, 0.04%)</title><rect x="58.9654%" y="2197" width="0.0384%" height="15" fill="rgb(234,100,28)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (9 samples, 0.04%)</title><rect x="58.9654%" y="2181" width="0.0384%" height="15" fill="rgb(224,48,31)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="58.9654%" y="2165" width="0.0384%" height="15" fill="rgb(222,69,10)" fg:x="13838" fg:w="9"/><text x="59.2154%" y="2175.50"></text></g><g><title>rayon::slice::quicksort::partition (7 samples, 0.03%)</title><rect x="58.9739%" y="2149" width="0.0298%" height="15" fill="rgb(226,165,31)" fg:x="13840" fg:w="7"/><text x="59.2239%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (7 samples, 0.03%)</title><rect x="58.9739%" y="2133" width="0.0298%" height="15" fill="rgb(235,222,32)" fg:x="13840" fg:w="7"/><text x="59.2239%" y="2143.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="58.9654%" y="2597" width="0.0554%" height="15" fill="rgb(217,27,13)" fg:x="13838" fg:w="13"/><text x="59.2154%" y="2607.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="58.9654%" y="2581" width="0.0554%" height="15" fill="rgb(249,112,19)" fg:x="13838" fg:w="13"/><text x="59.2154%" y="2591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="58.9654%" y="2565" width="0.0554%" height="15" fill="rgb(244,180,49)" fg:x="13838" fg:w="13"/><text x="59.2154%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="58.9654%" y="2549" width="0.0554%" height="15" fill="rgb(224,19,27)" fg:x="13838" fg:w="13"/><text x="59.2154%" y="2559.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="58.9654%" y="2533" width="0.0554%" height="15" fill="rgb(234,123,28)" fg:x="13838" fg:w="13"/><text x="59.2154%" y="2543.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="58.9654%" y="2517" width="0.0554%" height="15" fill="rgb(254,192,48)" fg:x="13838" fg:w="13"/><text x="59.2154%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="58.9654%" y="2501" width="0.0554%" height="15" fill="rgb(205,88,17)" fg:x="13838" fg:w="13"/><text x="59.2154%" y="2511.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="59.0037%" y="2485" width="0.0170%" height="15" fill="rgb(219,147,43)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2495.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="59.0037%" y="2469" width="0.0170%" height="15" fill="rgb(236,25,18)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2479.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="59.0037%" y="2453" width="0.0170%" height="15" fill="rgb(217,102,20)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2463.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="59.0037%" y="2437" width="0.0170%" height="15" fill="rgb(233,156,8)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2447.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="59.0037%" y="2421" width="0.0170%" height="15" fill="rgb(227,46,2)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="59.0037%" y="2405" width="0.0170%" height="15" fill="rgb(224,31,39)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.0037%" y="2389" width="0.0170%" height="15" fill="rgb(248,155,6)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.0037%" y="2373" width="0.0170%" height="15" fill="rgb(242,95,39)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="59.0037%" y="2357" width="0.0170%" height="15" fill="rgb(208,59,23)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.0037%" y="2341" width="0.0170%" height="15" fill="rgb(218,152,49)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2351.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.0037%" y="2325" width="0.0170%" height="15" fill="rgb(243,209,30)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2335.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="59.0037%" y="2309" width="0.0170%" height="15" fill="rgb(217,116,3)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.0037%" y="2293" width="0.0170%" height="15" fill="rgb(223,173,8)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2303.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.0037%" y="2277" width="0.0170%" height="15" fill="rgb(241,225,53)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2287.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="59.0037%" y="2261" width="0.0170%" height="15" fill="rgb(225,191,5)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2271.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="59.0037%" y="2245" width="0.0170%" height="15" fill="rgb(236,90,44)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2255.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="59.0037%" y="2229" width="0.0170%" height="15" fill="rgb(232,146,37)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="59.0037%" y="2213" width="0.0170%" height="15" fill="rgb(219,169,26)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2223.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="59.0037%" y="2197" width="0.0170%" height="15" fill="rgb(238,86,24)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2207.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="59.0037%" y="2181" width="0.0170%" height="15" fill="rgb(232,212,44)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2191.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="59.0037%" y="2165" width="0.0170%" height="15" fill="rgb(223,156,16)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2175.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="59.0037%" y="2149" width="0.0170%" height="15" fill="rgb(214,19,27)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="59.0037%" y="2133" width="0.0170%" height="15" fill="rgb(218,114,41)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="59.0037%" y="2117" width="0.0170%" height="15" fill="rgb(252,38,34)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="59.0037%" y="2101" width="0.0170%" height="15" fill="rgb(224,70,42)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.0037%" y="2085" width="0.0170%" height="15" fill="rgb(217,172,17)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::partition (4 samples, 0.02%)</title><rect x="59.0037%" y="2069" width="0.0170%" height="15" fill="rgb(232,132,11)" fg:x="13847" fg:w="4"/><text x="59.2537%" y="2079.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="59.0080%" y="2053" width="0.0128%" height="15" fill="rgb(225,186,4)" fg:x="13848" fg:w="3"/><text x="59.2580%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (57 samples, 0.24%)</title><rect x="58.8077%" y="3397" width="0.2429%" height="15" fill="rgb(221,23,12)" fg:x="13801" fg:w="57"/><text x="59.0577%" y="3407.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (57 samples, 0.24%)</title><rect x="58.8077%" y="3381" width="0.2429%" height="15" fill="rgb(231,165,10)" fg:x="13801" fg:w="57"/><text x="59.0577%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.24%)</title><rect x="58.8077%" y="3365" width="0.2429%" height="15" fill="rgb(207,165,45)" fg:x="13801" fg:w="57"/><text x="59.0577%" y="3375.50"></text></g><g><title>rayon_core::join::join_context (57 samples, 0.24%)</title><rect x="58.8077%" y="3349" width="0.2429%" height="15" fill="rgb(240,45,51)" fg:x="13801" fg:w="57"/><text x="59.0577%" y="3359.50"></text></g><g><title>rayon_core::registry::in_worker (57 samples, 0.24%)</title><rect x="58.8077%" y="3333" width="0.2429%" height="15" fill="rgb(208,3,19)" fg:x="13801" fg:w="57"/><text x="59.0577%" y="3343.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (57 samples, 0.24%)</title><rect x="58.8077%" y="3317" width="0.2429%" height="15" fill="rgb(238,0,53)" fg:x="13801" fg:w="57"/><text x="59.0577%" y="3327.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (53 samples, 0.23%)</title><rect x="58.8248%" y="3301" width="0.2258%" height="15" fill="rgb(250,178,26)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3311.50"></text></g><g><title>std::panic::catch_unwind (53 samples, 0.23%)</title><rect x="58.8248%" y="3285" width="0.2258%" height="15" fill="rgb(225,193,22)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3295.50"></text></g><g><title>std::panicking::try (53 samples, 0.23%)</title><rect x="58.8248%" y="3269" width="0.2258%" height="15" fill="rgb(227,145,44)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3279.50"></text></g><g><title>std::panicking::try::do_call (53 samples, 0.23%)</title><rect x="58.8248%" y="3253" width="0.2258%" height="15" fill="rgb(245,13,42)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3263.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (53 samples, 0.23%)</title><rect x="58.8248%" y="3237" width="0.2258%" height="15" fill="rgb(225,8,6)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3247.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (53 samples, 0.23%)</title><rect x="58.8248%" y="3221" width="0.2258%" height="15" fill="rgb(248,47,30)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (53 samples, 0.23%)</title><rect x="58.8248%" y="3205" width="0.2258%" height="15" fill="rgb(248,222,45)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.23%)</title><rect x="58.8248%" y="3189" width="0.2258%" height="15" fill="rgb(248,221,3)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3199.50"></text></g><g><title>rayon_core::join::join_context (53 samples, 0.23%)</title><rect x="58.8248%" y="3173" width="0.2258%" height="15" fill="rgb(232,94,46)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3183.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.23%)</title><rect x="58.8248%" y="3157" width="0.2258%" height="15" fill="rgb(212,164,46)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3167.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (53 samples, 0.23%)</title><rect x="58.8248%" y="3141" width="0.2258%" height="15" fill="rgb(237,95,49)" fg:x="13805" fg:w="53"/><text x="59.0748%" y="3151.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (45 samples, 0.19%)</title><rect x="58.8589%" y="3125" width="0.1918%" height="15" fill="rgb(206,178,23)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3135.50"></text></g><g><title>std::panic::catch_unwind (45 samples, 0.19%)</title><rect x="58.8589%" y="3109" width="0.1918%" height="15" fill="rgb(250,35,5)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3119.50"></text></g><g><title>std::panicking::try (45 samples, 0.19%)</title><rect x="58.8589%" y="3093" width="0.1918%" height="15" fill="rgb(238,21,5)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3103.50"></text></g><g><title>std::panicking::try::do_call (45 samples, 0.19%)</title><rect x="58.8589%" y="3077" width="0.1918%" height="15" fill="rgb(222,33,47)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3087.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (45 samples, 0.19%)</title><rect x="58.8589%" y="3061" width="0.1918%" height="15" fill="rgb(211,188,35)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3071.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (45 samples, 0.19%)</title><rect x="58.8589%" y="3045" width="0.1918%" height="15" fill="rgb(234,8,28)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (45 samples, 0.19%)</title><rect x="58.8589%" y="3029" width="0.1918%" height="15" fill="rgb(219,56,26)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.19%)</title><rect x="58.8589%" y="3013" width="0.1918%" height="15" fill="rgb(245,80,50)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3023.50"></text></g><g><title>rayon_core::join::join_context (45 samples, 0.19%)</title><rect x="58.8589%" y="2997" width="0.1918%" height="15" fill="rgb(231,36,20)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="3007.50"></text></g><g><title>rayon_core::registry::in_worker (45 samples, 0.19%)</title><rect x="58.8589%" y="2981" width="0.1918%" height="15" fill="rgb(240,218,32)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="2991.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (45 samples, 0.19%)</title><rect x="58.8589%" y="2965" width="0.1918%" height="15" fill="rgb(207,196,6)" fg:x="13813" fg:w="45"/><text x="59.1089%" y="2975.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (31 samples, 0.13%)</title><rect x="58.9185%" y="2949" width="0.1321%" height="15" fill="rgb(236,175,32)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2959.50"></text></g><g><title>std::panic::catch_unwind (31 samples, 0.13%)</title><rect x="58.9185%" y="2933" width="0.1321%" height="15" fill="rgb(220,108,32)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2943.50"></text></g><g><title>std::panicking::try (31 samples, 0.13%)</title><rect x="58.9185%" y="2917" width="0.1321%" height="15" fill="rgb(247,162,12)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2927.50"></text></g><g><title>std::panicking::try::do_call (31 samples, 0.13%)</title><rect x="58.9185%" y="2901" width="0.1321%" height="15" fill="rgb(207,164,6)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2911.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (31 samples, 0.13%)</title><rect x="58.9185%" y="2885" width="0.1321%" height="15" fill="rgb(254,114,8)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2895.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (31 samples, 0.13%)</title><rect x="58.9185%" y="2869" width="0.1321%" height="15" fill="rgb(206,7,54)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (31 samples, 0.13%)</title><rect x="58.9185%" y="2853" width="0.1321%" height="15" fill="rgb(234,127,34)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.13%)</title><rect x="58.9185%" y="2837" width="0.1321%" height="15" fill="rgb(207,22,20)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2847.50"></text></g><g><title>rayon_core::join::join_context (31 samples, 0.13%)</title><rect x="58.9185%" y="2821" width="0.1321%" height="15" fill="rgb(243,35,38)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2831.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.13%)</title><rect x="58.9185%" y="2805" width="0.1321%" height="15" fill="rgb(248,66,0)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2815.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (31 samples, 0.13%)</title><rect x="58.9185%" y="2789" width="0.1321%" height="15" fill="rgb(252,178,46)" fg:x="13827" fg:w="31"/><text x="59.1685%" y="2799.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="58.9654%" y="2773" width="0.0852%" height="15" fill="rgb(230,73,48)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2783.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="58.9654%" y="2757" width="0.0852%" height="15" fill="rgb(225,22,52)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2767.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="58.9654%" y="2741" width="0.0852%" height="15" fill="rgb(211,105,10)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2751.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="58.9654%" y="2725" width="0.0852%" height="15" fill="rgb(210,137,4)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2735.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="58.9654%" y="2709" width="0.0852%" height="15" fill="rgb(220,159,14)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2719.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="58.9654%" y="2693" width="0.0852%" height="15" fill="rgb(222,57,44)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="58.9654%" y="2677" width="0.0852%" height="15" fill="rgb(232,18,8)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="58.9654%" y="2661" width="0.0852%" height="15" fill="rgb(254,18,34)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2671.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="58.9654%" y="2645" width="0.0852%" height="15" fill="rgb(209,215,3)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2655.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="58.9654%" y="2629" width="0.0852%" height="15" fill="rgb(247,172,16)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2639.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="58.9654%" y="2613" width="0.0852%" height="15" fill="rgb(211,211,40)" fg:x="13838" fg:w="20"/><text x="59.2154%" y="2623.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="59.0208%" y="2597" width="0.0298%" height="15" fill="rgb(224,51,15)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2607.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="59.0208%" y="2581" width="0.0298%" height="15" fill="rgb(244,218,9)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2591.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="59.0208%" y="2565" width="0.0298%" height="15" fill="rgb(253,200,4)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2575.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="59.0208%" y="2549" width="0.0298%" height="15" fill="rgb(230,1,20)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2559.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="59.0208%" y="2533" width="0.0298%" height="15" fill="rgb(229,165,22)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2517" width="0.0298%" height="15" fill="rgb(242,6,49)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2501" width="0.0298%" height="15" fill="rgb(238,83,35)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="59.0208%" y="2485" width="0.0298%" height="15" fill="rgb(241,10,29)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (7 samples, 0.03%)</title><rect x="59.0208%" y="2469" width="0.0298%" height="15" fill="rgb(209,143,3)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="59.0208%" y="2453" width="0.0298%" height="15" fill="rgb(244,212,0)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2437" width="0.0298%" height="15" fill="rgb(221,71,10)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (7 samples, 0.03%)</title><rect x="59.0208%" y="2421" width="0.0298%" height="15" fill="rgb(223,227,42)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2405" width="0.0298%" height="15" fill="rgb(219,219,38)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2389" width="0.0298%" height="15" fill="rgb(235,33,50)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="59.0208%" y="2373" width="0.0298%" height="15" fill="rgb(253,10,1)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2383.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="59.0208%" y="2357" width="0.0298%" height="15" fill="rgb(240,220,25)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2367.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="59.0208%" y="2341" width="0.0298%" height="15" fill="rgb(228,23,27)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2351.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="59.0208%" y="2325" width="0.0298%" height="15" fill="rgb(242,191,50)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2335.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="59.0208%" y="2309" width="0.0298%" height="15" fill="rgb(247,102,3)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2319.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="59.0208%" y="2293" width="0.0298%" height="15" fill="rgb(205,48,8)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2303.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="59.0208%" y="2277" width="0.0298%" height="15" fill="rgb(245,146,3)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2287.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="59.0208%" y="2261" width="0.0298%" height="15" fill="rgb(239,218,22)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2271.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2245" width="0.0298%" height="15" fill="rgb(249,17,16)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2255.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2229" width="0.0298%" height="15" fill="rgb(254,92,22)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2239.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="59.0208%" y="2213" width="0.0298%" height="15" fill="rgb(238,195,50)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2223.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="59.0208%" y="2197" width="0.0298%" height="15" fill="rgb(217,21,13)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2207.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="59.0208%" y="2181" width="0.0298%" height="15" fill="rgb(224,211,52)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2191.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="59.0208%" y="2165" width="0.0298%" height="15" fill="rgb(239,179,29)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2175.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="59.0208%" y="2149" width="0.0298%" height="15" fill="rgb(233,19,26)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2159.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="59.0208%" y="2133" width="0.0298%" height="15" fill="rgb(213,106,49)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2143.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="59.0208%" y="2117" width="0.0298%" height="15" fill="rgb(236,132,49)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2127.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="59.0208%" y="2101" width="0.0298%" height="15" fill="rgb(239,54,53)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2111.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="59.0208%" y="2085" width="0.0298%" height="15" fill="rgb(208,209,32)" fg:x="13851" fg:w="7"/><text x="59.2708%" y="2095.50"></text></g><g><title>rayon::slice::quicksort::partition (5 samples, 0.02%)</title><rect x="59.0293%" y="2069" width="0.0213%" height="15" fill="rgb(227,190,6)" fg:x="13853" fg:w="5"/><text x="59.2793%" y="2079.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (4 samples, 0.02%)</title><rect x="59.0336%" y="2053" width="0.0170%" height="15" fill="rgb(246,30,8)" fg:x="13854" fg:w="4"/><text x="59.2836%" y="2063.50"></text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (60 samples, 0.26%)</title><rect x="58.8077%" y="3829" width="0.2557%" height="15" fill="rgb(212,109,45)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3839.50"></text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (60 samples, 0.26%)</title><rect x="58.8077%" y="3813" width="0.2557%" height="15" fill="rgb(234,190,33)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3823.50"></text></g><g><title><alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once (60 samples, 0.26%)</title><rect x="58.8077%" y="3797" width="0.2557%" height="15" fill="rgb(238,114,1)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3807.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (60 samples, 0.26%)</title><rect x="58.8077%" y="3781" width="0.2557%" height="15" fill="rgb(224,43,25)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3791.50"></text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}} (60 samples, 0.26%)</title><rect x="58.8077%" y="3765" width="0.2557%" height="15" fill="rgb(238,177,15)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3775.50"></text></g><g><title>std::panic::catch_unwind (60 samples, 0.26%)</title><rect x="58.8077%" y="3749" width="0.2557%" height="15" fill="rgb(209,83,30)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3759.50"></text></g><g><title>std::panicking::try (60 samples, 0.26%)</title><rect x="58.8077%" y="3733" width="0.2557%" height="15" fill="rgb(222,223,24)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3743.50"></text></g><g><title>std::panicking::try::do_call (60 samples, 0.26%)</title><rect x="58.8077%" y="3717" width="0.2557%" height="15" fill="rgb(233,208,32)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3727.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (60 samples, 0.26%)</title><rect x="58.8077%" y="3701" width="0.2557%" height="15" fill="rgb(211,61,18)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3711.50"></text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}} (60 samples, 0.26%)</title><rect x="58.8077%" y="3685" width="0.2557%" height="15" fill="rgb(222,34,24)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3695.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (60 samples, 0.26%)</title><rect x="58.8077%" y="3669" width="0.2557%" height="15" fill="rgb(213,188,17)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3679.50"></text></g><g><title><rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn>::spawn::_{{closure}} (60 samples, 0.26%)</title><rect x="58.8077%" y="3653" width="0.2557%" height="15" fill="rgb(230,154,21)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3663.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (60 samples, 0.26%)</title><rect x="58.8077%" y="3637" width="0.2557%" height="15" fill="rgb(238,39,18)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3647.50"></text></g><g><title>rayon_core::registry::main_loop (60 samples, 0.26%)</title><rect x="58.8077%" y="3621" width="0.2557%" height="15" fill="rgb(206,115,50)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3631.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_out_of_work (60 samples, 0.26%)</title><rect x="58.8077%" y="3605" width="0.2557%" height="15" fill="rgb(218,83,8)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3615.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (60 samples, 0.26%)</title><rect x="58.8077%" y="3589" width="0.2557%" height="15" fill="rgb(210,120,53)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3599.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (60 samples, 0.26%)</title><rect x="58.8077%" y="3573" width="0.2557%" height="15" fill="rgb(249,86,25)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3583.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (60 samples, 0.26%)</title><rect x="58.8077%" y="3557" width="0.2557%" height="15" fill="rgb(245,38,44)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3567.50"></text></g><g><title>rayon_core::job::JobRef::execute (60 samples, 0.26%)</title><rect x="58.8077%" y="3541" width="0.2557%" height="15" fill="rgb(224,187,4)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3551.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (60 samples, 0.26%)</title><rect x="58.8077%" y="3525" width="0.2557%" height="15" fill="rgb(218,14,51)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3535.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (60 samples, 0.26%)</title><rect x="58.8077%" y="3509" width="0.2557%" height="15" fill="rgb(242,45,45)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3519.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (60 samples, 0.26%)</title><rect x="58.8077%" y="3493" width="0.2557%" height="15" fill="rgb(245,134,27)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3503.50"></text></g><g><title>std::panic::catch_unwind (60 samples, 0.26%)</title><rect x="58.8077%" y="3477" width="0.2557%" height="15" fill="rgb(217,215,46)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3487.50"></text></g><g><title>std::panicking::try (60 samples, 0.26%)</title><rect x="58.8077%" y="3461" width="0.2557%" height="15" fill="rgb(235,229,48)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3471.50"></text></g><g><title>std::panicking::try::do_call (60 samples, 0.26%)</title><rect x="58.8077%" y="3445" width="0.2557%" height="15" fill="rgb(222,191,3)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3455.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (60 samples, 0.26%)</title><rect x="58.8077%" y="3429" width="0.2557%" height="15" fill="rgb(209,101,12)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3439.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (60 samples, 0.26%)</title><rect x="58.8077%" y="3413" width="0.2557%" height="15" fill="rgb(214,99,38)" fg:x="13801" fg:w="60"/><text x="59.0577%" y="3423.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}}::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3397" width="0.0128%" height="15" fill="rgb(236,12,23)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3407.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3381" width="0.0128%" height="15" fill="rgb(205,19,25)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3391.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.0506%" y="3365" width="0.0128%" height="15" fill="rgb(206,201,32)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3375.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.0506%" y="3349" width="0.0128%" height="15" fill="rgb(228,0,54)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3359.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.0506%" y="3333" width="0.0128%" height="15" fill="rgb(227,42,49)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3343.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.0506%" y="3317" width="0.0128%" height="15" fill="rgb(221,226,22)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3327.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.0506%" y="3301" width="0.0128%" height="15" fill="rgb(231,197,10)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3311.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3285" width="0.0128%" height="15" fill="rgb(245,221,37)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3295.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3269" width="0.0128%" height="15" fill="rgb(231,157,41)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.0506%" y="3253" width="0.0128%" height="15" fill="rgb(253,155,27)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3263.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.0506%" y="3237" width="0.0128%" height="15" fill="rgb(221,118,36)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3247.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.0506%" y="3221" width="0.0128%" height="15" fill="rgb(243,90,50)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3205" width="0.0128%" height="15" fill="rgb(246,179,35)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3215.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.0506%" y="3189" width="0.0128%" height="15" fill="rgb(220,85,51)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3199.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.0506%" y="3173" width="0.0128%" height="15" fill="rgb(232,107,44)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3183.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.0506%" y="3157" width="0.0128%" height="15" fill="rgb(239,173,29)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3167.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.0506%" y="3141" width="0.0128%" height="15" fill="rgb(210,191,53)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3151.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.0506%" y="3125" width="0.0128%" height="15" fill="rgb(236,33,11)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3135.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3109" width="0.0128%" height="15" fill="rgb(218,214,40)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3093" width="0.0128%" height="15" fill="rgb(230,168,46)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.0506%" y="3077" width="0.0128%" height="15" fill="rgb(232,32,17)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3087.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.0506%" y="3061" width="0.0128%" height="15" fill="rgb(250,92,20)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3071.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.0506%" y="3045" width="0.0128%" height="15" fill="rgb(236,146,27)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="3029" width="0.0128%" height="15" fill="rgb(251,43,9)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.0506%" y="3013" width="0.0128%" height="15" fill="rgb(211,9,53)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.0506%" y="2997" width="0.0128%" height="15" fill="rgb(220,12,54)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="3007.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.0506%" y="2981" width="0.0128%" height="15" fill="rgb(248,95,4)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.0506%" y="2965" width="0.0128%" height="15" fill="rgb(250,138,17)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.0506%" y="2949" width="0.0128%" height="15" fill="rgb(207,104,49)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2959.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="2933" width="0.0128%" height="15" fill="rgb(247,10,7)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="2917" width="0.0128%" height="15" fill="rgb(254,183,48)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.0506%" y="2901" width="0.0128%" height="15" fill="rgb(232,188,2)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2911.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.0506%" y="2885" width="0.0128%" height="15" fill="rgb(237,101,26)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2895.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.0506%" y="2869" width="0.0128%" height="15" fill="rgb(253,155,47)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="2853" width="0.0128%" height="15" fill="rgb(239,164,18)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2863.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.0506%" y="2837" width="0.0128%" height="15" fill="rgb(240,181,17)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2847.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.0506%" y="2821" width="0.0128%" height="15" fill="rgb(247,131,39)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2831.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.0506%" y="2805" width="0.0128%" height="15" fill="rgb(243,55,25)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2815.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.0506%" y="2789" width="0.0128%" height="15" fill="rgb(251,94,39)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2799.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.0506%" y="2773" width="0.0128%" height="15" fill="rgb(223,202,40)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2783.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="2757" width="0.0128%" height="15" fill="rgb(229,45,47)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="2741" width="0.0128%" height="15" fill="rgb(254,154,51)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.0506%" y="2725" width="0.0128%" height="15" fill="rgb(208,116,53)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2735.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.0506%" y="2709" width="0.0128%" height="15" fill="rgb(233,28,34)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.0506%" y="2693" width="0.0128%" height="15" fill="rgb(233,63,14)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0506%" y="2677" width="0.0128%" height="15" fill="rgb(214,13,1)" fg:x="13858" fg:w="3"/><text x="59.3006%" y="2687.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.0634%" y="3349" width="0.0128%" height="15" fill="rgb(231,61,15)" fg:x="13861" fg:w="3"/><text x="59.3134%" y="3359.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0634%" y="3333" width="0.0128%" height="15" fill="rgb(230,104,36)" fg:x="13861" fg:w="3"/><text x="59.3134%" y="3343.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0634%" y="3317" width="0.0128%" height="15" fill="rgb(235,210,37)" fg:x="13861" fg:w="3"/><text x="59.3134%" y="3327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.0634%" y="3301" width="0.0128%" height="15" fill="rgb(244,33,49)" fg:x="13861" fg:w="3"/><text x="59.3134%" y="3311.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.0634%" y="3285" width="0.0128%" height="15" fill="rgb(215,7,20)" fg:x="13861" fg:w="3"/><text x="59.3134%" y="3295.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.0634%" y="3269" width="0.0128%" height="15" fill="rgb(249,107,16)" fg:x="13861" fg:w="3"/><text x="59.3134%" y="3279.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0634%" y="3253" width="0.0128%" height="15" fill="rgb(242,216,26)" fg:x="13861" fg:w="3"/><text x="59.3134%" y="3263.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (6 samples, 0.03%)</title><rect x="59.0634%" y="3461" width="0.0256%" height="15" fill="rgb(209,195,2)" fg:x="13861" fg:w="6"/><text x="59.3134%" y="3471.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (6 samples, 0.03%)</title><rect x="59.0634%" y="3445" width="0.0256%" height="15" fill="rgb(219,205,15)" fg:x="13861" fg:w="6"/><text x="59.3134%" y="3455.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="59.0634%" y="3429" width="0.0256%" height="15" fill="rgb(247,31,9)" fg:x="13861" fg:w="6"/><text x="59.3134%" y="3439.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="59.0634%" y="3413" width="0.0256%" height="15" fill="rgb(211,144,28)" fg:x="13861" fg:w="6"/><text x="59.3134%" y="3423.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="59.0634%" y="3397" width="0.0256%" height="15" fill="rgb(210,157,21)" fg:x="13861" fg:w="6"/><text x="59.3134%" y="3407.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="59.0634%" y="3381" width="0.0256%" height="15" fill="rgb(232,167,15)" fg:x="13861" fg:w="6"/><text x="59.3134%" y="3391.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="59.0634%" y="3365" width="0.0256%" height="15" fill="rgb(233,216,54)" fg:x="13861" fg:w="6"/><text x="59.3134%" y="3375.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.0762%" y="3349" width="0.0128%" height="15" fill="rgb(239,143,5)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3359.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.0762%" y="3333" width="0.0128%" height="15" fill="rgb(210,162,34)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3343.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.0762%" y="3317" width="0.0128%" height="15" fill="rgb(209,48,32)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3327.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.0762%" y="3301" width="0.0128%" height="15" fill="rgb(218,90,50)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3311.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.0762%" y="3285" width="0.0128%" height="15" fill="rgb(250,125,54)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0762%" y="3269" width="0.0128%" height="15" fill="rgb(250,21,47)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0762%" y="3253" width="0.0128%" height="15" fill="rgb(249,196,54)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.0762%" y="3237" width="0.0128%" height="15" fill="rgb(208,43,11)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3247.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.0762%" y="3221" width="0.0128%" height="15" fill="rgb(211,24,47)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3231.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.0762%" y="3205" width="0.0128%" height="15" fill="rgb(251,215,25)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0762%" y="3189" width="0.0128%" height="15" fill="rgb(228,112,42)" fg:x="13864" fg:w="3"/><text x="59.3262%" y="3199.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.0932%" y="3173" width="0.0128%" height="15" fill="rgb(245,38,20)" fg:x="13868" fg:w="3"/><text x="59.3432%" y="3183.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0932%" y="3157" width="0.0128%" height="15" fill="rgb(207,64,12)" fg:x="13868" fg:w="3"/><text x="59.3432%" y="3167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0932%" y="3141" width="0.0128%" height="15" fill="rgb(251,135,42)" fg:x="13868" fg:w="3"/><text x="59.3432%" y="3151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.0932%" y="3125" width="0.0128%" height="15" fill="rgb(249,0,31)" fg:x="13868" fg:w="3"/><text x="59.3432%" y="3135.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.0932%" y="3109" width="0.0128%" height="15" fill="rgb(206,50,26)" fg:x="13868" fg:w="3"/><text x="59.3432%" y="3119.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.0932%" y="3093" width="0.0128%" height="15" fill="rgb(238,84,17)" fg:x="13868" fg:w="3"/><text x="59.3432%" y="3103.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.0932%" y="3077" width="0.0128%" height="15" fill="rgb(221,70,10)" fg:x="13868" fg:w="3"/><text x="59.3432%" y="3087.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (11 samples, 0.05%)</title><rect x="59.0932%" y="3285" width="0.0469%" height="15" fill="rgb(251,66,28)" fg:x="13868" fg:w="11"/><text x="59.3432%" y="3295.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="59.0932%" y="3269" width="0.0469%" height="15" fill="rgb(218,30,29)" fg:x="13868" fg:w="11"/><text x="59.3432%" y="3279.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.0932%" y="3253" width="0.0469%" height="15" fill="rgb(237,55,33)" fg:x="13868" fg:w="11"/><text x="59.3432%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.0932%" y="3237" width="0.0469%" height="15" fill="rgb(243,33,0)" fg:x="13868" fg:w="11"/><text x="59.3432%" y="3247.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.0932%" y="3221" width="0.0469%" height="15" fill="rgb(214,181,13)" fg:x="13868" fg:w="11"/><text x="59.3432%" y="3231.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.0932%" y="3205" width="0.0469%" height="15" fill="rgb(236,30,19)" fg:x="13868" fg:w="11"/><text x="59.3432%" y="3215.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.0932%" y="3189" width="0.0469%" height="15" fill="rgb(225,2,34)" fg:x="13868" fg:w="11"/><text x="59.3432%" y="3199.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (8 samples, 0.03%)</title><rect x="59.1060%" y="3173" width="0.0341%" height="15" fill="rgb(237,80,35)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3183.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.03%)</title><rect x="59.1060%" y="3157" width="0.0341%" height="15" fill="rgb(249,175,48)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3167.50"></text></g><g><title>std::panicking::try (8 samples, 0.03%)</title><rect x="59.1060%" y="3141" width="0.0341%" height="15" fill="rgb(219,214,31)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3151.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.03%)</title><rect x="59.1060%" y="3125" width="0.0341%" height="15" fill="rgb(237,49,31)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3135.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (8 samples, 0.03%)</title><rect x="59.1060%" y="3109" width="0.0341%" height="15" fill="rgb(229,127,14)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (8 samples, 0.03%)</title><rect x="59.1060%" y="3093" width="0.0341%" height="15" fill="rgb(251,159,14)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (8 samples, 0.03%)</title><rect x="59.1060%" y="3077" width="0.0341%" height="15" fill="rgb(234,181,0)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="59.1060%" y="3061" width="0.0341%" height="15" fill="rgb(236,6,2)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (8 samples, 0.03%)</title><rect x="59.1060%" y="3045" width="0.0341%" height="15" fill="rgb(240,164,26)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="59.1060%" y="3029" width="0.0341%" height="15" fill="rgb(233,14,49)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (8 samples, 0.03%)</title><rect x="59.1060%" y="3013" width="0.0341%" height="15" fill="rgb(229,103,47)" fg:x="13871" fg:w="8"/><text x="59.3560%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="59.1145%" y="2997" width="0.0256%" height="15" fill="rgb(237,47,19)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="59.1145%" y="2981" width="0.0256%" height="15" fill="rgb(243,168,48)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2991.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="59.1145%" y="2965" width="0.0256%" height="15" fill="rgb(230,69,43)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="59.1145%" y="2949" width="0.0256%" height="15" fill="rgb(205,45,29)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="59.1145%" y="2933" width="0.0256%" height="15" fill="rgb(248,156,16)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="59.1145%" y="2917" width="0.0256%" height="15" fill="rgb(231,1,33)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="59.1145%" y="2901" width="0.0256%" height="15" fill="rgb(237,227,43)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="59.1145%" y="2885" width="0.0256%" height="15" fill="rgb(208,201,7)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="59.1145%" y="2869" width="0.0256%" height="15" fill="rgb(224,82,24)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="59.1145%" y="2853" width="0.0256%" height="15" fill="rgb(253,95,43)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="59.1145%" y="2837" width="0.0256%" height="15" fill="rgb(243,169,33)" fg:x="13873" fg:w="6"/><text x="59.3645%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="59.1231%" y="2821" width="0.0170%" height="15" fill="rgb(253,54,24)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="59.1231%" y="2805" width="0.0170%" height="15" fill="rgb(252,130,35)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2815.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="59.1231%" y="2789" width="0.0170%" height="15" fill="rgb(210,166,20)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="59.1231%" y="2773" width="0.0170%" height="15" fill="rgb(216,12,42)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="59.1231%" y="2757" width="0.0170%" height="15" fill="rgb(206,8,38)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1231%" y="2741" width="0.0170%" height="15" fill="rgb(242,62,5)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1231%" y="2725" width="0.0170%" height="15" fill="rgb(216,65,2)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.1231%" y="2709" width="0.0170%" height="15" fill="rgb(214,26,8)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="59.1231%" y="2693" width="0.0170%" height="15" fill="rgb(225,138,20)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="59.1231%" y="2677" width="0.0170%" height="15" fill="rgb(228,99,19)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1231%" y="2661" width="0.0170%" height="15" fill="rgb(241,215,12)" fg:x="13875" fg:w="4"/><text x="59.3731%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.1273%" y="2645" width="0.0128%" height="15" fill="rgb(222,157,39)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.1273%" y="2629" width="0.0128%" height="15" fill="rgb(252,119,48)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2639.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.1273%" y="2613" width="0.0128%" height="15" fill="rgb(241,219,34)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.1273%" y="2597" width="0.0128%" height="15" fill="rgb(228,157,11)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.1273%" y="2581" width="0.0128%" height="15" fill="rgb(205,137,3)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1273%" y="2565" width="0.0128%" height="15" fill="rgb(238,173,37)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1273%" y="2549" width="0.0128%" height="15" fill="rgb(219,68,32)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.1273%" y="2533" width="0.0128%" height="15" fill="rgb(240,202,21)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="59.1273%" y="2517" width="0.0128%" height="15" fill="rgb(211,2,8)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="59.1273%" y="2501" width="0.0128%" height="15" fill="rgb(252,124,2)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2511.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="59.1273%" y="2485" width="0.0128%" height="15" fill="rgb(233,95,37)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="59.1273%" y="2469" width="0.0128%" height="15" fill="rgb(209,14,15)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2479.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="59.1273%" y="2453" width="0.0128%" height="15" fill="rgb(252,130,7)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2463.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="59.1273%" y="2437" width="0.0128%" height="15" fill="rgb(241,22,30)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2447.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="59.1273%" y="2421" width="0.0128%" height="15" fill="rgb(237,48,15)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2431.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1273%" y="2405" width="0.0128%" height="15" fill="rgb(245,190,28)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1273%" y="2389" width="0.0128%" height="15" fill="rgb(237,183,13)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="59.1273%" y="2373" width="0.0128%" height="15" fill="rgb(207,86,0)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1273%" y="2357" width="0.0128%" height="15" fill="rgb(231,50,34)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2367.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="59.1273%" y="2341" width="0.0128%" height="15" fill="rgb(249,174,3)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2351.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="59.1273%" y="2325" width="0.0128%" height="15" fill="rgb(238,29,44)" fg:x="13876" fg:w="3"/><text x="59.3773%" y="2335.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.1401%" y="501" width="0.0128%" height="15" fill="rgb(208,215,11)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="511.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1401%" y="485" width="0.0128%" height="15" fill="rgb(226,32,50)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1401%" y="469" width="0.0128%" height="15" fill="rgb(226,139,13)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.1401%" y="453" width="0.0128%" height="15" fill="rgb(252,122,36)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="463.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="59.1401%" y="437" width="0.0128%" height="15" fill="rgb(250,48,44)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="447.50"></text></g><g><title><rayon::iter::map::MapFolder<C,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="59.1401%" y="421" width="0.0128%" height="15" fill="rgb(234,68,12)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="431.50"></text></g><g><title>rayon::iter::plumbing::Folder::consume_iter (3 samples, 0.01%)</title><rect x="59.1401%" y="405" width="0.0128%" height="15" fill="rgb(207,96,7)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="415.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="59.1401%" y="389" width="0.0128%" height="15" fill="rgb(230,118,21)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="399.50"></text></g><g><title>core::option::Option<T>::map (3 samples, 0.01%)</title><rect x="59.1401%" y="373" width="0.0128%" height="15" fill="rgb(240,58,36)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="383.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (3 samples, 0.01%)</title><rect x="59.1401%" y="357" width="0.0128%" height="15" fill="rgb(237,186,20)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="367.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnMut<A> for &F>::call_mut (3 samples, 0.01%)</title><rect x="59.1401%" y="341" width="0.0128%" height="15" fill="rgb(248,23,45)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="351.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1401%" y="325" width="0.0128%" height="15" fill="rgb(243,190,47)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="335.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="59.1401%" y="309" width="0.0128%" height="15" fill="rgb(219,124,35)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="319.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="59.1401%" y="293" width="0.0128%" height="15" fill="rgb(235,141,1)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="303.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="59.1401%" y="277" width="0.0128%" height="15" fill="rgb(219,165,49)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="287.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (3 samples, 0.01%)</title><rect x="59.1401%" y="261" width="0.0128%" height="15" fill="rgb(230,81,2)" fg:x="13879" fg:w="3"/><text x="59.3901%" y="271.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (5 samples, 0.02%)</title><rect x="59.1401%" y="789" width="0.0213%" height="15" fill="rgb(251,212,12)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="799.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (5 samples, 0.02%)</title><rect x="59.1401%" y="773" width="0.0213%" height="15" fill="rgb(219,32,26)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="59.1401%" y="757" width="0.0213%" height="15" fill="rgb(229,103,30)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="59.1401%" y="741" width="0.0213%" height="15" fill="rgb(250,67,30)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="751.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="59.1401%" y="725" width="0.0213%" height="15" fill="rgb(205,155,16)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="59.1401%" y="709" width="0.0213%" height="15" fill="rgb(230,180,17)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="719.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="59.1401%" y="693" width="0.0213%" height="15" fill="rgb(232,101,47)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="703.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (5 samples, 0.02%)</title><rect x="59.1401%" y="677" width="0.0213%" height="15" fill="rgb(205,56,51)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="687.50"></text></g><g><title>std::panic::catch_unwind (5 samples, 0.02%)</title><rect x="59.1401%" y="661" width="0.0213%" height="15" fill="rgb(233,24,8)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="671.50"></text></g><g><title>std::panicking::try (5 samples, 0.02%)</title><rect x="59.1401%" y="645" width="0.0213%" height="15" fill="rgb(213,153,27)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="655.50"></text></g><g><title>std::panicking::try::do_call (5 samples, 0.02%)</title><rect x="59.1401%" y="629" width="0.0213%" height="15" fill="rgb(223,144,41)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="639.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (5 samples, 0.02%)</title><rect x="59.1401%" y="613" width="0.0213%" height="15" fill="rgb(208,83,40)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="623.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (5 samples, 0.02%)</title><rect x="59.1401%" y="597" width="0.0213%" height="15" fill="rgb(246,81,21)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (5 samples, 0.02%)</title><rect x="59.1401%" y="581" width="0.0213%" height="15" fill="rgb(210,9,12)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="59.1401%" y="565" width="0.0213%" height="15" fill="rgb(241,150,41)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="575.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="59.1401%" y="549" width="0.0213%" height="15" fill="rgb(240,65,53)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="59.1401%" y="533" width="0.0213%" height="15" fill="rgb(237,21,4)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (5 samples, 0.02%)</title><rect x="59.1401%" y="517" width="0.0213%" height="15" fill="rgb(238,31,21)" fg:x="13879" fg:w="5"/><text x="59.3901%" y="527.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="59.1614%" y="613" width="0.0170%" height="15" fill="rgb(240,212,17)" fg:x="13884" fg:w="4"/><text x="59.4114%" y="623.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1614%" y="597" width="0.0170%" height="15" fill="rgb(223,228,0)" fg:x="13884" fg:w="4"/><text x="59.4114%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1614%" y="581" width="0.0170%" height="15" fill="rgb(219,128,24)" fg:x="13884" fg:w="4"/><text x="59.4114%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.1614%" y="565" width="0.0170%" height="15" fill="rgb(215,179,52)" fg:x="13884" fg:w="4"/><text x="59.4114%" y="575.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="59.1614%" y="549" width="0.0170%" height="15" fill="rgb(249,47,2)" fg:x="13884" fg:w="4"/><text x="59.4114%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="59.1614%" y="533" width="0.0170%" height="15" fill="rgb(208,200,41)" fg:x="13884" fg:w="4"/><text x="59.4114%" y="543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1614%" y="517" width="0.0170%" height="15" fill="rgb(222,210,15)" fg:x="13884" fg:w="4"/><text x="59.4114%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="59.1401%" y="3285" width="0.0469%" height="15" fill="rgb(226,78,41)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3295.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="59.1401%" y="3269" width="0.0469%" height="15" fill="rgb(219,43,0)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3279.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="3253" width="0.0469%" height="15" fill="rgb(226,153,29)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3263.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="3237" width="0.0469%" height="15" fill="rgb(253,172,1)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3247.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="3221" width="0.0469%" height="15" fill="rgb(236,68,40)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3231.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="59.1401%" y="3205" width="0.0469%" height="15" fill="rgb(217,136,9)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3215.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="3189" width="0.0469%" height="15" fill="rgb(206,26,52)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3199.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="3173" width="0.0469%" height="15" fill="rgb(244,197,9)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3183.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="3157" width="0.0469%" height="15" fill="rgb(249,74,43)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3167.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="3141" width="0.0469%" height="15" fill="rgb(249,24,8)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3151.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="3125" width="0.0469%" height="15" fill="rgb(229,91,0)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3135.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="3109" width="0.0469%" height="15" fill="rgb(246,175,42)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="3093" width="0.0469%" height="15" fill="rgb(244,85,15)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="3077" width="0.0469%" height="15" fill="rgb(221,196,43)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="3061" width="0.0469%" height="15" fill="rgb(227,199,43)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="3045" width="0.0469%" height="15" fill="rgb(241,192,14)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="3029" width="0.0469%" height="15" fill="rgb(252,73,16)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="3013" width="0.0469%" height="15" fill="rgb(243,43,13)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="2997" width="0.0469%" height="15" fill="rgb(236,193,39)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="2981" width="0.0469%" height="15" fill="rgb(247,84,45)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2991.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="2965" width="0.0469%" height="15" fill="rgb(236,149,27)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="2949" width="0.0469%" height="15" fill="rgb(235,96,2)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="2933" width="0.0469%" height="15" fill="rgb(231,89,6)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2917" width="0.0469%" height="15" fill="rgb(244,12,5)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2901" width="0.0469%" height="15" fill="rgb(219,17,17)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="2885" width="0.0469%" height="15" fill="rgb(226,23,16)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="2869" width="0.0469%" height="15" fill="rgb(232,164,45)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="2853" width="0.0469%" height="15" fill="rgb(207,184,14)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2837" width="0.0469%" height="15" fill="rgb(217,91,14)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="2821" width="0.0469%" height="15" fill="rgb(253,89,9)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="2805" width="0.0469%" height="15" fill="rgb(207,107,48)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2815.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="2789" width="0.0469%" height="15" fill="rgb(214,228,38)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="2773" width="0.0469%" height="15" fill="rgb(205,45,21)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="2757" width="0.0469%" height="15" fill="rgb(226,2,36)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2741" width="0.0469%" height="15" fill="rgb(240,87,47)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2725" width="0.0469%" height="15" fill="rgb(243,58,11)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="2709" width="0.0469%" height="15" fill="rgb(248,124,30)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="2693" width="0.0469%" height="15" fill="rgb(222,64,52)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="2677" width="0.0469%" height="15" fill="rgb(222,210,17)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2661" width="0.0469%" height="15" fill="rgb(208,183,34)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="59.1401%" y="2645" width="0.0469%" height="15" fill="rgb(206,37,31)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="59.1401%" y="2629" width="0.0469%" height="15" fill="rgb(235,170,27)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2639.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2613" width="0.0469%" height="15" fill="rgb(205,144,44)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2623.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2597" width="0.0469%" height="15" fill="rgb(211,6,52)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2607.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2581" width="0.0469%" height="15" fill="rgb(217,92,47)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2591.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="59.1401%" y="2565" width="0.0469%" height="15" fill="rgb(228,117,48)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2575.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="2549" width="0.0469%" height="15" fill="rgb(215,60,40)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2559.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="2533" width="0.0469%" height="15" fill="rgb(226,24,35)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2543.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="2517" width="0.0469%" height="15" fill="rgb(210,140,46)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2527.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="2501" width="0.0469%" height="15" fill="rgb(205,188,14)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2511.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="2485" width="0.0469%" height="15" fill="rgb(231,141,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2495.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2469" width="0.0469%" height="15" fill="rgb(237,71,46)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2479.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2453" width="0.0469%" height="15" fill="rgb(244,159,8)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2437" width="0.0469%" height="15" fill="rgb(236,45,31)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="2421" width="0.0469%" height="15" fill="rgb(226,221,42)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2431.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="2405" width="0.0469%" height="15" fill="rgb(228,62,41)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2415.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="2389" width="0.0469%" height="15" fill="rgb(213,225,16)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2399.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2373" width="0.0469%" height="15" fill="rgb(243,44,24)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="59.1401%" y="2357" width="0.0469%" height="15" fill="rgb(233,192,28)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="59.1401%" y="2341" width="0.0469%" height="15" fill="rgb(251,111,17)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2351.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2325" width="0.0469%" height="15" fill="rgb(218,213,29)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2335.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2309" width="0.0469%" height="15" fill="rgb(235,22,39)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2319.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2293" width="0.0469%" height="15" fill="rgb(208,215,23)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2303.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="59.1401%" y="2277" width="0.0469%" height="15" fill="rgb(210,9,45)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2287.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="2261" width="0.0469%" height="15" fill="rgb(218,16,34)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2271.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="2245" width="0.0469%" height="15" fill="rgb(213,28,19)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2255.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="2229" width="0.0469%" height="15" fill="rgb(205,102,11)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2239.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="2213" width="0.0469%" height="15" fill="rgb(215,84,0)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2223.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="2197" width="0.0469%" height="15" fill="rgb(216,191,0)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2207.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2181" width="0.0469%" height="15" fill="rgb(218,22,32)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2191.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2165" width="0.0469%" height="15" fill="rgb(229,176,43)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2149" width="0.0469%" height="15" fill="rgb(247,10,2)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="2133" width="0.0469%" height="15" fill="rgb(207,43,24)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2143.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="2117" width="0.0469%" height="15" fill="rgb(249,154,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2127.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="2101" width="0.0469%" height="15" fill="rgb(250,51,12)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2111.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="2085" width="0.0469%" height="15" fill="rgb(215,183,39)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2095.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="59.1401%" y="2069" width="0.0469%" height="15" fill="rgb(239,92,3)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2079.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="59.1401%" y="2053" width="0.0469%" height="15" fill="rgb(210,179,53)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2063.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2037" width="0.0469%" height="15" fill="rgb(234,128,5)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2047.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2021" width="0.0469%" height="15" fill="rgb(252,1,0)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2031.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="2005" width="0.0469%" height="15" fill="rgb(222,19,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="2015.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="59.1401%" y="1989" width="0.0469%" height="15" fill="rgb(243,107,32)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1999.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="1973" width="0.0469%" height="15" fill="rgb(215,134,27)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1983.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="1957" width="0.0469%" height="15" fill="rgb(232,36,38)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1967.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="1941" width="0.0469%" height="15" fill="rgb(246,145,40)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1951.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="1925" width="0.0469%" height="15" fill="rgb(218,45,24)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1935.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="1909" width="0.0469%" height="15" fill="rgb(217,214,27)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1919.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1893" width="0.0469%" height="15" fill="rgb(230,83,28)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1903.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1877" width="0.0469%" height="15" fill="rgb(216,17,24)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1861" width="0.0469%" height="15" fill="rgb(251,214,47)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1871.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="1845" width="0.0469%" height="15" fill="rgb(216,222,6)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1855.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="1829" width="0.0469%" height="15" fill="rgb(218,193,22)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1839.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="1813" width="0.0469%" height="15" fill="rgb(213,81,52)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1823.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1797" width="0.0469%" height="15" fill="rgb(205,216,33)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1807.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="1781" width="0.0469%" height="15" fill="rgb(223,26,52)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1791.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="1765" width="0.0469%" height="15" fill="rgb(243,86,4)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1775.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="1749" width="0.0469%" height="15" fill="rgb(247,171,16)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1759.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="1733" width="0.0469%" height="15" fill="rgb(212,99,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1743.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="1717" width="0.0469%" height="15" fill="rgb(228,16,43)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1727.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1701" width="0.0469%" height="15" fill="rgb(224,224,2)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1711.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1685" width="0.0469%" height="15" fill="rgb(205,81,51)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1695.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="1669" width="0.0469%" height="15" fill="rgb(223,205,31)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1679.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="1653" width="0.0469%" height="15" fill="rgb(251,135,28)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1663.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="1637" width="0.0469%" height="15" fill="rgb(225,60,2)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1647.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1621" width="0.0469%" height="15" fill="rgb(222,28,9)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1631.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="1605" width="0.0469%" height="15" fill="rgb(229,216,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1615.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="1589" width="0.0469%" height="15" fill="rgb(226,175,50)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1599.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="1573" width="0.0469%" height="15" fill="rgb(252,140,15)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1583.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="1557" width="0.0469%" height="15" fill="rgb(243,118,42)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1567.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="1541" width="0.0469%" height="15" fill="rgb(234,66,10)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1525" width="0.0469%" height="15" fill="rgb(220,46,49)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1535.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1509" width="0.0469%" height="15" fill="rgb(227,105,39)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1519.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="1493" width="0.0469%" height="15" fill="rgb(215,120,30)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1503.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="1477" width="0.0469%" height="15" fill="rgb(236,39,40)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1487.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="1461" width="0.0469%" height="15" fill="rgb(205,129,16)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1471.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1445" width="0.0469%" height="15" fill="rgb(233,224,30)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1455.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (11 samples, 0.05%)</title><rect x="59.1401%" y="1429" width="0.0469%" height="15" fill="rgb(235,174,21)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1439.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="59.1401%" y="1413" width="0.0469%" height="15" fill="rgb(217,146,50)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1423.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="1397" width="0.0469%" height="15" fill="rgb(244,222,53)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1407.50"></text></g><g><title>rayon_core::job::JobRef::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="1381" width="0.0469%" height="15" fill="rgb(241,6,10)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1391.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (11 samples, 0.05%)</title><rect x="59.1401%" y="1365" width="0.0469%" height="15" fill="rgb(243,216,2)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1375.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (11 samples, 0.05%)</title><rect x="59.1401%" y="1349" width="0.0469%" height="15" fill="rgb(226,155,37)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1359.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="1333" width="0.0469%" height="15" fill="rgb(253,10,31)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1343.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="1317" width="0.0469%" height="15" fill="rgb(249,214,11)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1327.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="1301" width="0.0469%" height="15" fill="rgb(208,26,10)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1311.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="1285" width="0.0469%" height="15" fill="rgb(235,192,9)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1295.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="1269" width="0.0469%" height="15" fill="rgb(223,7,49)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1279.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1253" width="0.0469%" height="15" fill="rgb(239,177,27)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1237" width="0.0469%" height="15" fill="rgb(216,149,44)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1247.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1221" width="0.0469%" height="15" fill="rgb(221,178,11)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1231.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="1205" width="0.0469%" height="15" fill="rgb(223,28,27)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1215.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="1189" width="0.0469%" height="15" fill="rgb(215,134,31)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1199.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="1173" width="0.0469%" height="15" fill="rgb(215,200,40)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1183.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1157" width="0.0469%" height="15" fill="rgb(242,194,48)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1167.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="1141" width="0.0469%" height="15" fill="rgb(205,144,25)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="1125" width="0.0469%" height="15" fill="rgb(229,129,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1135.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="1109" width="0.0469%" height="15" fill="rgb(241,132,26)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="1093" width="0.0469%" height="15" fill="rgb(247,113,15)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1103.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="1077" width="0.0469%" height="15" fill="rgb(247,176,36)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1061" width="0.0469%" height="15" fill="rgb(232,100,2)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="1045" width="0.0469%" height="15" fill="rgb(253,165,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="1029" width="0.0469%" height="15" fill="rgb(252,195,42)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1039.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="1013" width="0.0469%" height="15" fill="rgb(246,47,46)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="997" width="0.0469%" height="15" fill="rgb(229,168,46)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="1007.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="981" width="0.0469%" height="15" fill="rgb(230,90,44)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="991.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (11 samples, 0.05%)</title><rect x="59.1401%" y="965" width="0.0469%" height="15" fill="rgb(227,37,46)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="975.50"></text></g><g><title>std::panic::catch_unwind (11 samples, 0.05%)</title><rect x="59.1401%" y="949" width="0.0469%" height="15" fill="rgb(249,111,49)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="959.50"></text></g><g><title>std::panicking::try (11 samples, 0.05%)</title><rect x="59.1401%" y="933" width="0.0469%" height="15" fill="rgb(243,106,25)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="943.50"></text></g><g><title>std::panicking::try::do_call (11 samples, 0.05%)</title><rect x="59.1401%" y="917" width="0.0469%" height="15" fill="rgb(252,33,14)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="927.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (11 samples, 0.05%)</title><rect x="59.1401%" y="901" width="0.0469%" height="15" fill="rgb(205,168,20)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="911.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="885" width="0.0469%" height="15" fill="rgb(230,176,54)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="869" width="0.0469%" height="15" fill="rgb(230,150,42)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="59.1401%" y="853" width="0.0469%" height="15" fill="rgb(253,108,40)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="863.50"></text></g><g><title>rayon_core::join::join_context (11 samples, 0.05%)</title><rect x="59.1401%" y="837" width="0.0469%" height="15" fill="rgb(253,34,49)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="59.1401%" y="821" width="0.0469%" height="15" fill="rgb(210,24,9)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="831.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (11 samples, 0.05%)</title><rect x="59.1401%" y="805" width="0.0469%" height="15" fill="rgb(213,78,21)" fg:x="13879" fg:w="11"/><text x="59.3901%" y="815.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="59.1614%" y="789" width="0.0256%" height="15" fill="rgb(240,25,46)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="799.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="59.1614%" y="773" width="0.0256%" height="15" fill="rgb(215,11,51)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="783.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="59.1614%" y="757" width="0.0256%" height="15" fill="rgb(238,55,4)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="767.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="59.1614%" y="741" width="0.0256%" height="15" fill="rgb(228,199,50)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="751.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="59.1614%" y="725" width="0.0256%" height="15" fill="rgb(242,114,9)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="735.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="59.1614%" y="709" width="0.0256%" height="15" fill="rgb(250,53,27)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="59.1614%" y="693" width="0.0256%" height="15" fill="rgb(237,3,9)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="59.1614%" y="677" width="0.0256%" height="15" fill="rgb(230,97,50)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="687.50"></text></g><g><title>rayon_core::join::join_context (6 samples, 0.03%)</title><rect x="59.1614%" y="661" width="0.0256%" height="15" fill="rgb(209,40,5)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="59.1614%" y="645" width="0.0256%" height="15" fill="rgb(237,74,27)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="655.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (6 samples, 0.03%)</title><rect x="59.1614%" y="629" width="0.0256%" height="15" fill="rgb(249,162,47)" fg:x="13884" fg:w="6"/><text x="59.4114%" y="639.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="59.1870%" y="2293" width="0.0128%" height="15" fill="rgb(227,190,7)" fg:x="13890" fg:w="3"/><text x="59.4370%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="59.1870%" y="2277" width="0.0128%" height="15" fill="rgb(235,161,21)" fg:x="13890" fg:w="3"/><text x="59.4370%" y="2287.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="59.1870%" y="2997" width="0.0170%" height="15" fill="rgb(243,185,31)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="3007.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2981" width="0.0170%" height="15" fill="rgb(252,75,0)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2965" width="0.0170%" height="15" fill="rgb(216,121,1)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.1870%" y="2949" width="0.0170%" height="15" fill="rgb(229,69,33)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2959.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="59.1870%" y="2933" width="0.0170%" height="15" fill="rgb(234,99,22)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2943.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="59.1870%" y="2917" width="0.0170%" height="15" fill="rgb(221,131,46)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2927.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2901" width="0.0170%" height="15" fill="rgb(250,197,20)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2911.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="59.1870%" y="2885" width="0.0170%" height="15" fill="rgb(236,14,7)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2895.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="59.1870%" y="2869" width="0.0170%" height="15" fill="rgb(248,168,30)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2879.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="59.1870%" y="2853" width="0.0170%" height="15" fill="rgb(229,174,32)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2863.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="59.1870%" y="2837" width="0.0170%" height="15" fill="rgb(230,23,20)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2847.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="59.1870%" y="2821" width="0.0170%" height="15" fill="rgb(207,57,24)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2805" width="0.0170%" height="15" fill="rgb(236,68,4)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2789" width="0.0170%" height="15" fill="rgb(206,127,7)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.1870%" y="2773" width="0.0170%" height="15" fill="rgb(224,67,23)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="59.1870%" y="2757" width="0.0170%" height="15" fill="rgb(205,13,0)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="59.1870%" y="2741" width="0.0170%" height="15" fill="rgb(218,190,8)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2725" width="0.0170%" height="15" fill="rgb(224,19,25)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (4 samples, 0.02%)</title><rect x="59.1870%" y="2709" width="0.0170%" height="15" fill="rgb(218,135,9)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (4 samples, 0.02%)</title><rect x="59.1870%" y="2693" width="0.0170%" height="15" fill="rgb(244,187,4)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2703.50"></text></g><g><title>std::panicking::try (4 samples, 0.02%)</title><rect x="59.1870%" y="2677" width="0.0170%" height="15" fill="rgb(227,37,41)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (4 samples, 0.02%)</title><rect x="59.1870%" y="2661" width="0.0170%" height="15" fill="rgb(253,157,16)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (4 samples, 0.02%)</title><rect x="59.1870%" y="2645" width="0.0170%" height="15" fill="rgb(207,204,24)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2629" width="0.0170%" height="15" fill="rgb(231,62,54)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2613" width="0.0170%" height="15" fill="rgb(219,45,13)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.1870%" y="2597" width="0.0170%" height="15" fill="rgb(241,81,16)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="59.1870%" y="2581" width="0.0170%" height="15" fill="rgb(241,226,34)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.1870%" y="2565" width="0.0170%" height="15" fill="rgb(250,182,9)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2575.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.1870%" y="2549" width="0.0170%" height="15" fill="rgb(253,90,40)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="59.1870%" y="2533" width="0.0170%" height="15" fill="rgb(215,102,21)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.1870%" y="2517" width="0.0170%" height="15" fill="rgb(215,168,22)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.1870%" y="2501" width="0.0170%" height="15" fill="rgb(228,211,52)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="59.1870%" y="2485" width="0.0170%" height="15" fill="rgb(206,95,44)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2495.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2469" width="0.0170%" height="15" fill="rgb(252,23,39)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2453" width="0.0170%" height="15" fill="rgb(248,65,44)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="59.1870%" y="2437" width="0.0170%" height="15" fill="rgb(220,86,24)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="59.1870%" y="2421" width="0.0170%" height="15" fill="rgb(236,134,54)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="59.1870%" y="2405" width="0.0170%" height="15" fill="rgb(243,56,10)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2415.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="59.1870%" y="2389" width="0.0170%" height="15" fill="rgb(208,191,36)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="59.1870%" y="2373" width="0.0170%" height="15" fill="rgb(243,196,46)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="59.1870%" y="2357" width="0.0170%" height="15" fill="rgb(213,151,53)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="59.1870%" y="2341" width="0.0170%" height="15" fill="rgb(251,60,46)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.1870%" y="2325" width="0.0170%" height="15" fill="rgb(236,219,50)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.1870%" y="2309" width="0.0170%" height="15" fill="rgb(236,30,25)" fg:x="13890" fg:w="4"/><text x="59.4370%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="59.2125%" y="2645" width="0.0170%" height="15" fill="rgb(221,74,43)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2125%" y="2629" width="0.0170%" height="15" fill="rgb(223,194,24)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2125%" y="2613" width="0.0170%" height="15" fill="rgb(235,142,10)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.2125%" y="2597" width="0.0170%" height="15" fill="rgb(249,151,22)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="59.2125%" y="2581" width="0.0170%" height="15" fill="rgb(220,24,7)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.2125%" y="2565" width="0.0170%" height="15" fill="rgb(230,35,53)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2575.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.2125%" y="2549" width="0.0170%" height="15" fill="rgb(248,154,37)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="59.2125%" y="2533" width="0.0170%" height="15" fill="rgb(238,118,53)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.2125%" y="2517" width="0.0170%" height="15" fill="rgb(212,203,49)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.2125%" y="2501" width="0.0170%" height="15" fill="rgb(235,100,8)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="59.2125%" y="2485" width="0.0170%" height="15" fill="rgb(234,160,41)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2495.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2125%" y="2469" width="0.0170%" height="15" fill="rgb(248,82,37)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2125%" y="2453" width="0.0170%" height="15" fill="rgb(253,186,52)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="59.2125%" y="2437" width="0.0170%" height="15" fill="rgb(224,44,14)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2125%" y="2421" width="0.0170%" height="15" fill="rgb(234,45,45)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="59.2125%" y="2405" width="0.0170%" height="15" fill="rgb(219,81,31)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2415.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="59.2125%" y="2389" width="0.0170%" height="15" fill="rgb(210,141,12)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="59.2125%" y="2373" width="0.0170%" height="15" fill="rgb(223,164,25)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="59.2125%" y="2357" width="0.0170%" height="15" fill="rgb(215,227,51)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="59.2125%" y="2341" width="0.0170%" height="15" fill="rgb(212,186,38)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.2125%" y="2325" width="0.0170%" height="15" fill="rgb(209,213,6)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.2125%" y="2309" width="0.0170%" height="15" fill="rgb(253,215,17)" fg:x="13896" fg:w="4"/><text x="59.4625%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="59.2296%" y="2309" width="0.0128%" height="15" fill="rgb(250,88,23)" fg:x="13900" fg:w="3"/><text x="59.4796%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="59.2296%" y="2293" width="0.0128%" height="15" fill="rgb(229,44,39)" fg:x="13900" fg:w="3"/><text x="59.4796%" y="2303.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="59.2296%" y="2277" width="0.0128%" height="15" fill="rgb(238,15,25)" fg:x="13900" fg:w="3"/><text x="59.4796%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="59.2296%" y="2261" width="0.0128%" height="15" fill="rgb(241,205,6)" fg:x="13900" fg:w="3"/><text x="59.4796%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2296%" y="2245" width="0.0128%" height="15" fill="rgb(231,43,16)" fg:x="13900" fg:w="3"/><text x="59.4796%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2296%" y="2229" width="0.0128%" height="15" fill="rgb(217,120,42)" fg:x="13900" fg:w="3"/><text x="59.4796%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="59.1870%" y="3109" width="0.0682%" height="15" fill="rgb(212,22,4)" fg:x="13890" fg:w="16"/><text x="59.4370%" y="3119.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="59.1870%" y="3093" width="0.0682%" height="15" fill="rgb(229,214,23)" fg:x="13890" fg:w="16"/><text x="59.4370%" y="3103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="59.1870%" y="3077" width="0.0682%" height="15" fill="rgb(229,95,33)" fg:x="13890" fg:w="16"/><text x="59.4370%" y="3087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="59.1870%" y="3061" width="0.0682%" height="15" fill="rgb(237,34,6)" fg:x="13890" fg:w="16"/><text x="59.4370%" y="3071.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="59.1870%" y="3045" width="0.0682%" height="15" fill="rgb(226,196,54)" fg:x="13890" fg:w="16"/><text x="59.4370%" y="3055.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="59.1870%" y="3029" width="0.0682%" height="15" fill="rgb(241,190,7)" fg:x="13890" fg:w="16"/><text x="59.4370%" y="3039.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="59.1870%" y="3013" width="0.0682%" height="15" fill="rgb(244,223,24)" fg:x="13890" fg:w="16"/><text x="59.4370%" y="3023.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="59.2040%" y="2997" width="0.0511%" height="15" fill="rgb(244,101,48)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="3007.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="59.2040%" y="2981" width="0.0511%" height="15" fill="rgb(238,24,13)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2991.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="59.2040%" y="2965" width="0.0511%" height="15" fill="rgb(248,122,50)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2975.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="59.2040%" y="2949" width="0.0511%" height="15" fill="rgb(248,113,31)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2959.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="59.2040%" y="2933" width="0.0511%" height="15" fill="rgb(252,197,50)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="59.2040%" y="2917" width="0.0511%" height="15" fill="rgb(213,140,53)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="59.2040%" y="2901" width="0.0511%" height="15" fill="rgb(245,12,22)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="59.2040%" y="2885" width="0.0511%" height="15" fill="rgb(235,183,48)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="59.2040%" y="2869" width="0.0511%" height="15" fill="rgb(207,20,6)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="59.2040%" y="2853" width="0.0511%" height="15" fill="rgb(220,211,31)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="59.2040%" y="2837" width="0.0511%" height="15" fill="rgb(220,8,24)" fg:x="13894" fg:w="12"/><text x="59.4540%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (10 samples, 0.04%)</title><rect x="59.2125%" y="2821" width="0.0426%" height="15" fill="rgb(230,210,26)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (10 samples, 0.04%)</title><rect x="59.2125%" y="2805" width="0.0426%" height="15" fill="rgb(231,105,7)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2815.50"></text></g><g><title>std::panicking::try (10 samples, 0.04%)</title><rect x="59.2125%" y="2789" width="0.0426%" height="15" fill="rgb(224,40,54)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (10 samples, 0.04%)</title><rect x="59.2125%" y="2773" width="0.0426%" height="15" fill="rgb(225,96,53)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (10 samples, 0.04%)</title><rect x="59.2125%" y="2757" width="0.0426%" height="15" fill="rgb(207,173,15)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (10 samples, 0.04%)</title><rect x="59.2125%" y="2741" width="0.0426%" height="15" fill="rgb(211,193,1)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (10 samples, 0.04%)</title><rect x="59.2125%" y="2725" width="0.0426%" height="15" fill="rgb(240,158,8)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="59.2125%" y="2709" width="0.0426%" height="15" fill="rgb(218,109,19)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (10 samples, 0.04%)</title><rect x="59.2125%" y="2693" width="0.0426%" height="15" fill="rgb(243,39,43)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="59.2125%" y="2677" width="0.0426%" height="15" fill="rgb(232,85,46)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (10 samples, 0.04%)</title><rect x="59.2125%" y="2661" width="0.0426%" height="15" fill="rgb(220,111,24)" fg:x="13896" fg:w="10"/><text x="59.4625%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (6 samples, 0.03%)</title><rect x="59.2296%" y="2645" width="0.0256%" height="15" fill="rgb(212,0,16)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.03%)</title><rect x="59.2296%" y="2629" width="0.0256%" height="15" fill="rgb(246,113,16)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2639.50"></text></g><g><title>std::panicking::try (6 samples, 0.03%)</title><rect x="59.2296%" y="2613" width="0.0256%" height="15" fill="rgb(213,214,48)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.03%)</title><rect x="59.2296%" y="2597" width="0.0256%" height="15" fill="rgb(220,146,53)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (6 samples, 0.03%)</title><rect x="59.2296%" y="2581" width="0.0256%" height="15" fill="rgb(206,154,24)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (6 samples, 0.03%)</title><rect x="59.2296%" y="2565" width="0.0256%" height="15" fill="rgb(213,110,47)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (6 samples, 0.03%)</title><rect x="59.2296%" y="2549" width="0.0256%" height="15" fill="rgb(233,62,50)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="59.2296%" y="2533" width="0.0256%" height="15" fill="rgb(235,68,23)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="59.2296%" y="2517" width="0.0256%" height="15" fill="rgb(254,180,25)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="59.2296%" y="2501" width="0.0256%" height="15" fill="rgb(222,8,7)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2511.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (6 samples, 0.03%)</title><rect x="59.2296%" y="2485" width="0.0256%" height="15" fill="rgb(224,227,9)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (6 samples, 0.03%)</title><rect x="59.2296%" y="2469" width="0.0256%" height="15" fill="rgb(240,222,37)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2479.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="59.2296%" y="2453" width="0.0256%" height="15" fill="rgb(224,6,49)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2463.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (6 samples, 0.03%)</title><rect x="59.2296%" y="2437" width="0.0256%" height="15" fill="rgb(252,104,2)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2447.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (6 samples, 0.03%)</title><rect x="59.2296%" y="2421" width="0.0256%" height="15" fill="rgb(231,95,6)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2431.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (6 samples, 0.03%)</title><rect x="59.2296%" y="2405" width="0.0256%" height="15" fill="rgb(249,5,16)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (6 samples, 0.03%)</title><rect x="59.2296%" y="2389" width="0.0256%" height="15" fill="rgb(215,65,19)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (6 samples, 0.03%)</title><rect x="59.2296%" y="2373" width="0.0256%" height="15" fill="rgb(233,174,9)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (6 samples, 0.03%)</title><rect x="59.2296%" y="2357" width="0.0256%" height="15" fill="rgb(247,224,48)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2367.50"></text></g><g><title>core::ops::function::Fn::call (6 samples, 0.03%)</title><rect x="59.2296%" y="2341" width="0.0256%" height="15" fill="rgb(249,68,35)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2351.50"></text></g><g><title>criterion::analysis::estimates::stats (6 samples, 0.03%)</title><rect x="59.2296%" y="2325" width="0.0256%" height="15" fill="rgb(207,72,36)" fg:x="13900" fg:w="6"/><text x="59.4796%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="59.2424%" y="2309" width="0.0128%" height="15" fill="rgb(222,105,51)" fg:x="13903" fg:w="3"/><text x="59.4924%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="59.2424%" y="2293" width="0.0128%" height="15" fill="rgb(247,11,5)" fg:x="13903" fg:w="3"/><text x="59.4924%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="59.2424%" y="2277" width="0.0128%" height="15" fill="rgb(228,50,14)" fg:x="13903" fg:w="3"/><text x="59.4924%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2424%" y="2261" width="0.0128%" height="15" fill="rgb(228,189,0)" fg:x="13903" fg:w="3"/><text x="59.4924%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2424%" y="2245" width="0.0128%" height="15" fill="rgb(227,225,20)" fg:x="13903" fg:w="3"/><text x="59.4924%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="59.2424%" y="2229" width="0.0128%" height="15" fill="rgb(232,40,25)" fg:x="13903" fg:w="3"/><text x="59.4924%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="59.2424%" y="2213" width="0.0128%" height="15" fill="rgb(215,49,35)" fg:x="13903" fg:w="3"/><text x="59.4924%" y="2223.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="59.2552%" y="3109" width="0.0128%" height="15" fill="rgb(218,134,7)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3119.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="59.2552%" y="3093" width="0.0128%" height="15" fill="rgb(241,25,5)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3103.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="3077" width="0.0128%" height="15" fill="rgb(205,157,23)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3087.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="3061" width="0.0128%" height="15" fill="rgb(234,74,17)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3071.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="3045" width="0.0128%" height="15" fill="rgb(216,115,9)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3055.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="59.2552%" y="3029" width="0.0128%" height="15" fill="rgb(227,84,27)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3039.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2552%" y="3013" width="0.0128%" height="15" fill="rgb(230,7,29)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3023.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2552%" y="2997" width="0.0128%" height="15" fill="rgb(228,9,30)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="3007.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2552%" y="2981" width="0.0128%" height="15" fill="rgb(215,29,31)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2991.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2552%" y="2965" width="0.0128%" height="15" fill="rgb(205,142,13)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2975.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2552%" y="2949" width="0.0128%" height="15" fill="rgb(205,168,45)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2959.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2933" width="0.0128%" height="15" fill="rgb(220,67,47)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2917" width="0.0128%" height="15" fill="rgb(243,117,48)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2901" width="0.0128%" height="15" fill="rgb(228,21,29)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="2885" width="0.0128%" height="15" fill="rgb(214,17,1)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="2869" width="0.0128%" height="15" fill="rgb(212,100,25)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="2853" width="0.0128%" height="15" fill="rgb(217,219,9)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2837" width="0.0128%" height="15" fill="rgb(238,3,36)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2552%" y="2821" width="0.0128%" height="15" fill="rgb(234,107,9)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2552%" y="2805" width="0.0128%" height="15" fill="rgb(242,225,53)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2815.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2552%" y="2789" width="0.0128%" height="15" fill="rgb(205,68,42)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2552%" y="2773" width="0.0128%" height="15" fill="rgb(209,67,39)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2552%" y="2757" width="0.0128%" height="15" fill="rgb(227,185,13)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2741" width="0.0128%" height="15" fill="rgb(214,226,37)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2725" width="0.0128%" height="15" fill="rgb(218,196,1)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="2709" width="0.0128%" height="15" fill="rgb(219,69,18)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="2693" width="0.0128%" height="15" fill="rgb(209,133,24)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="2677" width="0.0128%" height="15" fill="rgb(218,27,2)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2661" width="0.0128%" height="15" fill="rgb(224,176,22)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2671.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.2552%" y="2645" width="0.0128%" height="15" fill="rgb(242,52,27)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2629" width="0.0128%" height="15" fill="rgb(208,10,32)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2613" width="0.0128%" height="15" fill="rgb(241,72,16)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="2597" width="0.0128%" height="15" fill="rgb(253,72,26)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2607.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="2581" width="0.0128%" height="15" fill="rgb(235,56,28)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="2565" width="0.0128%" height="15" fill="rgb(233,172,35)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2549" width="0.0128%" height="15" fill="rgb(232,15,0)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2559.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.2552%" y="2533" width="0.0128%" height="15" fill="rgb(238,156,31)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2543.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2517" width="0.0128%" height="15" fill="rgb(234,204,26)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2501" width="0.0128%" height="15" fill="rgb(243,139,0)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="2485" width="0.0128%" height="15" fill="rgb(238,128,31)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2495.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="2469" width="0.0128%" height="15" fill="rgb(249,8,5)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="2453" width="0.0128%" height="15" fill="rgb(221,228,53)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2463.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2437" width="0.0128%" height="15" fill="rgb(215,130,2)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2447.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.2552%" y="2421" width="0.0128%" height="15" fill="rgb(212,119,54)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2431.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2405" width="0.0128%" height="15" fill="rgb(218,97,25)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2389" width="0.0128%" height="15" fill="rgb(218,72,13)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="2373" width="0.0128%" height="15" fill="rgb(228,37,35)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2383.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="2357" width="0.0128%" height="15" fill="rgb(235,59,1)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2367.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="2341" width="0.0128%" height="15" fill="rgb(253,39,21)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2351.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2325" width="0.0128%" height="15" fill="rgb(238,92,33)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2335.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="59.2552%" y="2309" width="0.0128%" height="15" fill="rgb(227,86,1)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="59.2552%" y="2293" width="0.0128%" height="15" fill="rgb(235,166,14)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2303.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="2277" width="0.0128%" height="15" fill="rgb(209,95,38)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2287.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="2261" width="0.0128%" height="15" fill="rgb(248,184,4)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2271.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="2245" width="0.0128%" height="15" fill="rgb(212,79,51)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2255.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="59.2552%" y="2229" width="0.0128%" height="15" fill="rgb(210,218,32)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2239.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2552%" y="2213" width="0.0128%" height="15" fill="rgb(219,159,31)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2223.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2552%" y="2197" width="0.0128%" height="15" fill="rgb(218,12,48)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2207.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2552%" y="2181" width="0.0128%" height="15" fill="rgb(210,140,45)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2191.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2552%" y="2165" width="0.0128%" height="15" fill="rgb(240,192,3)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2175.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2552%" y="2149" width="0.0128%" height="15" fill="rgb(221,130,27)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2159.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2133" width="0.0128%" height="15" fill="rgb(216,5,52)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2143.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2117" width="0.0128%" height="15" fill="rgb(217,123,9)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2101" width="0.0128%" height="15" fill="rgb(244,50,50)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="2085" width="0.0128%" height="15" fill="rgb(242,65,40)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2095.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="2069" width="0.0128%" height="15" fill="rgb(224,31,46)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2079.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="2053" width="0.0128%" height="15" fill="rgb(217,39,36)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2063.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2037" width="0.0128%" height="15" fill="rgb(242,172,29)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2047.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.2552%" y="2021" width="0.0128%" height="15" fill="rgb(248,129,43)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2031.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="2005" width="0.0128%" height="15" fill="rgb(222,89,6)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="2015.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1989" width="0.0128%" height="15" fill="rgb(229,11,53)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1999.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="1973" width="0.0128%" height="15" fill="rgb(240,99,26)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1983.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="1957" width="0.0128%" height="15" fill="rgb(231,115,21)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1967.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="1941" width="0.0128%" height="15" fill="rgb(210,185,26)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1951.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1925" width="0.0128%" height="15" fill="rgb(251,129,8)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1935.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.2552%" y="1909" width="0.0128%" height="15" fill="rgb(211,172,38)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1919.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1893" width="0.0128%" height="15" fill="rgb(244,89,39)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1903.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1877" width="0.0128%" height="15" fill="rgb(218,212,34)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1887.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="1861" width="0.0128%" height="15" fill="rgb(214,74,5)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1871.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="1845" width="0.0128%" height="15" fill="rgb(207,50,48)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1855.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="1829" width="0.0128%" height="15" fill="rgb(216,75,15)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1839.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1813" width="0.0128%" height="15" fill="rgb(212,84,14)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1823.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="59.2552%" y="1797" width="0.0128%" height="15" fill="rgb(247,108,21)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1807.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="59.2552%" y="1781" width="0.0128%" height="15" fill="rgb(224,175,32)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1791.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="1765" width="0.0128%" height="15" fill="rgb(247,35,28)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1775.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="1749" width="0.0128%" height="15" fill="rgb(216,217,26)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1759.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="1733" width="0.0128%" height="15" fill="rgb(229,192,27)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1743.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="59.2552%" y="1717" width="0.0128%" height="15" fill="rgb(205,175,4)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1727.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2552%" y="1701" width="0.0128%" height="15" fill="rgb(231,43,32)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1711.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2552%" y="1685" width="0.0128%" height="15" fill="rgb(212,99,15)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1695.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2552%" y="1669" width="0.0128%" height="15" fill="rgb(222,174,51)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1679.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2552%" y="1653" width="0.0128%" height="15" fill="rgb(227,127,43)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1663.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2552%" y="1637" width="0.0128%" height="15" fill="rgb(216,46,7)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1647.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1621" width="0.0128%" height="15" fill="rgb(216,67,41)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1631.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1605" width="0.0128%" height="15" fill="rgb(244,190,25)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1615.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1589" width="0.0128%" height="15" fill="rgb(211,198,20)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1599.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="1573" width="0.0128%" height="15" fill="rgb(227,175,2)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1583.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="1557" width="0.0128%" height="15" fill="rgb(222,24,49)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1567.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="1541" width="0.0128%" height="15" fill="rgb(207,222,53)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1551.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1525" width="0.0128%" height="15" fill="rgb(235,36,37)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1535.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (3 samples, 0.01%)</title><rect x="59.2552%" y="1509" width="0.0128%" height="15" fill="rgb(245,215,21)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1519.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="59.2552%" y="1493" width="0.0128%" height="15" fill="rgb(215,57,49)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1503.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="1477" width="0.0128%" height="15" fill="rgb(245,48,19)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1487.50"></text></g><g><title>rayon_core::job::JobRef::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="1461" width="0.0128%" height="15" fill="rgb(227,138,2)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1471.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.01%)</title><rect x="59.2552%" y="1445" width="0.0128%" height="15" fill="rgb(234,78,45)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1455.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (3 samples, 0.01%)</title><rect x="59.2552%" y="1429" width="0.0128%" height="15" fill="rgb(231,198,13)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1439.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2552%" y="1413" width="0.0128%" height="15" fill="rgb(253,137,45)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1423.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2552%" y="1397" width="0.0128%" height="15" fill="rgb(235,80,27)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1407.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2552%" y="1381" width="0.0128%" height="15" fill="rgb(239,130,41)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1391.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2552%" y="1365" width="0.0128%" height="15" fill="rgb(218,99,38)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1375.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2552%" y="1349" width="0.0128%" height="15" fill="rgb(247,82,16)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1359.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1333" width="0.0128%" height="15" fill="rgb(220,173,34)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1343.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1317" width="0.0128%" height="15" fill="rgb(236,109,29)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1327.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1301" width="0.0128%" height="15" fill="rgb(215,90,34)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1311.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="1285" width="0.0128%" height="15" fill="rgb(209,122,27)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1295.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="1269" width="0.0128%" height="15" fill="rgb(240,184,13)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1279.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="1253" width="0.0128%" height="15" fill="rgb(236,114,17)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1263.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1237" width="0.0128%" height="15" fill="rgb(243,96,51)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1247.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2552%" y="1221" width="0.0128%" height="15" fill="rgb(231,179,8)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1231.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2552%" y="1205" width="0.0128%" height="15" fill="rgb(231,10,2)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1215.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2552%" y="1189" width="0.0128%" height="15" fill="rgb(235,51,20)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1199.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2552%" y="1173" width="0.0128%" height="15" fill="rgb(247,182,38)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1183.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2552%" y="1157" width="0.0128%" height="15" fill="rgb(224,166,43)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1167.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1141" width="0.0128%" height="15" fill="rgb(253,13,45)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1125" width="0.0128%" height="15" fill="rgb(252,9,12)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="1109" width="0.0128%" height="15" fill="rgb(243,194,2)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1119.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="1093" width="0.0128%" height="15" fill="rgb(231,132,0)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="1077" width="0.0128%" height="15" fill="rgb(230,88,15)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1087.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="1061" width="0.0128%" height="15" fill="rgb(246,158,4)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1071.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2552%" y="1045" width="0.0128%" height="15" fill="rgb(244,194,19)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1055.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2552%" y="1029" width="0.0128%" height="15" fill="rgb(231,172,40)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1039.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2552%" y="1013" width="0.0128%" height="15" fill="rgb(229,54,38)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1023.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2552%" y="997" width="0.0128%" height="15" fill="rgb(211,12,8)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="1007.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2552%" y="981" width="0.0128%" height="15" fill="rgb(218,170,49)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="991.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="965" width="0.0128%" height="15" fill="rgb(247,137,29)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="949" width="0.0128%" height="15" fill="rgb(244,66,54)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2552%" y="933" width="0.0128%" height="15" fill="rgb(217,219,11)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="943.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2552%" y="917" width="0.0128%" height="15" fill="rgb(205,58,9)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2552%" y="901" width="0.0128%" height="15" fill="rgb(222,225,22)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="911.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2552%" y="885" width="0.0128%" height="15" fill="rgb(240,149,18)" fg:x="13906" fg:w="3"/><text x="59.5052%" y="895.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (3 samples, 0.01%)</title><rect x="59.2679%" y="2821" width="0.0128%" height="15" fill="rgb(217,113,41)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2831.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2805" width="0.0128%" height="15" fill="rgb(232,132,20)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2789" width="0.0128%" height="15" fill="rgb(245,111,37)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2679%" y="2773" width="0.0128%" height="15" fill="rgb(216,126,49)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2783.50"></text></g><g><title>rayon_core::join::join_context (3 samples, 0.01%)</title><rect x="59.2679%" y="2757" width="0.0128%" height="15" fill="rgb(230,4,13)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="59.2679%" y="2741" width="0.0128%" height="15" fill="rgb(220,129,4)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2751.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2725" width="0.0128%" height="15" fill="rgb(219,141,54)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2735.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (3 samples, 0.01%)</title><rect x="59.2679%" y="2709" width="0.0128%" height="15" fill="rgb(250,219,6)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2719.50"></text></g><g><title>std::panic::catch_unwind (3 samples, 0.01%)</title><rect x="59.2679%" y="2693" width="0.0128%" height="15" fill="rgb(245,15,52)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2703.50"></text></g><g><title>std::panicking::try (3 samples, 0.01%)</title><rect x="59.2679%" y="2677" width="0.0128%" height="15" fill="rgb(253,67,18)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2687.50"></text></g><g><title>std::panicking::try::do_call (3 samples, 0.01%)</title><rect x="59.2679%" y="2661" width="0.0128%" height="15" fill="rgb(216,173,40)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2671.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (3 samples, 0.01%)</title><rect x="59.2679%" y="2645" width="0.0128%" height="15" fill="rgb(241,216,2)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2629" width="0.0128%" height="15" fill="rgb(210,60,1)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2613" width="0.0128%" height="15" fill="rgb(209,142,40)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="59.2679%" y="2597" width="0.0128%" height="15" fill="rgb(239,168,10)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="59.2679%" y="2581" width="0.0128%" height="15" fill="rgb(238,6,0)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="59.2679%" y="2565" width="0.0128%" height="15" fill="rgb(252,6,5)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2575.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (3 samples, 0.01%)</title><rect x="59.2679%" y="2549" width="0.0128%" height="15" fill="rgb(210,73,30)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="59.2679%" y="2533" width="0.0128%" height="15" fill="rgb(235,217,25)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="59.2679%" y="2517" width="0.0128%" height="15" fill="rgb(217,65,27)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (3 samples, 0.01%)</title><rect x="59.2679%" y="2501" width="0.0128%" height="15" fill="rgb(212,166,25)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.01%)</title><rect x="59.2679%" y="2485" width="0.0128%" height="15" fill="rgb(207,225,30)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2495.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2469" width="0.0128%" height="15" fill="rgb(252,81,15)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2453" width="0.0128%" height="15" fill="rgb(246,48,51)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (3 samples, 0.01%)</title><rect x="59.2679%" y="2437" width="0.0128%" height="15" fill="rgb(218,108,13)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (3 samples, 0.01%)</title><rect x="59.2679%" y="2421" width="0.0128%" height="15" fill="rgb(222,210,37)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (3 samples, 0.01%)</title><rect x="59.2679%" y="2405" width="0.0128%" height="15" fill="rgb(210,131,18)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2415.50"></text></g><g><title>criterion::analysis::estimates::stats (3 samples, 0.01%)</title><rect x="59.2679%" y="2389" width="0.0128%" height="15" fill="rgb(228,52,46)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="59.2679%" y="2373" width="0.0128%" height="15" fill="rgb(247,37,39)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="59.2679%" y="2357" width="0.0128%" height="15" fill="rgb(218,169,48)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="59.2679%" y="2341" width="0.0128%" height="15" fill="rgb(218,74,22)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2679%" y="2325" width="0.0128%" height="15" fill="rgb(220,125,7)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2679%" y="2309" width="0.0128%" height="15" fill="rgb(217,91,25)" fg:x="13909" fg:w="3"/><text x="59.5179%" y="2319.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (4 samples, 0.02%)</title><rect x="59.2807%" y="2645" width="0.0170%" height="15" fill="rgb(242,191,9)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2655.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2807%" y="2629" width="0.0170%" height="15" fill="rgb(245,86,9)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2807%" y="2613" width="0.0170%" height="15" fill="rgb(214,20,22)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="59.2807%" y="2597" width="0.0170%" height="15" fill="rgb(253,142,22)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="59.2807%" y="2581" width="0.0170%" height="15" fill="rgb(214,157,22)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2591.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.2807%" y="2565" width="0.0170%" height="15" fill="rgb(213,5,54)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2575.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (4 samples, 0.02%)</title><rect x="59.2807%" y="2549" width="0.0170%" height="15" fill="rgb(224,173,9)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2559.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (4 samples, 0.02%)</title><rect x="59.2807%" y="2533" width="0.0170%" height="15" fill="rgb(233,191,10)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2543.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.2807%" y="2517" width="0.0170%" height="15" fill="rgb(233,122,35)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2527.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (4 samples, 0.02%)</title><rect x="59.2807%" y="2501" width="0.0170%" height="15" fill="rgb(206,206,37)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2511.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (4 samples, 0.02%)</title><rect x="59.2807%" y="2485" width="0.0170%" height="15" fill="rgb(228,100,37)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2495.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2807%" y="2469" width="0.0170%" height="15" fill="rgb(253,34,27)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2479.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2807%" y="2453" width="0.0170%" height="15" fill="rgb(223,87,46)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2463.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (4 samples, 0.02%)</title><rect x="59.2807%" y="2437" width="0.0170%" height="15" fill="rgb(233,75,20)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2447.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (4 samples, 0.02%)</title><rect x="59.2807%" y="2421" width="0.0170%" height="15" fill="rgb(237,112,35)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2431.50"></text></g><g><title>core::ops::function::Fn::call (4 samples, 0.02%)</title><rect x="59.2807%" y="2405" width="0.0170%" height="15" fill="rgb(235,219,13)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2415.50"></text></g><g><title>criterion::analysis::estimates::stats (4 samples, 0.02%)</title><rect x="59.2807%" y="2389" width="0.0170%" height="15" fill="rgb(216,22,46)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2399.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="59.2807%" y="2373" width="0.0170%" height="15" fill="rgb(245,67,51)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2383.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="59.2807%" y="2357" width="0.0170%" height="15" fill="rgb(214,2,43)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2367.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="59.2807%" y="2341" width="0.0170%" height="15" fill="rgb(228,82,36)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2351.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.2807%" y="2325" width="0.0170%" height="15" fill="rgb(241,78,44)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2335.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.2807%" y="2309" width="0.0170%" height="15" fill="rgb(216,158,45)" fg:x="13912" fg:w="4"/><text x="59.5307%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (3 samples, 0.01%)</title><rect x="59.2978%" y="2309" width="0.0128%" height="15" fill="rgb(223,174,17)" fg:x="13916" fg:w="3"/><text x="59.5478%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (3 samples, 0.01%)</title><rect x="59.2978%" y="2293" width="0.0128%" height="15" fill="rgb(240,5,3)" fg:x="13916" fg:w="3"/><text x="59.5478%" y="2303.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (3 samples, 0.01%)</title><rect x="59.2978%" y="2277" width="0.0128%" height="15" fill="rgb(254,149,28)" fg:x="13916" fg:w="3"/><text x="59.5478%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (3 samples, 0.01%)</title><rect x="59.2978%" y="2261" width="0.0128%" height="15" fill="rgb(235,0,20)" fg:x="13916" fg:w="3"/><text x="59.5478%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2978%" y="2245" width="0.0128%" height="15" fill="rgb(231,52,17)" fg:x="13916" fg:w="3"/><text x="59.5478%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="59.2978%" y="2229" width="0.0128%" height="15" fill="rgb(229,185,36)" fg:x="13916" fg:w="3"/><text x="59.5478%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (4 samples, 0.02%)</title><rect x="59.3148%" y="2229" width="0.0170%" height="15" fill="rgb(218,46,13)" fg:x="13920" fg:w="4"/><text x="59.5648%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (3 samples, 0.01%)</title><rect x="59.3191%" y="2213" width="0.0128%" height="15" fill="rgb(209,227,46)" fg:x="13921" fg:w="3"/><text x="59.5691%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (16 samples, 0.07%)</title><rect x="59.2679%" y="2933" width="0.0682%" height="15" fill="rgb(208,99,34)" fg:x="13909" fg:w="16"/><text x="59.5179%" y="2943.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (16 samples, 0.07%)</title><rect x="59.2679%" y="2917" width="0.0682%" height="15" fill="rgb(221,88,30)" fg:x="13909" fg:w="16"/><text x="59.5179%" y="2927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (16 samples, 0.07%)</title><rect x="59.2679%" y="2901" width="0.0682%" height="15" fill="rgb(216,109,25)" fg:x="13909" fg:w="16"/><text x="59.5179%" y="2911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.07%)</title><rect x="59.2679%" y="2885" width="0.0682%" height="15" fill="rgb(213,220,36)" fg:x="13909" fg:w="16"/><text x="59.5179%" y="2895.50"></text></g><g><title>rayon_core::join::join_context (16 samples, 0.07%)</title><rect x="59.2679%" y="2869" width="0.0682%" height="15" fill="rgb(222,24,38)" fg:x="13909" fg:w="16"/><text x="59.5179%" y="2879.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.07%)</title><rect x="59.2679%" y="2853" width="0.0682%" height="15" fill="rgb(222,32,32)" fg:x="13909" fg:w="16"/><text x="59.5179%" y="2863.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (16 samples, 0.07%)</title><rect x="59.2679%" y="2837" width="0.0682%" height="15" fill="rgb(219,41,8)" fg:x="13909" fg:w="16"/><text x="59.5179%" y="2847.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (13 samples, 0.06%)</title><rect x="59.2807%" y="2821" width="0.0554%" height="15" fill="rgb(220,50,54)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2831.50"></text></g><g><title>std::panic::catch_unwind (13 samples, 0.06%)</title><rect x="59.2807%" y="2805" width="0.0554%" height="15" fill="rgb(211,201,23)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2815.50"></text></g><g><title>std::panicking::try (13 samples, 0.06%)</title><rect x="59.2807%" y="2789" width="0.0554%" height="15" fill="rgb(245,63,49)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2799.50"></text></g><g><title>std::panicking::try::do_call (13 samples, 0.06%)</title><rect x="59.2807%" y="2773" width="0.0554%" height="15" fill="rgb(215,8,31)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2783.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (13 samples, 0.06%)</title><rect x="59.2807%" y="2757" width="0.0554%" height="15" fill="rgb(224,63,7)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (13 samples, 0.06%)</title><rect x="59.2807%" y="2741" width="0.0554%" height="15" fill="rgb(213,39,52)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="59.2807%" y="2725" width="0.0554%" height="15" fill="rgb(230,63,24)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="59.2807%" y="2709" width="0.0554%" height="15" fill="rgb(230,220,53)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (13 samples, 0.06%)</title><rect x="59.2807%" y="2693" width="0.0554%" height="15" fill="rgb(248,106,40)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="59.2807%" y="2677" width="0.0554%" height="15" fill="rgb(249,169,5)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (13 samples, 0.06%)</title><rect x="59.2807%" y="2661" width="0.0554%" height="15" fill="rgb(242,132,44)" fg:x="13912" fg:w="13"/><text x="59.5307%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (9 samples, 0.04%)</title><rect x="59.2978%" y="2645" width="0.0384%" height="15" fill="rgb(206,58,18)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (9 samples, 0.04%)</title><rect x="59.2978%" y="2629" width="0.0384%" height="15" fill="rgb(244,22,3)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2639.50"></text></g><g><title>std::panicking::try (9 samples, 0.04%)</title><rect x="59.2978%" y="2613" width="0.0384%" height="15" fill="rgb(243,197,4)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (9 samples, 0.04%)</title><rect x="59.2978%" y="2597" width="0.0384%" height="15" fill="rgb(211,38,39)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (9 samples, 0.04%)</title><rect x="59.2978%" y="2581" width="0.0384%" height="15" fill="rgb(224,124,7)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (9 samples, 0.04%)</title><rect x="59.2978%" y="2565" width="0.0384%" height="15" fill="rgb(206,201,47)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (9 samples, 0.04%)</title><rect x="59.2978%" y="2549" width="0.0384%" height="15" fill="rgb(253,5,37)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="59.2978%" y="2533" width="0.0384%" height="15" fill="rgb(207,208,10)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="59.2978%" y="2517" width="0.0384%" height="15" fill="rgb(225,112,27)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="59.2978%" y="2501" width="0.0384%" height="15" fill="rgb(235,180,2)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2511.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (9 samples, 0.04%)</title><rect x="59.2978%" y="2485" width="0.0384%" height="15" fill="rgb(207,109,8)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (9 samples, 0.04%)</title><rect x="59.2978%" y="2469" width="0.0384%" height="15" fill="rgb(238,56,27)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2479.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="59.2978%" y="2453" width="0.0384%" height="15" fill="rgb(251,207,42)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2463.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (9 samples, 0.04%)</title><rect x="59.2978%" y="2437" width="0.0384%" height="15" fill="rgb(215,30,35)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2447.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (9 samples, 0.04%)</title><rect x="59.2978%" y="2421" width="0.0384%" height="15" fill="rgb(234,165,31)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2431.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (9 samples, 0.04%)</title><rect x="59.2978%" y="2405" width="0.0384%" height="15" fill="rgb(220,126,26)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (9 samples, 0.04%)</title><rect x="59.2978%" y="2389" width="0.0384%" height="15" fill="rgb(225,145,17)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (9 samples, 0.04%)</title><rect x="59.2978%" y="2373" width="0.0384%" height="15" fill="rgb(253,69,25)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (9 samples, 0.04%)</title><rect x="59.2978%" y="2357" width="0.0384%" height="15" fill="rgb(217,176,43)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2367.50"></text></g><g><title>core::ops::function::Fn::call (9 samples, 0.04%)</title><rect x="59.2978%" y="2341" width="0.0384%" height="15" fill="rgb(230,141,50)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2351.50"></text></g><g><title>criterion::analysis::estimates::stats (9 samples, 0.04%)</title><rect x="59.2978%" y="2325" width="0.0384%" height="15" fill="rgb(232,107,1)" fg:x="13916" fg:w="9"/><text x="59.5478%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (6 samples, 0.03%)</title><rect x="59.3106%" y="2309" width="0.0256%" height="15" fill="rgb(227,178,9)" fg:x="13919" fg:w="6"/><text x="59.5606%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (6 samples, 0.03%)</title><rect x="59.3106%" y="2293" width="0.0256%" height="15" fill="rgb(213,52,50)" fg:x="13919" fg:w="6"/><text x="59.5606%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (6 samples, 0.03%)</title><rect x="59.3106%" y="2277" width="0.0256%" height="15" fill="rgb(230,165,23)" fg:x="13919" fg:w="6"/><text x="59.5606%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="59.3106%" y="2261" width="0.0256%" height="15" fill="rgb(221,181,33)" fg:x="13919" fg:w="6"/><text x="59.5606%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="59.3106%" y="2245" width="0.0256%" height="15" fill="rgb(233,104,7)" fg:x="13919" fg:w="6"/><text x="59.5606%" y="2255.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (4 samples, 0.02%)</title><rect x="59.3361%" y="2309" width="0.0170%" height="15" fill="rgb(224,136,26)" fg:x="13925" fg:w="4"/><text x="59.5861%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (4 samples, 0.02%)</title><rect x="59.3361%" y="2293" width="0.0170%" height="15" fill="rgb(206,204,29)" fg:x="13925" fg:w="4"/><text x="59.5861%" y="2303.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (4 samples, 0.02%)</title><rect x="59.3361%" y="2277" width="0.0170%" height="15" fill="rgb(242,186,18)" fg:x="13925" fg:w="4"/><text x="59.5861%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (4 samples, 0.02%)</title><rect x="59.3361%" y="2261" width="0.0170%" height="15" fill="rgb(238,61,21)" fg:x="13925" fg:w="4"/><text x="59.5861%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.3361%" y="2245" width="0.0170%" height="15" fill="rgb(208,128,35)" fg:x="13925" fg:w="4"/><text x="59.5861%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="59.3361%" y="2229" width="0.0170%" height="15" fill="rgb(250,94,5)" fg:x="13925" fg:w="4"/><text x="59.5861%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="59.3404%" y="2213" width="0.0128%" height="15" fill="rgb(248,33,14)" fg:x="13926" fg:w="3"/><text x="59.5904%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (5 samples, 0.02%)</title><rect x="59.3532%" y="2229" width="0.0213%" height="15" fill="rgb(228,117,53)" fg:x="13929" fg:w="5"/><text x="59.6032%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (4 samples, 0.02%)</title><rect x="59.3574%" y="2213" width="0.0170%" height="15" fill="rgb(231,9,30)" fg:x="13930" fg:w="4"/><text x="59.6074%" y="2223.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (12 samples, 0.05%)</title><rect x="59.3361%" y="2757" width="0.0511%" height="15" fill="rgb(245,127,27)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2767.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2741" width="0.0511%" height="15" fill="rgb(245,174,22)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2725" width="0.0511%" height="15" fill="rgb(225,38,49)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="59.3361%" y="2709" width="0.0511%" height="15" fill="rgb(249,226,32)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2719.50"></text></g><g><title>rayon_core::join::join_context (12 samples, 0.05%)</title><rect x="59.3361%" y="2693" width="0.0511%" height="15" fill="rgb(221,216,3)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2703.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="59.3361%" y="2677" width="0.0511%" height="15" fill="rgb(216,146,32)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2687.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2661" width="0.0511%" height="15" fill="rgb(219,47,4)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2671.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (12 samples, 0.05%)</title><rect x="59.3361%" y="2645" width="0.0511%" height="15" fill="rgb(216,187,8)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2655.50"></text></g><g><title>std::panic::catch_unwind (12 samples, 0.05%)</title><rect x="59.3361%" y="2629" width="0.0511%" height="15" fill="rgb(216,210,12)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2639.50"></text></g><g><title>std::panicking::try (12 samples, 0.05%)</title><rect x="59.3361%" y="2613" width="0.0511%" height="15" fill="rgb(218,57,38)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2623.50"></text></g><g><title>std::panicking::try::do_call (12 samples, 0.05%)</title><rect x="59.3361%" y="2597" width="0.0511%" height="15" fill="rgb(219,215,38)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2607.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (12 samples, 0.05%)</title><rect x="59.3361%" y="2581" width="0.0511%" height="15" fill="rgb(243,95,38)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2565" width="0.0511%" height="15" fill="rgb(208,139,28)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2549" width="0.0511%" height="15" fill="rgb(207,10,49)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="59.3361%" y="2533" width="0.0511%" height="15" fill="rgb(221,72,11)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="59.3361%" y="2517" width="0.0511%" height="15" fill="rgb(235,210,49)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="59.3361%" y="2501" width="0.0511%" height="15" fill="rgb(222,44,9)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2511.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (12 samples, 0.05%)</title><rect x="59.3361%" y="2485" width="0.0511%" height="15" fill="rgb(250,95,6)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (12 samples, 0.05%)</title><rect x="59.3361%" y="2469" width="0.0511%" height="15" fill="rgb(213,97,20)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2479.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="59.3361%" y="2453" width="0.0511%" height="15" fill="rgb(229,43,25)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2463.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (12 samples, 0.05%)</title><rect x="59.3361%" y="2437" width="0.0511%" height="15" fill="rgb(247,203,53)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2447.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (12 samples, 0.05%)</title><rect x="59.3361%" y="2421" width="0.0511%" height="15" fill="rgb(212,0,0)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2431.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2405" width="0.0511%" height="15" fill="rgb(251,23,17)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2389" width="0.0511%" height="15" fill="rgb(221,187,24)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (12 samples, 0.05%)</title><rect x="59.3361%" y="2373" width="0.0511%" height="15" fill="rgb(219,156,29)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (12 samples, 0.05%)</title><rect x="59.3361%" y="2357" width="0.0511%" height="15" fill="rgb(246,50,7)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2367.50"></text></g><g><title>core::ops::function::Fn::call (12 samples, 0.05%)</title><rect x="59.3361%" y="2341" width="0.0511%" height="15" fill="rgb(209,17,16)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2351.50"></text></g><g><title>criterion::analysis::estimates::stats (12 samples, 0.05%)</title><rect x="59.3361%" y="2325" width="0.0511%" height="15" fill="rgb(254,160,29)" fg:x="13925" fg:w="12"/><text x="59.5861%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="59.3532%" y="2309" width="0.0341%" height="15" fill="rgb(237,64,17)" fg:x="13929" fg:w="8"/><text x="59.6032%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="59.3532%" y="2293" width="0.0341%" height="15" fill="rgb(236,126,29)" fg:x="13929" fg:w="8"/><text x="59.6032%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="59.3532%" y="2277" width="0.0341%" height="15" fill="rgb(227,83,11)" fg:x="13929" fg:w="8"/><text x="59.6032%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="59.3532%" y="2261" width="0.0341%" height="15" fill="rgb(236,117,3)" fg:x="13929" fg:w="8"/><text x="59.6032%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="59.3532%" y="2245" width="0.0341%" height="15" fill="rgb(218,13,54)" fg:x="13929" fg:w="8"/><text x="59.6032%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="59.3745%" y="2229" width="0.0128%" height="15" fill="rgb(206,222,50)" fg:x="13934" fg:w="3"/><text x="59.6245%" y="2239.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (4 samples, 0.02%)</title><rect x="59.4000%" y="2181" width="0.0170%" height="15" fill="rgb(222,3,42)" fg:x="13940" fg:w="4"/><text x="59.6500%" y="2191.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (8 samples, 0.03%)</title><rect x="59.3873%" y="2309" width="0.0341%" height="15" fill="rgb(234,111,49)" fg:x="13937" fg:w="8"/><text x="59.6373%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (8 samples, 0.03%)</title><rect x="59.3873%" y="2293" width="0.0341%" height="15" fill="rgb(229,95,32)" fg:x="13937" fg:w="8"/><text x="59.6373%" y="2303.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (8 samples, 0.03%)</title><rect x="59.3873%" y="2277" width="0.0341%" height="15" fill="rgb(240,91,37)" fg:x="13937" fg:w="8"/><text x="59.6373%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (8 samples, 0.03%)</title><rect x="59.3873%" y="2261" width="0.0341%" height="15" fill="rgb(245,38,12)" fg:x="13937" fg:w="8"/><text x="59.6373%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="59.3873%" y="2245" width="0.0341%" height="15" fill="rgb(233,40,22)" fg:x="13937" fg:w="8"/><text x="59.6373%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="59.3873%" y="2229" width="0.0341%" height="15" fill="rgb(215,188,29)" fg:x="13937" fg:w="8"/><text x="59.6373%" y="2239.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (7 samples, 0.03%)</title><rect x="59.3915%" y="2213" width="0.0298%" height="15" fill="rgb(209,50,5)" fg:x="13938" fg:w="7"/><text x="59.6415%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::shift_tail (6 samples, 0.03%)</title><rect x="59.3958%" y="2197" width="0.0256%" height="15" fill="rgb(243,145,14)" fg:x="13939" fg:w="6"/><text x="59.6458%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="59.4256%" y="2229" width="0.0128%" height="15" fill="rgb(229,169,27)" fg:x="13946" fg:w="3"/><text x="59.6756%" y="2239.50"></text></g><g><title>rayon_core::job::StackJob<L,F,R>::run_inline (13 samples, 0.06%)</title><rect x="59.3873%" y="2581" width="0.0554%" height="15" fill="rgb(241,198,17)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2591.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (13 samples, 0.06%)</title><rect x="59.3873%" y="2565" width="0.0554%" height="15" fill="rgb(254,159,45)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (13 samples, 0.06%)</title><rect x="59.3873%" y="2549" width="0.0554%" height="15" fill="rgb(214,116,10)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="59.3873%" y="2533" width="0.0554%" height="15" fill="rgb(221,33,8)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.06%)</title><rect x="59.3873%" y="2517" width="0.0554%" height="15" fill="rgb(242,104,1)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2527.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="59.3873%" y="2501" width="0.0554%" height="15" fill="rgb(225,158,28)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2511.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (13 samples, 0.06%)</title><rect x="59.3873%" y="2485" width="0.0554%" height="15" fill="rgb(242,106,37)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2495.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (13 samples, 0.06%)</title><rect x="59.3873%" y="2469" width="0.0554%" height="15" fill="rgb(222,180,52)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2479.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="59.3873%" y="2453" width="0.0554%" height="15" fill="rgb(246,95,24)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2463.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (13 samples, 0.06%)</title><rect x="59.3873%" y="2437" width="0.0554%" height="15" fill="rgb(220,52,52)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2447.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (13 samples, 0.06%)</title><rect x="59.3873%" y="2421" width="0.0554%" height="15" fill="rgb(209,45,23)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2431.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (13 samples, 0.06%)</title><rect x="59.3873%" y="2405" width="0.0554%" height="15" fill="rgb(249,49,36)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2415.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (13 samples, 0.06%)</title><rect x="59.3873%" y="2389" width="0.0554%" height="15" fill="rgb(236,199,42)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2399.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (13 samples, 0.06%)</title><rect x="59.3873%" y="2373" width="0.0554%" height="15" fill="rgb(228,179,46)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2383.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (13 samples, 0.06%)</title><rect x="59.3873%" y="2357" width="0.0554%" height="15" fill="rgb(234,175,25)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2367.50"></text></g><g><title>core::ops::function::Fn::call (13 samples, 0.06%)</title><rect x="59.3873%" y="2341" width="0.0554%" height="15" fill="rgb(246,200,3)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2351.50"></text></g><g><title>criterion::analysis::estimates::stats (13 samples, 0.06%)</title><rect x="59.3873%" y="2325" width="0.0554%" height="15" fill="rgb(213,198,2)" fg:x="13937" fg:w="13"/><text x="59.6373%" y="2335.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="59.4213%" y="2309" width="0.0213%" height="15" fill="rgb(221,204,40)" fg:x="13945" fg:w="5"/><text x="59.6713%" y="2319.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="59.4213%" y="2293" width="0.0213%" height="15" fill="rgb(227,127,12)" fg:x="13945" fg:w="5"/><text x="59.6713%" y="2303.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="59.4213%" y="2277" width="0.0213%" height="15" fill="rgb(238,105,43)" fg:x="13945" fg:w="5"/><text x="59.6713%" y="2287.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="59.4213%" y="2261" width="0.0213%" height="15" fill="rgb(227,75,29)" fg:x="13945" fg:w="5"/><text x="59.6713%" y="2271.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="59.4213%" y="2245" width="0.0213%" height="15" fill="rgb(213,94,28)" fg:x="13945" fg:w="5"/><text x="59.6713%" y="2255.50"></text></g><g><title>rayon::slice::quicksort::insertion_sort (3 samples, 0.01%)</title><rect x="59.4469%" y="2149" width="0.0128%" height="15" fill="rgb(246,198,9)" fg:x="13951" fg:w="3"/><text x="59.6969%" y="2159.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (96 samples, 0.41%)</title><rect x="59.0634%" y="3829" width="0.4091%" height="15" fill="rgb(249,204,8)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3839.50"></text></g><g><title><rayon_core::registry::DefaultSpawn as rayon_core::registry::ThreadSpawn>::spawn::_{{closure}} (96 samples, 0.41%)</title><rect x="59.0634%" y="3813" width="0.4091%" height="15" fill="rgb(241,220,53)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3823.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (96 samples, 0.41%)</title><rect x="59.0634%" y="3797" width="0.4091%" height="15" fill="rgb(217,207,36)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3807.50"></text></g><g><title>rayon_core::registry::main_loop (96 samples, 0.41%)</title><rect x="59.0634%" y="3781" width="0.4091%" height="15" fill="rgb(236,9,9)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3791.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_out_of_work (96 samples, 0.41%)</title><rect x="59.0634%" y="3765" width="0.4091%" height="15" fill="rgb(205,110,3)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3775.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until (96 samples, 0.41%)</title><rect x="59.0634%" y="3749" width="0.4091%" height="15" fill="rgb(239,67,39)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3759.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (96 samples, 0.41%)</title><rect x="59.0634%" y="3733" width="0.4091%" height="15" fill="rgb(219,52,51)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3743.50"></text></g><g><title>rayon_core::registry::WorkerThread::execute (96 samples, 0.41%)</title><rect x="59.0634%" y="3717" width="0.4091%" height="15" fill="rgb(213,182,0)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3727.50"></text></g><g><title>rayon_core::job::JobRef::execute (96 samples, 0.41%)</title><rect x="59.0634%" y="3701" width="0.4091%" height="15" fill="rgb(242,78,46)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3711.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (96 samples, 0.41%)</title><rect x="59.0634%" y="3685" width="0.4091%" height="15" fill="rgb(237,1,30)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3695.50"></text></g><g><title>rayon_core::job::JobResult<T>::call (96 samples, 0.41%)</title><rect x="59.0634%" y="3669" width="0.4091%" height="15" fill="rgb(224,90,29)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3679.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (96 samples, 0.41%)</title><rect x="59.0634%" y="3653" width="0.4091%" height="15" fill="rgb(249,197,48)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3663.50"></text></g><g><title>std::panic::catch_unwind (96 samples, 0.41%)</title><rect x="59.0634%" y="3637" width="0.4091%" height="15" fill="rgb(226,93,39)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3647.50"></text></g><g><title>std::panicking::try (96 samples, 0.41%)</title><rect x="59.0634%" y="3621" width="0.4091%" height="15" fill="rgb(224,179,23)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3631.50"></text></g><g><title>std::panicking::try::do_call (96 samples, 0.41%)</title><rect x="59.0634%" y="3605" width="0.4091%" height="15" fill="rgb(249,122,19)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3615.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (96 samples, 0.41%)</title><rect x="59.0634%" y="3589" width="0.4091%" height="15" fill="rgb(219,83,49)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3599.50"></text></g><g><title>rayon_core::job::JobResult<T>::call::_{{closure}} (96 samples, 0.41%)</title><rect x="59.0634%" y="3573" width="0.4091%" height="15" fill="rgb(234,155,35)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3583.50"></text></g><g><title>rayon_core::join::join_context::call_b::_{{closure}} (96 samples, 0.41%)</title><rect x="59.0634%" y="3557" width="0.4091%" height="15" fill="rgb(216,131,8)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3567.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (96 samples, 0.41%)</title><rect x="59.0634%" y="3541" width="0.4091%" height="15" fill="rgb(205,72,29)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3551.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (96 samples, 0.41%)</title><rect x="59.0634%" y="3525" width="0.4091%" height="15" fill="rgb(217,7,32)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3535.50"></text></g><g><title>rayon_core::join::join_context (96 samples, 0.41%)</title><rect x="59.0634%" y="3509" width="0.4091%" height="15" fill="rgb(237,69,8)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3519.50"></text></g><g><title>rayon_core::registry::in_worker (96 samples, 0.41%)</title><rect x="59.0634%" y="3493" width="0.4091%" height="15" fill="rgb(207,90,0)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3503.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (96 samples, 0.41%)</title><rect x="59.0634%" y="3477" width="0.4091%" height="15" fill="rgb(254,22,49)" fg:x="13861" fg:w="96"/><text x="59.3134%" y="3487.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (89 samples, 0.38%)</title><rect x="59.0932%" y="3461" width="0.3792%" height="15" fill="rgb(211,102,17)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3471.50"></text></g><g><title>std::panic::catch_unwind (89 samples, 0.38%)</title><rect x="59.0932%" y="3445" width="0.3792%" height="15" fill="rgb(254,106,4)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3455.50"></text></g><g><title>std::panicking::try (89 samples, 0.38%)</title><rect x="59.0932%" y="3429" width="0.3792%" height="15" fill="rgb(210,203,25)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3439.50"></text></g><g><title>std::panicking::try::do_call (89 samples, 0.38%)</title><rect x="59.0932%" y="3413" width="0.3792%" height="15" fill="rgb(227,205,3)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3423.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (89 samples, 0.38%)</title><rect x="59.0932%" y="3397" width="0.3792%" height="15" fill="rgb(213,89,34)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3407.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (89 samples, 0.38%)</title><rect x="59.0932%" y="3381" width="0.3792%" height="15" fill="rgb(243,24,3)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3391.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (89 samples, 0.38%)</title><rect x="59.0932%" y="3365" width="0.3792%" height="15" fill="rgb(251,43,38)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3375.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (89 samples, 0.38%)</title><rect x="59.0932%" y="3349" width="0.3792%" height="15" fill="rgb(239,222,30)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3359.50"></text></g><g><title>rayon_core::join::join_context (89 samples, 0.38%)</title><rect x="59.0932%" y="3333" width="0.3792%" height="15" fill="rgb(214,58,5)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3343.50"></text></g><g><title>rayon_core::registry::in_worker (89 samples, 0.38%)</title><rect x="59.0932%" y="3317" width="0.3792%" height="15" fill="rgb(211,12,22)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3327.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (89 samples, 0.38%)</title><rect x="59.0932%" y="3301" width="0.3792%" height="15" fill="rgb(207,34,11)" fg:x="13868" fg:w="89"/><text x="59.3432%" y="3311.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (67 samples, 0.29%)</title><rect x="59.1870%" y="3285" width="0.2855%" height="15" fill="rgb(249,87,36)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3295.50"></text></g><g><title>std::panic::catch_unwind (67 samples, 0.29%)</title><rect x="59.1870%" y="3269" width="0.2855%" height="15" fill="rgb(219,41,10)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3279.50"></text></g><g><title>std::panicking::try (67 samples, 0.29%)</title><rect x="59.1870%" y="3253" width="0.2855%" height="15" fill="rgb(243,191,3)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3263.50"></text></g><g><title>std::panicking::try::do_call (67 samples, 0.29%)</title><rect x="59.1870%" y="3237" width="0.2855%" height="15" fill="rgb(250,135,31)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3247.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (67 samples, 0.29%)</title><rect x="59.1870%" y="3221" width="0.2855%" height="15" fill="rgb(208,188,5)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3231.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (67 samples, 0.29%)</title><rect x="59.1870%" y="3205" width="0.2855%" height="15" fill="rgb(248,82,17)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (67 samples, 0.29%)</title><rect x="59.1870%" y="3189" width="0.2855%" height="15" fill="rgb(241,136,28)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (67 samples, 0.29%)</title><rect x="59.1870%" y="3173" width="0.2855%" height="15" fill="rgb(246,99,23)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3183.50"></text></g><g><title>rayon_core::join::join_context (67 samples, 0.29%)</title><rect x="59.1870%" y="3157" width="0.2855%" height="15" fill="rgb(233,5,49)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3167.50"></text></g><g><title>rayon_core::registry::in_worker (67 samples, 0.29%)</title><rect x="59.1870%" y="3141" width="0.2855%" height="15" fill="rgb(211,186,20)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3151.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (67 samples, 0.29%)</title><rect x="59.1870%" y="3125" width="0.2855%" height="15" fill="rgb(223,166,17)" fg:x="13890" fg:w="67"/><text x="59.4370%" y="3135.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (48 samples, 0.20%)</title><rect x="59.2679%" y="3109" width="0.2045%" height="15" fill="rgb(238,30,7)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3119.50"></text></g><g><title>std::panic::catch_unwind (48 samples, 0.20%)</title><rect x="59.2679%" y="3093" width="0.2045%" height="15" fill="rgb(215,15,37)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3103.50"></text></g><g><title>std::panicking::try (48 samples, 0.20%)</title><rect x="59.2679%" y="3077" width="0.2045%" height="15" fill="rgb(225,167,25)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3087.50"></text></g><g><title>std::panicking::try::do_call (48 samples, 0.20%)</title><rect x="59.2679%" y="3061" width="0.2045%" height="15" fill="rgb(208,47,22)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3071.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (48 samples, 0.20%)</title><rect x="59.2679%" y="3045" width="0.2045%" height="15" fill="rgb(242,53,31)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3055.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (48 samples, 0.20%)</title><rect x="59.2679%" y="3029" width="0.2045%" height="15" fill="rgb(206,210,1)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (48 samples, 0.20%)</title><rect x="59.2679%" y="3013" width="0.2045%" height="15" fill="rgb(224,68,8)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.20%)</title><rect x="59.2679%" y="2997" width="0.2045%" height="15" fill="rgb(217,13,2)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="3007.50"></text></g><g><title>rayon_core::join::join_context (48 samples, 0.20%)</title><rect x="59.2679%" y="2981" width="0.2045%" height="15" fill="rgb(235,44,34)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="2991.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.20%)</title><rect x="59.2679%" y="2965" width="0.2045%" height="15" fill="rgb(224,5,14)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="2975.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (48 samples, 0.20%)</title><rect x="59.2679%" y="2949" width="0.2045%" height="15" fill="rgb(235,2,0)" fg:x="13909" fg:w="48"/><text x="59.5179%" y="2959.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (32 samples, 0.14%)</title><rect x="59.3361%" y="2933" width="0.1364%" height="15" fill="rgb(210,51,6)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2943.50"></text></g><g><title>std::panic::catch_unwind (32 samples, 0.14%)</title><rect x="59.3361%" y="2917" width="0.1364%" height="15" fill="rgb(241,206,14)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2927.50"></text></g><g><title>std::panicking::try (32 samples, 0.14%)</title><rect x="59.3361%" y="2901" width="0.1364%" height="15" fill="rgb(229,182,4)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2911.50"></text></g><g><title>std::panicking::try::do_call (32 samples, 0.14%)</title><rect x="59.3361%" y="2885" width="0.1364%" height="15" fill="rgb(223,127,42)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2895.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (32 samples, 0.14%)</title><rect x="59.3361%" y="2869" width="0.1364%" height="15" fill="rgb(212,164,53)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2879.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (32 samples, 0.14%)</title><rect x="59.3361%" y="2853" width="0.1364%" height="15" fill="rgb(253,135,20)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (32 samples, 0.14%)</title><rect x="59.3361%" y="2837" width="0.1364%" height="15" fill="rgb(233,74,53)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.14%)</title><rect x="59.3361%" y="2821" width="0.1364%" height="15" fill="rgb(234,47,33)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2831.50"></text></g><g><title>rayon_core::join::join_context (32 samples, 0.14%)</title><rect x="59.3361%" y="2805" width="0.1364%" height="15" fill="rgb(232,81,6)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2815.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.14%)</title><rect x="59.3361%" y="2789" width="0.1364%" height="15" fill="rgb(242,108,42)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2799.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (32 samples, 0.14%)</title><rect x="59.3361%" y="2773" width="0.1364%" height="15" fill="rgb(251,40,41)" fg:x="13925" fg:w="32"/><text x="59.5861%" y="2783.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (20 samples, 0.09%)</title><rect x="59.3873%" y="2757" width="0.0852%" height="15" fill="rgb(241,204,43)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2767.50"></text></g><g><title>std::panic::catch_unwind (20 samples, 0.09%)</title><rect x="59.3873%" y="2741" width="0.0852%" height="15" fill="rgb(238,133,1)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2751.50"></text></g><g><title>std::panicking::try (20 samples, 0.09%)</title><rect x="59.3873%" y="2725" width="0.0852%" height="15" fill="rgb(206,157,4)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2735.50"></text></g><g><title>std::panicking::try::do_call (20 samples, 0.09%)</title><rect x="59.3873%" y="2709" width="0.0852%" height="15" fill="rgb(205,220,3)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2719.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (20 samples, 0.09%)</title><rect x="59.3873%" y="2693" width="0.0852%" height="15" fill="rgb(224,211,0)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2703.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (20 samples, 0.09%)</title><rect x="59.3873%" y="2677" width="0.0852%" height="15" fill="rgb(208,148,29)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (20 samples, 0.09%)</title><rect x="59.3873%" y="2661" width="0.0852%" height="15" fill="rgb(228,154,27)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.09%)</title><rect x="59.3873%" y="2645" width="0.0852%" height="15" fill="rgb(212,181,5)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2655.50"></text></g><g><title>rayon_core::join::join_context (20 samples, 0.09%)</title><rect x="59.3873%" y="2629" width="0.0852%" height="15" fill="rgb(236,1,42)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2639.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.09%)</title><rect x="59.3873%" y="2613" width="0.0852%" height="15" fill="rgb(234,94,5)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2623.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (20 samples, 0.09%)</title><rect x="59.3873%" y="2597" width="0.0852%" height="15" fill="rgb(210,65,41)" fg:x="13937" fg:w="20"/><text x="59.6373%" y="2607.50"></text></g><g><title>rayon_core::unwind::halt_unwinding (7 samples, 0.03%)</title><rect x="59.4426%" y="2581" width="0.0298%" height="15" fill="rgb(226,143,19)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2591.50"></text></g><g><title>std::panic::catch_unwind (7 samples, 0.03%)</title><rect x="59.4426%" y="2565" width="0.0298%" height="15" fill="rgb(251,195,51)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2575.50"></text></g><g><title>std::panicking::try (7 samples, 0.03%)</title><rect x="59.4426%" y="2549" width="0.0298%" height="15" fill="rgb(215,140,18)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2559.50"></text></g><g><title>std::panicking::try::do_call (7 samples, 0.03%)</title><rect x="59.4426%" y="2533" width="0.0298%" height="15" fill="rgb(240,40,8)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2543.50"></text></g><g><title><core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (7 samples, 0.03%)</title><rect x="59.4426%" y="2517" width="0.0298%" height="15" fill="rgb(228,188,49)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2527.50"></text></g><g><title>rayon_core::join::join_context::call_a::_{{closure}} (7 samples, 0.03%)</title><rect x="59.4426%" y="2501" width="0.0298%" height="15" fill="rgb(226,99,43)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper::_{{closure}} (7 samples, 0.03%)</title><rect x="59.4426%" y="2485" width="0.0298%" height="15" fill="rgb(230,213,33)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="59.4426%" y="2469" width="0.0298%" height="15" fill="rgb(230,123,28)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2479.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="59.4426%" y="2453" width="0.0298%" height="15" fill="rgb(210,218,30)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2463.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="59.4426%" y="2437" width="0.0298%" height="15" fill="rgb(209,65,0)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2447.50"></text></g><g><title><rayon::iter::fold::FoldFolder<C,ID,F> as rayon::iter::plumbing::Folder<T>>::consume_iter (7 samples, 0.03%)</title><rect x="59.4426%" y="2421" width="0.0298%" height="15" fill="rgb(219,133,9)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2431.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="59.4426%" y="2405" width="0.0298%" height="15" fill="rgb(233,188,2)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2415.50"></text></g><g><title><core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="59.4426%" y="2389" width="0.0298%" height="15" fill="rgb(211,36,54)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2399.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold (7 samples, 0.03%)</title><rect x="59.4426%" y="2373" width="0.0298%" height="15" fill="rgb(219,12,0)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2383.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (7 samples, 0.03%)</title><rect x="59.4426%" y="2357" width="0.0298%" height="15" fill="rgb(210,207,41)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2367.50"></text></g><g><title>core::iter::adapters::map::map_try_fold::_{{closure}} (7 samples, 0.03%)</title><rect x="59.4426%" y="2341" width="0.0298%" height="15" fill="rgb(214,154,41)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2351.50"></text></g><g><title><rayon::iter::map_with::MapWithFolder<C,U,F> as rayon::iter::plumbing::Folder<T>>::consume_iter::with::_{{closure}} (7 samples, 0.03%)</title><rect x="59.4426%" y="2325" width="0.0298%" height="15" fill="rgb(215,177,24)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2335.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::Fn<A> for &F>::call (7 samples, 0.03%)</title><rect x="59.4426%" y="2309" width="0.0298%" height="15" fill="rgb(241,139,27)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2319.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::bootstrap::_{{closure}} (7 samples, 0.03%)</title><rect x="59.4426%" y="2293" width="0.0298%" height="15" fill="rgb(242,185,52)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2303.50"></text></g><g><title>core::ops::function::Fn::call (7 samples, 0.03%)</title><rect x="59.4426%" y="2277" width="0.0298%" height="15" fill="rgb(210,68,29)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2287.50"></text></g><g><title>criterion::analysis::estimates::stats (7 samples, 0.03%)</title><rect x="59.4426%" y="2261" width="0.0298%" height="15" fill="rgb(252,37,25)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2271.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::median_abs_dev (7 samples, 0.03%)</title><rect x="59.4426%" y="2245" width="0.0298%" height="15" fill="rgb(223,20,14)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2255.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (7 samples, 0.03%)</title><rect x="59.4426%" y="2229" width="0.0298%" height="15" fill="rgb(218,184,25)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2239.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (7 samples, 0.03%)</title><rect x="59.4426%" y="2213" width="0.0298%" height="15" fill="rgb(238,177,32)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2223.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (7 samples, 0.03%)</title><rect x="59.4426%" y="2197" width="0.0298%" height="15" fill="rgb(209,99,23)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2207.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="59.4426%" y="2181" width="0.0298%" height="15" fill="rgb(239,94,3)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2191.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="59.4426%" y="2165" width="0.0298%" height="15" fill="rgb(251,222,2)" fg:x="13950" fg:w="7"/><text x="59.6926%" y="2175.50"></text></g><g><title>rayon::slice::quicksort::partition (3 samples, 0.01%)</title><rect x="59.4597%" y="2149" width="0.0128%" height="15" fill="rgb(232,225,36)" fg:x="13954" fg:w="3"/><text x="59.7097%" y="2159.50"></text></g><g><title>rayon::slice::quicksort::partition_in_blocks (3 samples, 0.01%)</title><rect x="59.4597%" y="2133" width="0.0128%" height="15" fill="rgb(209,69,27)" fg:x="13954" fg:w="3"/><text x="59.7097%" y="2143.50"></text></g><g><title>[unknown] (2,015 samples, 8.59%)</title><rect x="50.9076%" y="3845" width="8.5862%" height="15" fill="rgb(234,207,50)" fg:x="11947" fg:w="2015"/><text x="51.1576%" y="3855.50">[unknown]</text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="59.4725%" y="3829" width="0.0213%" height="15" fill="rgb(237,151,18)" fg:x="13957" fg:w="5"/><text x="59.7225%" y="3839.50"></text></g><g><title><criterion::stats::univariate::kde::kernel::Gaussian as criterion::stats::univariate::kde::kernel::Kernel<A>>::evaluate (5 samples, 0.02%)</title><rect x="59.4980%" y="3157" width="0.0213%" height="15" fill="rgb(214,31,42)" fg:x="13963" fg:w="5"/><text x="59.7480%" y="3167.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (7 samples, 0.03%)</title><rect x="59.4980%" y="3205" width="0.0298%" height="15" fill="rgb(218,168,36)" fg:x="13963" fg:w="7"/><text x="59.7480%" y="3215.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (7 samples, 0.03%)</title><rect x="59.4980%" y="3189" width="0.0298%" height="15" fill="rgb(246,204,51)" fg:x="13963" fg:w="7"/><text x="59.7480%" y="3199.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (7 samples, 0.03%)</title><rect x="59.4980%" y="3173" width="0.0298%" height="15" fill="rgb(209,104,20)" fg:x="13963" fg:w="7"/><text x="59.7480%" y="3183.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map (5 samples, 0.02%)</title><rect x="59.5279%" y="3205" width="0.0213%" height="15" fill="rgb(238,188,34)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3215.50"></text></g><g><title>rayon::iter::ParallelIterator::collect (5 samples, 0.02%)</title><rect x="59.5279%" y="3189" width="0.0213%" height="15" fill="rgb(227,22,52)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3199.50"></text></g><g><title>rayon::iter::from_par_iter::<impl rayon::iter::FromParallelIterator<T> for alloc::vec::Vec<T>>::from_par_iter (5 samples, 0.02%)</title><rect x="59.5279%" y="3173" width="0.0213%" height="15" fill="rgb(217,60,34)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3183.50"></text></g><g><title>rayon::iter::from_par_iter::collect_extended (5 samples, 0.02%)</title><rect x="59.5279%" y="3157" width="0.0213%" height="15" fill="rgb(212,35,43)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3167.50"></text></g><g><title>rayon::iter::extend::<impl rayon::iter::ParallelExtend<T> for alloc::vec::Vec<T>>::par_extend (5 samples, 0.02%)</title><rect x="59.5279%" y="3141" width="0.0213%" height="15" fill="rgb(245,167,50)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3151.50"></text></g><g><title>rayon::iter::collect::special_extend (5 samples, 0.02%)</title><rect x="59.5279%" y="3125" width="0.0213%" height="15" fill="rgb(215,183,46)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3135.50"></text></g><g><title>rayon::iter::collect::collect_with_consumer (5 samples, 0.02%)</title><rect x="59.5279%" y="3109" width="0.0213%" height="15" fill="rgb(240,108,37)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3119.50"></text></g><g><title>rayon::iter::collect::special_extend::_{{closure}} (5 samples, 0.02%)</title><rect x="59.5279%" y="3093" width="0.0213%" height="15" fill="rgb(210,141,13)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3103.50"></text></g><g><title><rayon::iter::map::Map<I,F> as rayon::iter::ParallelIterator>::drive_unindexed (5 samples, 0.02%)</title><rect x="59.5279%" y="3077" width="0.0213%" height="15" fill="rgb(218,152,53)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3087.50"></text></g><g><title><rayon::slice::Iter<T> as rayon::iter::ParallelIterator>::drive_unindexed (5 samples, 0.02%)</title><rect x="59.5279%" y="3061" width="0.0213%" height="15" fill="rgb(229,117,37)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3071.50"></text></g><g><title>rayon::iter::plumbing::bridge (5 samples, 0.02%)</title><rect x="59.5279%" y="3045" width="0.0213%" height="15" fill="rgb(229,217,22)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3055.50"></text></g><g><title><rayon::slice::Iter<T> as rayon::iter::IndexedParallelIterator>::with_producer (5 samples, 0.02%)</title><rect x="59.5279%" y="3029" width="0.0213%" height="15" fill="rgb(222,170,54)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3039.50"></text></g><g><title><rayon::iter::plumbing::bridge::Callback<C> as rayon::iter::plumbing::ProducerCallback<I>>::callback (5 samples, 0.02%)</title><rect x="59.5279%" y="3013" width="0.0213%" height="15" fill="rgb(239,203,24)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer (5 samples, 0.02%)</title><rect x="59.5279%" y="2997" width="0.0213%" height="15" fill="rgb(250,120,13)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="3007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="59.5279%" y="2981" width="0.0213%" height="15" fill="rgb(218,67,29)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2991.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="59.5279%" y="2965" width="0.0213%" height="15" fill="rgb(214,31,6)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2975.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="59.5279%" y="2949" width="0.0213%" height="15" fill="rgb(253,10,18)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2959.50"></text></g><g><title>rayon_core::registry::Registry::in_worker (5 samples, 0.02%)</title><rect x="59.5279%" y="2933" width="0.0213%" height="15" fill="rgb(254,80,19)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2943.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold (5 samples, 0.02%)</title><rect x="59.5279%" y="2917" width="0.0213%" height="15" fill="rgb(250,46,9)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2927.50"></text></g><g><title>std::thread::local::LocalKey<T>::with (5 samples, 0.02%)</title><rect x="59.5279%" y="2901" width="0.0213%" height="15" fill="rgb(214,170,52)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2911.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (5 samples, 0.02%)</title><rect x="59.5279%" y="2885" width="0.0213%" height="15" fill="rgb(220,124,12)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2895.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}} (5 samples, 0.02%)</title><rect x="59.5279%" y="2869" width="0.0213%" height="15" fill="rgb(210,198,40)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2879.50"></text></g><g><title>rayon_core::latch::LockLatch::wait_and_reset (5 samples, 0.02%)</title><rect x="59.5279%" y="2853" width="0.0213%" height="15" fill="rgb(252,91,20)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2863.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="59.5279%" y="2837" width="0.0213%" height="15" fill="rgb(214,122,38)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2847.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="59.5279%" y="2821" width="0.0213%" height="15" fill="rgb(215,56,28)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2831.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="59.5279%" y="2805" width="0.0213%" height="15" fill="rgb(208,166,33)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2815.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="59.5279%" y="2789" width="0.0213%" height="15" fill="rgb(210,101,52)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2799.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="59.5279%" y="2773" width="0.0213%" height="15" fill="rgb(209,18,0)" fg:x="13970" fg:w="5"/><text x="59.7779%" y="2783.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::new (3 samples, 0.01%)</title><rect x="59.5492%" y="3205" width="0.0128%" height="15" fill="rgb(227,100,3)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3215.50"></text></g><g><title>criterion::stats::univariate::kde::Bandwidth::estimate (3 samples, 0.01%)</title><rect x="59.5492%" y="3189" width="0.0128%" height="15" fill="rgb(239,141,46)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3199.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::std_dev (3 samples, 0.01%)</title><rect x="59.5492%" y="3173" width="0.0128%" height="15" fill="rgb(209,75,14)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3183.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::var (3 samples, 0.01%)</title><rect x="59.5492%" y="3157" width="0.0128%" height="15" fill="rgb(239,187,6)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3167.50"></text></g><g><title>core::option::Option<T>::unwrap_or_else (3 samples, 0.01%)</title><rect x="59.5492%" y="3141" width="0.0128%" height="15" fill="rgb(229,203,48)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3151.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::var::_{{closure}} (3 samples, 0.01%)</title><rect x="59.5492%" y="3125" width="0.0128%" height="15" fill="rgb(243,75,40)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3135.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::mean (3 samples, 0.01%)</title><rect x="59.5492%" y="3109" width="0.0128%" height="15" fill="rgb(207,224,2)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3119.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::sum (3 samples, 0.01%)</title><rect x="59.5492%" y="3093" width="0.0128%" height="15" fill="rgb(206,11,51)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3103.50"></text></g><g><title>criterion::stats::sum (3 samples, 0.01%)</title><rect x="59.5492%" y="3077" width="0.0128%" height="15" fill="rgb(248,101,50)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3087.50"></text></g><g><title><core::iter::adapters::cloned::Cloned<I> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="59.5492%" y="3061" width="0.0128%" height="15" fill="rgb(244,170,48)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3071.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="59.5492%" y="3045" width="0.0128%" height="15" fill="rgb(222,102,41)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3055.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="59.5492%" y="3029" width="0.0128%" height="15" fill="rgb(210,47,39)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3039.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (3 samples, 0.01%)</title><rect x="59.5492%" y="3013" width="0.0128%" height="15" fill="rgb(224,87,20)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3023.50"></text></g><g><title>core::ops::function::FnMut::call_mut (3 samples, 0.01%)</title><rect x="59.5492%" y="2997" width="0.0128%" height="15" fill="rgb(205,224,37)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="3007.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (3 samples, 0.01%)</title><rect x="59.5492%" y="2981" width="0.0128%" height="15" fill="rgb(220,146,22)" fg:x="13975" fg:w="3"/><text x="59.7992%" y="2991.50"></text></g><g><title><alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend (16 samples, 0.07%)</title><rect x="59.4980%" y="3349" width="0.0682%" height="15" fill="rgb(211,32,25)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3359.50"></text></g><g><title>alloc::vec::Vec<T,A>::extend_desugared (16 samples, 0.07%)</title><rect x="59.4980%" y="3333" width="0.0682%" height="15" fill="rgb(217,206,30)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3343.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (16 samples, 0.07%)</title><rect x="59.4980%" y="3317" width="0.0682%" height="15" fill="rgb(251,20,51)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3327.50"></text></g><g><title>core::option::Option<T>::map (16 samples, 0.07%)</title><rect x="59.4980%" y="3301" width="0.0682%" height="15" fill="rgb(217,175,11)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3311.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (16 samples, 0.07%)</title><rect x="59.4980%" y="3285" width="0.0682%" height="15" fill="rgb(215,112,49)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3295.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::abs_distributions::_{{closure}} (16 samples, 0.07%)</title><rect x="59.4980%" y="3269" width="0.0682%" height="15" fill="rgb(247,93,35)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3279.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::abs_distribution (16 samples, 0.07%)</title><rect x="59.4980%" y="3253" width="0.0682%" height="15" fill="rgb(254,10,33)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3263.50"></text></g><g><title>criterion::kde::sweep (16 samples, 0.07%)</title><rect x="59.4980%" y="3237" width="0.0682%" height="15" fill="rgb(217,223,28)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3247.50"></text></g><g><title>criterion::kde::sweep_and_estimate (16 samples, 0.07%)</title><rect x="59.4980%" y="3221" width="0.0682%" height="15" fill="rgb(245,188,50)" fg:x="13963" fg:w="16"/><text x="59.7480%" y="3231.50"></text></g><g><title><criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter>::abs_distributions (20 samples, 0.09%)</title><rect x="59.4980%" y="3445" width="0.0852%" height="15" fill="rgb(206,143,36)" fg:x="13963" fg:w="20"/><text x="59.7480%" y="3455.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::abs_distributions (20 samples, 0.09%)</title><rect x="59.4980%" y="3429" width="0.0852%" height="15" fill="rgb(206,81,43)" fg:x="13963" fg:w="20"/><text x="59.7480%" y="3439.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (20 samples, 0.09%)</title><rect x="59.4980%" y="3413" width="0.0852%" height="15" fill="rgb(254,20,3)" fg:x="13963" fg:w="20"/><text x="59.7480%" y="3423.50"></text></g><g><title><alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter (20 samples, 0.09%)</title><rect x="59.4980%" y="3397" width="0.0852%" height="15" fill="rgb(229,210,5)" fg:x="13963" fg:w="20"/><text x="59.7480%" y="3407.50"></text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter (20 samples, 0.09%)</title><rect x="59.4980%" y="3381" width="0.0852%" height="15" fill="rgb(208,227,18)" fg:x="13963" fg:w="20"/><text x="59.7480%" y="3391.50"></text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter (20 samples, 0.09%)</title><rect x="59.4980%" y="3365" width="0.0852%" height="15" fill="rgb(207,38,27)" fg:x="13963" fg:w="20"/><text x="59.7480%" y="3375.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4 samples, 0.02%)</title><rect x="59.5662%" y="3349" width="0.0170%" height="15" fill="rgb(206,70,42)" fg:x="13979" fg:w="4"/><text x="59.8162%" y="3359.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="59.5662%" y="3333" width="0.0170%" height="15" fill="rgb(247,37,45)" fg:x="13979" fg:w="4"/><text x="59.8162%" y="3343.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="59.5662%" y="3317" width="0.0170%" height="15" fill="rgb(250,86,17)" fg:x="13979" fg:w="4"/><text x="59.8162%" y="3327.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::abs_distributions::_{{closure}} (4 samples, 0.02%)</title><rect x="59.5662%" y="3301" width="0.0170%" height="15" fill="rgb(226,116,13)" fg:x="13979" fg:w="4"/><text x="59.8162%" y="3311.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::abs_distribution (4 samples, 0.02%)</title><rect x="59.5662%" y="3285" width="0.0170%" height="15" fill="rgb(205,139,54)" fg:x="13979" fg:w="4"/><text x="59.8162%" y="3295.50"></text></g><g><title>criterion::kde::sweep (4 samples, 0.02%)</title><rect x="59.5662%" y="3269" width="0.0170%" height="15" fill="rgb(221,15,0)" fg:x="13979" fg:w="4"/><text x="59.8162%" y="3279.50"></text></g><g><title>criterion::kde::sweep_and_estimate (4 samples, 0.02%)</title><rect x="59.5662%" y="3253" width="0.0170%" height="15" fill="rgb(215,72,42)" fg:x="13979" fg:w="4"/><text x="59.8162%" y="3263.50"></text></g><g><title>criterion::kde::sweep_and_estimate (6 samples, 0.03%)</title><rect x="59.5833%" y="3413" width="0.0256%" height="15" fill="rgb(207,177,50)" fg:x="13983" fg:w="6"/><text x="59.8333%" y="3423.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::map (5 samples, 0.02%)</title><rect x="59.5875%" y="3397" width="0.0213%" height="15" fill="rgb(242,219,47)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3407.50"></text></g><g><title>rayon::iter::ParallelIterator::collect (5 samples, 0.02%)</title><rect x="59.5875%" y="3381" width="0.0213%" height="15" fill="rgb(243,95,43)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3391.50"></text></g><g><title>rayon::iter::from_par_iter::<impl rayon::iter::FromParallelIterator<T> for alloc::vec::Vec<T>>::from_par_iter (5 samples, 0.02%)</title><rect x="59.5875%" y="3365" width="0.0213%" height="15" fill="rgb(253,203,23)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3375.50"></text></g><g><title>rayon::iter::from_par_iter::collect_extended (5 samples, 0.02%)</title><rect x="59.5875%" y="3349" width="0.0213%" height="15" fill="rgb(207,149,54)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3359.50"></text></g><g><title>rayon::iter::extend::<impl rayon::iter::ParallelExtend<T> for alloc::vec::Vec<T>>::par_extend (5 samples, 0.02%)</title><rect x="59.5875%" y="3333" width="0.0213%" height="15" fill="rgb(242,225,35)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3343.50"></text></g><g><title>rayon::iter::collect::special_extend (5 samples, 0.02%)</title><rect x="59.5875%" y="3317" width="0.0213%" height="15" fill="rgb(223,94,36)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3327.50"></text></g><g><title>rayon::iter::collect::collect_with_consumer (5 samples, 0.02%)</title><rect x="59.5875%" y="3301" width="0.0213%" height="15" fill="rgb(246,194,43)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3311.50"></text></g><g><title>rayon::iter::collect::special_extend::_{{closure}} (5 samples, 0.02%)</title><rect x="59.5875%" y="3285" width="0.0213%" height="15" fill="rgb(224,225,1)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3295.50"></text></g><g><title><rayon::iter::map::Map<I,F> as rayon::iter::ParallelIterator>::drive_unindexed (5 samples, 0.02%)</title><rect x="59.5875%" y="3269" width="0.0213%" height="15" fill="rgb(233,188,4)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3279.50"></text></g><g><title><rayon::slice::Iter<T> as rayon::iter::ParallelIterator>::drive_unindexed (5 samples, 0.02%)</title><rect x="59.5875%" y="3253" width="0.0213%" height="15" fill="rgb(253,129,16)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3263.50"></text></g><g><title>rayon::iter::plumbing::bridge (5 samples, 0.02%)</title><rect x="59.5875%" y="3237" width="0.0213%" height="15" fill="rgb(217,199,5)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3247.50"></text></g><g><title><rayon::slice::Iter<T> as rayon::iter::IndexedParallelIterator>::with_producer (5 samples, 0.02%)</title><rect x="59.5875%" y="3221" width="0.0213%" height="15" fill="rgb(244,8,32)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3231.50"></text></g><g><title><rayon::iter::plumbing::bridge::Callback<C> as rayon::iter::plumbing::ProducerCallback<I>>::callback (5 samples, 0.02%)</title><rect x="59.5875%" y="3205" width="0.0213%" height="15" fill="rgb(216,113,49)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3215.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer (5 samples, 0.02%)</title><rect x="59.5875%" y="3189" width="0.0213%" height="15" fill="rgb(241,91,46)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3199.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="59.5875%" y="3173" width="0.0213%" height="15" fill="rgb(241,89,49)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3183.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="59.5875%" y="3157" width="0.0213%" height="15" fill="rgb(246,4,29)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3167.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="59.5875%" y="3141" width="0.0213%" height="15" fill="rgb(252,49,4)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3151.50"></text></g><g><title>rayon_core::registry::Registry::in_worker (5 samples, 0.02%)</title><rect x="59.5875%" y="3125" width="0.0213%" height="15" fill="rgb(228,21,15)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3135.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold (5 samples, 0.02%)</title><rect x="59.5875%" y="3109" width="0.0213%" height="15" fill="rgb(232,15,44)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3119.50"></text></g><g><title>std::thread::local::LocalKey<T>::with (5 samples, 0.02%)</title><rect x="59.5875%" y="3093" width="0.0213%" height="15" fill="rgb(246,104,20)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3103.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (5 samples, 0.02%)</title><rect x="59.5875%" y="3077" width="0.0213%" height="15" fill="rgb(245,47,37)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3087.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}} (5 samples, 0.02%)</title><rect x="59.5875%" y="3061" width="0.0213%" height="15" fill="rgb(212,180,0)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3071.50"></text></g><g><title>rayon_core::latch::LockLatch::wait_and_reset (5 samples, 0.02%)</title><rect x="59.5875%" y="3045" width="0.0213%" height="15" fill="rgb(212,125,8)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3055.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="59.5875%" y="3029" width="0.0213%" height="15" fill="rgb(216,130,7)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3039.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="59.5875%" y="3013" width="0.0213%" height="15" fill="rgb(214,53,22)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3023.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="59.5875%" y="2997" width="0.0213%" height="15" fill="rgb(228,46,45)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="3007.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="59.5875%" y="2981" width="0.0213%" height="15" fill="rgb(228,14,53)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="2991.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="59.5875%" y="2965" width="0.0213%" height="15" fill="rgb(239,31,0)" fg:x="13984" fg:w="5"/><text x="59.8375%" y="2975.50"></text></g><g><title><criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter>::pdf (7 samples, 0.03%)</title><rect x="59.5833%" y="3445" width="0.0298%" height="15" fill="rgb(223,174,27)" fg:x="13983" fg:w="7"/><text x="59.8333%" y="3455.50"></text></g><g><title>criterion::plot::gnuplot_backend::pdf::pdf_small (7 samples, 0.03%)</title><rect x="59.5833%" y="3429" width="0.0298%" height="15" fill="rgb(250,113,8)" fg:x="13983" fg:w="7"/><text x="59.8333%" y="3439.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate (3 samples, 0.01%)</title><rect x="59.6131%" y="3189" width="0.0128%" height="15" fill="rgb(243,81,11)" fg:x="13990" fg:w="3"/><text x="59.8631%" y="3199.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (3 samples, 0.01%)</title><rect x="59.6131%" y="3173" width="0.0128%" height="15" fill="rgb(244,36,26)" fg:x="13990" fg:w="3"/><text x="59.8631%" y="3183.50"></text></g><g><title>criterion::stats::univariate::kde::Kde<A,K>::estimate::_{{closure}} (3 samples, 0.01%)</title><rect x="59.6131%" y="3157" width="0.0128%" height="15" fill="rgb(215,148,23)" fg:x="13990" fg:w="3"/><text x="59.8631%" y="3167.50"></text></g><g><title><criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter>::rel_distributions (5 samples, 0.02%)</title><rect x="59.6131%" y="3445" width="0.0213%" height="15" fill="rgb(245,206,34)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3455.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::rel_distributions (5 samples, 0.02%)</title><rect x="59.6131%" y="3429" width="0.0213%" height="15" fill="rgb(223,148,41)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3439.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (5 samples, 0.02%)</title><rect x="59.6131%" y="3413" width="0.0213%" height="15" fill="rgb(244,167,16)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3423.50"></text></g><g><title><alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter (5 samples, 0.02%)</title><rect x="59.6131%" y="3397" width="0.0213%" height="15" fill="rgb(238,229,35)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3407.50"></text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter (5 samples, 0.02%)</title><rect x="59.6131%" y="3381" width="0.0213%" height="15" fill="rgb(221,191,4)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3391.50"></text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter (5 samples, 0.02%)</title><rect x="59.6131%" y="3365" width="0.0213%" height="15" fill="rgb(221,40,1)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3375.50"></text></g><g><title><alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend (5 samples, 0.02%)</title><rect x="59.6131%" y="3349" width="0.0213%" height="15" fill="rgb(240,35,3)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3359.50"></text></g><g><title>alloc::vec::Vec<T,A>::extend_trusted (5 samples, 0.02%)</title><rect x="59.6131%" y="3333" width="0.0213%" height="15" fill="rgb(220,162,52)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3343.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (5 samples, 0.02%)</title><rect x="59.6131%" y="3317" width="0.0213%" height="15" fill="rgb(216,61,13)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3327.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="59.6131%" y="3301" width="0.0213%" height="15" fill="rgb(213,104,51)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5 samples, 0.02%)</title><rect x="59.6131%" y="3285" width="0.0213%" height="15" fill="rgb(229,98,10)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3295.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (5 samples, 0.02%)</title><rect x="59.6131%" y="3269" width="0.0213%" height="15" fill="rgb(219,192,35)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3279.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::rel_distributions::_{{closure}} (5 samples, 0.02%)</title><rect x="59.6131%" y="3253" width="0.0213%" height="15" fill="rgb(212,57,10)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3263.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::rel_distribution (5 samples, 0.02%)</title><rect x="59.6131%" y="3237" width="0.0213%" height="15" fill="rgb(222,41,17)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3247.50"></text></g><g><title>criterion::kde::sweep (5 samples, 0.02%)</title><rect x="59.6131%" y="3221" width="0.0213%" height="15" fill="rgb(210,94,31)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3231.50"></text></g><g><title>criterion::kde::sweep_and_estimate (5 samples, 0.02%)</title><rect x="59.6131%" y="3205" width="0.0213%" height="15" fill="rgb(231,69,24)" fg:x="13990" fg:w="5"/><text x="59.8631%" y="3215.50"></text></g><g><title><criterion::html::Html as criterion::report::Report>::measurement_complete (34 samples, 0.14%)</title><rect x="59.4980%" y="3477" width="0.1449%" height="15" fill="rgb(215,18,30)" fg:x="13963" fg:w="34"/><text x="59.7480%" y="3487.50"></text></g><g><title>criterion::html::Html::generate_plots (34 samples, 0.14%)</title><rect x="59.4980%" y="3461" width="0.1449%" height="15" fill="rgb(210,77,32)" fg:x="13963" fg:w="34"/><text x="59.7480%" y="3471.50"></text></g><g><title>criterion::stats::Distribution<A>::confidence_interval (5 samples, 0.02%)</title><rect x="59.6429%" y="3413" width="0.0213%" height="15" fill="rgb(218,221,29)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3423.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="59.6429%" y="3397" width="0.0213%" height="15" fill="rgb(235,22,23)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3407.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="59.6429%" y="3381" width="0.0213%" height="15" fill="rgb(244,54,44)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3391.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="59.6429%" y="3365" width="0.0213%" height="15" fill="rgb(224,93,43)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3375.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="59.6429%" y="3349" width="0.0213%" height="15" fill="rgb(211,111,36)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3359.50"></text></g><g><title>rayon_core::join::join (5 samples, 0.02%)</title><rect x="59.6429%" y="3333" width="0.0213%" height="15" fill="rgb(241,185,32)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3343.50"></text></g><g><title>rayon_core::join::join_context (5 samples, 0.02%)</title><rect x="59.6429%" y="3317" width="0.0213%" height="15" fill="rgb(237,117,37)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3327.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="59.6429%" y="3301" width="0.0213%" height="15" fill="rgb(237,182,51)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3311.50"></text></g><g><title>rayon_core::registry::Registry::in_worker (5 samples, 0.02%)</title><rect x="59.6429%" y="3285" width="0.0213%" height="15" fill="rgb(220,110,31)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3295.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold (5 samples, 0.02%)</title><rect x="59.6429%" y="3269" width="0.0213%" height="15" fill="rgb(207,160,33)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3279.50"></text></g><g><title>std::thread::local::LocalKey<T>::with (5 samples, 0.02%)</title><rect x="59.6429%" y="3253" width="0.0213%" height="15" fill="rgb(253,125,10)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3263.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (5 samples, 0.02%)</title><rect x="59.6429%" y="3237" width="0.0213%" height="15" fill="rgb(219,112,9)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3247.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}} (5 samples, 0.02%)</title><rect x="59.6429%" y="3221" width="0.0213%" height="15" fill="rgb(218,185,49)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3231.50"></text></g><g><title>rayon_core::latch::LockLatch::wait_and_reset (5 samples, 0.02%)</title><rect x="59.6429%" y="3205" width="0.0213%" height="15" fill="rgb(244,105,0)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3215.50"></text></g><g><title>std::sync::condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="59.6429%" y="3189" width="0.0213%" height="15" fill="rgb(232,188,51)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3199.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="59.6429%" y="3173" width="0.0213%" height="15" fill="rgb(213,229,48)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3183.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="59.6429%" y="3157" width="0.0213%" height="15" fill="rgb(218,151,9)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3167.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="59.6429%" y="3141" width="0.0213%" height="15" fill="rgb(214,101,32)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3151.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="59.6429%" y="3125" width="0.0213%" height="15" fill="rgb(241,197,40)" fg:x="13997" fg:w="5"/><text x="59.8929%" y="3135.50"></text></g><g><title>criterion::estimate::build_change_estimates (7 samples, 0.03%)</title><rect x="59.6429%" y="3445" width="0.0298%" height="15" fill="rgb(213,31,8)" fg:x="13997" fg:w="7"/><text x="59.8929%" y="3455.50"></text></g><g><title>criterion::estimate::build_change_estimates::_{{closure}} (7 samples, 0.03%)</title><rect x="59.6429%" y="3429" width="0.0298%" height="15" fill="rgb(217,27,30)" fg:x="13997" fg:w="7"/><text x="59.8929%" y="3439.50"></text></g><g><title>criterion::analysis::compare::common (8 samples, 0.03%)</title><rect x="59.6429%" y="3477" width="0.0341%" height="15" fill="rgb(234,98,42)" fg:x="13997" fg:w="8"/><text x="59.8929%" y="3487.50"></text></g><g><title>criterion::analysis::compare::estimates (8 samples, 0.03%)</title><rect x="59.6429%" y="3461" width="0.0341%" height="15" fill="rgb(249,194,4)" fg:x="13997" fg:w="8"/><text x="59.8929%" y="3471.50"></text></g><g><title>criterion::stats::Distribution<A>::confidence_interval (5 samples, 0.02%)</title><rect x="59.6770%" y="3429" width="0.0213%" height="15" fill="rgb(216,183,34)" fg:x="14005" fg:w="5"/><text x="59.9270%" y="3439.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::percentiles (5 samples, 0.02%)</title><rect x="59.6770%" y="3413" width="0.0213%" height="15" fill="rgb(249,190,50)" fg:x="14005" fg:w="5"/><text x="59.9270%" y="3423.50"></text></g><g><title>rayon::slice::ParallelSliceMut::par_sort_unstable_by (5 samples, 0.02%)</title><rect x="59.6770%" y="3397" width="0.0213%" height="15" fill="rgb(221,63,52)" fg:x="14005" fg:w="5"/><text x="59.9270%" y="3407.50"></text></g><g><title>rayon::slice::quicksort::par_quicksort (5 samples, 0.02%)</title><rect x="59.6770%" y="3381" width="0.0213%" height="15" fill="rgb(242,109,16)" fg:x="14005" fg:w="5"/><text x="59.9270%" y="3391.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="59.6770%" y="3365" width="0.0213%" height="15" fill="rgb(208,31,0)" fg:x="14005" fg:w="5"/><text x="59.9270%" y="3375.50"></text></g><g><title>rayon_core::join::join (4 samples, 0.02%)</title><rect x="59.6813%" y="3349" width="0.0170%" height="15" fill="rgb(205,209,40)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3359.50"></text></g><g><title>rayon_core::join::join_context (4 samples, 0.02%)</title><rect x="59.6813%" y="3333" width="0.0170%" height="15" fill="rgb(206,85,0)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3343.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="59.6813%" y="3317" width="0.0170%" height="15" fill="rgb(211,37,12)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3327.50"></text></g><g><title>rayon_core::registry::Registry::in_worker (4 samples, 0.02%)</title><rect x="59.6813%" y="3301" width="0.0170%" height="15" fill="rgb(214,85,40)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3311.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold (4 samples, 0.02%)</title><rect x="59.6813%" y="3285" width="0.0170%" height="15" fill="rgb(248,42,24)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3295.50"></text></g><g><title>std::thread::local::LocalKey<T>::with (4 samples, 0.02%)</title><rect x="59.6813%" y="3269" width="0.0170%" height="15" fill="rgb(249,156,17)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3279.50"></text></g><g><title>std::thread::local::LocalKey<T>::try_with (4 samples, 0.02%)</title><rect x="59.6813%" y="3253" width="0.0170%" height="15" fill="rgb(253,34,20)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3263.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold::_{{closure}} (4 samples, 0.02%)</title><rect x="59.6813%" y="3237" width="0.0170%" height="15" fill="rgb(211,121,50)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3247.50"></text></g><g><title>rayon_core::latch::LockLatch::wait_and_reset (4 samples, 0.02%)</title><rect x="59.6813%" y="3221" width="0.0170%" height="15" fill="rgb(222,146,46)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3231.50"></text></g><g><title>std::sync::condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="59.6813%" y="3205" width="0.0170%" height="15" fill="rgb(253,99,21)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3215.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="59.6813%" y="3189" width="0.0170%" height="15" fill="rgb(217,55,0)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3199.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="59.6813%" y="3173" width="0.0170%" height="15" fill="rgb(242,5,17)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3183.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="59.6813%" y="3157" width="0.0170%" height="15" fill="rgb(240,61,50)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3167.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="59.6813%" y="3141" width="0.0170%" height="15" fill="rgb(208,81,1)" fg:x="14006" fg:w="4"/><text x="59.9313%" y="3151.50"></text></g><g><title>criterion::estimate::build_estimates (9 samples, 0.04%)</title><rect x="59.6770%" y="3461" width="0.0384%" height="15" fill="rgb(215,71,19)" fg:x="14005" fg:w="9"/><text x="59.9270%" y="3471.50"></text></g><g><title>criterion::estimate::build_estimates::_{{closure}} (9 samples, 0.04%)</title><rect x="59.6770%" y="3445" width="0.0384%" height="15" fill="rgb(244,129,53)" fg:x="14005" fg:w="9"/><text x="59.9270%" y="3455.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::std_dev (4 samples, 0.02%)</title><rect x="59.6983%" y="3429" width="0.0170%" height="15" fill="rgb(209,58,10)" fg:x="14010" fg:w="4"/><text x="59.9483%" y="3439.50"></text></g><g><title>criterion::stats::univariate::sample::Sample<A>::var (4 samples, 0.02%)</title><rect x="59.6983%" y="3413" width="0.0170%" height="15" fill="rgb(227,206,26)" fg:x="14010" fg:w="4"/><text x="59.9483%" y="3423.50"></text></g><g><title>criterion::analysis::estimates (10 samples, 0.04%)</title><rect x="59.6770%" y="3477" width="0.0426%" height="15" fill="rgb(206,101,2)" fg:x="14005" fg:w="10"/><text x="59.9270%" y="3487.50"></text></g><g><title><core::iter::adapters::rev::Rev<I> as core::iter::traits::iterator::Iterator>::next (68 samples, 0.29%)</title><rect x="61.1002%" y="3189" width="0.2898%" height="15" fill="rgb(225,140,24)" fg:x="14339" fg:w="68"/><text x="61.3502%" y="3199.50"></text></g><g><title>core::iter::range::<impl core::iter::traits::double_ended::DoubleEndedIterator for core::ops::range::Range<A>>::next_back (68 samples, 0.29%)</title><rect x="61.1002%" y="3173" width="0.2898%" height="15" fill="rgb(232,17,14)" fg:x="14339" fg:w="68"/><text x="61.3502%" y="3183.50"></text></g><g><title><core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next_back (68 samples, 0.29%)</title><rect x="61.1002%" y="3157" width="0.2898%" height="15" fill="rgb(219,172,22)" fg:x="14339" fg:w="68"/><text x="61.3502%" y="3167.50"></text></g><g><title>core::cmp::impls::<impl core::cmp::PartialOrd for usize>::lt (68 samples, 0.29%)</title><rect x="61.1002%" y="3141" width="0.2898%" height="15" fill="rgb(240,59,14)" fg:x="14339" fg:w="68"/><text x="61.3502%" y="3151.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next (5 samples, 0.02%)</title><rect x="61.4070%" y="3173" width="0.0213%" height="15" fill="rgb(236,54,49)" fg:x="14411" fg:w="5"/><text x="61.6570%" y="3183.50"></text></g><g><title>__rdl_alloc (3 samples, 0.01%)</title><rect x="61.7564%" y="3093" width="0.0128%" height="15" fill="rgb(220,191,0)" fg:x="14493" fg:w="3"/><text x="62.0064%" y="3103.50"></text></g><g><title>std::sys::unix::alloc::<impl core::alloc::global::GlobalAlloc for std::alloc::System>::alloc (3 samples, 0.01%)</title><rect x="61.7564%" y="3077" width="0.0128%" height="15" fill="rgb(210,49,34)" fg:x="14493" fg:w="3"/><text x="62.0064%" y="3087.50"></text></g><g><title>__rust_alloc (4 samples, 0.02%)</title><rect x="61.7692%" y="3093" width="0.0170%" height="15" fill="rgb(235,140,1)" fg:x="14496" fg:w="4"/><text x="62.0192%" y="3103.50"></text></g><g><title>alloc::raw_vec::finish_grow (24 samples, 0.10%)</title><rect x="61.7522%" y="3109" width="0.1023%" height="15" fill="rgb(246,64,36)" fg:x="14492" fg:w="24"/><text x="62.0022%" y="3119.50"></text></g><g><title>malloc (16 samples, 0.07%)</title><rect x="61.7863%" y="3093" width="0.0682%" height="15" fill="rgb(218,144,25)" fg:x="14500" fg:w="16"/><text x="62.0363%" y="3103.50"></text></g><g><title>alloc::raw_vec::RawVec<T,A>::reserve_for_push (31 samples, 0.13%)</title><rect x="61.7479%" y="3141" width="0.1321%" height="15" fill="rgb(210,216,52)" fg:x="14491" fg:w="31"/><text x="61.9979%" y="3151.50"></text></g><g><title>alloc::raw_vec::RawVec<T,A>::grow_amortized (31 samples, 0.13%)</title><rect x="61.7479%" y="3125" width="0.1321%" height="15" fill="rgb(230,29,49)" fg:x="14491" fg:w="31"/><text x="61.9979%" y="3135.50"></text></g><g><title>core::cmp::max (4 samples, 0.02%)</title><rect x="61.8630%" y="3109" width="0.0170%" height="15" fill="rgb(247,146,51)" fg:x="14518" fg:w="4"/><text x="62.1130%" y="3119.50"></text></g><g><title>core::cmp::Ord::max (4 samples, 0.02%)</title><rect x="61.8630%" y="3093" width="0.0170%" height="15" fill="rgb(239,118,28)" fg:x="14518" fg:w="4"/><text x="62.1130%" y="3103.50"></text></g><g><title>core::cmp::max_by (4 samples, 0.02%)</title><rect x="61.8630%" y="3077" width="0.0170%" height="15" fill="rgb(225,100,13)" fg:x="14518" fg:w="4"/><text x="62.1130%" y="3087.50"></text></g><g><title>alloc::vec::Vec<T,A>::push (54 samples, 0.23%)</title><rect x="61.7096%" y="3157" width="0.2301%" height="15" fill="rgb(252,194,42)" fg:x="14482" fg:w="54"/><text x="61.9596%" y="3167.50"></text></g><g><title>core::ptr::write (14 samples, 0.06%)</title><rect x="61.8800%" y="3141" width="0.0597%" height="15" fill="rgb(229,223,5)" fg:x="14522" fg:w="14"/><text x="62.1300%" y="3151.50"></text></g><g><title><core::str::iter::Chars as core::iter::traits::iterator::Iterator>::next (18 samples, 0.08%)</title><rect x="61.9397%" y="3141" width="0.0767%" height="15" fill="rgb(252,38,35)" fg:x="14536" fg:w="18"/><text x="62.1897%" y="3151.50"></text></g><g><title>core::str::validations::next_code_point (18 samples, 0.08%)</title><rect x="61.9397%" y="3125" width="0.0767%" height="15" fill="rgb(228,85,46)" fg:x="14536" fg:w="18"/><text x="62.1897%" y="3135.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next (10 samples, 0.04%)</title><rect x="61.9738%" y="3109" width="0.0426%" height="15" fill="rgb(236,77,4)" fg:x="14544" fg:w="10"/><text x="62.2238%" y="3119.50"></text></g><g><title>core::slice::memchr::contains_zero_byte (16 samples, 0.07%)</title><rect x="62.2550%" y="3029" width="0.0682%" height="15" fill="rgb(238,75,33)" fg:x="14610" fg:w="16"/><text x="62.5050%" y="3039.50"></text></g><g><title>core::num::<impl usize>::wrapping_sub (3 samples, 0.01%)</title><rect x="62.3104%" y="3013" width="0.0128%" height="15" fill="rgb(217,59,40)" fg:x="14623" fg:w="3"/><text x="62.5604%" y="3023.50"></text></g><g><title>core::slice::memchr::memchr_naive (13 samples, 0.06%)</title><rect x="62.3232%" y="3029" width="0.0554%" height="15" fill="rgb(241,87,40)" fg:x="14626" fg:w="13"/><text x="62.5732%" y="3039.50"></text></g><g><title><core::str::iter::SplitInclusive<P> as core::iter::traits::iterator::Iterator>::next (88 samples, 0.37%)</title><rect x="62.0164%" y="3109" width="0.3750%" height="15" fill="rgb(216,199,52)" fg:x="14554" fg:w="88"/><text x="62.2664%" y="3119.50"></text></g><g><title>core::str::iter::SplitInternal<P>::next_inclusive (88 samples, 0.37%)</title><rect x="62.0164%" y="3093" width="0.3750%" height="15" fill="rgb(222,106,41)" fg:x="14554" fg:w="88"/><text x="62.2664%" y="3103.50"></text></g><g><title><core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match (75 samples, 0.32%)</title><rect x="62.0718%" y="3077" width="0.3196%" height="15" fill="rgb(217,159,51)" fg:x="14567" fg:w="75"/><text x="62.3218%" y="3087.50"></text></g><g><title>core::slice::memchr::memchr (73 samples, 0.31%)</title><rect x="62.0803%" y="3061" width="0.3111%" height="15" fill="rgb(248,175,52)" fg:x="14569" fg:w="73"/><text x="62.3303%" y="3071.50"></text></g><g><title>core::slice::memchr::memchr_aligned (72 samples, 0.31%)</title><rect x="62.0845%" y="3045" width="0.3068%" height="15" fill="rgb(208,41,22)" fg:x="14570" fg:w="72"/><text x="62.3345%" y="3055.50"></text></g><g><title>core::slice::memchr::repeat_byte (3 samples, 0.01%)</title><rect x="62.3786%" y="3029" width="0.0128%" height="15" fill="rgb(236,40,41)" fg:x="14639" fg:w="3"/><text x="62.6286%" y="3039.50"></text></g><g><title><core::str::iter::Lines as core::iter::traits::iterator::Iterator>::next (92 samples, 0.39%)</title><rect x="62.0164%" y="3141" width="0.3920%" height="15" fill="rgb(237,165,14)" fg:x="14554" fg:w="92"/><text x="62.2664%" y="3151.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (92 samples, 0.39%)</title><rect x="62.0164%" y="3125" width="0.3920%" height="15" fill="rgb(219,90,26)" fg:x="14554" fg:w="92"/><text x="62.2664%" y="3135.50"></text></g><g><title>core::option::Option<T>::map (4 samples, 0.02%)</title><rect x="62.3913%" y="3109" width="0.0170%" height="15" fill="rgb(243,127,29)" fg:x="14642" fg:w="4"/><text x="62.6413%" y="3119.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (4 samples, 0.02%)</title><rect x="62.3913%" y="3093" width="0.0170%" height="15" fill="rgb(218,168,29)" fg:x="14642" fg:w="4"/><text x="62.6413%" y="3103.50"></text></g><g><title><core::str::LinesMap as core::ops::function::FnMut<(&str,)>>::call_mut (4 samples, 0.02%)</title><rect x="62.3913%" y="3077" width="0.0170%" height="15" fill="rgb(239,124,19)" fg:x="14642" fg:w="4"/><text x="62.6413%" y="3087.50"></text></g><g><title><core::str::LinesMap as core::ops::function::Fn<(&str,)>>::call (4 samples, 0.02%)</title><rect x="62.3913%" y="3061" width="0.0170%" height="15" fill="rgb(253,137,15)" fg:x="14642" fg:w="4"/><text x="62.6413%" y="3071.50"></text></g><g><title>core::str::<impl str>::strip_suffix (3 samples, 0.01%)</title><rect x="62.3956%" y="3045" width="0.0128%" height="15" fill="rgb(223,42,39)" fg:x="14643" fg:w="3"/><text x="62.6456%" y="3055.50"></text></g><g><title><char as core::str::pattern::Pattern>::strip_suffix_of (3 samples, 0.01%)</title><rect x="62.3956%" y="3029" width="0.0128%" height="15" fill="rgb(226,17,47)" fg:x="14643" fg:w="3"/><text x="62.6456%" y="3039.50"></text></g><g><title><&str as core::str::pattern::Pattern>::strip_suffix_of (3 samples, 0.01%)</title><rect x="62.3956%" y="3013" width="0.0128%" height="15" fill="rgb(208,104,21)" fg:x="14643" fg:w="3"/><text x="62.6456%" y="3023.50"></text></g><g><title><&str as core::str::pattern::Pattern>::is_suffix_of (3 samples, 0.01%)</title><rect x="62.3956%" y="2997" width="0.0128%" height="15" fill="rgb(231,156,14)" fg:x="14643" fg:w="3"/><text x="62.6456%" y="3007.50"></text></g><g><title>core::slice::<impl [T]>::ends_with (3 samples, 0.01%)</title><rect x="62.3956%" y="2981" width="0.0128%" height="15" fill="rgb(245,224,33)" fg:x="14643" fg:w="3"/><text x="62.6456%" y="2991.50"></text></g><g><title><core::str::iter::Chars as core::iter::traits::iterator::Iterator>::next (65 samples, 0.28%)</title><rect x="62.6854%" y="3125" width="0.2770%" height="15" fill="rgb(242,126,13)" fg:x="14711" fg:w="65"/><text x="62.9354%" y="3135.50"></text></g><g><title>core::str::validations::next_code_point (65 samples, 0.28%)</title><rect x="62.6854%" y="3109" width="0.2770%" height="15" fill="rgb(216,148,52)" fg:x="14711" fg:w="65"/><text x="62.9354%" y="3119.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next (22 samples, 0.09%)</title><rect x="62.8686%" y="3093" width="0.0937%" height="15" fill="rgb(221,7,10)" fg:x="14754" fg:w="22"/><text x="63.1186%" y="3103.50"></text></g><g><title>core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq (60 samples, 0.26%)</title><rect x="63.5930%" y="3045" width="0.2557%" height="15" fill="rgb(252,47,25)" fg:x="14924" fg:w="60"/><text x="63.8430%" y="3055.50"></text></g><g><title>core::slice::cmp::<impl core::cmp::PartialEq<[B]> for [A]>::eq (60 samples, 0.26%)</title><rect x="63.5930%" y="3029" width="0.2557%" height="15" fill="rgb(210,154,28)" fg:x="14924" fg:w="60"/><text x="63.8430%" y="3039.50"></text></g><g><title><[A] as core::slice::cmp::SlicePartialEq<B>>::equal (60 samples, 0.26%)</title><rect x="63.5930%" y="3013" width="0.2557%" height="15" fill="rgb(221,95,34)" fg:x="14924" fg:w="60"/><text x="63.8430%" y="3023.50"></text></g><g><title>core::slice::<impl [T]>::get (56 samples, 0.24%)</title><rect x="63.8486%" y="3045" width="0.2386%" height="15" fill="rgb(251,194,6)" fg:x="14984" fg:w="56"/><text x="64.0986%" y="3055.50"></text></g><g><title><core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::get (56 samples, 0.24%)</title><rect x="63.8486%" y="3029" width="0.2386%" height="15" fill="rgb(249,75,2)" fg:x="14984" fg:w="56"/><text x="64.0986%" y="3039.50"></text></g><g><title>core::slice::memchr::contains_zero_byte (885 samples, 3.77%)</title><rect x="72.2473%" y="3013" width="3.7711%" height="15" fill="rgb(232,10,34)" fg:x="16955" fg:w="885"/><text x="72.4973%" y="3023.50">core..</text></g><g><title>core::num::<impl usize>::wrapping_sub (398 samples, 1.70%)</title><rect x="74.3225%" y="2997" width="1.6959%" height="15" fill="rgb(224,50,13)" fg:x="17442" fg:w="398"/><text x="74.5725%" y="3007.50"></text></g><g><title>core::slice::memchr::memchr_naive (1,092 samples, 4.65%)</title><rect x="76.0184%" y="3013" width="4.6531%" height="15" fill="rgb(245,208,19)" fg:x="17840" fg:w="1092"/><text x="76.2684%" y="3023.50">core:..</text></g><g><title><core::str::iter::Lines as core::iter::traits::iterator::Iterator>::next (4,197 samples, 17.88%)</title><rect x="62.9623%" y="3125" width="17.8839%" height="15" fill="rgb(209,74,35)" fg:x="14776" fg:w="4197"/><text x="63.2123%" y="3135.50"><core::str::iter::Lines as c..</text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (4,197 samples, 17.88%)</title><rect x="62.9623%" y="3109" width="17.8839%" height="15" fill="rgb(250,163,21)" fg:x="14776" fg:w="4197"/><text x="63.2123%" y="3119.50"><core::iter::adapters::map::..</text></g><g><title><core::str::iter::SplitInclusive<P> as core::iter::traits::iterator::Iterator>::next (4,197 samples, 17.88%)</title><rect x="62.9623%" y="3093" width="17.8839%" height="15" fill="rgb(214,107,45)" fg:x="14776" fg:w="4197"/><text x="63.2123%" y="3103.50"><core::str::iter::SplitInclu..</text></g><g><title>core::str::iter::SplitInternal<P>::next_inclusive (4,197 samples, 17.88%)</title><rect x="62.9623%" y="3077" width="17.8839%" height="15" fill="rgb(224,186,7)" fg:x="14776" fg:w="4197"/><text x="63.2123%" y="3087.50">core::str::iter::SplitIntern..</text></g><g><title><core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match (4,135 samples, 17.62%)</title><rect x="63.2265%" y="3061" width="17.6197%" height="15" fill="rgb(217,221,27)" fg:x="14838" fg:w="4135"/><text x="63.4765%" y="3071.50"><core::str::pattern::CharSe..</text></g><g><title>core::slice::memchr::memchr (3,933 samples, 16.76%)</title><rect x="64.0873%" y="3045" width="16.7590%" height="15" fill="rgb(222,8,1)" fg:x="15040" fg:w="3933"/><text x="64.3373%" y="3055.50">core::slice::memchr::memchr</text></g><g><title>core::slice::memchr::memchr_aligned (3,847 samples, 16.39%)</title><rect x="64.4537%" y="3029" width="16.3925%" height="15" fill="rgb(241,60,45)" fg:x="15126" fg:w="3847"/><text x="64.7037%" y="3039.50">core::slice::memchr::memc..</text></g><g><title>core::slice::memchr::repeat_byte (41 samples, 0.17%)</title><rect x="80.6716%" y="3013" width="0.1747%" height="15" fill="rgb(234,195,12)" fg:x="18932" fg:w="41"/><text x="80.9216%" y="3023.50"></text></g><g><title>core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next (50 samples, 0.21%)</title><rect x="80.8463%" y="3125" width="0.2131%" height="15" fill="rgb(229,226,25)" fg:x="18973" fg:w="50"/><text x="81.0963%" y="3135.50"></text></g><g><title><core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next (50 samples, 0.21%)</title><rect x="80.8463%" y="3109" width="0.2131%" height="15" fill="rgb(223,159,33)" fg:x="18973" fg:w="50"/><text x="81.0963%" y="3119.50"></text></g><g><title>core::cmp::impls::<impl core::cmp::PartialOrd for usize>::lt (46 samples, 0.20%)</title><rect x="80.8633%" y="3093" width="0.1960%" height="15" fill="rgb(246,36,51)" fg:x="18977" fg:w="46"/><text x="81.1133%" y="3103.50"></text></g><g><title>core::iter::traits::iterator::Iterator::nth (4,512 samples, 19.23%)</title><rect x="61.9397%" y="3157" width="19.2262%" height="15" fill="rgb(232,140,20)" fg:x="14536" fg:w="4512"/><text x="62.1897%" y="3167.50">core::iter::traits::iterator::..</text></g><g><title>core::iter::traits::iterator::Iterator::advance_by (4,402 samples, 18.76%)</title><rect x="62.4084%" y="3141" width="18.7575%" height="15" fill="rgb(212,61,27)" fg:x="14646" fg:w="4402"/><text x="62.6584%" y="3151.50">core::iter::traits::iterator:..</text></g><g><title>core::option::Option<T>::is_none (25 samples, 0.11%)</title><rect x="81.0593%" y="3125" width="0.1065%" height="15" fill="rgb(233,129,35)" fg:x="19023" fg:w="25"/><text x="81.3093%" y="3135.50"></text></g><g><title>core::option::Option<T>::is_some (25 samples, 0.11%)</title><rect x="81.0593%" y="3109" width="0.1065%" height="15" fill="rgb(242,98,8)" fg:x="19023" fg:w="25"/><text x="81.3093%" y="3119.50"></text></g><g><title>core::slice::<impl [T]>::contains (6 samples, 0.03%)</title><rect x="81.1658%" y="3157" width="0.0256%" height="15" fill="rgb(251,155,27)" fg:x="19048" fg:w="6"/><text x="81.4158%" y="3167.50"></text></g><g><title><T as core::slice::cmp::SliceContains>::slice_contains (6 samples, 0.03%)</title><rect x="81.1658%" y="3141" width="0.0256%" height="15" fill="rgb(214,120,2)" fg:x="19048" fg:w="6"/><text x="81.4158%" y="3151.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any (6 samples, 0.03%)</title><rect x="81.1658%" y="3125" width="0.0256%" height="15" fill="rgb(219,191,54)" fg:x="19048" fg:w="6"/><text x="81.4158%" y="3135.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::for_each (4,651 samples, 19.82%)</title><rect x="61.3900%" y="3189" width="19.8185%" height="15" fill="rgb(253,95,30)" fg:x="14407" fg:w="4651"/><text x="61.6400%" y="3199.50"><core::slice::iter::Iter<T> as ..</text></g><g><title>day_11::part2::_{{closure}} (4,642 samples, 19.78%)</title><rect x="61.4283%" y="3173" width="19.7801%" height="15" fill="rgb(246,74,29)" fg:x="14416" fg:w="4642"/><text x="61.6783%" y="3183.50">day_11::part2::_{{closure}}</text></g><g><title>ndarray::arraytraits::<impl core::ops::index::Index<I> for ndarray::ArrayBase<S,D>>::index (3 samples, 0.01%)</title><rect x="81.1957%" y="3157" width="0.0128%" height="15" fill="rgb(231,210,14)" fg:x="19055" fg:w="3"/><text x="81.4457%" y="3167.50"></text></g><g><title><[usize: 2] as ndarray::dimension::ndindex::NdIndex<ndarray::dimension::dim::Dim<[usize: 2]>>>::index_checked (3 samples, 0.01%)</title><rect x="81.1957%" y="3141" width="0.0128%" height="15" fill="rgb(246,176,27)" fg:x="19055" fg:w="3"/><text x="81.4457%" y="3151.50"></text></g><g><title><ndarray::dimension::dim::Dim<[usize: 2]> as ndarray::dimension::dimension_trait::Dimension>::stride_offset_checked (3 samples, 0.01%)</title><rect x="81.1957%" y="3125" width="0.0128%" height="15" fill="rgb(238,216,9)" fg:x="19055" fg:w="3"/><text x="81.4457%" y="3135.50"></text></g><g><title>core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next (4 samples, 0.02%)</title><rect x="81.2127%" y="3189" width="0.0170%" height="15" fill="rgb(215,124,40)" fg:x="19059" fg:w="4"/><text x="81.4627%" y="3199.50"></text></g><g><title><core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next (4 samples, 0.02%)</title><rect x="81.2127%" y="3173" width="0.0170%" height="15" fill="rgb(216,211,30)" fg:x="19059" fg:w="4"/><text x="81.4627%" y="3183.50"></text></g><g><title>core::ptr::drop_in_place<alloc::vec::Vec<day_11::Point>> (27 samples, 0.12%)</title><rect x="81.2511%" y="3189" width="0.1151%" height="15" fill="rgb(239,20,10)" fg:x="19068" fg:w="27"/><text x="81.5011%" y="3199.50"></text></g><g><title>core::ptr::drop_in_place<alloc::raw_vec::RawVec<day_11::Point>> (27 samples, 0.12%)</title><rect x="81.2511%" y="3173" width="0.1151%" height="15" fill="rgb(207,105,9)" fg:x="19068" fg:w="27"/><text x="81.5011%" y="3183.50"></text></g><g><title><alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop (27 samples, 0.12%)</title><rect x="81.2511%" y="3157" width="0.1151%" height="15" fill="rgb(243,156,11)" fg:x="19068" fg:w="27"/><text x="81.5011%" y="3167.50"></text></g><g><title><alloc::alloc::Global as core::alloc::Allocator>::deallocate (27 samples, 0.12%)</title><rect x="81.2511%" y="3141" width="0.1151%" height="15" fill="rgb(252,107,27)" fg:x="19068" fg:w="27"/><text x="81.5011%" y="3151.50"></text></g><g><title>alloc::alloc::dealloc (27 samples, 0.12%)</title><rect x="81.2511%" y="3125" width="0.1151%" height="15" fill="rgb(246,130,11)" fg:x="19068" fg:w="27"/><text x="81.5011%" y="3135.50"></text></g><g><title>cfree (27 samples, 0.12%)</title><rect x="81.2511%" y="3109" width="0.1151%" height="15" fill="rgb(245,165,7)" fg:x="19068" fg:w="27"/><text x="81.5011%" y="3119.50"></text></g><g><title>[libc.so.6] (13 samples, 0.06%)</title><rect x="81.3107%" y="3093" width="0.0554%" height="15" fill="rgb(246,201,2)" fg:x="19082" fg:w="13"/><text x="81.5607%" y="3103.50"></text></g><g><title>core::slice::<impl [T]>::contains (21 samples, 0.09%)</title><rect x="81.3661%" y="3189" width="0.0895%" height="15" fill="rgb(242,183,45)" fg:x="19095" fg:w="21"/><text x="81.6161%" y="3199.50"></text></g><g><title><T as core::slice::cmp::SliceContains>::slice_contains (21 samples, 0.09%)</title><rect x="81.3661%" y="3173" width="0.0895%" height="15" fill="rgb(223,179,4)" fg:x="19095" fg:w="21"/><text x="81.6161%" y="3183.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any (21 samples, 0.09%)</title><rect x="81.3661%" y="3157" width="0.0895%" height="15" fill="rgb(233,8,15)" fg:x="19095" fg:w="21"/><text x="81.6161%" y="3167.50"></text></g><g><title>fmodf (8 samples, 0.03%)</title><rect x="81.4556%" y="3189" width="0.0341%" height="15" fill="rgb(243,156,32)" fg:x="19116" fg:w="8"/><text x="81.7056%" y="3199.50"></text></g><g><title>ndarray::arraytraits::<impl core::ops::index::Index<I> for ndarray::ArrayBase<S,D>>::index (3 samples, 0.01%)</title><rect x="81.4897%" y="3189" width="0.0128%" height="15" fill="rgb(219,119,2)" fg:x="19124" fg:w="3"/><text x="81.7397%" y="3199.50"></text></g><g><title><[usize: 2] as ndarray::dimension::ndindex::NdIndex<ndarray::dimension::dim::Dim<[usize: 2]>>>::index_checked (3 samples, 0.01%)</title><rect x="81.4897%" y="3173" width="0.0128%" height="15" fill="rgb(207,21,54)" fg:x="19124" fg:w="3"/><text x="81.7397%" y="3183.50"></text></g><g><title><ndarray::dimension::dim::Dim<[usize: 2]> as ndarray::dimension::dimension_trait::Dimension>::stride_offset_checked (3 samples, 0.01%)</title><rect x="81.4897%" y="3157" width="0.0128%" height="15" fill="rgb(206,167,8)" fg:x="19124" fg:w="3"/><text x="81.7397%" y="3167.50"></text></g><g><title><criterion::routine::Function<M,F,T> as criterion::routine::Routine<M,T>>::bench (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3461" width="21.7871%" height="15" fill="rgb(237,140,4)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3471.50"><criterion::routine::Function<M,F,..</text></g><g><title>core::iter::traits::iterator::Iterator::collect (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3445" width="21.7871%" height="15" fill="rgb(234,104,27)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3455.50">core::iter::traits::iterator::Iter..</text></g><g><title><alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3429" width="21.7871%" height="15" fill="rgb(252,218,35)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3439.50"><alloc::vec::Vec<T> as core::iter:..</text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3413" width="21.7871%" height="15" fill="rgb(224,106,29)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3423.50"><alloc::vec::Vec<T> as alloc::vec:..</text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3397" width="21.7871%" height="15" fill="rgb(205,203,42)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3407.50"><alloc::vec::Vec<T> as alloc::vec:..</text></g><g><title><alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3381" width="21.7871%" height="15" fill="rgb(248,64,17)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3391.50"><alloc::vec::Vec<T,A> as alloc::ve..</text></g><g><title>alloc::vec::Vec<T,A>::extend_trusted (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3365" width="21.7871%" height="15" fill="rgb(220,76,35)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3375.50">alloc::vec::Vec<T,A>::extend_trust..</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3349" width="21.7871%" height="15" fill="rgb(238,46,53)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3359.50">core::iter::traits::iterator::Iter..</text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3333" width="21.7871%" height="15" fill="rgb(252,142,8)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3343.50"><core::iter::adapters::map::Map<I,..</text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3317" width="21.7871%" height="15" fill="rgb(221,211,13)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3327.50"><core::slice::iter::Iter<T> as cor..</text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3301" width="21.7871%" height="15" fill="rgb(223,20,10)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3311.50">core::iter::adapters::map::map_fol..</text></g><g><title><criterion::routine::Function<M,F,T> as criterion::routine::Routine<M,T>>::bench::_{{closure}} (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3285" width="21.7871%" height="15" fill="rgb(228,82,17)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3295.50"><criterion::routine::Function<M,F,..</text></g><g><title>criterion::benchmark_group::BenchmarkGroup<M>::bench_function::_{{closure}} (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3269" width="21.7871%" height="15" fill="rgb(214,86,8)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3279.50">criterion::benchmark_group::Benchm..</text></g><g><title>part2::criterion_benchmark::_{{closure}} (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3253" width="21.7871%" height="15" fill="rgb(254,52,34)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3263.50">part2::criterion_benchmark::_{{clo..</text></g><g><title>criterion::bencher::Bencher<M>::iter (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3237" width="21.7871%" height="15" fill="rgb(215,44,12)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3247.50">criterion::bencher::Bencher<M>::it..</text></g><g><title>part2::criterion_benchmark::_{{closure}}::_{{closure}} (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3221" width="21.7871%" height="15" fill="rgb(211,67,14)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3231.50">part2::criterion_benchmark::_{{clo..</text></g><g><title>day_11::part2 (5,113 samples, 21.79%)</title><rect x="59.7196%" y="3205" width="21.7871%" height="15" fill="rgb(222,178,10)" fg:x="14015" fg:w="5113"/><text x="59.9696%" y="3215.50">day_11::part2</text></g><g><title><core::iter::adapters::rev::Rev<I> as core::iter::traits::iterator::Iterator>::next (46 samples, 0.20%)</title><rect x="82.7467%" y="3365" width="0.1960%" height="15" fill="rgb(225,214,26)" fg:x="19419" fg:w="46"/><text x="82.9967%" y="3375.50"></text></g><g><title>core::iter::range::<impl core::iter::traits::double_ended::DoubleEndedIterator for core::ops::range::Range<A>>::next_back (46 samples, 0.20%)</title><rect x="82.7467%" y="3349" width="0.1960%" height="15" fill="rgb(245,215,35)" fg:x="19419" fg:w="46"/><text x="82.9967%" y="3359.50"></text></g><g><title><core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next_back (46 samples, 0.20%)</title><rect x="82.7467%" y="3333" width="0.1960%" height="15" fill="rgb(208,178,8)" fg:x="19419" fg:w="46"/><text x="82.9967%" y="3343.50"></text></g><g><title>core::cmp::impls::<impl core::cmp::PartialOrd for usize>::lt (44 samples, 0.19%)</title><rect x="82.7552%" y="3317" width="0.1875%" height="15" fill="rgb(247,116,27)" fg:x="19421" fg:w="44"/><text x="83.0052%" y="3327.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next (3 samples, 0.01%)</title><rect x="82.9470%" y="3349" width="0.0128%" height="15" fill="rgb(246,103,29)" fg:x="19466" fg:w="3"/><text x="83.1970%" y="3359.50"></text></g><g><title>alloc::raw_vec::finish_grow (25 samples, 0.11%)</title><rect x="83.1899%" y="3285" width="0.1065%" height="15" fill="rgb(251,223,6)" fg:x="19523" fg:w="25"/><text x="83.4399%" y="3295.50"></text></g><g><title>malloc (19 samples, 0.08%)</title><rect x="83.2154%" y="3269" width="0.0810%" height="15" fill="rgb(209,53,48)" fg:x="19529" fg:w="19"/><text x="83.4654%" y="3279.50"></text></g><g><title>alloc::raw_vec::RawVec<T,A>::reserve_for_push (33 samples, 0.14%)</title><rect x="83.1771%" y="3317" width="0.1406%" height="15" fill="rgb(232,194,5)" fg:x="19520" fg:w="33"/><text x="83.4271%" y="3327.50"></text></g><g><title>alloc::raw_vec::RawVec<T,A>::grow_amortized (33 samples, 0.14%)</title><rect x="83.1771%" y="3301" width="0.1406%" height="15" fill="rgb(208,217,45)" fg:x="19520" fg:w="33"/><text x="83.4271%" y="3311.50"></text></g><g><title>core::cmp::max (5 samples, 0.02%)</title><rect x="83.2964%" y="3285" width="0.0213%" height="15" fill="rgb(229,9,32)" fg:x="19548" fg:w="5"/><text x="83.5464%" y="3295.50"></text></g><g><title>core::cmp::Ord::max (5 samples, 0.02%)</title><rect x="83.2964%" y="3269" width="0.0213%" height="15" fill="rgb(226,28,38)" fg:x="19548" fg:w="5"/><text x="83.5464%" y="3279.50"></text></g><g><title>core::cmp::max_by (5 samples, 0.02%)</title><rect x="83.2964%" y="3253" width="0.0213%" height="15" fill="rgb(224,223,0)" fg:x="19548" fg:w="5"/><text x="83.5464%" y="3263.50"></text></g><g><title>alloc::vec::Vec<T,A>::push (50 samples, 0.21%)</title><rect x="83.1430%" y="3333" width="0.2131%" height="15" fill="rgb(225,131,31)" fg:x="19512" fg:w="50"/><text x="83.3930%" y="3343.50"></text></g><g><title>core::ptr::write (8 samples, 0.03%)</title><rect x="83.3220%" y="3317" width="0.0341%" height="15" fill="rgb(233,198,46)" fg:x="19554" fg:w="8"/><text x="83.5720%" y="3327.50"></text></g><g><title><core::str::iter::Chars as core::iter::traits::iterator::Iterator>::next (19 samples, 0.08%)</title><rect x="83.3561%" y="3317" width="0.0810%" height="15" fill="rgb(244,145,17)" fg:x="19562" fg:w="19"/><text x="83.6061%" y="3327.50"></text></g><g><title>core::str::validations::next_code_point (19 samples, 0.08%)</title><rect x="83.3561%" y="3301" width="0.0810%" height="15" fill="rgb(227,151,39)" fg:x="19562" fg:w="19"/><text x="83.6061%" y="3311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next (14 samples, 0.06%)</title><rect x="83.3774%" y="3285" width="0.0597%" height="15" fill="rgb(236,83,19)" fg:x="19567" fg:w="14"/><text x="83.6274%" y="3295.50"></text></g><g><title>core::slice::memchr::contains_zero_byte (14 samples, 0.06%)</title><rect x="83.5734%" y="3205" width="0.0597%" height="15" fill="rgb(233,34,16)" fg:x="19613" fg:w="14"/><text x="83.8234%" y="3215.50"></text></g><g><title>core::num::<impl usize>::wrapping_sub (4 samples, 0.02%)</title><rect x="83.6160%" y="3189" width="0.0170%" height="15" fill="rgb(245,87,0)" fg:x="19623" fg:w="4"/><text x="83.8660%" y="3199.50"></text></g><g><title>core::slice::memchr::memchr_naive (15 samples, 0.06%)</title><rect x="83.6330%" y="3205" width="0.0639%" height="15" fill="rgb(247,10,26)" fg:x="19627" fg:w="15"/><text x="83.8830%" y="3215.50"></text></g><g><title><core::str::iter::SplitInclusive<P> as core::iter::traits::iterator::Iterator>::next (62 samples, 0.26%)</title><rect x="83.4370%" y="3285" width="0.2642%" height="15" fill="rgb(243,127,34)" fg:x="19581" fg:w="62"/><text x="83.6870%" y="3295.50"></text></g><g><title>core::str::iter::SplitInternal<P>::next_inclusive (62 samples, 0.26%)</title><rect x="83.4370%" y="3269" width="0.2642%" height="15" fill="rgb(230,164,1)" fg:x="19581" fg:w="62"/><text x="83.6870%" y="3279.50"></text></g><g><title><core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match (56 samples, 0.24%)</title><rect x="83.4626%" y="3253" width="0.2386%" height="15" fill="rgb(252,206,21)" fg:x="19587" fg:w="56"/><text x="83.7126%" y="3263.50"></text></g><g><title>core::slice::memchr::memchr (54 samples, 0.23%)</title><rect x="83.4711%" y="3237" width="0.2301%" height="15" fill="rgb(213,26,9)" fg:x="19589" fg:w="54"/><text x="83.7211%" y="3247.50"></text></g><g><title>core::slice::memchr::memchr_aligned (54 samples, 0.23%)</title><rect x="83.4711%" y="3221" width="0.2301%" height="15" fill="rgb(221,206,4)" fg:x="19589" fg:w="54"/><text x="83.7211%" y="3231.50"></text></g><g><title><core::str::iter::Lines as core::iter::traits::iterator::Iterator>::next (69 samples, 0.29%)</title><rect x="83.4370%" y="3317" width="0.2940%" height="15" fill="rgb(253,117,4)" fg:x="19581" fg:w="69"/><text x="83.6870%" y="3327.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (69 samples, 0.29%)</title><rect x="83.4370%" y="3301" width="0.2940%" height="15" fill="rgb(211,101,0)" fg:x="19581" fg:w="69"/><text x="83.6870%" y="3311.50"></text></g><g><title>core::option::Option<T>::map (7 samples, 0.03%)</title><rect x="83.7012%" y="3285" width="0.0298%" height="15" fill="rgb(210,176,27)" fg:x="19643" fg:w="7"/><text x="83.9512%" y="3295.50"></text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (7 samples, 0.03%)</title><rect x="83.7012%" y="3269" width="0.0298%" height="15" fill="rgb(226,179,3)" fg:x="19643" fg:w="7"/><text x="83.9512%" y="3279.50"></text></g><g><title><core::str::LinesMap as core::ops::function::FnMut<(&str,)>>::call_mut (7 samples, 0.03%)</title><rect x="83.7012%" y="3253" width="0.0298%" height="15" fill="rgb(209,76,38)" fg:x="19643" fg:w="7"/><text x="83.9512%" y="3263.50"></text></g><g><title><core::str::LinesMap as core::ops::function::Fn<(&str,)>>::call (7 samples, 0.03%)</title><rect x="83.7012%" y="3237" width="0.0298%" height="15" fill="rgb(212,137,1)" fg:x="19643" fg:w="7"/><text x="83.9512%" y="3247.50"></text></g><g><title>core::str::<impl str>::strip_suffix (5 samples, 0.02%)</title><rect x="83.7097%" y="3221" width="0.0213%" height="15" fill="rgb(217,57,13)" fg:x="19645" fg:w="5"/><text x="83.9597%" y="3231.50"></text></g><g><title><char as core::str::pattern::Pattern>::strip_suffix_of (5 samples, 0.02%)</title><rect x="83.7097%" y="3205" width="0.0213%" height="15" fill="rgb(225,146,5)" fg:x="19645" fg:w="5"/><text x="83.9597%" y="3215.50"></text></g><g><title><&str as core::str::pattern::Pattern>::strip_suffix_of (5 samples, 0.02%)</title><rect x="83.7097%" y="3189" width="0.0213%" height="15" fill="rgb(210,229,8)" fg:x="19645" fg:w="5"/><text x="83.9597%" y="3199.50"></text></g><g><title><&str as core::str::pattern::Pattern>::is_suffix_of (5 samples, 0.02%)</title><rect x="83.7097%" y="3173" width="0.0213%" height="15" fill="rgb(211,209,10)" fg:x="19645" fg:w="5"/><text x="83.9597%" y="3183.50"></text></g><g><title>core::slice::<impl [T]>::ends_with (5 samples, 0.02%)</title><rect x="83.7097%" y="3157" width="0.0213%" height="15" fill="rgb(254,124,25)" fg:x="19645" fg:w="5"/><text x="83.9597%" y="3167.50"></text></g><g><title><core::str::iter::Chars as core::iter::traits::iterator::Iterator>::next (47 samples, 0.20%)</title><rect x="83.9569%" y="3301" width="0.2003%" height="15" fill="rgb(244,55,2)" fg:x="19703" fg:w="47"/><text x="84.2069%" y="3311.50"></text></g><g><title>core::str::validations::next_code_point (47 samples, 0.20%)</title><rect x="83.9569%" y="3285" width="0.2003%" height="15" fill="rgb(217,224,38)" fg:x="19703" fg:w="47"/><text x="84.2069%" y="3295.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next (16 samples, 0.07%)</title><rect x="84.0890%" y="3269" width="0.0682%" height="15" fill="rgb(245,109,5)" fg:x="19734" fg:w="16"/><text x="84.3390%" y="3279.50"></text></g><g><title>core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq (49 samples, 0.21%)</title><rect x="84.7111%" y="3221" width="0.2088%" height="15" fill="rgb(244,142,2)" fg:x="19880" fg:w="49"/><text x="84.9611%" y="3231.50"></text></g><g><title>core::slice::cmp::<impl core::cmp::PartialEq<[B]> for [A]>::eq (49 samples, 0.21%)</title><rect x="84.7111%" y="3205" width="0.2088%" height="15" fill="rgb(207,58,9)" fg:x="19880" fg:w="49"/><text x="84.9611%" y="3215.50"></text></g><g><title><[A] as core::slice::cmp::SlicePartialEq<B>>::equal (49 samples, 0.21%)</title><rect x="84.7111%" y="3189" width="0.2088%" height="15" fill="rgb(233,74,32)" fg:x="19880" fg:w="49"/><text x="84.9611%" y="3199.50"></text></g><g><title>core::slice::<impl [T]>::get (62 samples, 0.26%)</title><rect x="84.9199%" y="3221" width="0.2642%" height="15" fill="rgb(254,136,5)" fg:x="19929" fg:w="62"/><text x="85.1699%" y="3231.50"></text></g><g><title><core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::get (62 samples, 0.26%)</title><rect x="84.9199%" y="3205" width="0.2642%" height="15" fill="rgb(218,19,54)" fg:x="19929" fg:w="62"/><text x="85.1699%" y="3215.50"></text></g><g><title>core::slice::memchr::contains_zero_byte (717 samples, 3.06%)</title><rect x="92.1553%" y="3189" width="3.0552%" height="15" fill="rgb(233,210,44)" fg:x="21627" fg:w="717"/><text x="92.4053%" y="3199.50">cor..</text></g><g><title>core::num::<impl usize>::wrapping_sub (321 samples, 1.37%)</title><rect x="93.8427%" y="3173" width="1.3678%" height="15" fill="rgb(217,184,34)" fg:x="22023" fg:w="321"/><text x="94.0927%" y="3183.50"></text></g><g><title>core::slice::memchr::memchr_naive (929 samples, 3.96%)</title><rect x="95.2105%" y="3189" width="3.9586%" height="15" fill="rgb(241,198,28)" fg:x="22344" fg:w="929"/><text x="95.4605%" y="3199.50">core..</text></g><g><title><core::str::iter::Lines as core::iter::traits::iterator::Iterator>::next (3,568 samples, 15.20%)</title><rect x="84.1572%" y="3301" width="15.2037%" height="15" fill="rgb(248,50,3)" fg:x="19750" fg:w="3568"/><text x="84.4072%" y="3311.50"><core::str::iter::Lines..</text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (3,568 samples, 15.20%)</title><rect x="84.1572%" y="3285" width="15.2037%" height="15" fill="rgb(206,20,36)" fg:x="19750" fg:w="3568"/><text x="84.4072%" y="3295.50"><core::iter::adapters::..</text></g><g><title><core::str::iter::SplitInclusive<P> as core::iter::traits::iterator::Iterator>::next (3,568 samples, 15.20%)</title><rect x="84.1572%" y="3269" width="15.2037%" height="15" fill="rgb(235,182,44)" fg:x="19750" fg:w="3568"/><text x="84.4072%" y="3279.50"><core::str::iter::Split..</text></g><g><title>core::str::iter::SplitInternal<P>::next_inclusive (3,568 samples, 15.20%)</title><rect x="84.1572%" y="3253" width="15.2037%" height="15" fill="rgb(235,201,32)" fg:x="19750" fg:w="3568"/><text x="84.4072%" y="3263.50">core::str::iter::SplitI..</text></g><g><title><core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match (3,507 samples, 14.94%)</title><rect x="84.4171%" y="3237" width="14.9438%" height="15" fill="rgb(229,229,52)" fg:x="19811" fg:w="3507"/><text x="84.6671%" y="3247.50"><core::str::pattern::Ch..</text></g><g><title>core::slice::memchr::memchr (3,327 samples, 14.18%)</title><rect x="85.1841%" y="3221" width="14.1768%" height="15" fill="rgb(240,39,43)" fg:x="19991" fg:w="3327"/><text x="85.4341%" y="3231.50">core::slice::memchr::m..</text></g><g><title>core::slice::memchr::memchr_aligned (3,251 samples, 13.85%)</title><rect x="85.5079%" y="3205" width="13.8529%" height="15" fill="rgb(224,176,5)" fg:x="20067" fg:w="3251"/><text x="85.7579%" y="3215.50">core::slice::memchr::..</text></g><g><title>core::slice::memchr::repeat_byte (45 samples, 0.19%)</title><rect x="99.1691%" y="3189" width="0.1918%" height="15" fill="rgb(254,31,30)" fg:x="23273" fg:w="45"/><text x="99.4191%" y="3199.50"></text></g><g><title>core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next (32 samples, 0.14%)</title><rect x="99.3608%" y="3301" width="0.1364%" height="15" fill="rgb(253,93,32)" fg:x="23318" fg:w="32"/><text x="99.6108%" y="3311.50"></text></g><g><title><core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next (32 samples, 0.14%)</title><rect x="99.3608%" y="3285" width="0.1364%" height="15" fill="rgb(226,128,37)" fg:x="23318" fg:w="32"/><text x="99.6108%" y="3295.50"></text></g><g><title>core::cmp::impls::<impl core::cmp::PartialOrd for usize>::lt (31 samples, 0.13%)</title><rect x="99.3651%" y="3269" width="0.1321%" height="15" fill="rgb(236,39,24)" fg:x="23319" fg:w="31"/><text x="99.6151%" y="3279.50"></text></g><g><title>core::iter::traits::iterator::Iterator::nth (3,799 samples, 16.19%)</title><rect x="83.3561%" y="3333" width="16.1880%" height="15" fill="rgb(238,69,0)" fg:x="19562" fg:w="3799"/><text x="83.6061%" y="3343.50">core::iter::traits::itera..</text></g><g><title>core::iter::traits::iterator::Iterator::advance_by (3,711 samples, 15.81%)</title><rect x="83.7310%" y="3317" width="15.8130%" height="15" fill="rgb(216,166,50)" fg:x="19650" fg:w="3711"/><text x="83.9810%" y="3327.50">core::iter::traits::iter..</text></g><g><title>core::option::Option<T>::is_none (11 samples, 0.05%)</title><rect x="99.4972%" y="3301" width="0.0469%" height="15" fill="rgb(205,31,14)" fg:x="23350" fg:w="11"/><text x="99.7472%" y="3311.50"></text></g><g><title>core::option::Option<T>::is_some (11 samples, 0.05%)</title><rect x="99.4972%" y="3285" width="0.0469%" height="15" fill="rgb(224,22,3)" fg:x="23350" fg:w="11"/><text x="99.7472%" y="3295.50"></text></g><g><title>core::slice::<impl [T]>::contains (7 samples, 0.03%)</title><rect x="99.5441%" y="3333" width="0.0298%" height="15" fill="rgb(238,160,7)" fg:x="23361" fg:w="7"/><text x="99.7941%" y="3343.50"></text></g><g><title><T as core::slice::cmp::SliceContains>::slice_contains (7 samples, 0.03%)</title><rect x="99.5441%" y="3317" width="0.0298%" height="15" fill="rgb(208,121,44)" fg:x="23361" fg:w="7"/><text x="99.7941%" y="3327.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any (7 samples, 0.03%)</title><rect x="99.5441%" y="3301" width="0.0298%" height="15" fill="rgb(252,32,43)" fg:x="23361" fg:w="7"/><text x="99.7941%" y="3311.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::for_each (3,906 samples, 16.64%)</title><rect x="82.9427%" y="3365" width="16.6439%" height="15" fill="rgb(245,148,6)" fg:x="19465" fg:w="3906"/><text x="83.1927%" y="3375.50"><core::slice::iter::Iter<T..</text></g><g><title>day_11::part2::_{{closure}} (3,902 samples, 16.63%)</title><rect x="82.9598%" y="3349" width="16.6269%" height="15" fill="rgb(224,15,32)" fg:x="19469" fg:w="3902"/><text x="83.2098%" y="3359.50">day_11::part2::_{{closure}}</text></g><g><title>core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next (4 samples, 0.02%)</title><rect x="99.5909%" y="3365" width="0.0170%" height="15" fill="rgb(250,120,37)" fg:x="23372" fg:w="4"/><text x="99.8409%" y="3375.50"></text></g><g><title><core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next (4 samples, 0.02%)</title><rect x="99.5909%" y="3349" width="0.0170%" height="15" fill="rgb(219,126,15)" fg:x="23372" fg:w="4"/><text x="99.8409%" y="3359.50"></text></g><g><title><alloc::alloc::Global as core::alloc::Allocator>::deallocate (19 samples, 0.08%)</title><rect x="99.6208%" y="3317" width="0.0810%" height="15" fill="rgb(242,137,36)" fg:x="23379" fg:w="19"/><text x="99.8708%" y="3327.50"></text></g><g><title>alloc::alloc::dealloc (19 samples, 0.08%)</title><rect x="99.6208%" y="3301" width="0.0810%" height="15" fill="rgb(247,31,3)" fg:x="23379" fg:w="19"/><text x="99.8708%" y="3311.50"></text></g><g><title>cfree (19 samples, 0.08%)</title><rect x="99.6208%" y="3285" width="0.0810%" height="15" fill="rgb(232,67,27)" fg:x="23379" fg:w="19"/><text x="99.8708%" y="3295.50"></text></g><g><title>[libc.so.6] (11 samples, 0.05%)</title><rect x="99.6548%" y="3269" width="0.0469%" height="15" fill="rgb(242,163,9)" fg:x="23387" fg:w="11"/><text x="99.9048%" y="3279.50"></text></g><g><title>core::ptr::drop_in_place<alloc::vec::Vec<day_11::Point>> (20 samples, 0.09%)</title><rect x="99.6208%" y="3365" width="0.0852%" height="15" fill="rgb(233,189,0)" fg:x="23379" fg:w="20"/><text x="99.8708%" y="3375.50"></text></g><g><title>core::ptr::drop_in_place<alloc::raw_vec::RawVec<day_11::Point>> (20 samples, 0.09%)</title><rect x="99.6208%" y="3349" width="0.0852%" height="15" fill="rgb(223,210,2)" fg:x="23379" fg:w="20"/><text x="99.8708%" y="3359.50"></text></g><g><title><alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop (20 samples, 0.09%)</title><rect x="99.6208%" y="3333" width="0.0852%" height="15" fill="rgb(254,12,54)" fg:x="23379" fg:w="20"/><text x="99.8708%" y="3343.50"></text></g><g><title>core::slice::<impl [T]>::contains (17 samples, 0.07%)</title><rect x="99.7060%" y="3365" width="0.0724%" height="15" fill="rgb(252,190,52)" fg:x="23399" fg:w="17"/><text x="99.9560%" y="3375.50"></text></g><g><title><T as core::slice::cmp::SliceContains>::slice_contains (17 samples, 0.07%)</title><rect x="99.7060%" y="3349" width="0.0724%" height="15" fill="rgb(214,88,51)" fg:x="23399" fg:w="17"/><text x="99.9560%" y="3359.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any (17 samples, 0.07%)</title><rect x="99.7060%" y="3333" width="0.0724%" height="15" fill="rgb(206,80,37)" fg:x="23399" fg:w="17"/><text x="99.9560%" y="3343.50"></text></g><g><title>_start (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3845" width="40.3059%" height="15" fill="rgb(246,17,10)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3855.50">_start</text></g><g><title>__libc_start_main (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3829" width="40.3059%" height="15" fill="rgb(252,46,43)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3839.50">__libc_start_main</text></g><g><title>[libc.so.6] (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3813" width="40.3059%" height="15" fill="rgb(247,15,39)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3823.50">[libc.so.6]</text></g><g><title>main (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3797" width="40.3059%" height="15" fill="rgb(233,153,4)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3807.50">main</text></g><g><title>std::rt::lang_start_internal (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3781" width="40.3059%" height="15" fill="rgb(210,136,24)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3791.50">std::rt::lang_start_internal</text></g><g><title>std::panic::catch_unwind (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3765" width="40.3059%" height="15" fill="rgb(235,26,19)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3775.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3749" width="40.3059%" height="15" fill="rgb(240,93,1)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3759.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3733" width="40.3059%" height="15" fill="rgb(224,172,54)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3743.50">std::panicking::try::do_call</text></g><g><title>std::rt::lang_start_internal::_{{closure}} (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3717" width="40.3059%" height="15" fill="rgb(237,164,39)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3727.50">std::rt::lang_start_internal::_{{closure}}</text></g><g><title>std::panic::catch_unwind (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3701" width="40.3059%" height="15" fill="rgb(208,95,6)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3711.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3685" width="40.3059%" height="15" fill="rgb(216,132,47)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3695.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3669" width="40.3059%" height="15" fill="rgb(234,121,28)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3679.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3653" width="40.3059%" height="15" fill="rgb(250,152,15)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3663.50">core::ops::function::impls::<impl core::ops::function::FnOnce<A> f..</text></g><g><title>std::rt::lang_start::_{{closure}} (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3637" width="40.3059%" height="15" fill="rgb(207,147,21)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3647.50">std::rt::lang_start::_{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3621" width="40.3059%" height="15" fill="rgb(205,184,36)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3631.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>core::ops::function::FnOnce::call_once (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3605" width="40.3059%" height="15" fill="rgb(208,172,4)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3615.50">core::ops::function::FnOnce::call_once</text></g><g><title>part2::main (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3589" width="40.3059%" height="15" fill="rgb(226,117,40)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3599.50">part2::main</text></g><g><title>part2::benches (9,459 samples, 40.31%)</title><rect x="59.4938%" y="3573" width="40.3059%" height="15" fill="rgb(225,112,47)" fg:x="13962" fg:w="9459"/><text x="59.7438%" y="3583.50">part2::benches</text></g><g><title>part2::criterion_benchmark (9,458 samples, 40.30%)</title><rect x="59.4980%" y="3557" width="40.3017%" height="15" fill="rgb(208,30,7)" fg:x="13963" fg:w="9458"/><text x="59.7480%" y="3567.50">part2::criterion_benchmark</text></g><g><title>criterion::Criterion<M>::bench_function (9,458 samples, 40.30%)</title><rect x="59.4980%" y="3541" width="40.3017%" height="15" fill="rgb(216,216,18)" fg:x="13963" fg:w="9458"/><text x="59.7480%" y="3551.50">criterion::Criterion<M>::bench_function</text></g><g><title>criterion::benchmark_group::BenchmarkGroup<M>::bench_function (9,458 samples, 40.30%)</title><rect x="59.4980%" y="3525" width="40.3017%" height="15" fill="rgb(246,158,18)" fg:x="13963" fg:w="9458"/><text x="59.7480%" y="3535.50">criterion::benchmark_group::BenchmarkGroup<M>::bench_function</text></g><g><title>criterion::benchmark_group::BenchmarkGroup<M>::run_bench (9,458 samples, 40.30%)</title><rect x="59.4980%" y="3509" width="40.3017%" height="15" fill="rgb(227,132,35)" fg:x="13963" fg:w="9458"/><text x="59.7480%" y="3519.50">criterion::benchmark_group::BenchmarkGroup<M>::run_bench</text></g><g><title>criterion::analysis::common (9,458 samples, 40.30%)</title><rect x="59.4980%" y="3493" width="40.3017%" height="15" fill="rgb(235,191,33)" fg:x="13963" fg:w="9458"/><text x="59.7480%" y="3503.50">criterion::analysis::common</text></g><g><title>criterion::routine::Routine::sample (9,406 samples, 40.08%)</title><rect x="59.7196%" y="3477" width="40.0801%" height="15" fill="rgb(227,157,51)" fg:x="14015" fg:w="9406"/><text x="59.9696%" y="3487.50">criterion::routine::Routine::sample</text></g><g><title><criterion::routine::Function<M,F,T> as criterion::routine::Routine<M,T>>::warm_up (4,293 samples, 18.29%)</title><rect x="81.5067%" y="3461" width="18.2930%" height="15" fill="rgb(229,76,4)" fg:x="19128" fg:w="4293"/><text x="81.7567%" y="3471.50"><criterion::routine::Function..</text></g><g><title>criterion::benchmark_group::BenchmarkGroup<M>::bench_function::_{{closure}} (4,293 samples, 18.29%)</title><rect x="81.5067%" y="3445" width="18.2930%" height="15" fill="rgb(245,153,48)" fg:x="19128" fg:w="4293"/><text x="81.7567%" y="3455.50">criterion::benchmark_group::B..</text></g><g><title>part2::criterion_benchmark::_{{closure}} (4,293 samples, 18.29%)</title><rect x="81.5067%" y="3429" width="18.2930%" height="15" fill="rgb(253,103,53)" fg:x="19128" fg:w="4293"/><text x="81.7567%" y="3439.50">part2::criterion_benchmark::_..</text></g><g><title>criterion::bencher::Bencher<M>::iter (4,293 samples, 18.29%)</title><rect x="81.5067%" y="3413" width="18.2930%" height="15" fill="rgb(229,135,12)" fg:x="19128" fg:w="4293"/><text x="81.7567%" y="3423.50">criterion::bencher::Bencher<M..</text></g><g><title>part2::criterion_benchmark::_{{closure}}::_{{closure}} (4,293 samples, 18.29%)</title><rect x="81.5067%" y="3397" width="18.2930%" height="15" fill="rgb(210,66,6)" fg:x="19128" fg:w="4293"/><text x="81.7567%" y="3407.50">part2::criterion_benchmark::_..</text></g><g><title>day_11::part2 (4,293 samples, 18.29%)</title><rect x="81.5067%" y="3381" width="18.2930%" height="15" fill="rgb(254,108,43)" fg:x="19128" fg:w="4293"/><text x="81.7567%" y="3391.50">day_11::part2</text></g><g><title>fmodf (4 samples, 0.02%)</title><rect x="99.7827%" y="3365" width="0.0170%" height="15" fill="rgb(242,178,14)" fg:x="23417" fg:w="4"/><text x="100.0327%" y="3375.50"></text></g><g><title>day_11::part2 (35 samples, 0.15%)</title><rect x="99.7997%" y="3845" width="0.1491%" height="15" fill="rgb(217,16,49)" fg:x="23421" fg:w="35"/><text x="100.0497%" y="3855.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::for_each (35 samples, 0.15%)</title><rect x="99.7997%" y="3829" width="0.1491%" height="15" fill="rgb(251,209,44)" fg:x="23421" fg:w="35"/><text x="100.0497%" y="3839.50"></text></g><g><title>day_11::part2::_{{closure}} (35 samples, 0.15%)</title><rect x="99.7997%" y="3813" width="0.1491%" height="15" fill="rgb(250,29,30)" fg:x="23421" fg:w="35"/><text x="100.0497%" y="3823.50"></text></g><g><title>core::iter::traits::iterator::Iterator::nth (33 samples, 0.14%)</title><rect x="99.8082%" y="3797" width="0.1406%" height="15" fill="rgb(254,164,42)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3807.50"></text></g><g><title>core::iter::traits::iterator::Iterator::advance_by (33 samples, 0.14%)</title><rect x="99.8082%" y="3781" width="0.1406%" height="15" fill="rgb(242,82,14)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3791.50"></text></g><g><title><core::str::iter::Lines as core::iter::traits::iterator::Iterator>::next (33 samples, 0.14%)</title><rect x="99.8082%" y="3765" width="0.1406%" height="15" fill="rgb(223,156,12)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3775.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next (33 samples, 0.14%)</title><rect x="99.8082%" y="3749" width="0.1406%" height="15" fill="rgb(236,196,43)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3759.50"></text></g><g><title><core::str::iter::SplitInclusive<P> as core::iter::traits::iterator::Iterator>::next (33 samples, 0.14%)</title><rect x="99.8082%" y="3733" width="0.1406%" height="15" fill="rgb(240,160,25)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3743.50"></text></g><g><title>core::str::iter::SplitInternal<P>::next_inclusive (33 samples, 0.14%)</title><rect x="99.8082%" y="3717" width="0.1406%" height="15" fill="rgb(228,194,36)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3727.50"></text></g><g><title><core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match (33 samples, 0.14%)</title><rect x="99.8082%" y="3701" width="0.1406%" height="15" fill="rgb(233,159,26)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3711.50"></text></g><g><title>core::slice::memchr::memchr (33 samples, 0.14%)</title><rect x="99.8082%" y="3685" width="0.1406%" height="15" fill="rgb(225,18,27)" fg:x="23423" fg:w="33"/><text x="100.0582%" y="3695.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="99.9489%" y="3845" width="0.0128%" height="15" fill="rgb(241,104,43)" fg:x="23456" fg:w="3"/><text x="100.1989%" y="3855.50"></text></g><g><title>all (23,468 samples, 100%)</title><rect x="0.0000%" y="3877" width="100.0000%" height="15" fill="rgb(223,126,33)" fg:x="0" fg:w="23468"/><text x="0.2500%" y="3887.50"></text></g><g><title>part2-b57457504 (22,131 samples, 94.30%)</title><rect x="5.6971%" y="3861" width="94.3029%" height="15" fill="rgb(253,55,53)" fg:x="1337" fg:w="22131"/><text x="5.9471%" y="3871.50">part2-b57457504</text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="99.9616%" y="3845" width="0.0384%" height="15" fill="rgb(253,23,54)" fg:x="23459" fg:w="9"/><text x="100.2116%" y="3855.50"></text></g></svg></svg> |